blob: 70bb609c283d54a396553fd19faeef8c4e4ae820 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET3 Protocol independent device support routines.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Derived from the non IP parts of dev.c 1.0.19
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 *
14 * Additional Authors:
15 * Florian la Roche <rzsfl@rz.uni-sb.de>
16 * Alan Cox <gw4pts@gw4pts.ampr.org>
17 * David Hinds <dahinds@users.sourceforge.net>
18 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19 * Adam Sulmicki <adam@cfar.umd.edu>
20 * Pekka Riikonen <priikone@poesidon.pspt.fi>
21 *
22 * Changes:
23 * D.J. Barrow : Fixed bug where dev->refcnt gets set
24 * to 2 if register_netdev gets called
25 * before net_dev_init & also removed a
26 * few lines of code in the process.
27 * Alan Cox : device private ioctl copies fields back.
28 * Alan Cox : Transmit queue code does relevant
29 * stunts to keep the queue safe.
30 * Alan Cox : Fixed double lock.
31 * Alan Cox : Fixed promisc NULL pointer trap
32 * ???????? : Support the full private ioctl range
33 * Alan Cox : Moved ioctl permission check into
34 * drivers
35 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
36 * Alan Cox : 100 backlog just doesn't cut it when
37 * you start doing multicast video 8)
38 * Alan Cox : Rewrote net_bh and list manager.
39 * Alan Cox : Fix ETH_P_ALL echoback lengths.
40 * Alan Cox : Took out transmit every packet pass
41 * Saved a few bytes in the ioctl handler
42 * Alan Cox : Network driver sets packet type before
43 * calling netif_rx. Saves a function
44 * call a packet.
45 * Alan Cox : Hashed net_bh()
46 * Richard Kooijman: Timestamp fixes.
47 * Alan Cox : Wrong field in SIOCGIFDSTADDR
48 * Alan Cox : Device lock protection.
49 * Alan Cox : Fixed nasty side effect of device close
50 * changes.
51 * Rudi Cilibrasi : Pass the right thing to
52 * set_mac_address()
53 * Dave Miller : 32bit quantity for the device lock to
54 * make it work out on a Sparc.
55 * Bjorn Ekwall : Added KERNELD hack.
56 * Alan Cox : Cleaned up the backlog initialise.
57 * Craig Metz : SIOCGIFCONF fix if space for under
58 * 1 device.
59 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
60 * is no device open function.
61 * Andi Kleen : Fix error reporting for SIOCGIFCONF
62 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
63 * Cyrus Durgin : Cleaned for KMOD
64 * Adam Sulmicki : Bug Fix : Network Device Unload
65 * A network device unload needs to purge
66 * the backlog queue.
67 * Paul Rusty Russell : SIOCSIFNAME
68 * Pekka Riikonen : Netdev boot-time settings code
69 * Andrew Morton : Make unregister_netdevice wait
70 * indefinitely on dev->refcnt
71 * J Hadi Salim : - Backlog queue sampling
72 * - netif_rx() feedback
73 */
74
75#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080077#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/cpu.h>
79#include <linux/types.h>
80#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000081#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090082#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/sched.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080084#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/string.h>
86#include <linux/mm.h>
87#include <linux/socket.h>
88#include <linux/sockios.h>
89#include <linux/errno.h>
90#include <linux/interrupt.h>
91#include <linux/if_ether.h>
92#include <linux/netdevice.h>
93#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070094#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/notifier.h>
96#include <linux/skbuff.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020097#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <net/sock.h>
99#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <net/dst.h>
102#include <net/pkt_sched.h>
103#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000104#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#include <linux/highmem.h>
106#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/netpoll.h>
109#include <linux/rcupdate.h>
110#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500113#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700114#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700115#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700116#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700117#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700118#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700119#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700120#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700121#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ipv6.h>
123#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700124#include <linux/jhash.h>
125#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700126#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900127#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900128#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000129#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700130#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000131#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100132#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300133#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700134#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100135#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400136#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700138#include "net-sysfs.h"
139
Herbert Xud565b0a2008-12-15 23:38:52 -0800140/* Instead of increasing this, you should create a hash table. */
141#define MAX_GRO_SKBS 8
142
Herbert Xu5d38a072009-01-04 16:13:40 -0800143/* This should be increased if a protocol with a bigger head is added. */
144#define GRO_MAX_HEAD (MAX_HEADER + 128)
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000147static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000148struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
149struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000150static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000152static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli5495119462014-07-01 21:39:43 -0700153static int call_netdevice_notifiers_info(unsigned long val,
154 struct net_device *dev,
155 struct netdev_notifier_info *info);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700158 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * semaphore.
160 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800161 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
163 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700164 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * actual updates. This allows pure readers to access the list even
166 * while a writer is preparing to update it.
167 *
168 * To put it another way, dev_base_lock is held for writing only to
169 * protect against pure readers; the rtnl semaphore provides the
170 * protection against other writers.
171 *
172 * See, for example usages, register_netdevice() and
173 * unregister_netdevice(), which must be called with the rtnl
174 * semaphore held.
175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177EXPORT_SYMBOL(dev_base_lock);
178
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300179/* protects napi_hash addition/deletion and napi_gen_id */
180static DEFINE_SPINLOCK(napi_hash_lock);
181
182static unsigned int napi_gen_id;
183static DEFINE_HASHTABLE(napi_hash, 8);
184
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200185static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000186
Thomas Graf4e985ad2011-06-21 03:11:20 +0000187static inline void dev_base_seq_inc(struct net *net)
188{
189 while (++net->dev_base_seq == 0);
190}
191
Eric W. Biederman881d9662007-09-17 11:56:21 -0700192static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Eric Dumazet95c96172012-04-15 05:58:06 +0000194 unsigned int hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
195
stephen hemminger08e98972009-11-10 07:20:34 +0000196 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Eric W. Biederman881d9662007-09-17 11:56:21 -0700199static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700201 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000204static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000205{
206#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000207 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000208#endif
209}
210
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000211static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000212{
213#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000214 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000215#endif
216}
217
Eric W. Biedermance286d32007-09-12 13:53:49 +0200218/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000219static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200220{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900221 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200222
223 ASSERT_RTNL();
224
225 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800226 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000227 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000228 hlist_add_head_rcu(&dev->index_hlist,
229 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200230 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000231
232 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200233}
234
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000235/* Device list removal
236 * caller must respect a RCU grace period before freeing/reusing dev
237 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200238static void unlist_netdevice(struct net_device *dev)
239{
240 ASSERT_RTNL();
241
242 /* Unlink dev from the device chain */
243 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800244 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000245 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000246 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200247 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000248
249 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/*
253 * Our notifier list
254 */
255
Alan Sternf07d5b92006-05-09 15:23:03 -0700256static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/*
259 * Device drivers call our routines to queue packets here. We empty the
260 * queue in the local softnet handler.
261 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700262
Eric Dumazet9958da02010-04-17 04:17:02 +0000263DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700264EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
David S. Millercf508b12008-07-22 14:16:42 -0700266#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700267/*
David S. Millerc773e842008-07-08 23:13:53 -0700268 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700269 * according to dev->type
270 */
271static const unsigned short netdev_lock_type[] =
272 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
273 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
274 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
275 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
276 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
277 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
278 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
279 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
280 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
281 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
282 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
283 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400284 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
285 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
286 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700287
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700288static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700289 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
290 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
291 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
292 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
293 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
294 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
295 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
296 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
297 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
298 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
299 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
300 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
Paul Gortmaker211ed862012-05-10 17:14:35 -0400301 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
302 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
303 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700304
305static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700306static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700307
308static inline unsigned short netdev_lock_pos(unsigned short dev_type)
309{
310 int i;
311
312 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
313 if (netdev_lock_type[i] == dev_type)
314 return i;
315 /* the last key is used by default */
316 return ARRAY_SIZE(netdev_lock_type) - 1;
317}
318
David S. Millercf508b12008-07-22 14:16:42 -0700319static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
320 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700321{
322 int i;
323
324 i = netdev_lock_pos(dev_type);
325 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
326 netdev_lock_name[i]);
327}
David S. Millercf508b12008-07-22 14:16:42 -0700328
329static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
330{
331 int i;
332
333 i = netdev_lock_pos(dev->type);
334 lockdep_set_class_and_name(&dev->addr_list_lock,
335 &netdev_addr_lock_key[i],
336 netdev_lock_name[i]);
337}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700338#else
David S. Millercf508b12008-07-22 14:16:42 -0700339static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
340 unsigned short dev_type)
341{
342}
343static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700344{
345}
346#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348/*******************************************************************************
349
350 Protocol management and registration routines
351
352*******************************************************************************/
353
354/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * Add a protocol ID to the list. Now that the input handler is
356 * smarter we can dispense with all the messy stuff that used to be
357 * here.
358 *
359 * BEWARE!!! Protocol handlers, mangling input packets,
360 * MUST BE last in hash buckets and checking protocol handlers
361 * MUST start from promiscuous ptype_all chain in net_bh.
362 * It is true now, do not change it.
363 * Explanation follows: if protocol handler, mangling packet, will
364 * be the first on list, it is not able to sense, that packet
365 * is cloned and should be copied-on-write, so that it will
366 * change it and subsequent readers will get broken packet.
367 * --ANK (980803)
368 */
369
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000370static inline struct list_head *ptype_head(const struct packet_type *pt)
371{
372 if (pt->type == htons(ETH_P_ALL))
373 return &ptype_all;
374 else
375 return &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/**
379 * dev_add_pack - add packet handler
380 * @pt: packet type declaration
381 *
382 * Add a protocol handler to the networking stack. The passed &packet_type
383 * is linked into kernel lists and may not be freed until it has been
384 * removed from the kernel lists.
385 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900386 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * guarantee all CPU's that are in middle of receiving packets
388 * will see the new packet type (until the next received packet).
389 */
390
391void dev_add_pack(struct packet_type *pt)
392{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000393 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000395 spin_lock(&ptype_lock);
396 list_add_rcu(&pt->list, head);
397 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700399EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/**
402 * __dev_remove_pack - remove packet handler
403 * @pt: packet type declaration
404 *
405 * Remove a protocol handler that was previously added to the kernel
406 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
407 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900408 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *
410 * The packet type might still be in use by receivers
411 * and must not be freed until after all the CPU's have gone
412 * through a quiescent state.
413 */
414void __dev_remove_pack(struct packet_type *pt)
415{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000416 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct packet_type *pt1;
418
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000419 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 list_for_each_entry(pt1, head, list) {
422 if (pt == pt1) {
423 list_del_rcu(&pt->list);
424 goto out;
425 }
426 }
427
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000428 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000430 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700432EXPORT_SYMBOL(__dev_remove_pack);
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/**
435 * dev_remove_pack - remove packet handler
436 * @pt: packet type declaration
437 *
438 * Remove a protocol handler that was previously added to the kernel
439 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
440 * from the kernel lists and can be freed or reused once this function
441 * returns.
442 *
443 * This call sleeps to guarantee that no CPU is looking at the packet
444 * type after return.
445 */
446void dev_remove_pack(struct packet_type *pt)
447{
448 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 synchronize_net();
451}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700452EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Vlad Yasevich62532da2012-11-15 08:49:10 +0000454
455/**
456 * dev_add_offload - register offload handlers
457 * @po: protocol offload declaration
458 *
459 * Add protocol offload handlers to the networking stack. The passed
460 * &proto_offload is linked into kernel lists and may not be freed until
461 * it has been removed from the kernel lists.
462 *
463 * This call does not sleep therefore it can not
464 * guarantee all CPU's that are in middle of receiving packets
465 * will see the new offload handlers (until the next received packet).
466 */
467void dev_add_offload(struct packet_offload *po)
468{
469 struct list_head *head = &offload_base;
470
471 spin_lock(&offload_lock);
472 list_add_rcu(&po->list, head);
473 spin_unlock(&offload_lock);
474}
475EXPORT_SYMBOL(dev_add_offload);
476
477/**
478 * __dev_remove_offload - remove offload handler
479 * @po: packet offload declaration
480 *
481 * Remove a protocol offload handler that was previously added to the
482 * kernel offload handlers by dev_add_offload(). The passed &offload_type
483 * is removed from the kernel lists and can be freed or reused once this
484 * function returns.
485 *
486 * The packet type might still be in use by receivers
487 * and must not be freed until after all the CPU's have gone
488 * through a quiescent state.
489 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800490static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000491{
492 struct list_head *head = &offload_base;
493 struct packet_offload *po1;
494
Eric Dumazetc53aa502012-11-16 08:08:23 +0000495 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000496
497 list_for_each_entry(po1, head, list) {
498 if (po == po1) {
499 list_del_rcu(&po->list);
500 goto out;
501 }
502 }
503
504 pr_warn("dev_remove_offload: %p not found\n", po);
505out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000506 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000507}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000508
509/**
510 * dev_remove_offload - remove packet offload handler
511 * @po: packet offload declaration
512 *
513 * Remove a packet offload handler that was previously added to the kernel
514 * offload handlers by dev_add_offload(). The passed &offload_type is
515 * removed from the kernel lists and can be freed or reused once this
516 * function returns.
517 *
518 * This call sleeps to guarantee that no CPU is looking at the packet
519 * type after return.
520 */
521void dev_remove_offload(struct packet_offload *po)
522{
523 __dev_remove_offload(po);
524
525 synchronize_net();
526}
527EXPORT_SYMBOL(dev_remove_offload);
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/******************************************************************************
530
531 Device Boot-time Settings Routines
532
533*******************************************************************************/
534
535/* Boot time configuration table */
536static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
537
538/**
539 * netdev_boot_setup_add - add new setup entry
540 * @name: name of the device
541 * @map: configured settings for the device
542 *
543 * Adds new setup entry to the dev_boot_setup list. The function
544 * returns 0 on error and 1 on success. This is a generic routine to
545 * all netdevices.
546 */
547static int netdev_boot_setup_add(char *name, struct ifmap *map)
548{
549 struct netdev_boot_setup *s;
550 int i;
551
552 s = dev_boot_setup;
553 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
554 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
555 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700556 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 memcpy(&s[i].map, map, sizeof(s[i].map));
558 break;
559 }
560 }
561
562 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
563}
564
565/**
566 * netdev_boot_setup_check - check boot time settings
567 * @dev: the netdevice
568 *
569 * Check boot time settings for the device.
570 * The found settings are set for the device to be used
571 * later in the device probing.
572 * Returns 0 if no settings found, 1 if they are.
573 */
574int netdev_boot_setup_check(struct net_device *dev)
575{
576 struct netdev_boot_setup *s = dev_boot_setup;
577 int i;
578
579 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
580 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700581 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 dev->irq = s[i].map.irq;
583 dev->base_addr = s[i].map.base_addr;
584 dev->mem_start = s[i].map.mem_start;
585 dev->mem_end = s[i].map.mem_end;
586 return 1;
587 }
588 }
589 return 0;
590}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700591EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593
594/**
595 * netdev_boot_base - get address from boot time settings
596 * @prefix: prefix for network device
597 * @unit: id for network device
598 *
599 * Check boot time settings for the base address of device.
600 * The found settings are set for the device to be used
601 * later in the device probing.
602 * Returns 0 if no settings found.
603 */
604unsigned long netdev_boot_base(const char *prefix, int unit)
605{
606 const struct netdev_boot_setup *s = dev_boot_setup;
607 char name[IFNAMSIZ];
608 int i;
609
610 sprintf(name, "%s%d", prefix, unit);
611
612 /*
613 * If device already registered then return base of 1
614 * to indicate not to probe for this interface
615 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700616 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return 1;
618
619 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
620 if (!strcmp(name, s[i].name))
621 return s[i].map.base_addr;
622 return 0;
623}
624
625/*
626 * Saves at boot time configured settings for any netdevice.
627 */
628int __init netdev_boot_setup(char *str)
629{
630 int ints[5];
631 struct ifmap map;
632
633 str = get_options(str, ARRAY_SIZE(ints), ints);
634 if (!str || !*str)
635 return 0;
636
637 /* Save settings */
638 memset(&map, 0, sizeof(map));
639 if (ints[0] > 0)
640 map.irq = ints[1];
641 if (ints[0] > 1)
642 map.base_addr = ints[2];
643 if (ints[0] > 2)
644 map.mem_start = ints[3];
645 if (ints[0] > 3)
646 map.mem_end = ints[4];
647
648 /* Add new entry to the list */
649 return netdev_boot_setup_add(str, &map);
650}
651
652__setup("netdev=", netdev_boot_setup);
653
654/*******************************************************************************
655
656 Device Interface Subroutines
657
658*******************************************************************************/
659
660/**
661 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700662 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * @name: name to find
664 *
665 * Find an interface by name. Must be called under RTNL semaphore
666 * or @dev_base_lock. If the name is found a pointer to the device
667 * is returned. If the name is not found then %NULL is returned. The
668 * reference counters are not incremented so the caller must be
669 * careful with locks.
670 */
671
Eric W. Biederman881d9662007-09-17 11:56:21 -0700672struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700674 struct net_device *dev;
675 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Sasha Levinb67bfe02013-02-27 17:06:00 -0800677 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!strncmp(dev->name, name, IFNAMSIZ))
679 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return NULL;
682}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700683EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000686 * dev_get_by_name_rcu - find a device by its name
687 * @net: the applicable net namespace
688 * @name: name to find
689 *
690 * Find an interface by name.
691 * If the name is found a pointer to the device is returned.
692 * If the name is not found then %NULL is returned.
693 * The reference counters are not incremented so the caller must be
694 * careful with locks. The caller must hold RCU lock.
695 */
696
697struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
698{
Eric Dumazet72c95282009-10-30 07:11:27 +0000699 struct net_device *dev;
700 struct hlist_head *head = dev_name_hash(net, name);
701
Sasha Levinb67bfe02013-02-27 17:06:00 -0800702 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000703 if (!strncmp(dev->name, name, IFNAMSIZ))
704 return dev;
705
706 return NULL;
707}
708EXPORT_SYMBOL(dev_get_by_name_rcu);
709
710/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700712 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 * @name: name to find
714 *
715 * Find an interface by name. This can be called from any
716 * context and does its own locking. The returned handle has
717 * the usage count incremented and the caller must use dev_put() to
718 * release it when it is no longer needed. %NULL is returned if no
719 * matching device is found.
720 */
721
Eric W. Biederman881d9662007-09-17 11:56:21 -0700722struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct net_device *dev;
725
Eric Dumazet72c95282009-10-30 07:11:27 +0000726 rcu_read_lock();
727 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (dev)
729 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000730 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return dev;
732}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700733EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735/**
736 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700737 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * @ifindex: index of device
739 *
740 * Search for an interface by index. Returns %NULL if the device
741 * is not found or a pointer to the device. The device has not
742 * had its reference counter increased so the caller must be careful
743 * about locking. The caller must hold either the RTNL semaphore
744 * or @dev_base_lock.
745 */
746
Eric W. Biederman881d9662007-09-17 11:56:21 -0700747struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700749 struct net_device *dev;
750 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Sasha Levinb67bfe02013-02-27 17:06:00 -0800752 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (dev->ifindex == ifindex)
754 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return NULL;
757}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700758EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000760/**
761 * dev_get_by_index_rcu - find a device by its ifindex
762 * @net: the applicable net namespace
763 * @ifindex: index of device
764 *
765 * Search for an interface by index. Returns %NULL if the device
766 * is not found or a pointer to the device. The device has not
767 * had its reference counter increased so the caller must be careful
768 * about locking. The caller must hold RCU lock.
769 */
770
771struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
772{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000773 struct net_device *dev;
774 struct hlist_head *head = dev_index_hash(net, ifindex);
775
Sasha Levinb67bfe02013-02-27 17:06:00 -0800776 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000777 if (dev->ifindex == ifindex)
778 return dev;
779
780 return NULL;
781}
782EXPORT_SYMBOL(dev_get_by_index_rcu);
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785/**
786 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700787 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * @ifindex: index of device
789 *
790 * Search for an interface by index. Returns NULL if the device
791 * is not found or a pointer to the device. The device returned has
792 * had a reference added and the pointer is safe until the user calls
793 * dev_put to indicate they have finished with it.
794 */
795
Eric W. Biederman881d9662007-09-17 11:56:21 -0700796struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct net_device *dev;
799
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000800 rcu_read_lock();
801 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (dev)
803 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000804 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return dev;
806}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700807EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200810 * netdev_get_name - get a netdevice name, knowing its ifindex.
811 * @net: network namespace
812 * @name: a pointer to the buffer where the name will be stored.
813 * @ifindex: the ifindex of the interface to get the name from.
814 *
815 * The use of raw_seqcount_begin() and cond_resched() before
816 * retrying is required as we want to give the writers a chance
817 * to complete when CONFIG_PREEMPT is not set.
818 */
819int netdev_get_name(struct net *net, char *name, int ifindex)
820{
821 struct net_device *dev;
822 unsigned int seq;
823
824retry:
825 seq = raw_seqcount_begin(&devnet_rename_seq);
826 rcu_read_lock();
827 dev = dev_get_by_index_rcu(net, ifindex);
828 if (!dev) {
829 rcu_read_unlock();
830 return -ENODEV;
831 }
832
833 strcpy(name, dev->name);
834 rcu_read_unlock();
835 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
836 cond_resched();
837 goto retry;
838 }
839
840 return 0;
841}
842
843/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000844 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700845 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 * @type: media type of device
847 * @ha: hardware address
848 *
849 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800850 * is not found or a pointer to the device.
851 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000852 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 * and the caller must therefore be careful about locking
854 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
856
Eric Dumazet941666c2010-12-05 01:23:53 +0000857struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
858 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct net_device *dev;
861
Eric Dumazet941666c2010-12-05 01:23:53 +0000862 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (dev->type == type &&
864 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700865 return dev;
866
867 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
Eric Dumazet941666c2010-12-05 01:23:53 +0000869EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300870
Eric W. Biederman881d9662007-09-17 11:56:21 -0700871struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700872{
873 struct net_device *dev;
874
875 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700876 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700877 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700878 return dev;
879
880 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700881}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700882EXPORT_SYMBOL(__dev_getfirstbyhwtype);
883
Eric W. Biederman881d9662007-09-17 11:56:21 -0700884struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000886 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000888 rcu_read_lock();
889 for_each_netdev_rcu(net, dev)
890 if (dev->type == type) {
891 dev_hold(dev);
892 ret = dev;
893 break;
894 }
895 rcu_read_unlock();
896 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898EXPORT_SYMBOL(dev_getfirstbyhwtype);
899
900/**
WANG Cong6c555492014-09-11 15:35:09 -0700901 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700902 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * @if_flags: IFF_* values
904 * @mask: bitmask of bits in if_flags to check
905 *
906 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000907 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700908 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 */
910
WANG Cong6c555492014-09-11 15:35:09 -0700911struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
912 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700914 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
WANG Cong6c555492014-09-11 15:35:09 -0700916 ASSERT_RTNL();
917
Pavel Emelianov7562f872007-05-03 15:13:45 -0700918 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -0700919 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700921 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
923 }
924 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700925 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
WANG Cong6c555492014-09-11 15:35:09 -0700927EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929/**
930 * dev_valid_name - check if name is okay for network device
931 * @name: name string
932 *
933 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700934 * to allow sysfs to work. We also disallow any kind of
935 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 */
David S. Miller95f050b2012-03-06 16:12:15 -0500937bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700939 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -0500940 return false;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700941 if (strlen(name) >= IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -0500942 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700943 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -0500944 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700945
946 while (*name) {
947 if (*name == '/' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -0500948 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700949 name++;
950 }
David S. Miller95f050b2012-03-06 16:12:15 -0500951 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700953EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200956 * __dev_alloc_name - allocate a name for a device
957 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200959 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 *
961 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -0700962 * id. It scans list of devices to build up a free map, then chooses
963 * the first empty slot. The caller must hold the dev_base or rtnl lock
964 * while allocating the name and adding the device in order to avoid
965 * duplicates.
966 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
967 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
969
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200970static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 const char *p;
974 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700975 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct net_device *d;
977
978 p = strnchr(name, IFNAMSIZ-1, '%');
979 if (p) {
980 /*
981 * Verify the string as this thing may have come from
982 * the user. There must be either one "%d" and no other "%"
983 * characters.
984 */
985 if (p[1] != 'd' || strchr(p + 2, '%'))
986 return -EINVAL;
987
988 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700989 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (!inuse)
991 return -ENOMEM;
992
Eric W. Biederman881d9662007-09-17 11:56:21 -0700993 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (!sscanf(d->name, name, &i))
995 continue;
996 if (i < 0 || i >= max_netdevices)
997 continue;
998
999 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001000 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (!strncmp(buf, d->name, IFNAMSIZ))
1002 set_bit(i, inuse);
1003 }
1004
1005 i = find_first_zero_bit(inuse, max_netdevices);
1006 free_page((unsigned long) inuse);
1007 }
1008
Octavian Purdilad9031022009-11-18 02:36:59 +00001009 if (buf != name)
1010 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001011 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /* It is possible to run out of possible slots
1015 * when the name is long and there isn't enough space left
1016 * for the digits, or if all bits are used.
1017 */
1018 return -ENFILE;
1019}
1020
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001021/**
1022 * dev_alloc_name - allocate a name for a device
1023 * @dev: device
1024 * @name: name format string
1025 *
1026 * Passed a format string - eg "lt%d" it will try and find a suitable
1027 * id. It scans list of devices to build up a free map, then chooses
1028 * the first empty slot. The caller must hold the dev_base or rtnl lock
1029 * while allocating the name and adding the device in order to avoid
1030 * duplicates.
1031 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1032 * Returns the number of the unit assigned or a negative errno code.
1033 */
1034
1035int dev_alloc_name(struct net_device *dev, const char *name)
1036{
1037 char buf[IFNAMSIZ];
1038 struct net *net;
1039 int ret;
1040
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001041 BUG_ON(!dev_net(dev));
1042 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001043 ret = __dev_alloc_name(net, name, buf);
1044 if (ret >= 0)
1045 strlcpy(dev->name, buf, IFNAMSIZ);
1046 return ret;
1047}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001048EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001049
Gao feng828de4f2012-09-13 20:58:27 +00001050static int dev_alloc_name_ns(struct net *net,
1051 struct net_device *dev,
1052 const char *name)
Octavian Purdilad9031022009-11-18 02:36:59 +00001053{
Gao feng828de4f2012-09-13 20:58:27 +00001054 char buf[IFNAMSIZ];
1055 int ret;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001056
Gao feng828de4f2012-09-13 20:58:27 +00001057 ret = __dev_alloc_name(net, name, buf);
1058 if (ret >= 0)
1059 strlcpy(dev->name, buf, IFNAMSIZ);
1060 return ret;
1061}
1062
1063static int dev_get_valid_name(struct net *net,
1064 struct net_device *dev,
1065 const char *name)
1066{
1067 BUG_ON(!net);
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001068
Octavian Purdilad9031022009-11-18 02:36:59 +00001069 if (!dev_valid_name(name))
1070 return -EINVAL;
1071
Jiri Pirko1c5cae82011-04-30 01:21:32 +00001072 if (strchr(name, '%'))
Gao feng828de4f2012-09-13 20:58:27 +00001073 return dev_alloc_name_ns(net, dev, name);
Octavian Purdilad9031022009-11-18 02:36:59 +00001074 else if (__dev_get_by_name(net, name))
1075 return -EEXIST;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001076 else if (dev->name != name)
1077 strlcpy(dev->name, name, IFNAMSIZ);
Octavian Purdilad9031022009-11-18 02:36:59 +00001078
1079 return 0;
1080}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082/**
1083 * dev_change_name - change name of a device
1084 * @dev: device
1085 * @newname: name (or format string) must be at least IFNAMSIZ
1086 *
1087 * Change name of a device, can pass format strings "eth%d".
1088 * for wildcarding.
1089 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001090int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Tom Gundersen238fa362014-07-14 16:37:23 +02001092 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001093 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001095 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001096 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001099 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001101 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (dev->flags & IFF_UP)
1103 return -EBUSY;
1104
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001105 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001106
1107 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001108 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001109 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001110 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001111
Herbert Xufcc5a032007-07-30 17:03:38 -07001112 memcpy(oldname, dev->name, IFNAMSIZ);
1113
Gao feng828de4f2012-09-13 20:58:27 +00001114 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001115 if (err < 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001116 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001117 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001120 if (oldname[0] && !strchr(oldname, '%'))
1121 netdev_info(dev, "renamed from %s\n", oldname);
1122
Tom Gundersen238fa362014-07-14 16:37:23 +02001123 old_assign_type = dev->name_assign_type;
1124 dev->name_assign_type = NET_NAME_RENAMED;
1125
Herbert Xufcc5a032007-07-30 17:03:38 -07001126rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001127 ret = device_rename(&dev->dev, dev->name);
1128 if (ret) {
1129 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001130 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001131 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001132 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001133 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001134
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001135 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001136
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001137 netdev_adjacent_rename_links(dev, oldname);
1138
Herbert Xu7f988ea2007-07-30 16:35:46 -07001139 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001140 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001141 write_unlock_bh(&dev_base_lock);
1142
1143 synchronize_rcu();
1144
1145 write_lock_bh(&dev_base_lock);
1146 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001147 write_unlock_bh(&dev_base_lock);
1148
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001149 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001150 ret = notifier_to_errno(ret);
1151
1152 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001153 /* err >= 0 after dev_alloc_name() or stores the first errno */
1154 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001155 err = ret;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001156 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001157 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001158 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001159 dev->name_assign_type = old_assign_type;
1160 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001161 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001162 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001163 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001164 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001165 }
1166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 return err;
1169}
1170
1171/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001172 * dev_set_alias - change ifalias of a device
1173 * @dev: device
1174 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001175 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001176 *
1177 * Set ifalias for a device,
1178 */
1179int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1180{
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001181 char *new_ifalias;
1182
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001183 ASSERT_RTNL();
1184
1185 if (len >= IFALIASZ)
1186 return -EINVAL;
1187
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001188 if (!len) {
Sachin Kamat388dfc22012-11-20 00:57:04 +00001189 kfree(dev->ifalias);
1190 dev->ifalias = NULL;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001191 return 0;
1192 }
1193
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001194 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1195 if (!new_ifalias)
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001196 return -ENOMEM;
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001197 dev->ifalias = new_ifalias;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001198
1199 strlcpy(dev->ifalias, alias, len+1);
1200 return len;
1201}
1202
1203
1204/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001205 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001206 * @dev: device to cause notification
1207 *
1208 * Called to indicate a device has changed features.
1209 */
1210void netdev_features_change(struct net_device *dev)
1211{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001212 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001213}
1214EXPORT_SYMBOL(netdev_features_change);
1215
1216/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * netdev_state_change - device changes state
1218 * @dev: device to cause notification
1219 *
1220 * Called to indicate a device has changed state. This function calls
1221 * the notifier chains for netdev_chain and sends a NEWLINK message
1222 * to the routing socket.
1223 */
1224void netdev_state_change(struct net_device *dev)
1225{
1226 if (dev->flags & IFF_UP) {
Loic Prylli5495119462014-07-01 21:39:43 -07001227 struct netdev_notifier_change_info change_info;
1228
1229 change_info.flags_changed = 0;
1230 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
1231 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001232 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001235EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Amerigo Wangee89bab2012-08-09 22:14:56 +00001237/**
1238 * netdev_notify_peers - notify network peers about existence of @dev
1239 * @dev: network device
1240 *
1241 * Generate traffic such that interested network peers are aware of
1242 * @dev, such as by generating a gratuitous ARP. This may be used when
1243 * a device wants to inform the rest of the network about some sort of
1244 * reconfiguration such as a failover event or virtual machine
1245 * migration.
1246 */
1247void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001248{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001249 rtnl_lock();
1250 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1251 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001252}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001253EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001254
Patrick McHardybd380812010-02-26 06:34:53 +00001255static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001257 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001258 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001260 ASSERT_RTNL();
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (!netif_device_present(dev))
1263 return -ENODEV;
1264
Neil Hormanca99ca12013-02-05 08:05:43 +00001265 /* Block netpoll from trying to do any rx path servicing.
1266 * If we don't do this there is a chance ndo_poll_controller
1267 * or ndo_poll may be running while we open the device
1268 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001269 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001270
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001271 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1272 ret = notifier_to_errno(ret);
1273 if (ret)
1274 return ret;
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001277
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001278 if (ops->ndo_validate_addr)
1279 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001280
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001281 if (!ret && ops->ndo_open)
1282 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Eric W. Biederman66b55522014-03-27 15:39:03 -07001284 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001285
Jeff Garzikbada3392007-10-23 20:19:37 -07001286 if (ret)
1287 clear_bit(__LINK_STATE_START, &dev->state);
1288 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001290 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001292 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return ret;
1296}
Patrick McHardybd380812010-02-26 06:34:53 +00001297
1298/**
1299 * dev_open - prepare an interface for use.
1300 * @dev: device to open
1301 *
1302 * Takes a device from down to up state. The device's private open
1303 * function is invoked and then the multicast lists are loaded. Finally
1304 * the device is moved into the up state and a %NETDEV_UP message is
1305 * sent to the netdev notifier chain.
1306 *
1307 * Calling this function on an active interface is a nop. On a failure
1308 * a negative errno code is returned.
1309 */
1310int dev_open(struct net_device *dev)
1311{
1312 int ret;
1313
Patrick McHardybd380812010-02-26 06:34:53 +00001314 if (dev->flags & IFF_UP)
1315 return 0;
1316
Patrick McHardybd380812010-02-26 06:34:53 +00001317 ret = __dev_open(dev);
1318 if (ret < 0)
1319 return ret;
1320
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001321 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001322 call_netdevice_notifiers(NETDEV_UP, dev);
1323
1324 return ret;
1325}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001326EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Octavian Purdila44345722010-12-13 12:44:07 +00001328static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Octavian Purdila44345722010-12-13 12:44:07 +00001330 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001331
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001332 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001333 might_sleep();
1334
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001335 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001336 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001337 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001338
Octavian Purdila44345722010-12-13 12:44:07 +00001339 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Octavian Purdila44345722010-12-13 12:44:07 +00001341 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Octavian Purdila44345722010-12-13 12:44:07 +00001343 /* Synchronize to scheduled poll. We cannot touch poll list, it
1344 * can be even on different cpu. So just clear netif_running().
1345 *
1346 * dev->stop() will invoke napi_disable() on all of it's
1347 * napi_struct instances on this device.
1348 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001349 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Octavian Purdila44345722010-12-13 12:44:07 +00001352 dev_deactivate_many(head);
1353
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001354 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001355 const struct net_device_ops *ops = dev->netdev_ops;
1356
1357 /*
1358 * Call the device specific close. This cannot fail.
1359 * Only if device is UP
1360 *
1361 * We allow it to be called even after a DETACH hot-plug
1362 * event.
1363 */
1364 if (ops->ndo_stop)
1365 ops->ndo_stop(dev);
1366
Octavian Purdila44345722010-12-13 12:44:07 +00001367 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001368 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001369 }
1370
1371 return 0;
1372}
1373
1374static int __dev_close(struct net_device *dev)
1375{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001376 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001377 LIST_HEAD(single);
1378
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001379 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001380 retval = __dev_close_many(&single);
1381 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001382
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001383 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001384}
1385
Eric Dumazet3fbd8752011-01-19 21:23:22 +00001386static int dev_close_many(struct list_head *head)
Octavian Purdila44345722010-12-13 12:44:07 +00001387{
1388 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001389
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001390 /* Remove the devices that don't need to be closed */
1391 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001392 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001393 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001394
1395 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001396
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001397 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001398 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001399 call_netdevice_notifiers(NETDEV_DOWN, dev);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001400 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return 0;
1404}
Patrick McHardybd380812010-02-26 06:34:53 +00001405
1406/**
1407 * dev_close - shutdown an interface.
1408 * @dev: device to shutdown
1409 *
1410 * This function moves an active device into down state. A
1411 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1412 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1413 * chain.
1414 */
1415int dev_close(struct net_device *dev)
1416{
Eric Dumazete14a5992011-05-10 12:26:06 -07001417 if (dev->flags & IFF_UP) {
1418 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001419
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001420 list_add(&dev->close_list, &single);
Eric Dumazete14a5992011-05-10 12:26:06 -07001421 dev_close_many(&single);
1422 list_del(&single);
1423 }
dingtianhongda6e3782013-05-27 19:53:31 +00001424 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001425}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001426EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001429/**
1430 * dev_disable_lro - disable Large Receive Offload on a device
1431 * @dev: device
1432 *
1433 * Disable Large Receive Offload (LRO) on a net device. Must be
1434 * called under RTNL. This is needed if received packets may be
1435 * forwarded to another interface.
1436 */
1437void dev_disable_lro(struct net_device *dev)
1438{
Neil Hormanf11970e2011-05-24 08:31:09 +00001439 /*
1440 * If we're trying to disable lro on a vlan device
1441 * use the underlying physical device instead
1442 */
1443 if (is_vlan_dev(dev))
1444 dev = vlan_dev_real_dev(dev);
1445
Michal Kubeček529d0482013-11-15 06:18:50 +01001446 /* the same for macvlan devices */
1447 if (netif_is_macvlan(dev))
1448 dev = macvlan_dev_real_dev(dev);
1449
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001450 dev->wanted_features &= ~NETIF_F_LRO;
1451 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001452
Michał Mirosław22d59692011-04-21 12:42:15 +00001453 if (unlikely(dev->features & NETIF_F_LRO))
1454 netdev_WARN(dev, "failed to disable LRO!\n");
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001455}
1456EXPORT_SYMBOL(dev_disable_lro);
1457
Jiri Pirko351638e2013-05-28 01:30:21 +00001458static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1459 struct net_device *dev)
1460{
1461 struct netdev_notifier_info info;
1462
1463 netdev_notifier_info_init(&info, dev);
1464 return nb->notifier_call(nb, val, &info);
1465}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001466
Eric W. Biederman881d9662007-09-17 11:56:21 -07001467static int dev_boot_phase = 1;
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469/**
1470 * register_netdevice_notifier - register a network notifier block
1471 * @nb: notifier
1472 *
1473 * Register a notifier to be called when network device events occur.
1474 * The notifier passed is linked into the kernel structures and must
1475 * not be reused until it has been unregistered. A negative errno code
1476 * is returned on a failure.
1477 *
1478 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001479 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 * view of the network device list.
1481 */
1482
1483int register_netdevice_notifier(struct notifier_block *nb)
1484{
1485 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001486 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001487 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 int err;
1489
1490 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001491 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001492 if (err)
1493 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001494 if (dev_boot_phase)
1495 goto unlock;
1496 for_each_net(net) {
1497 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001498 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001499 err = notifier_to_errno(err);
1500 if (err)
1501 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Eric W. Biederman881d9662007-09-17 11:56:21 -07001503 if (!(dev->flags & IFF_UP))
1504 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001505
Jiri Pirko351638e2013-05-28 01:30:21 +00001506 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001509
1510unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 rtnl_unlock();
1512 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001513
1514rollback:
1515 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001516 for_each_net(net) {
1517 for_each_netdev(net, dev) {
1518 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001519 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001520
Eric W. Biederman881d9662007-09-17 11:56:21 -07001521 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001522 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1523 dev);
1524 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001525 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001526 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001527 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001528 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001529
RongQing.Li8f891482011-11-30 23:43:07 -05001530outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001531 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001532 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001534EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536/**
1537 * unregister_netdevice_notifier - unregister a network notifier block
1538 * @nb: notifier
1539 *
1540 * Unregister a notifier previously registered by
1541 * register_netdevice_notifier(). The notifier is unlinked into the
1542 * kernel structures and may then be reused. A negative errno code
1543 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001544 *
1545 * After unregistering unregister and down device events are synthesized
1546 * for all devices on the device list to the removed notifier to remove
1547 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
1549
1550int unregister_netdevice_notifier(struct notifier_block *nb)
1551{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001552 struct net_device *dev;
1553 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001554 int err;
1555
1556 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001557 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001558 if (err)
1559 goto unlock;
1560
1561 for_each_net(net) {
1562 for_each_netdev(net, dev) {
1563 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001564 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1565 dev);
1566 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001567 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001568 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001569 }
1570 }
1571unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001572 rtnl_unlock();
1573 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001575EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001578 * call_netdevice_notifiers_info - call all network notifier blocks
1579 * @val: value passed unmodified to notifier function
1580 * @dev: net_device pointer passed unmodified to notifier function
1581 * @info: notifier information data
1582 *
1583 * Call all network notifier blocks. Parameters and return value
1584 * are as for raw_notifier_call_chain().
1585 */
1586
stephen hemminger1d143d92013-12-29 14:01:29 -08001587static int call_netdevice_notifiers_info(unsigned long val,
1588 struct net_device *dev,
1589 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001590{
1591 ASSERT_RTNL();
1592 netdev_notifier_info_init(info, dev);
1593 return raw_notifier_call_chain(&netdev_chain, val, info);
1594}
Jiri Pirko351638e2013-05-28 01:30:21 +00001595
1596/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 * call_netdevice_notifiers - call all network notifier blocks
1598 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001599 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 *
1601 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001602 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 */
1604
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001605int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Jiri Pirko351638e2013-05-28 01:30:21 +00001607 struct netdev_notifier_info info;
1608
1609 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001611EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Ingo Molnarc5905af2012-02-24 08:31:31 +01001613static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001614#ifdef HAVE_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +01001615/* We are not allowed to call static_key_slow_dec() from irq context
Eric Dumazetb90e5792011-11-28 11:16:50 +00001616 * If net_disable_timestamp() is called from irq context, defer the
Ingo Molnarc5905af2012-02-24 08:31:31 +01001617 * static_key_slow_dec() calls.
Eric Dumazetb90e5792011-11-28 11:16:50 +00001618 */
1619static atomic_t netstamp_needed_deferred;
1620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622void net_enable_timestamp(void)
1623{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001624#ifdef HAVE_JUMP_LABEL
1625 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
1626
1627 if (deferred) {
1628 while (--deferred)
Ingo Molnarc5905af2012-02-24 08:31:31 +01001629 static_key_slow_dec(&netstamp_needed);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001630 return;
1631 }
1632#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001633 static_key_slow_inc(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001635EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637void net_disable_timestamp(void)
1638{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001639#ifdef HAVE_JUMP_LABEL
1640 if (in_interrupt()) {
1641 atomic_inc(&netstamp_needed_deferred);
1642 return;
1643 }
1644#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001645 static_key_slow_dec(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001647EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Eric Dumazet3b098e22010-05-15 23:57:10 -07001649static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Eric Dumazet588f0332011-11-15 04:12:55 +00001651 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001652 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001653 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
Eric Dumazet588f0332011-11-15 04:12:55 +00001656#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001657 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001658 if ((COND) && !(SKB)->tstamp.tv64) \
1659 __net_timestamp(SKB); \
1660 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001661
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001662bool is_skb_forwardable(struct net_device *dev, struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001663{
1664 unsigned int len;
1665
1666 if (!(dev->flags & IFF_UP))
1667 return false;
1668
1669 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1670 if (skb->len <= len)
1671 return true;
1672
1673 /* if TSO is enabled, we don't care about the length as the packet
1674 * could be forwarded without being segmented before
1675 */
1676 if (skb_is_gso(skb))
1677 return true;
1678
1679 return false;
1680}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001681EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001682
Herbert Xua0265d22014-04-17 13:45:03 +08001683int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1684{
1685 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
1686 if (skb_copy_ubufs(skb, GFP_ATOMIC)) {
1687 atomic_long_inc(&dev->rx_dropped);
1688 kfree_skb(skb);
1689 return NET_RX_DROP;
1690 }
1691 }
1692
1693 if (unlikely(!is_skb_forwardable(dev, skb))) {
1694 atomic_long_inc(&dev->rx_dropped);
1695 kfree_skb(skb);
1696 return NET_RX_DROP;
1697 }
1698
1699 skb_scrub_packet(skb, true);
1700 skb->protocol = eth_type_trans(skb, dev);
1701
1702 return 0;
1703}
1704EXPORT_SYMBOL_GPL(__dev_forward_skb);
1705
Arnd Bergmann44540962009-11-26 06:07:08 +00001706/**
1707 * dev_forward_skb - loopback an skb to another netif
1708 *
1709 * @dev: destination network device
1710 * @skb: buffer to forward
1711 *
1712 * return values:
1713 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001714 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001715 *
1716 * dev_forward_skb can be used for injecting an skb from the
1717 * start_xmit function of one device into the receive queue
1718 * of another device.
1719 *
1720 * The receiving device may be in another namespace, so
1721 * we have to clear all information in the skb that could
1722 * impact namespace isolation.
1723 */
1724int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1725{
Herbert Xua0265d22014-04-17 13:45:03 +08001726 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001727}
1728EXPORT_SYMBOL_GPL(dev_forward_skb);
1729
Changli Gao71d9dec2010-12-15 19:57:25 +00001730static inline int deliver_skb(struct sk_buff *skb,
1731 struct packet_type *pt_prev,
1732 struct net_device *orig_dev)
1733{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001734 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1735 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001736 atomic_inc(&skb->users);
1737 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1738}
1739
Eric Leblondc0de08d2012-08-16 22:02:58 +00001740static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1741{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001742 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001743 return false;
1744
1745 if (ptype->id_match)
1746 return ptype->id_match(ptype, skb->sk);
1747 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1748 return true;
1749
1750 return false;
1751}
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753/*
1754 * Support routine. Sends outgoing frames to any network
1755 * taps currently in use.
1756 */
1757
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001758static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001761 struct sk_buff *skb2 = NULL;
1762 struct packet_type *pt_prev = NULL;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 rcu_read_lock();
1765 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1766 /* Never send packets back to the socket
1767 * they originated from - MvS (miquels@drinkel.ow.org)
1768 */
1769 if ((ptype->dev == dev || !ptype->dev) &&
Eric Leblondc0de08d2012-08-16 22:02:58 +00001770 (!skb_loop_sk(ptype, skb))) {
Changli Gao71d9dec2010-12-15 19:57:25 +00001771 if (pt_prev) {
1772 deliver_skb(skb2, pt_prev, skb->dev);
1773 pt_prev = ptype;
1774 continue;
1775 }
1776
1777 skb2 = skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (!skb2)
1779 break;
1780
Eric Dumazet70978182010-12-20 21:22:51 +00001781 net_timestamp_set(skb2);
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 /* skb->nh should be correctly
1784 set by sender, so that the second statement is
1785 just protection against buggy protocols.
1786 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001787 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001789 if (skb_network_header(skb2) < skb2->data ||
Simon Hormanced14f62013-05-28 20:34:25 +00001790 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00001791 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1792 ntohs(skb2->protocol),
1793 dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001794 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001797 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 skb2->pkt_type = PACKET_OUTGOING;
Changli Gao71d9dec2010-12-15 19:57:25 +00001799 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
1801 }
Changli Gao71d9dec2010-12-15 19:57:25 +00001802 if (pt_prev)
1803 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 rcu_read_unlock();
1805}
1806
Ben Hutchings2c530402012-07-10 10:55:09 +00001807/**
1808 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001809 * @dev: Network device
1810 * @txq: number of queues available
1811 *
1812 * If real_num_tx_queues is changed the tc mappings may no longer be
1813 * valid. To resolve this verify the tc mapping remains valid and if
1814 * not NULL the mapping. With no priorities mapping to this
1815 * offset/count pair it will no longer be used. In the worst case TC0
1816 * is invalid nothing can be done so disable priority mappings. If is
1817 * expected that drivers will fix this mapping if they can before
1818 * calling netif_set_real_num_tx_queues.
1819 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001820static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001821{
1822 int i;
1823 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1824
1825 /* If TC0 is invalidated disable TC mapping */
1826 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001827 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001828 dev->num_tc = 0;
1829 return;
1830 }
1831
1832 /* Invalidated prio to tc mappings set to TC0 */
1833 for (i = 1; i < TC_BITMASK + 1; i++) {
1834 int q = netdev_get_prio_tc_map(dev, i);
1835
1836 tc = &dev->tc_to_txq[q];
1837 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001838 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1839 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001840 netdev_set_prio_tc_map(dev, i, 0);
1841 }
1842 }
1843}
1844
Alexander Duyck537c00d2013-01-10 08:57:02 +00001845#ifdef CONFIG_XPS
1846static DEFINE_MUTEX(xps_map_mutex);
1847#define xmap_dereference(P) \
1848 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1849
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001850static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1851 int cpu, u16 index)
1852{
1853 struct xps_map *map = NULL;
1854 int pos;
1855
1856 if (dev_maps)
1857 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1858
1859 for (pos = 0; map && pos < map->len; pos++) {
1860 if (map->queues[pos] == index) {
1861 if (map->len > 1) {
1862 map->queues[pos] = map->queues[--map->len];
1863 } else {
1864 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1865 kfree_rcu(map, rcu);
1866 map = NULL;
1867 }
1868 break;
1869 }
1870 }
1871
1872 return map;
1873}
1874
Alexander Duyck024e9672013-01-10 08:57:46 +00001875static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001876{
1877 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00001878 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001879 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001880
1881 mutex_lock(&xps_map_mutex);
1882 dev_maps = xmap_dereference(dev->xps_maps);
1883
1884 if (!dev_maps)
1885 goto out_no_maps;
1886
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001887 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00001888 for (i = index; i < dev->num_tx_queues; i++) {
1889 if (!remove_xps_queue(dev_maps, cpu, i))
1890 break;
1891 }
1892 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001893 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001894 }
1895
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001896 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00001897 RCU_INIT_POINTER(dev->xps_maps, NULL);
1898 kfree_rcu(dev_maps, rcu);
1899 }
1900
Alexander Duyck024e9672013-01-10 08:57:46 +00001901 for (i = index; i < dev->num_tx_queues; i++)
1902 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
1903 NUMA_NO_NODE);
1904
Alexander Duyck537c00d2013-01-10 08:57:02 +00001905out_no_maps:
1906 mutex_unlock(&xps_map_mutex);
1907}
1908
Alexander Duyck01c5f862013-01-10 08:57:35 +00001909static struct xps_map *expand_xps_map(struct xps_map *map,
1910 int cpu, u16 index)
1911{
1912 struct xps_map *new_map;
1913 int alloc_len = XPS_MIN_MAP_ALLOC;
1914 int i, pos;
1915
1916 for (pos = 0; map && pos < map->len; pos++) {
1917 if (map->queues[pos] != index)
1918 continue;
1919 return map;
1920 }
1921
1922 /* Need to add queue to this CPU's existing map */
1923 if (map) {
1924 if (pos < map->alloc_len)
1925 return map;
1926
1927 alloc_len = map->alloc_len * 2;
1928 }
1929
1930 /* Need to allocate new map to store queue on this CPU's map */
1931 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
1932 cpu_to_node(cpu));
1933 if (!new_map)
1934 return NULL;
1935
1936 for (i = 0; i < pos; i++)
1937 new_map->queues[i] = map->queues[i];
1938 new_map->alloc_len = alloc_len;
1939 new_map->len = pos;
1940
1941 return new_map;
1942}
1943
Michael S. Tsirkin35735402013-10-02 09:14:06 +03001944int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
1945 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001946{
Alexander Duyck01c5f862013-01-10 08:57:35 +00001947 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001948 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001949 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00001950 int cpu, numa_node_id = -2;
1951 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001952
1953 mutex_lock(&xps_map_mutex);
1954
1955 dev_maps = xmap_dereference(dev->xps_maps);
1956
Alexander Duyck01c5f862013-01-10 08:57:35 +00001957 /* allocate memory for queue storage */
1958 for_each_online_cpu(cpu) {
1959 if (!cpumask_test_cpu(cpu, mask))
1960 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001961
Alexander Duyck01c5f862013-01-10 08:57:35 +00001962 if (!new_dev_maps)
1963 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00001964 if (!new_dev_maps) {
1965 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00001966 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00001967 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00001968
1969 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
1970 NULL;
1971
1972 map = expand_xps_map(map, cpu, index);
1973 if (!map)
1974 goto error;
1975
1976 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
1977 }
1978
1979 if (!new_dev_maps)
1980 goto out_no_new_maps;
1981
1982 for_each_possible_cpu(cpu) {
1983 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
1984 /* add queue to CPU maps */
1985 int pos = 0;
1986
1987 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
1988 while ((pos < map->len) && (map->queues[pos] != index))
1989 pos++;
1990
1991 if (pos == map->len)
1992 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001993#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00001994 if (numa_node_id == -2)
1995 numa_node_id = cpu_to_node(cpu);
1996 else if (numa_node_id != cpu_to_node(cpu))
1997 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001998#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00001999 } else if (dev_maps) {
2000 /* fill in the new device map from the old device map */
2001 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2002 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002003 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002004
Alexander Duyck537c00d2013-01-10 08:57:02 +00002005 }
2006
Alexander Duyck01c5f862013-01-10 08:57:35 +00002007 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2008
Alexander Duyck537c00d2013-01-10 08:57:02 +00002009 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002010 if (dev_maps) {
2011 for_each_possible_cpu(cpu) {
2012 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2013 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2014 if (map && map != new_map)
2015 kfree_rcu(map, rcu);
2016 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002017
Alexander Duyck537c00d2013-01-10 08:57:02 +00002018 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002019 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002020
Alexander Duyck01c5f862013-01-10 08:57:35 +00002021 dev_maps = new_dev_maps;
2022 active = true;
2023
2024out_no_new_maps:
2025 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002026 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2027 (numa_node_id >= 0) ? numa_node_id :
2028 NUMA_NO_NODE);
2029
Alexander Duyck01c5f862013-01-10 08:57:35 +00002030 if (!dev_maps)
2031 goto out_no_maps;
2032
2033 /* removes queue from unused CPUs */
2034 for_each_possible_cpu(cpu) {
2035 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2036 continue;
2037
2038 if (remove_xps_queue(dev_maps, cpu, index))
2039 active = true;
2040 }
2041
2042 /* free map if not active */
2043 if (!active) {
2044 RCU_INIT_POINTER(dev->xps_maps, NULL);
2045 kfree_rcu(dev_maps, rcu);
2046 }
2047
2048out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002049 mutex_unlock(&xps_map_mutex);
2050
2051 return 0;
2052error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002053 /* remove any maps that we added */
2054 for_each_possible_cpu(cpu) {
2055 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2056 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2057 NULL;
2058 if (new_map && new_map != map)
2059 kfree(new_map);
2060 }
2061
Alexander Duyck537c00d2013-01-10 08:57:02 +00002062 mutex_unlock(&xps_map_mutex);
2063
Alexander Duyck537c00d2013-01-10 08:57:02 +00002064 kfree(new_dev_maps);
2065 return -ENOMEM;
2066}
2067EXPORT_SYMBOL(netif_set_xps_queue);
2068
2069#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002070/*
2071 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2072 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2073 */
Tom Herberte6484932010-10-18 18:04:39 +00002074int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002075{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002076 int rc;
2077
Tom Herberte6484932010-10-18 18:04:39 +00002078 if (txq < 1 || txq > dev->num_tx_queues)
2079 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002080
Ben Hutchings5c565802011-02-15 19:39:21 +00002081 if (dev->reg_state == NETREG_REGISTERED ||
2082 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002083 ASSERT_RTNL();
2084
Tom Herbert1d24eb42010-11-21 13:17:27 +00002085 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2086 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002087 if (rc)
2088 return rc;
2089
John Fastabend4f57c082011-01-17 08:06:04 +00002090 if (dev->num_tc)
2091 netif_setup_tc(dev, txq);
2092
Alexander Duyck024e9672013-01-10 08:57:46 +00002093 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002094 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002095#ifdef CONFIG_XPS
2096 netif_reset_xps_queues_gt(dev, txq);
2097#endif
2098 }
John Fastabendf0796d52010-07-01 13:21:57 +00002099 }
Tom Herberte6484932010-10-18 18:04:39 +00002100
2101 dev->real_num_tx_queues = txq;
2102 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002103}
2104EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002105
Michael Daltona953be52014-01-16 22:23:28 -08002106#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002107/**
2108 * netif_set_real_num_rx_queues - set actual number of RX queues used
2109 * @dev: Network device
2110 * @rxq: Actual number of RX queues
2111 *
2112 * This must be called either with the rtnl_lock held or before
2113 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002114 * negative error code. If called before registration, it always
2115 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002116 */
2117int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2118{
2119 int rc;
2120
Tom Herbertbd25fa72010-10-18 18:00:16 +00002121 if (rxq < 1 || rxq > dev->num_rx_queues)
2122 return -EINVAL;
2123
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002124 if (dev->reg_state == NETREG_REGISTERED) {
2125 ASSERT_RTNL();
2126
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002127 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2128 rxq);
2129 if (rc)
2130 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002131 }
2132
2133 dev->real_num_rx_queues = rxq;
2134 return 0;
2135}
2136EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2137#endif
2138
Ben Hutchings2c530402012-07-10 10:55:09 +00002139/**
2140 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002141 *
2142 * This routine should set an upper limit on the number of RSS queues
2143 * used by default by multiqueue devices.
2144 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002145int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002146{
2147 return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
2148}
2149EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2150
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002151static inline void __netif_reschedule(struct Qdisc *q)
2152{
2153 struct softnet_data *sd;
2154 unsigned long flags;
2155
2156 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002157 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002158 q->next_sched = NULL;
2159 *sd->output_queue_tailp = q;
2160 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002161 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2162 local_irq_restore(flags);
2163}
2164
David S. Miller37437bb2008-07-16 02:15:04 -07002165void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002166{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002167 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2168 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002169}
2170EXPORT_SYMBOL(__netif_schedule);
2171
Eric Dumazete6247022013-12-05 04:45:08 -08002172struct dev_kfree_skb_cb {
2173 enum skb_free_reason reason;
2174};
2175
2176static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002177{
Eric Dumazete6247022013-12-05 04:45:08 -08002178 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002179}
Denis Vlasenko56079432006-03-29 15:57:29 -08002180
John Fastabend46e5da42014-09-12 20:04:52 -07002181void netif_schedule_queue(struct netdev_queue *txq)
2182{
2183 rcu_read_lock();
2184 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2185 struct Qdisc *q = rcu_dereference(txq->qdisc);
2186
2187 __netif_schedule(q);
2188 }
2189 rcu_read_unlock();
2190}
2191EXPORT_SYMBOL(netif_schedule_queue);
2192
2193/**
2194 * netif_wake_subqueue - allow sending packets on subqueue
2195 * @dev: network device
2196 * @queue_index: sub queue index
2197 *
2198 * Resume individual transmit queue of a device with multiple transmit queues.
2199 */
2200void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
2201{
2202 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
2203
2204 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state)) {
2205 struct Qdisc *q;
2206
2207 rcu_read_lock();
2208 q = rcu_dereference(txq->qdisc);
2209 __netif_schedule(q);
2210 rcu_read_unlock();
2211 }
2212}
2213EXPORT_SYMBOL(netif_wake_subqueue);
2214
2215void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2216{
2217 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2218 struct Qdisc *q;
2219
2220 rcu_read_lock();
2221 q = rcu_dereference(dev_queue->qdisc);
2222 __netif_schedule(q);
2223 rcu_read_unlock();
2224 }
2225}
2226EXPORT_SYMBOL(netif_tx_wake_queue);
2227
Eric Dumazete6247022013-12-05 04:45:08 -08002228void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2229{
2230 unsigned long flags;
2231
2232 if (likely(atomic_read(&skb->users) == 1)) {
2233 smp_rmb();
2234 atomic_set(&skb->users, 0);
2235 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2236 return;
2237 }
2238 get_kfree_skb_cb(skb)->reason = reason;
2239 local_irq_save(flags);
2240 skb->next = __this_cpu_read(softnet_data.completion_queue);
2241 __this_cpu_write(softnet_data.completion_queue, skb);
2242 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2243 local_irq_restore(flags);
2244}
2245EXPORT_SYMBOL(__dev_kfree_skb_irq);
2246
2247void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002248{
2249 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002250 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002251 else
2252 dev_kfree_skb(skb);
2253}
Eric Dumazete6247022013-12-05 04:45:08 -08002254EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002255
2256
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002257/**
2258 * netif_device_detach - mark device as removed
2259 * @dev: network device
2260 *
2261 * Mark device as removed from system and therefore no longer available.
2262 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002263void netif_device_detach(struct net_device *dev)
2264{
2265 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2266 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002267 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002268 }
2269}
2270EXPORT_SYMBOL(netif_device_detach);
2271
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002272/**
2273 * netif_device_attach - mark device as attached
2274 * @dev: network device
2275 *
2276 * Mark device as attached from system and restart if needed.
2277 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002278void netif_device_attach(struct net_device *dev)
2279{
2280 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2281 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002282 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002283 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002284 }
2285}
2286EXPORT_SYMBOL(netif_device_attach);
2287
Ben Hutchings36c92472012-01-17 07:57:56 +00002288static void skb_warn_bad_offload(const struct sk_buff *skb)
2289{
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002290 static const netdev_features_t null_features = 0;
Ben Hutchings36c92472012-01-17 07:57:56 +00002291 struct net_device *dev = skb->dev;
2292 const char *driver = "";
2293
Ben Greearc846ad92013-04-19 10:45:52 +00002294 if (!net_ratelimit())
2295 return;
2296
Ben Hutchings36c92472012-01-17 07:57:56 +00002297 if (dev && dev->dev.parent)
2298 driver = dev_driver_string(dev->dev.parent);
2299
2300 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2301 "gso_type=%d ip_summed=%d\n",
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002302 driver, dev ? &dev->features : &null_features,
2303 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002304 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2305 skb_shinfo(skb)->gso_type, skb->ip_summed);
2306}
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308/*
2309 * Invalidate hardware checksum when packet is to be mangled, and
2310 * complete checksum manually on outgoing path.
2311 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002312int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
Al Virod3bc23e2006-11-14 21:24:49 -08002314 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002315 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Patrick McHardy84fa7932006-08-29 16:44:56 -07002317 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002318 goto out_set_summed;
2319
2320 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002321 skb_warn_bad_offload(skb);
2322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324
Eric Dumazetcef401d2013-01-25 20:34:37 +00002325 /* Before computing a checksum, we should make sure no frag could
2326 * be modified by an external entity : checksum could be wrong.
2327 */
2328 if (skb_has_shared_frag(skb)) {
2329 ret = __skb_linearize(skb);
2330 if (ret)
2331 goto out;
2332 }
2333
Michał Mirosław55508d62010-12-14 15:24:08 +00002334 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002335 BUG_ON(offset >= skb_headlen(skb));
2336 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2337
2338 offset += skb->csum_offset;
2339 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2340
2341 if (skb_cloned(skb) &&
2342 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2344 if (ret)
2345 goto out;
2346 }
2347
Herbert Xua0308472007-10-15 01:47:15 -07002348 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07002349out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002351out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return ret;
2353}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002354EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Vlad Yasevich53d64712014-03-27 17:26:18 -04002356__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002357{
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002358 unsigned int vlan_depth = skb->mac_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002359 __be16 type = skb->protocol;
2360
Pravin B Shelar19acc322013-05-07 20:41:07 +00002361 /* Tunnel gso handlers can set protocol to ethernet. */
2362 if (type == htons(ETH_P_TEB)) {
2363 struct ethhdr *eth;
2364
2365 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2366 return 0;
2367
2368 eth = (struct ethhdr *)skb_mac_header(skb);
2369 type = eth->h_proto;
2370 }
2371
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002372 /* if skb->protocol is 802.1Q/AD then the header should already be
2373 * present at mac_len - VLAN_HLEN (if mac_len > 0), or at
2374 * ETH_HLEN otherwise
2375 */
2376 if (type == htons(ETH_P_8021Q) || type == htons(ETH_P_8021AD)) {
2377 if (vlan_depth) {
Thomas Graf80019d32014-07-30 02:31:08 +02002378 if (WARN_ON(vlan_depth < VLAN_HLEN))
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002379 return 0;
2380 vlan_depth -= VLAN_HLEN;
2381 } else {
2382 vlan_depth = ETH_HLEN;
2383 }
2384 do {
2385 struct vlan_hdr *vh;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002386
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002387 if (unlikely(!pskb_may_pull(skb,
2388 vlan_depth + VLAN_HLEN)))
2389 return 0;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002390
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002391 vh = (struct vlan_hdr *)(skb->data + vlan_depth);
2392 type = vh->h_vlan_encapsulated_proto;
2393 vlan_depth += VLAN_HLEN;
2394 } while (type == htons(ETH_P_8021Q) ||
2395 type == htons(ETH_P_8021AD));
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002396 }
2397
Vlad Yasevich53d64712014-03-27 17:26:18 -04002398 *depth = vlan_depth;
2399
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002400 return type;
2401}
2402
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002403/**
2404 * skb_mac_gso_segment - mac layer segmentation handler.
2405 * @skb: buffer to segment
2406 * @features: features for the output path (see dev->features)
2407 */
2408struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2409 netdev_features_t features)
2410{
2411 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2412 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002413 int vlan_depth = skb->mac_len;
2414 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002415
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002416 if (unlikely(!type))
2417 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002418
Vlad Yasevich53d64712014-03-27 17:26:18 -04002419 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002420
2421 rcu_read_lock();
2422 list_for_each_entry_rcu(ptype, &offload_base, list) {
2423 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002424 segs = ptype->callbacks.gso_segment(skb, features);
2425 break;
2426 }
2427 }
2428 rcu_read_unlock();
2429
2430 __skb_push(skb, skb->data - skb_mac_header(skb));
2431
2432 return segs;
2433}
2434EXPORT_SYMBOL(skb_mac_gso_segment);
2435
2436
Cong Wang12b00042013-02-05 16:36:38 +00002437/* openvswitch calls this on rx path, so we need a different check.
2438 */
2439static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2440{
2441 if (tx_path)
2442 return skb->ip_summed != CHECKSUM_PARTIAL;
2443 else
2444 return skb->ip_summed == CHECKSUM_NONE;
2445}
2446
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002447/**
Cong Wang12b00042013-02-05 16:36:38 +00002448 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002449 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002450 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002451 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002452 *
2453 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002454 *
2455 * It may return NULL if the skb requires no segmentation. This is
2456 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002457 */
Cong Wang12b00042013-02-05 16:36:38 +00002458struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2459 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002460{
Cong Wang12b00042013-02-05 16:36:38 +00002461 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002462 int err;
2463
Ben Hutchings36c92472012-01-17 07:57:56 +00002464 skb_warn_bad_offload(skb);
Herbert Xu67fd1a72009-01-19 16:26:44 -08002465
françois romieua40e0a62014-07-15 23:55:35 +02002466 err = skb_cow_head(skb, 0);
2467 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002468 return ERR_PTR(err);
2469 }
2470
Pravin B Shelar68c33162013-02-14 14:02:41 +00002471 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002472 SKB_GSO_CB(skb)->encap_level = 0;
2473
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002474 skb_reset_mac_header(skb);
2475 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002476
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002477 return skb_mac_gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002478}
Cong Wang12b00042013-02-05 16:36:38 +00002479EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002480
Herbert Xufb286bb2005-11-10 13:01:24 -08002481/* Take action when hardware reception checksum errors are detected. */
2482#ifdef CONFIG_BUG
2483void netdev_rx_csum_fault(struct net_device *dev)
2484{
2485 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002486 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002487 dump_stack();
2488 }
2489}
2490EXPORT_SYMBOL(netdev_rx_csum_fault);
2491#endif
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493/* Actually, we should eliminate this check as soon as we know, that:
2494 * 1. IOMMU is present and allows to map all the memory.
2495 * 2. No high memory really exists on this machine.
2496 */
2497
Florian Westphalc1e756b2014-05-05 15:00:44 +02002498static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002500#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002502 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002503 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2504 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2505 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002506 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002507 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002510 if (PCI_DMA_BUS_IS_PHYS) {
2511 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Eric Dumazet9092c652010-04-02 13:34:49 -07002513 if (!pdev)
2514 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002515 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002516 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2517 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002518 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2519 return 1;
2520 }
2521 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002522#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 return 0;
2524}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Simon Horman3b392dd2014-06-04 08:53:17 +09002526/* If MPLS offload request, verify we are testing hardware MPLS features
2527 * instead of standard features for the netdev.
2528 */
2529#ifdef CONFIG_NET_MPLS_GSO
2530static netdev_features_t net_mpls_features(struct sk_buff *skb,
2531 netdev_features_t features,
2532 __be16 type)
2533{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002534 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002535 features &= skb->dev->mpls_features;
2536
2537 return features;
2538}
2539#else
2540static netdev_features_t net_mpls_features(struct sk_buff *skb,
2541 netdev_features_t features,
2542 __be16 type)
2543{
2544 return features;
2545}
2546#endif
2547
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002548static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002549 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002550{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002551 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002552 __be16 type;
2553
2554 type = skb_network_protocol(skb, &tmp);
2555 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002556
Ed Cashinc0d680e2012-09-19 15:49:00 +00002557 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002558 !can_checksum_protocol(features, type)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002559 features &= ~NETIF_F_ALL_CSUM;
Florian Westphalc1e756b2014-05-05 15:00:44 +02002560 } else if (illegal_highdma(skb->dev, skb)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002561 features &= ~NETIF_F_SG;
2562 }
2563
2564 return features;
2565}
2566
Florian Westphalc1e756b2014-05-05 15:00:44 +02002567netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002568{
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002569 const struct net_device *dev = skb->dev;
2570 netdev_features_t features = dev->features;
2571 u16 gso_segs = skb_shinfo(skb)->gso_segs;
Jesse Gross58e998c2010-10-29 12:14:55 +00002572 __be16 protocol = skb->protocol;
2573
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002574 if (gso_segs > dev->gso_max_segs || gso_segs < dev->gso_min_segs)
Ben Hutchings30b678d2012-07-30 15:57:00 +00002575 features &= ~NETIF_F_GSO_MASK;
2576
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002577 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD)) {
Jesse Gross58e998c2010-10-29 12:14:55 +00002578 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
2579 protocol = veh->h_vlan_encapsulated_proto;
Jesse Grossf01a5232011-01-09 06:23:31 +00002580 } else if (!vlan_tx_tag_present(skb)) {
Florian Westphalc1e756b2014-05-05 15:00:44 +02002581 return harmonize_features(skb, features);
Jesse Grossf01a5232011-01-09 06:23:31 +00002582 }
Jesse Gross58e998c2010-10-29 12:14:55 +00002583
Michal Kubečekdb115032014-08-25 15:16:22 +02002584 features = netdev_intersect_features(features,
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002585 dev->vlan_features |
Michal Kubečekdb115032014-08-25 15:16:22 +02002586 NETIF_F_HW_VLAN_CTAG_TX |
2587 NETIF_F_HW_VLAN_STAG_TX);
Jesse Grossf01a5232011-01-09 06:23:31 +00002588
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -07002589 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD))
Michal Kubečekdb115032014-08-25 15:16:22 +02002590 features = netdev_intersect_features(features,
2591 NETIF_F_SG |
2592 NETIF_F_HIGHDMA |
2593 NETIF_F_FRAGLIST |
2594 NETIF_F_GEN_CSUM |
2595 NETIF_F_HW_VLAN_CTAG_TX |
2596 NETIF_F_HW_VLAN_STAG_TX);
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -07002597
Florian Westphalc1e756b2014-05-05 15:00:44 +02002598 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002599}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002600EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002601
David S. Miller2ea25512014-08-29 21:10:01 -07002602static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002603 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002604{
David S. Miller2ea25512014-08-29 21:10:01 -07002605 unsigned int len;
2606 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002607
David S. Miller2ea25512014-08-29 21:10:01 -07002608 if (!list_empty(&ptype_all))
2609 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002610
David S. Miller2ea25512014-08-29 21:10:01 -07002611 len = skb->len;
2612 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002613 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002614 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002615
Patrick McHardy572a9d72009-11-10 06:14:14 +00002616 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002617}
David S. Miller2ea25512014-08-29 21:10:01 -07002618
David S. Miller8dcda222014-09-01 15:06:40 -07002619struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
2620 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07002621{
2622 struct sk_buff *skb = first;
2623 int rc = NETDEV_TX_OK;
2624
2625 while (skb) {
2626 struct sk_buff *next = skb->next;
2627
2628 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07002629 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07002630 if (unlikely(!dev_xmit_complete(rc))) {
2631 skb->next = next;
2632 goto out;
2633 }
2634
2635 skb = next;
2636 if (netif_xmit_stopped(txq) && skb) {
2637 rc = NETDEV_TX_BUSY;
2638 break;
2639 }
2640 }
2641
2642out:
2643 *ret = rc;
2644 return skb;
2645}
2646
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07002647static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
2648 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07002649{
2650 if (vlan_tx_tag_present(skb) &&
2651 !vlan_hw_offload_capable(features, skb->vlan_proto)) {
2652 skb = __vlan_put_tag(skb, skb->vlan_proto,
2653 vlan_tx_tag_get(skb));
2654 if (skb)
2655 skb->vlan_tci = 0;
2656 }
2657 return skb;
2658}
2659
Eric Dumazet55a93b32014-10-03 15:31:07 -07002660static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07002661{
2662 netdev_features_t features;
2663
2664 if (skb->next)
2665 return skb;
2666
David S. Millereae3f882014-08-30 15:17:13 -07002667 features = netif_skb_features(skb);
2668 skb = validate_xmit_vlan(skb, features);
2669 if (unlikely(!skb))
2670 goto out_null;
2671
2672 /* If encapsulation offload request, verify we are testing
2673 * hardware encapsulation features instead of standard
2674 * features for the netdev
2675 */
2676 if (skb->encapsulation)
2677 features &= dev->hw_enc_features;
2678
Tom Herbert04ffcb22014-10-14 15:19:06 -07002679 if (netif_needs_gso(dev, skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07002680 struct sk_buff *segs;
2681
2682 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08002683 if (IS_ERR(segs)) {
David S. Millerce937182014-08-30 19:22:20 -07002684 segs = NULL;
Jason Wangcecda692014-09-19 16:04:38 +08002685 } else if (segs) {
2686 consume_skb(skb);
2687 skb = segs;
2688 }
David S. Millereae3f882014-08-30 15:17:13 -07002689 } else {
2690 if (skb_needs_linearize(skb, features) &&
2691 __skb_linearize(skb))
2692 goto out_kfree_skb;
2693
2694 /* If packet is not checksummed and device does not
2695 * support checksumming for this protocol, complete
2696 * checksumming here.
2697 */
2698 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2699 if (skb->encapsulation)
2700 skb_set_inner_transport_header(skb,
2701 skb_checksum_start_offset(skb));
2702 else
2703 skb_set_transport_header(skb,
2704 skb_checksum_start_offset(skb));
2705 if (!(features & NETIF_F_ALL_CSUM) &&
2706 skb_checksum_help(skb))
2707 goto out_kfree_skb;
2708 }
2709 }
2710
2711 return skb;
2712
2713out_kfree_skb:
2714 kfree_skb(skb);
2715out_null:
2716 return NULL;
2717}
2718
Eric Dumazet55a93b32014-10-03 15:31:07 -07002719struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
2720{
2721 struct sk_buff *next, *head = NULL, *tail;
2722
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07002723 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07002724 next = skb->next;
2725 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07002726
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07002727 /* in case skb wont be segmented, point to itself */
2728 skb->prev = skb;
2729
2730 skb = validate_xmit_skb(skb, dev);
2731 if (!skb)
2732 continue;
2733
2734 if (!head)
2735 head = skb;
2736 else
2737 tail->next = skb;
2738 /* If skb was segmented, skb->prev points to
2739 * the last segment. If not, it still contains skb.
2740 */
2741 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07002742 }
2743 return head;
2744}
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002745
Eric Dumazet1def9232013-01-10 12:36:42 +00002746static void qdisc_pkt_len_init(struct sk_buff *skb)
2747{
2748 const struct skb_shared_info *shinfo = skb_shinfo(skb);
2749
2750 qdisc_skb_cb(skb)->pkt_len = skb->len;
2751
2752 /* To get more precise estimation of bytes sent on wire,
2753 * we add to pkt_len the headers size of all segments
2754 */
2755 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08002756 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00002757 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00002758
Eric Dumazet757b8b12013-01-15 21:14:21 -08002759 /* mac layer + network layer */
2760 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
2761
2762 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00002763 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
2764 hdr_len += tcp_hdrlen(skb);
2765 else
2766 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00002767
2768 if (shinfo->gso_type & SKB_GSO_DODGY)
2769 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
2770 shinfo->gso_size);
2771
2772 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00002773 }
2774}
2775
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002776static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
2777 struct net_device *dev,
2778 struct netdev_queue *txq)
2779{
2780 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002781 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002782 int rc;
2783
Eric Dumazet1def9232013-01-10 12:36:42 +00002784 qdisc_pkt_len_init(skb);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002785 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002786 /*
2787 * Heuristic to force contended enqueues to serialize on a
2788 * separate lock before trying to get qdisc main lock.
Ying Xue9bf2b8c2014-06-26 15:56:31 +08002789 * This permits __QDISC___STATE_RUNNING owner to get the lock more
2790 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07002791 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00002792 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002793 if (unlikely(contended))
2794 spin_lock(&q->busylock);
2795
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002796 spin_lock(root_lock);
2797 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2798 kfree_skb(skb);
2799 rc = NET_XMIT_DROP;
2800 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07002801 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002802 /*
2803 * This is a work-conserving queue; there are no old skbs
2804 * waiting to be sent out; and the qdisc is not running -
2805 * xmit the skb directly.
2806 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002807
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002808 qdisc_bstats_update(q, skb);
2809
Eric Dumazet55a93b32014-10-03 15:31:07 -07002810 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07002811 if (unlikely(contended)) {
2812 spin_unlock(&q->busylock);
2813 contended = false;
2814 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002815 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002816 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07002817 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002818
2819 rc = NET_XMIT_SUCCESS;
2820 } else {
Eric Dumazeta2da5702011-01-20 03:48:19 +00002821 rc = q->enqueue(skb, q) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07002822 if (qdisc_run_begin(q)) {
2823 if (unlikely(contended)) {
2824 spin_unlock(&q->busylock);
2825 contended = false;
2826 }
2827 __qdisc_run(q);
2828 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002829 }
2830 spin_unlock(root_lock);
Eric Dumazet79640a42010-06-02 05:09:29 -07002831 if (unlikely(contended))
2832 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002833 return rc;
2834}
2835
Daniel Borkmann86f85152013-12-29 17:27:11 +01002836#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00002837static void skb_update_prio(struct sk_buff *skb)
2838{
Igor Maravic6977a792011-11-25 07:44:54 +00002839 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00002840
Eric Dumazet91c68ce2012-07-08 21:45:10 +00002841 if (!skb->priority && skb->sk && map) {
2842 unsigned int prioidx = skb->sk->sk_cgrp_prioidx;
2843
2844 if (prioidx < map->priomap_len)
2845 skb->priority = map->priomap[prioidx];
2846 }
Neil Horman5bc14212011-11-22 05:10:51 +00002847}
2848#else
2849#define skb_update_prio(skb)
2850#endif
2851
Eric Dumazet745e20f2010-09-29 13:23:09 -07002852static DEFINE_PER_CPU(int, xmit_recursion);
David S. Miller11a766c2010-10-25 12:51:55 -07002853#define RECURSION_LIMIT 10
Eric Dumazet745e20f2010-09-29 13:23:09 -07002854
Dave Jonesd29f7492008-07-22 14:09:06 -07002855/**
Michel Machado95603e22012-06-12 10:16:35 +00002856 * dev_loopback_xmit - loop back @skb
2857 * @skb: buffer to transmit
2858 */
2859int dev_loopback_xmit(struct sk_buff *skb)
2860{
2861 skb_reset_mac_header(skb);
2862 __skb_pull(skb, skb_network_offset(skb));
2863 skb->pkt_type = PACKET_LOOPBACK;
2864 skb->ip_summed = CHECKSUM_UNNECESSARY;
2865 WARN_ON(!skb_dst(skb));
2866 skb_dst_force(skb);
2867 netif_rx_ni(skb);
2868 return 0;
2869}
2870EXPORT_SYMBOL(dev_loopback_xmit);
2871
2872/**
Jason Wang9d08dd32014-01-20 11:25:13 +08002873 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07002874 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08002875 * @accel_priv: private data used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07002876 *
2877 * Queue a buffer for transmission to a network device. The caller must
2878 * have set the device and priority and built the buffer before calling
2879 * this function. The function can be called from an interrupt.
2880 *
2881 * A negative errno code is returned on a failure. A success does not
2882 * guarantee the frame will be transmitted as it may be dropped due
2883 * to congestion or traffic shaping.
2884 *
2885 * -----------------------------------------------------------------------------------
2886 * I notice this method can also return errors from the queue disciplines,
2887 * including NET_XMIT_DROP, which is a positive value. So, errors can also
2888 * be positive.
2889 *
2890 * Regardless of the return value, the skb is consumed, so it is currently
2891 * difficult to retry a send to this method. (You can bump the ref count
2892 * before sending to hold a reference for retry if you are careful.)
2893 *
2894 * When calling this method, interrupts MUST be enabled. This is because
2895 * the BH enable code must have IRQs enabled so that it will not deadlock.
2896 * --BLG
2897 */
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05302898static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
2900 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07002901 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 struct Qdisc *q;
2903 int rc = -ENOMEM;
2904
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00002905 skb_reset_mac_header(skb);
2906
Willem de Bruijne7fd2882014-08-04 22:11:48 -04002907 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
2908 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
2909
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002910 /* Disable soft irqs for various locks below. Also
2911 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002913 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Neil Horman5bc14212011-11-22 05:10:51 +00002915 skb_update_prio(skb);
2916
Eric Dumazet02875872014-10-05 18:38:35 -07002917 /* If device/qdisc don't need skb->dst, release it right now while
2918 * its hot in this cpu cache.
2919 */
2920 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
2921 skb_dst_drop(skb);
2922 else
2923 skb_dst_force(skb);
2924
Jason Wangf663dd92014-01-10 16:18:26 +08002925 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08002926 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07002927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928#ifdef CONFIG_NET_CLS_ACT
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002929 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930#endif
Koki Sanagicf66ba52010-08-23 18:45:02 +09002931 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002933 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07002934 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
2936
2937 /* The device has no queue. Common case for software devices:
2938 loopback, all the sorts of tunnels...
2939
Herbert Xu932ff272006-06-09 12:20:56 -07002940 Really, it is unlikely that netif_tx_lock protection is necessary
2941 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 counters.)
2943 However, it is possible, that they rely on protection
2944 made by us here.
2945
2946 Check this and shot the lock. It is not prone from deadlocks.
2947 Either shot noqueue qdisc, it is even simpler 8)
2948 */
2949 if (dev->flags & IFF_UP) {
2950 int cpu = smp_processor_id(); /* ok because BHs are off */
2951
David S. Millerc773e842008-07-08 23:13:53 -07002952 if (txq->xmit_lock_owner != cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Eric Dumazet745e20f2010-09-29 13:23:09 -07002954 if (__this_cpu_read(xmit_recursion) > RECURSION_LIMIT)
2955 goto recursion_alert;
2956
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02002957 skb = validate_xmit_skb(skb, dev);
2958 if (!skb)
2959 goto drop;
2960
David S. Millerc773e842008-07-08 23:13:53 -07002961 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Tom Herbert734664982011-11-28 16:32:44 +00002963 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07002964 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07002965 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07002966 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00002967 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07002968 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 goto out;
2970 }
2971 }
David S. Millerc773e842008-07-08 23:13:53 -07002972 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00002973 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
2974 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 } else {
2976 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07002977 * unfortunately
2978 */
2979recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00002980 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
2981 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 }
2983 }
2984
2985 rc = -ENETDOWN;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02002986drop:
Herbert Xud4828d82006-06-22 02:28:18 -07002987 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Eric Dumazet015f0682014-03-27 08:45:56 -07002989 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02002990 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 return rc;
2992out:
Herbert Xud4828d82006-06-22 02:28:18 -07002993 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 return rc;
2995}
Jason Wangf663dd92014-01-10 16:18:26 +08002996
2997int dev_queue_xmit(struct sk_buff *skb)
2998{
2999 return __dev_queue_xmit(skb, NULL);
3000}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003001EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Jason Wangf663dd92014-01-10 16:18:26 +08003003int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3004{
3005 return __dev_queue_xmit(skb, accel_priv);
3006}
3007EXPORT_SYMBOL(dev_queue_xmit_accel);
3008
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
3010/*=======================================================================
3011 Receiver routines
3012 =======================================================================*/
3013
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003014int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003015EXPORT_SYMBOL(netdev_max_backlog);
3016
Eric Dumazet3b098e22010-05-15 23:57:10 -07003017int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003018int netdev_budget __read_mostly = 300;
3019int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003021/* Called with irq disabled */
3022static inline void ____napi_schedule(struct softnet_data *sd,
3023 struct napi_struct *napi)
3024{
3025 list_add_tail(&napi->poll_list, &sd->poll_list);
3026 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3027}
3028
Eric Dumazetdf334542010-03-24 19:13:54 +00003029#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003030
3031/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003032struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003033EXPORT_SYMBOL(rps_sock_flow_table);
3034
Ingo Molnarc5905af2012-02-24 08:31:31 +01003035struct static_key rps_needed __read_mostly;
Eric Dumazetadc93002011-11-17 03:13:26 +00003036
Ben Hutchingsc4454772011-01-19 11:03:53 +00003037static struct rps_dev_flow *
3038set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3039 struct rps_dev_flow *rflow, u16 next_cpu)
3040{
Ben Hutchings09994d12011-10-03 04:42:46 +00003041 if (next_cpu != RPS_NO_CPU) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003042#ifdef CONFIG_RFS_ACCEL
3043 struct netdev_rx_queue *rxqueue;
3044 struct rps_dev_flow_table *flow_table;
3045 struct rps_dev_flow *old_rflow;
3046 u32 flow_id;
3047 u16 rxq_index;
3048 int rc;
3049
3050 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003051 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3052 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003053 goto out;
3054 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3055 if (rxq_index == skb_get_rx_queue(skb))
3056 goto out;
3057
3058 rxqueue = dev->_rx + rxq_index;
3059 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3060 if (!flow_table)
3061 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003062 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003063 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3064 rxq_index, flow_id);
3065 if (rc < 0)
3066 goto out;
3067 old_rflow = rflow;
3068 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003069 rflow->filter = rc;
3070 if (old_rflow->filter == rflow->filter)
3071 old_rflow->filter = RPS_NO_FILTER;
3072 out:
3073#endif
3074 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003075 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003076 }
3077
Ben Hutchings09994d12011-10-03 04:42:46 +00003078 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003079 return rflow;
3080}
3081
Tom Herbert0a9627f2010-03-16 08:03:29 +00003082/*
3083 * get_rps_cpu is called from netif_receive_skb and returns the target
3084 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003085 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003086 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003087static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3088 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003089{
Tom Herbert0a9627f2010-03-16 08:03:29 +00003090 struct netdev_rx_queue *rxqueue;
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003091 struct rps_map *map;
Tom Herbertfec5e652010-04-16 16:01:27 -07003092 struct rps_dev_flow_table *flow_table;
3093 struct rps_sock_flow_table *sock_flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003094 int cpu = -1;
Tom Herbertfec5e652010-04-16 16:01:27 -07003095 u16 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003096 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003097
Tom Herbert0a9627f2010-03-16 08:03:29 +00003098 if (skb_rx_queue_recorded(skb)) {
3099 u16 index = skb_get_rx_queue(skb);
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003100 if (unlikely(index >= dev->real_num_rx_queues)) {
3101 WARN_ONCE(dev->real_num_rx_queues > 1,
3102 "%s received packet on queue %u, but number "
3103 "of RX queues is %u\n",
3104 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003105 goto done;
3106 }
3107 rxqueue = dev->_rx + index;
3108 } else
3109 rxqueue = dev->_rx;
3110
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003111 map = rcu_dereference(rxqueue->rps_map);
3112 if (map) {
Tom Herbert85875232011-01-31 16:23:42 -08003113 if (map->len == 1 &&
Eric Dumazet33d480c2011-08-11 19:30:52 +00003114 !rcu_access_pointer(rxqueue->rps_flow_table)) {
Changli Gao6febfca2010-09-03 23:12:37 +00003115 tcpu = map->cpus[0];
3116 if (cpu_online(tcpu))
3117 cpu = tcpu;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003118 goto done;
Eric Dumazetb249dcb2010-04-19 21:56:38 +00003119 }
Eric Dumazet33d480c2011-08-11 19:30:52 +00003120 } else if (!rcu_access_pointer(rxqueue->rps_flow_table)) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003121 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003122 }
3123
Changli Gao2d47b452010-08-17 19:00:56 +00003124 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003125 hash = skb_get_hash(skb);
3126 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003127 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003128
Tom Herbertfec5e652010-04-16 16:01:27 -07003129 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3130 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3131 if (flow_table && sock_flow_table) {
3132 u16 next_cpu;
3133 struct rps_dev_flow *rflow;
3134
Tom Herbert61b905d2014-03-24 15:34:47 -07003135 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003136 tcpu = rflow->cpu;
3137
Tom Herbert61b905d2014-03-24 15:34:47 -07003138 next_cpu = sock_flow_table->ents[hash & sock_flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003139
3140 /*
3141 * If the desired CPU (where last recvmsg was done) is
3142 * different from current CPU (one in the rx-queue flow
3143 * table entry), switch if one of the following holds:
3144 * - Current CPU is unset (equal to RPS_NO_CPU).
3145 * - Current CPU is offline.
3146 * - The current CPU's queue tail has advanced beyond the
3147 * last packet that was enqueued using this table entry.
3148 * This guarantees that all previous packets for the flow
3149 * have been dequeued, thus preserving in order delivery.
3150 */
3151 if (unlikely(tcpu != next_cpu) &&
3152 (tcpu == RPS_NO_CPU || !cpu_online(tcpu) ||
3153 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003154 rflow->last_qtail)) >= 0)) {
3155 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003156 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003157 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003158
Tom Herbertfec5e652010-04-16 16:01:27 -07003159 if (tcpu != RPS_NO_CPU && cpu_online(tcpu)) {
3160 *rflowp = rflow;
3161 cpu = tcpu;
3162 goto done;
3163 }
3164 }
3165
Tom Herbert0a9627f2010-03-16 08:03:29 +00003166 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003167 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003168 if (cpu_online(tcpu)) {
3169 cpu = tcpu;
3170 goto done;
3171 }
3172 }
3173
3174done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003175 return cpu;
3176}
3177
Ben Hutchingsc4454772011-01-19 11:03:53 +00003178#ifdef CONFIG_RFS_ACCEL
3179
3180/**
3181 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3182 * @dev: Device on which the filter was set
3183 * @rxq_index: RX queue index
3184 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3185 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3186 *
3187 * Drivers that implement ndo_rx_flow_steer() should periodically call
3188 * this function for each installed filter and remove the filters for
3189 * which it returns %true.
3190 */
3191bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3192 u32 flow_id, u16 filter_id)
3193{
3194 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3195 struct rps_dev_flow_table *flow_table;
3196 struct rps_dev_flow *rflow;
3197 bool expire = true;
3198 int cpu;
3199
3200 rcu_read_lock();
3201 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3202 if (flow_table && flow_id <= flow_table->mask) {
3203 rflow = &flow_table->flows[flow_id];
3204 cpu = ACCESS_ONCE(rflow->cpu);
3205 if (rflow->filter == filter_id && cpu != RPS_NO_CPU &&
3206 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3207 rflow->last_qtail) <
3208 (int)(10 * flow_table->mask)))
3209 expire = false;
3210 }
3211 rcu_read_unlock();
3212 return expire;
3213}
3214EXPORT_SYMBOL(rps_may_expire_flow);
3215
3216#endif /* CONFIG_RFS_ACCEL */
3217
Tom Herbert0a9627f2010-03-16 08:03:29 +00003218/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003219static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003220{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003221 struct softnet_data *sd = data;
3222
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003223 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003224 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003225}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003226
Tom Herbertfec5e652010-04-16 16:01:27 -07003227#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003228
3229/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003230 * Check if this softnet_data structure is another cpu one
3231 * If yes, queue it to our IPI list and return 1
3232 * If no, return 0
3233 */
3234static int rps_ipi_queued(struct softnet_data *sd)
3235{
3236#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003237 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003238
3239 if (sd != mysd) {
3240 sd->rps_ipi_next = mysd->rps_ipi_list;
3241 mysd->rps_ipi_list = sd;
3242
3243 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3244 return 1;
3245 }
3246#endif /* CONFIG_RPS */
3247 return 0;
3248}
3249
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003250#ifdef CONFIG_NET_FLOW_LIMIT
3251int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3252#endif
3253
3254static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3255{
3256#ifdef CONFIG_NET_FLOW_LIMIT
3257 struct sd_flow_limit *fl;
3258 struct softnet_data *sd;
3259 unsigned int old_flow, new_flow;
3260
3261 if (qlen < (netdev_max_backlog >> 1))
3262 return false;
3263
Christoph Lameter903ceff2014-08-17 12:30:35 -05003264 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003265
3266 rcu_read_lock();
3267 fl = rcu_dereference(sd->flow_limit);
3268 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003269 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003270 old_flow = fl->history[fl->history_head];
3271 fl->history[fl->history_head] = new_flow;
3272
3273 fl->history_head++;
3274 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3275
3276 if (likely(fl->buckets[old_flow]))
3277 fl->buckets[old_flow]--;
3278
3279 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3280 fl->count++;
3281 rcu_read_unlock();
3282 return true;
3283 }
3284 }
3285 rcu_read_unlock();
3286#endif
3287 return false;
3288}
3289
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003290/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003291 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3292 * queue (may be a remote CPU queue).
3293 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003294static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3295 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003296{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003297 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003298 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003299 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003300
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003301 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003302
3303 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003304
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003305 rps_lock(sd);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003306 qlen = skb_queue_len(&sd->input_pkt_queue);
3307 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Changli Gao6e7676c2010-04-27 15:07:33 -07003308 if (skb_queue_len(&sd->input_pkt_queue)) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003309enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003310 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003311 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003312 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003313 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003314 return NET_RX_SUCCESS;
3315 }
3316
Eric Dumazetebda37c22010-05-06 23:51:21 +00003317 /* Schedule NAPI for backlog device
3318 * We can use non atomic operation since we own the queue lock
3319 */
3320 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003321 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003322 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003323 }
3324 goto enqueue;
3325 }
3326
Changli Gaodee42872010-05-02 05:42:16 +00003327 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003328 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003329
Tom Herbert0a9627f2010-03-16 08:03:29 +00003330 local_irq_restore(flags);
3331
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003332 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003333 kfree_skb(skb);
3334 return NET_RX_DROP;
3335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003337static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003339 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Eric Dumazet588f0332011-11-15 04:12:55 +00003341 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Koki Sanagicf66ba52010-08-23 18:45:02 +09003343 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003344#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003345 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003346 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003347 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Changli Gaocece1942010-08-07 20:35:43 -07003349 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003350 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003351
3352 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003353 if (cpu < 0)
3354 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003355
3356 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3357
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003358 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003359 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003360 } else
3361#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003362 {
3363 unsigned int qtail;
3364 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3365 put_cpu();
3366 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003367 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003369
3370/**
3371 * netif_rx - post buffer to the network code
3372 * @skb: buffer to post
3373 *
3374 * This function receives a packet from a device driver and queues it for
3375 * the upper (protocol) levels to process. It always succeeds. The buffer
3376 * may be dropped during processing for congestion control or by the
3377 * protocol layers.
3378 *
3379 * return values:
3380 * NET_RX_SUCCESS (no congestion)
3381 * NET_RX_DROP (packet was dropped)
3382 *
3383 */
3384
3385int netif_rx(struct sk_buff *skb)
3386{
3387 trace_netif_rx_entry(skb);
3388
3389 return netif_rx_internal(skb);
3390}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003391EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
3393int netif_rx_ni(struct sk_buff *skb)
3394{
3395 int err;
3396
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003397 trace_netif_rx_ni_entry(skb);
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003400 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 if (local_softirq_pending())
3402 do_softirq();
3403 preempt_enable();
3404
3405 return err;
3406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407EXPORT_SYMBOL(netif_rx_ni);
3408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409static void net_tx_action(struct softirq_action *h)
3410{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003411 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
3413 if (sd->completion_queue) {
3414 struct sk_buff *clist;
3415
3416 local_irq_disable();
3417 clist = sd->completion_queue;
3418 sd->completion_queue = NULL;
3419 local_irq_enable();
3420
3421 while (clist) {
3422 struct sk_buff *skb = clist;
3423 clist = clist->next;
3424
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003425 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003426 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3427 trace_consume_skb(skb);
3428 else
3429 trace_kfree_skb(skb, net_tx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 __kfree_skb(skb);
3431 }
3432 }
3433
3434 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003435 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
3437 local_irq_disable();
3438 head = sd->output_queue;
3439 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003440 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 local_irq_enable();
3442
3443 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003444 struct Qdisc *q = head;
3445 spinlock_t *root_lock;
3446
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 head = head->next_sched;
3448
David S. Miller5fb66222008-08-02 20:02:43 -07003449 root_lock = qdisc_lock(q);
David S. Miller37437bb2008-07-16 02:15:04 -07003450 if (spin_trylock(root_lock)) {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003451 smp_mb__before_atomic();
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003452 clear_bit(__QDISC_STATE_SCHED,
3453 &q->state);
David S. Miller37437bb2008-07-16 02:15:04 -07003454 qdisc_run(q);
3455 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 } else {
David S. Miller195648b2008-08-19 04:00:36 -07003457 if (!test_bit(__QDISC_STATE_DEACTIVATED,
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003458 &q->state)) {
David S. Miller195648b2008-08-19 04:00:36 -07003459 __netif_reschedule(q);
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003460 } else {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003461 smp_mb__before_atomic();
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003462 clear_bit(__QDISC_STATE_SCHED,
3463 &q->state);
3464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 }
3466 }
3467 }
3468}
3469
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003470#if (defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)) && \
3471 (defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE))
Michał Mirosławda678292009-06-05 05:35:28 +00003472/* This hook is defined here for ATM LANE */
3473int (*br_fdb_test_addr_hook)(struct net_device *dev,
3474 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07003475EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00003476#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478#ifdef CONFIG_NET_CLS_ACT
3479/* TODO: Maybe we should just force sch_ingress to be compiled in
3480 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
3481 * a compare and 2 stores extra right now if we dont have it on
3482 * but have CONFIG_NET_CLS_ACT
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003483 * NOTE: This doesn't stop any functionality; if you dont have
3484 * the ingress scheduler, you just can't add policies on ingress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 *
3486 */
Eric Dumazet24824a02010-10-02 06:11:55 +00003487static int ing_filter(struct sk_buff *skb, struct netdev_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 struct net_device *dev = skb->dev;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003490 u32 ttl = G_TC_RTTL(skb->tc_verd);
David S. Miller555353c2008-07-08 17:33:13 -07003491 int result = TC_ACT_OK;
3492 struct Qdisc *q;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003493
Stephen Hemmingerde384832010-08-01 00:33:23 -07003494 if (unlikely(MAX_RED_LOOP < ttl++)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003495 net_warn_ratelimited("Redir loop detected Dropping packet (%d->%d)\n",
3496 skb->skb_iif, dev->ifindex);
Herbert Xuf697c3e2007-10-14 00:38:47 -07003497 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
Herbert Xuf697c3e2007-10-14 00:38:47 -07003500 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
3501 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
3502
John Fastabend46e5da42014-09-12 20:04:52 -07003503 q = rcu_dereference(rxq->qdisc);
David S. Miller8d50b532008-07-30 02:37:46 -07003504 if (q != &noop_qdisc) {
David S. Miller83874002008-07-17 00:53:03 -07003505 spin_lock(qdisc_lock(q));
David S. Millera9312ae2008-08-17 21:51:03 -07003506 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
3507 result = qdisc_enqueue_root(skb, q);
David S. Miller83874002008-07-17 00:53:03 -07003508 spin_unlock(qdisc_lock(q));
3509 }
Herbert Xuf697c3e2007-10-14 00:38:47 -07003510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 return result;
3512}
Herbert Xuf697c3e2007-10-14 00:38:47 -07003513
3514static inline struct sk_buff *handle_ing(struct sk_buff *skb,
3515 struct packet_type **pt_prev,
3516 int *ret, struct net_device *orig_dev)
3517{
Eric Dumazet24824a02010-10-02 06:11:55 +00003518 struct netdev_queue *rxq = rcu_dereference(skb->dev->ingress_queue);
3519
John Fastabend46e5da42014-09-12 20:04:52 -07003520 if (!rxq || rcu_access_pointer(rxq->qdisc) == &noop_qdisc)
Herbert Xuf697c3e2007-10-14 00:38:47 -07003521 goto out;
3522
3523 if (*pt_prev) {
3524 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3525 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003526 }
3527
Eric Dumazet24824a02010-10-02 06:11:55 +00003528 switch (ing_filter(skb, rxq)) {
Herbert Xuf697c3e2007-10-14 00:38:47 -07003529 case TC_ACT_SHOT:
3530 case TC_ACT_STOLEN:
3531 kfree_skb(skb);
3532 return NULL;
3533 }
3534
3535out:
3536 skb->tc_verd = 0;
3537 return skb;
3538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539#endif
3540
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003541/**
3542 * netdev_rx_handler_register - register receive handler
3543 * @dev: device to register a handler for
3544 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00003545 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003546 *
Masanari Iidae2278672014-02-18 22:54:36 +09003547 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003548 * called from __netif_receive_skb. A negative errno code is returned
3549 * on a failure.
3550 *
3551 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003552 *
3553 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003554 */
3555int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00003556 rx_handler_func_t *rx_handler,
3557 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003558{
3559 ASSERT_RTNL();
3560
3561 if (dev->rx_handler)
3562 return -EBUSY;
3563
Eric Dumazet00cfec32013-03-29 03:01:22 +00003564 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00003565 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003566 rcu_assign_pointer(dev->rx_handler, rx_handler);
3567
3568 return 0;
3569}
3570EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
3571
3572/**
3573 * netdev_rx_handler_unregister - unregister receive handler
3574 * @dev: device to unregister a handler from
3575 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00003576 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003577 *
3578 * The caller must hold the rtnl_mutex.
3579 */
3580void netdev_rx_handler_unregister(struct net_device *dev)
3581{
3582
3583 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003584 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00003585 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
3586 * section has a guarantee to see a non NULL rx_handler_data
3587 * as well.
3588 */
3589 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003590 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003591}
3592EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
3593
Mel Gormanb4b9e352012-07-31 16:44:26 -07003594/*
3595 * Limit the use of PFMEMALLOC reserves to those protocols that implement
3596 * the special handling of PFMEMALLOC skbs.
3597 */
3598static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
3599{
3600 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07003601 case htons(ETH_P_ARP):
3602 case htons(ETH_P_IP):
3603 case htons(ETH_P_IPV6):
3604 case htons(ETH_P_8021Q):
3605 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07003606 return true;
3607 default:
3608 return false;
3609 }
3610}
3611
David S. Miller9754e292013-02-14 15:57:38 -05003612static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613{
3614 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003615 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003616 struct net_device *orig_dev;
David S. Miller63d8ea72011-02-28 10:48:59 -08003617 struct net_device *null_or_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003618 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08003620 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
Eric Dumazet588f0332011-11-15 04:12:55 +00003622 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07003623
Koki Sanagicf66ba52010-08-23 18:45:02 +09003624 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08003625
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07003626 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00003627
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07003628 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00003629 if (!skb_transport_header_was_set(skb))
3630 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00003631 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
3633 pt_prev = NULL;
3634
3635 rcu_read_lock();
3636
David S. Miller63d8ea72011-02-28 10:48:59 -08003637another_round:
David S. Millerb6858172012-07-23 16:27:54 -07003638 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08003639
3640 __this_cpu_inc(softnet_data.processed);
3641
Patrick McHardy8ad227f2013-04-19 02:04:31 +00003642 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
3643 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04003644 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003645 if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003646 goto unlock;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003647 }
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649#ifdef CONFIG_NET_CLS_ACT
3650 if (skb->tc_verd & TC_NCLS) {
3651 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
3652 goto ncls;
3653 }
3654#endif
3655
David S. Miller9754e292013-02-14 15:57:38 -05003656 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003657 goto skip_taps;
3658
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 list_for_each_entry_rcu(ptype, &ptype_all, list) {
David S. Miller63d8ea72011-02-28 10:48:59 -08003660 if (!ptype->dev || ptype->dev == skb->dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003661 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003662 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 pt_prev = ptype;
3664 }
3665 }
3666
Mel Gormanb4b9e352012-07-31 16:44:26 -07003667skip_taps:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668#ifdef CONFIG_NET_CLS_ACT
Herbert Xuf697c3e2007-10-14 00:38:47 -07003669 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
3670 if (!skb)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003671 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672ncls:
3673#endif
3674
David S. Miller9754e292013-02-14 15:57:38 -05003675 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003676 goto drop;
3677
John Fastabend24257172011-10-10 09:16:41 +00003678 if (vlan_tx_tag_present(skb)) {
3679 if (pt_prev) {
3680 ret = deliver_skb(skb, pt_prev, orig_dev);
3681 pt_prev = NULL;
3682 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003683 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00003684 goto another_round;
3685 else if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003686 goto unlock;
John Fastabend24257172011-10-10 09:16:41 +00003687 }
3688
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003689 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003690 if (rx_handler) {
3691 if (pt_prev) {
3692 ret = deliver_skb(skb, pt_prev, orig_dev);
3693 pt_prev = NULL;
3694 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003695 switch (rx_handler(&skb)) {
3696 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00003697 ret = NET_RX_SUCCESS;
Mel Gormanb4b9e352012-07-31 16:44:26 -07003698 goto unlock;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003699 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08003700 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003701 case RX_HANDLER_EXACT:
3702 deliver_exact = true;
3703 case RX_HANDLER_PASS:
3704 break;
3705 default:
3706 BUG();
3707 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
Eric Dumazetd4b812d2013-07-18 07:19:26 -07003710 if (unlikely(vlan_tx_tag_present(skb))) {
3711 if (vlan_tx_tag_get_id(skb))
3712 skb->pkt_type = PACKET_OTHERHOST;
3713 /* Note: we might in the future use prio bits
3714 * and set skb->priority like in vlan_do_receive()
3715 * For the time being, just ignore Priority Code Point
3716 */
3717 skb->vlan_tci = 0;
3718 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003719
David S. Miller63d8ea72011-02-28 10:48:59 -08003720 /* deliver only exact match when indicated */
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003721 null_or_dev = deliver_exact ? skb->dev : NULL;
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00003722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 type = skb->protocol;
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08003724 list_for_each_entry_rcu(ptype,
3725 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
David S. Miller63d8ea72011-02-28 10:48:59 -08003726 if (ptype->type == type &&
Jiri Pirkoe3f48d32011-02-28 20:26:31 +00003727 (ptype->dev == null_or_dev || ptype->dev == skb->dev ||
3728 ptype->dev == orig_dev)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003729 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003730 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 pt_prev = ptype;
3732 }
3733 }
3734
3735 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003736 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00003737 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003738 else
3739 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07003741drop:
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003742 atomic_long_inc(&skb->dev->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 kfree_skb(skb);
3744 /* Jamal, now you will not able to escape explaining
3745 * me how you were going to use this. :-)
3746 */
3747 ret = NET_RX_DROP;
3748 }
3749
Mel Gormanb4b9e352012-07-31 16:44:26 -07003750unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 rcu_read_unlock();
David S. Miller9754e292013-02-14 15:57:38 -05003752 return ret;
3753}
3754
3755static int __netif_receive_skb(struct sk_buff *skb)
3756{
3757 int ret;
3758
3759 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
3760 unsigned long pflags = current->flags;
3761
3762 /*
3763 * PFMEMALLOC skbs are special, they should
3764 * - be delivered to SOCK_MEMALLOC sockets only
3765 * - stay away from userspace
3766 * - have bounded memory usage
3767 *
3768 * Use PF_MEMALLOC as this saves us from propagating the allocation
3769 * context down to all allocation sites.
3770 */
3771 current->flags |= PF_MEMALLOC;
3772 ret = __netif_receive_skb_core(skb, true);
3773 tsk_restore_flags(current, pflags, PF_MEMALLOC);
3774 } else
3775 ret = __netif_receive_skb_core(skb, false);
3776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 return ret;
3778}
Tom Herbert0a9627f2010-03-16 08:03:29 +00003779
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003780static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003781{
Eric Dumazet588f0332011-11-15 04:12:55 +00003782 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07003783
Richard Cochranc1f19b52010-07-17 08:49:36 +00003784 if (skb_defer_rx_timestamp(skb))
3785 return NET_RX_SUCCESS;
3786
Eric Dumazetdf334542010-03-24 19:13:54 +00003787#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003788 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07003789 struct rps_dev_flow voidflow, *rflow = &voidflow;
3790 int cpu, ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003791
Eric Dumazet3b098e22010-05-15 23:57:10 -07003792 rcu_read_lock();
Tom Herbert0a9627f2010-03-16 08:03:29 +00003793
Eric Dumazet3b098e22010-05-15 23:57:10 -07003794 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07003795
Eric Dumazet3b098e22010-05-15 23:57:10 -07003796 if (cpu >= 0) {
3797 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3798 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00003799 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07003800 }
Eric Dumazetadc93002011-11-17 03:13:26 +00003801 rcu_read_unlock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003802 }
Tom Herbert1e94d722010-03-18 17:45:44 -07003803#endif
Eric Dumazetadc93002011-11-17 03:13:26 +00003804 return __netif_receive_skb(skb);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003805}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003806
3807/**
3808 * netif_receive_skb - process receive buffer from network
3809 * @skb: buffer to process
3810 *
3811 * netif_receive_skb() is the main receive data processing function.
3812 * It always succeeds. The buffer may be dropped during processing
3813 * for congestion control or by the protocol layers.
3814 *
3815 * This function may only be called from softirq context and interrupts
3816 * should be enabled.
3817 *
3818 * Return values (usually ignored):
3819 * NET_RX_SUCCESS: no congestion
3820 * NET_RX_DROP: packet was dropped
3821 */
3822int netif_receive_skb(struct sk_buff *skb)
3823{
3824 trace_netif_receive_skb_entry(skb);
3825
3826 return netif_receive_skb_internal(skb);
3827}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003828EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Eric Dumazet88751272010-04-19 05:07:33 +00003830/* Network device is going away, flush any packets still pending
3831 * Called with irqs disabled.
3832 */
Changli Gao152102c2010-03-30 20:16:22 +00003833static void flush_backlog(void *arg)
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003834{
Changli Gao152102c2010-03-30 20:16:22 +00003835 struct net_device *dev = arg;
Christoph Lameter903ceff2014-08-17 12:30:35 -05003836 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003837 struct sk_buff *skb, *tmp;
3838
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003839 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003840 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003841 if (skb->dev == dev) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003842 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003843 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003844 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003845 }
Changli Gao6e7676c2010-04-27 15:07:33 -07003846 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003847 rps_unlock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003848
3849 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
3850 if (skb->dev == dev) {
3851 __skb_unlink(skb, &sd->process_queue);
3852 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003853 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003854 }
3855 }
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003856}
3857
Herbert Xud565b0a2008-12-15 23:38:52 -08003858static int napi_gro_complete(struct sk_buff *skb)
3859{
Vlad Yasevich22061d82012-11-15 08:49:11 +00003860 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08003861 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003862 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08003863 int err = -ENOENT;
3864
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003865 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
3866
Herbert Xufc59f9a2009-04-14 15:11:06 -07003867 if (NAPI_GRO_CB(skb)->count == 1) {
3868 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003869 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07003870 }
Herbert Xud565b0a2008-12-15 23:38:52 -08003871
3872 rcu_read_lock();
3873 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003874 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08003875 continue;
3876
Jerry Chu299603e82013-12-11 20:53:45 -08003877 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08003878 break;
3879 }
3880 rcu_read_unlock();
3881
3882 if (err) {
3883 WARN_ON(&ptype->list == head);
3884 kfree_skb(skb);
3885 return NET_RX_SUCCESS;
3886 }
3887
3888out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003889 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003890}
3891
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003892/* napi->gro_list contains packets ordered by age.
3893 * youngest packets at the head of it.
3894 * Complete skbs in reverse order to reduce latencies.
3895 */
3896void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08003897{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003898 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08003899
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003900 /* scan list and build reverse chain */
3901 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
3902 skb->prev = prev;
3903 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08003904 }
3905
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003906 for (skb = prev; skb; skb = prev) {
3907 skb->next = NULL;
3908
3909 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
3910 return;
3911
3912 prev = skb->prev;
3913 napi_gro_complete(skb);
3914 napi->gro_count--;
3915 }
3916
Herbert Xud565b0a2008-12-15 23:38:52 -08003917 napi->gro_list = NULL;
3918}
Eric Dumazet86cac582010-08-31 18:25:32 +00003919EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08003920
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003921static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
3922{
3923 struct sk_buff *p;
3924 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08003925 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003926
3927 for (p = napi->gro_list; p; p = p->next) {
3928 unsigned long diffs;
3929
Tom Herbert0b4cec82014-01-15 08:58:06 -08003930 NAPI_GRO_CB(p)->flush = 0;
3931
3932 if (hash != skb_get_hash_raw(p)) {
3933 NAPI_GRO_CB(p)->same_flow = 0;
3934 continue;
3935 }
3936
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003937 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
3938 diffs |= p->vlan_tci ^ skb->vlan_tci;
3939 if (maclen == ETH_HLEN)
3940 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07003941 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003942 else if (!diffs)
3943 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07003944 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003945 maclen);
3946 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003947 }
3948}
3949
Jerry Chu299603e82013-12-11 20:53:45 -08003950static void skb_gro_reset_offset(struct sk_buff *skb)
3951{
3952 const struct skb_shared_info *pinfo = skb_shinfo(skb);
3953 const skb_frag_t *frag0 = &pinfo->frags[0];
3954
3955 NAPI_GRO_CB(skb)->data_offset = 0;
3956 NAPI_GRO_CB(skb)->frag0 = NULL;
3957 NAPI_GRO_CB(skb)->frag0_len = 0;
3958
3959 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
3960 pinfo->nr_frags &&
3961 !PageHighMem(skb_frag_page(frag0))) {
3962 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
3963 NAPI_GRO_CB(skb)->frag0_len = skb_frag_size(frag0);
Herbert Xud565b0a2008-12-15 23:38:52 -08003964 }
3965}
3966
Eric Dumazeta50e2332014-03-29 21:28:21 -07003967static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
3968{
3969 struct skb_shared_info *pinfo = skb_shinfo(skb);
3970
3971 BUG_ON(skb->end - skb->tail < grow);
3972
3973 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
3974
3975 skb->data_len -= grow;
3976 skb->tail += grow;
3977
3978 pinfo->frags[0].page_offset += grow;
3979 skb_frag_size_sub(&pinfo->frags[0], grow);
3980
3981 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
3982 skb_frag_unref(skb, 0);
3983 memmove(pinfo->frags, pinfo->frags + 1,
3984 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
3985 }
3986}
3987
Rami Rosenbb728822012-11-28 21:55:25 +00003988static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08003989{
3990 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003991 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08003992 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003993 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08003994 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00003995 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07003996 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08003997
Eric W. Biederman9c62a682014-03-14 20:51:52 -07003998 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08003999 goto normal;
4000
Tom Herbert5a212322014-08-31 15:12:41 -07004001 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004002 goto normal;
4003
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004004 gro_list_prepare(napi, skb);
4005
Herbert Xud565b0a2008-12-15 23:38:52 -08004006 rcu_read_lock();
4007 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004008 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004009 continue;
4010
Herbert Xu86911732009-01-29 14:19:50 +00004011 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004012 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004013 NAPI_GRO_CB(skb)->same_flow = 0;
4014 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004015 NAPI_GRO_CB(skb)->free = 0;
Or Gerlitzb582ef02014-01-20 13:59:19 +02004016 NAPI_GRO_CB(skb)->udp_mark = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004017
Tom Herbert662880f2014-08-27 21:26:56 -07004018 /* Setup for GRO checksum validation */
4019 switch (skb->ip_summed) {
4020 case CHECKSUM_COMPLETE:
4021 NAPI_GRO_CB(skb)->csum = skb->csum;
4022 NAPI_GRO_CB(skb)->csum_valid = 1;
4023 NAPI_GRO_CB(skb)->csum_cnt = 0;
4024 break;
4025 case CHECKSUM_UNNECESSARY:
4026 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4027 NAPI_GRO_CB(skb)->csum_valid = 0;
4028 break;
4029 default:
4030 NAPI_GRO_CB(skb)->csum_cnt = 0;
4031 NAPI_GRO_CB(skb)->csum_valid = 0;
4032 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004033
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004034 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004035 break;
4036 }
4037 rcu_read_unlock();
4038
4039 if (&ptype->list == head)
4040 goto normal;
4041
Herbert Xu0da2afd52008-12-26 14:57:42 -08004042 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004043 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004044
Herbert Xud565b0a2008-12-15 23:38:52 -08004045 if (pp) {
4046 struct sk_buff *nskb = *pp;
4047
4048 *pp = nskb->next;
4049 nskb->next = NULL;
4050 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004051 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004052 }
4053
Herbert Xu0da2afd52008-12-26 14:57:42 -08004054 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004055 goto ok;
4056
Eric Dumazet600adc12014-01-09 14:12:19 -08004057 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004058 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004059
Eric Dumazet600adc12014-01-09 14:12:19 -08004060 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4061 struct sk_buff *nskb = napi->gro_list;
4062
4063 /* locate the end of the list to select the 'oldest' flow */
4064 while (nskb->next) {
4065 pp = &nskb->next;
4066 nskb = *pp;
4067 }
4068 *pp = NULL;
4069 nskb->next = NULL;
4070 napi_gro_complete(nskb);
4071 } else {
4072 napi->gro_count++;
4073 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004074 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004075 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004076 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004077 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004078 skb->next = napi->gro_list;
4079 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004080 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004081
Herbert Xuad0f9902009-02-01 01:24:55 -08004082pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004083 grow = skb_gro_offset(skb) - skb_headlen(skb);
4084 if (grow > 0)
4085 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004086ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004087 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004088
4089normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004090 ret = GRO_NORMAL;
4091 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004092}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004093
Jerry Chubf5a7552014-01-07 10:23:19 -08004094struct packet_offload *gro_find_receive_by_type(__be16 type)
4095{
4096 struct list_head *offload_head = &offload_base;
4097 struct packet_offload *ptype;
4098
4099 list_for_each_entry_rcu(ptype, offload_head, list) {
4100 if (ptype->type != type || !ptype->callbacks.gro_receive)
4101 continue;
4102 return ptype;
4103 }
4104 return NULL;
4105}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004106EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004107
4108struct packet_offload *gro_find_complete_by_type(__be16 type)
4109{
4110 struct list_head *offload_head = &offload_base;
4111 struct packet_offload *ptype;
4112
4113 list_for_each_entry_rcu(ptype, offload_head, list) {
4114 if (ptype->type != type || !ptype->callbacks.gro_complete)
4115 continue;
4116 return ptype;
4117 }
4118 return NULL;
4119}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004120EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004121
Rami Rosenbb728822012-11-28 21:55:25 +00004122static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004123{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004124 switch (ret) {
4125 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004126 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004127 ret = GRO_DROP;
4128 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004129
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004130 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004131 kfree_skb(skb);
4132 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004133
Eric Dumazetdaa86542012-04-19 07:07:40 +00004134 case GRO_MERGED_FREE:
Eric Dumazetd7e88832012-04-30 08:10:34 +00004135 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4136 kmem_cache_free(skbuff_head_cache, skb);
4137 else
4138 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004139 break;
4140
Ben Hutchings5b252f02009-10-29 07:17:09 +00004141 case GRO_HELD:
4142 case GRO_MERGED:
4143 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004144 }
4145
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004146 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004147}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004148
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004149gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004150{
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004151 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004152
Eric Dumazeta50e2332014-03-29 21:28:21 -07004153 skb_gro_reset_offset(skb);
4154
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004155 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004156}
4157EXPORT_SYMBOL(napi_gro_receive);
4158
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004159static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004160{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004161 if (unlikely(skb->pfmemalloc)) {
4162 consume_skb(skb);
4163 return;
4164 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004165 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004166 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4167 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004168 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004169 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004170 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004171 skb->encapsulation = 0;
4172 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004173 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004174
4175 napi->skb = skb;
4176}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004177
Herbert Xu76620aa2009-04-16 02:02:07 -07004178struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004179{
Herbert Xu5d38a072009-01-04 16:13:40 -08004180 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004181
4182 if (!skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00004183 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
Eric Dumazet84b9cd62013-12-05 21:44:27 -08004184 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004185 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004186 return skb;
4187}
Herbert Xu76620aa2009-04-16 02:02:07 -07004188EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004189
Eric Dumazeta50e2332014-03-29 21:28:21 -07004190static gro_result_t napi_frags_finish(struct napi_struct *napi,
4191 struct sk_buff *skb,
4192 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004193{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004194 switch (ret) {
4195 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004196 case GRO_HELD:
4197 __skb_push(skb, ETH_HLEN);
4198 skb->protocol = eth_type_trans(skb, skb->dev);
4199 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004200 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004201 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004202
4203 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004204 case GRO_MERGED_FREE:
4205 napi_reuse_skb(napi, skb);
4206 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004207
4208 case GRO_MERGED:
4209 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004210 }
4211
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004212 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004213}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004214
Eric Dumazeta50e2332014-03-29 21:28:21 -07004215/* Upper GRO stack assumes network header starts at gro_offset=0
4216 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4217 * We copy ethernet header into skb->data to have a common layout.
4218 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004219static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004220{
Herbert Xu76620aa2009-04-16 02:02:07 -07004221 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004222 const struct ethhdr *eth;
4223 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004224
4225 napi->skb = NULL;
4226
Eric Dumazeta50e2332014-03-29 21:28:21 -07004227 skb_reset_mac_header(skb);
4228 skb_gro_reset_offset(skb);
4229
4230 eth = skb_gro_header_fast(skb, 0);
4231 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4232 eth = skb_gro_header_slow(skb, hlen, 0);
4233 if (unlikely(!eth)) {
4234 napi_reuse_skb(napi, skb);
4235 return NULL;
4236 }
4237 } else {
4238 gro_pull_from_frag0(skb, hlen);
4239 NAPI_GRO_CB(skb)->frag0 += hlen;
4240 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004241 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004242 __skb_pull(skb, hlen);
4243
4244 /*
4245 * This works because the only protocols we care about don't require
4246 * special handling.
4247 * We'll fix it up properly in napi_frags_finish()
4248 */
4249 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004250
Herbert Xu76620aa2009-04-16 02:02:07 -07004251 return skb;
4252}
Herbert Xu76620aa2009-04-16 02:02:07 -07004253
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004254gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004255{
4256 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004257
4258 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004259 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004260
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004261 trace_napi_gro_frags_entry(skb);
4262
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004263 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004264}
4265EXPORT_SYMBOL(napi_gro_frags);
4266
Tom Herbert573e8fc2014-08-22 13:33:47 -07004267/* Compute the checksum from gro_offset and return the folded value
4268 * after adding in any pseudo checksum.
4269 */
4270__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4271{
4272 __wsum wsum;
4273 __sum16 sum;
4274
4275 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4276
4277 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4278 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4279 if (likely(!sum)) {
4280 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4281 !skb->csum_complete_sw)
4282 netdev_rx_csum_fault(skb->dev);
4283 }
4284
4285 NAPI_GRO_CB(skb)->csum = wsum;
4286 NAPI_GRO_CB(skb)->csum_valid = 1;
4287
4288 return sum;
4289}
4290EXPORT_SYMBOL(__skb_gro_checksum_complete);
4291
Eric Dumazete326bed2010-04-22 00:22:45 -07004292/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004293 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004294 * Note: called with local irq disabled, but exits with local irq enabled.
4295 */
4296static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4297{
4298#ifdef CONFIG_RPS
4299 struct softnet_data *remsd = sd->rps_ipi_list;
4300
4301 if (remsd) {
4302 sd->rps_ipi_list = NULL;
4303
4304 local_irq_enable();
4305
4306 /* Send pending IPI's to kick RPS processing on remote cpus. */
4307 while (remsd) {
4308 struct softnet_data *next = remsd->rps_ipi_next;
4309
4310 if (cpu_online(remsd->cpu))
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004311 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004312 &remsd->csd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004313 remsd = next;
4314 }
4315 } else
4316#endif
4317 local_irq_enable();
4318}
4319
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004320static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
4321{
4322#ifdef CONFIG_RPS
4323 return sd->rps_ipi_list != NULL;
4324#else
4325 return false;
4326#endif
4327}
4328
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004329static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330{
4331 int work = 0;
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004332 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Eric Dumazete326bed2010-04-22 00:22:45 -07004334 /* Check if we have pending ipi, its better to send them now,
4335 * not waiting net_rx_action() end.
4336 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004337 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07004338 local_irq_disable();
4339 net_rps_action_and_irq_enable(sd);
4340 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004341
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004342 napi->weight = weight_p;
Changli Gao6e7676c2010-04-27 15:07:33 -07004343 local_irq_disable();
Tom Herbert11ef7a82014-06-30 09:50:40 -07004344 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Changli Gao6e7676c2010-04-27 15:07:33 -07004347 while ((skb = __skb_dequeue(&sd->process_queue))) {
Eric Dumazete4008272010-04-05 15:42:39 -07004348 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004349 __netif_receive_skb(skb);
Changli Gao6e7676c2010-04-27 15:07:33 -07004350 local_irq_disable();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004351 input_queue_head_incr(sd);
4352 if (++work >= quota) {
4353 local_irq_enable();
4354 return work;
4355 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
Changli Gao6e7676c2010-04-27 15:07:33 -07004358 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004359 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004360 /*
4361 * Inline a custom version of __napi_complete().
4362 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004363 * and NAPI_STATE_SCHED is the only possible flag set
4364 * on backlog.
4365 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004366 * and we dont need an smp_mb() memory barrier.
4367 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004368 napi->state = 0;
Tom Herbert11ef7a82014-06-30 09:50:40 -07004369 rps_unlock(sd);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004370
Tom Herbert11ef7a82014-06-30 09:50:40 -07004371 break;
Changli Gao6e7676c2010-04-27 15:07:33 -07004372 }
Tom Herbert11ef7a82014-06-30 09:50:40 -07004373
4374 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4375 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004376 rps_unlock(sd);
4377 }
4378 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004380 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381}
4382
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004383/**
4384 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004385 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004386 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004387 * The entry's receive function will be scheduled to run.
4388 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004389 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004390void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004391{
4392 unsigned long flags;
4393
4394 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05004395 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004396 local_irq_restore(flags);
4397}
4398EXPORT_SYMBOL(__napi_schedule);
4399
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004400/**
4401 * __napi_schedule_irqoff - schedule for receive
4402 * @n: entry to schedule
4403 *
4404 * Variant of __napi_schedule() assuming hard irqs are masked
4405 */
4406void __napi_schedule_irqoff(struct napi_struct *n)
4407{
4408 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
4409}
4410EXPORT_SYMBOL(__napi_schedule_irqoff);
4411
Herbert Xud565b0a2008-12-15 23:38:52 -08004412void __napi_complete(struct napi_struct *n)
4413{
4414 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
4415 BUG_ON(n->gro_list);
4416
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004417 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004418 smp_mb__before_atomic();
Herbert Xud565b0a2008-12-15 23:38:52 -08004419 clear_bit(NAPI_STATE_SCHED, &n->state);
4420}
4421EXPORT_SYMBOL(__napi_complete);
4422
4423void napi_complete(struct napi_struct *n)
4424{
4425 unsigned long flags;
4426
4427 /*
4428 * don't let napi dequeue from the cpu poll list
4429 * just in case its running on a different cpu
4430 */
4431 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4432 return;
4433
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004434 napi_gro_flush(n, false);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004435
4436 if (likely(list_empty(&n->poll_list))) {
4437 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
4438 } else {
4439 /* If n->poll_list is not empty, we need to mask irqs */
4440 local_irq_save(flags);
4441 __napi_complete(n);
4442 local_irq_restore(flags);
4443 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004444}
4445EXPORT_SYMBOL(napi_complete);
4446
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03004447/* must be called under rcu_read_lock(), as we dont take a reference */
4448struct napi_struct *napi_by_id(unsigned int napi_id)
4449{
4450 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
4451 struct napi_struct *napi;
4452
4453 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
4454 if (napi->napi_id == napi_id)
4455 return napi;
4456
4457 return NULL;
4458}
4459EXPORT_SYMBOL_GPL(napi_by_id);
4460
4461void napi_hash_add(struct napi_struct *napi)
4462{
4463 if (!test_and_set_bit(NAPI_STATE_HASHED, &napi->state)) {
4464
4465 spin_lock(&napi_hash_lock);
4466
4467 /* 0 is not a valid id, we also skip an id that is taken
4468 * we expect both events to be extremely rare
4469 */
4470 napi->napi_id = 0;
4471 while (!napi->napi_id) {
4472 napi->napi_id = ++napi_gen_id;
4473 if (napi_by_id(napi->napi_id))
4474 napi->napi_id = 0;
4475 }
4476
4477 hlist_add_head_rcu(&napi->napi_hash_node,
4478 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
4479
4480 spin_unlock(&napi_hash_lock);
4481 }
4482}
4483EXPORT_SYMBOL_GPL(napi_hash_add);
4484
4485/* Warning : caller is responsible to make sure rcu grace period
4486 * is respected before freeing memory containing @napi
4487 */
4488void napi_hash_del(struct napi_struct *napi)
4489{
4490 spin_lock(&napi_hash_lock);
4491
4492 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state))
4493 hlist_del_rcu(&napi->napi_hash_node);
4494
4495 spin_unlock(&napi_hash_lock);
4496}
4497EXPORT_SYMBOL_GPL(napi_hash_del);
4498
Herbert Xud565b0a2008-12-15 23:38:52 -08004499void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
4500 int (*poll)(struct napi_struct *, int), int weight)
4501{
4502 INIT_LIST_HEAD(&napi->poll_list);
Herbert Xu4ae55442009-02-08 18:00:36 +00004503 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004504 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08004505 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004506 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00004507 if (weight > NAPI_POLL_WEIGHT)
4508 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
4509 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08004510 napi->weight = weight;
4511 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004512 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08004513#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08004514 spin_lock_init(&napi->poll_lock);
4515 napi->poll_owner = -1;
4516#endif
4517 set_bit(NAPI_STATE_SCHED, &napi->state);
4518}
4519EXPORT_SYMBOL(netif_napi_add);
4520
4521void netif_napi_del(struct napi_struct *napi)
4522{
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08004523 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07004524 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08004525
Eric Dumazet289dccb2013-12-20 14:29:08 -08004526 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004527 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00004528 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004529}
4530EXPORT_SYMBOL(netif_napi_del);
4531
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532static void net_rx_action(struct softirq_action *h)
4533{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004534 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004535 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07004536 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004537 LIST_HEAD(list);
4538 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07004539 void *have;
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004542 list_splice_init(&sd->poll_list, &list);
4543 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004545 while (!list_empty(&list)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004546 struct napi_struct *n;
4547 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004549 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004550 * Allow this to run for 2 jiffies since which will allow
4551 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004552 */
Eric Dumazetd1f41b62013-03-05 07:15:13 +00004553 if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 goto softnet_break;
4555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004557 n = list_first_entry(&list, struct napi_struct, poll_list);
4558 list_del_init(&n->poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004560 have = netpoll_poll_lock(n);
4561
4562 weight = n->weight;
4563
David S. Miller0a7606c2007-10-29 21:28:47 -07004564 /* This NAPI_STATE_SCHED test is for avoiding a race
4565 * with netpoll's poll_napi(). Only the entity which
4566 * obtains the lock and sees NAPI_STATE_SCHED set will
4567 * actually make the ->poll() call. Therefore we avoid
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004568 * accidentally calling ->poll() when NAPI is not scheduled.
David S. Miller0a7606c2007-10-29 21:28:47 -07004569 */
4570 work = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +00004571 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
David S. Miller0a7606c2007-10-29 21:28:47 -07004572 work = n->poll(n, weight);
Neil Horman4ea7e382009-05-21 07:36:08 +00004573 trace_napi_poll(n);
4574 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004575
4576 WARN_ON_ONCE(work > weight);
4577
4578 budget -= work;
4579
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004580 /* Drivers must not modify the NAPI state if they
4581 * consume the entire weight. In such cases this code
4582 * still "owns" the NAPI instance and therefore can
4583 * move the instance around on the list at-will.
4584 */
David S. Millerfed17f32008-01-07 21:00:40 -08004585 if (unlikely(work == weight)) {
Herbert Xuff780cd2009-06-26 19:27:04 -07004586 if (unlikely(napi_disable_pending(n))) {
Herbert Xuff780cd2009-06-26 19:27:04 -07004587 napi_complete(n);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004588 } else {
4589 if (n->gro_list) {
4590 /* flush too old packets
4591 * If HZ < 1000, flush all packets.
4592 */
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004593 napi_gro_flush(n, HZ >= 1000);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004594 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004595 list_add_tail(&n->poll_list, &repoll);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004596 }
David S. Millerfed17f32008-01-07 21:00:40 -08004597 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004598
4599 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004601
4602 if (!sd_has_rps_ipi_waiting(sd) &&
4603 list_empty(&list) &&
4604 list_empty(&repoll))
4605 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606out:
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004607 local_irq_disable();
4608
4609 list_splice_tail_init(&sd->poll_list, &list);
4610 list_splice_tail(&repoll, &list);
4611 list_splice(&list, &sd->poll_list);
4612 if (!list_empty(&sd->poll_list))
4613 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4614
Eric Dumazete326bed2010-04-22 00:22:45 -07004615 net_rps_action_and_irq_enable(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004616
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 return;
4618
4619softnet_break:
Changli Gaodee42872010-05-02 05:42:16 +00004620 sd->time_squeeze++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 goto out;
4622}
4623
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004624struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004625 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004626
4627 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004628 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004629
Veaceslav Falico5d261912013-08-28 23:25:05 +02004630 /* counter for the number of times this device was added to us */
4631 u16 ref_nr;
4632
Veaceslav Falico402dae92013-09-25 09:20:09 +02004633 /* private field for the users */
4634 void *private;
4635
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004636 struct list_head list;
4637 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004638};
4639
Veaceslav Falico5d261912013-08-28 23:25:05 +02004640static struct netdev_adjacent *__netdev_find_adj(struct net_device *dev,
4641 struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004642 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004643{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004644 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004645
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004646 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004647 if (adj->dev == adj_dev)
4648 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004649 }
4650 return NULL;
4651}
4652
4653/**
4654 * netdev_has_upper_dev - Check if device is linked to an upper device
4655 * @dev: device
4656 * @upper_dev: upper device to check
4657 *
4658 * Find out if a device is linked to specified upper device and return true
4659 * in case it is. Note that this checks only immediate upper device,
4660 * not through a complete stack of devices. The caller must hold the RTNL lock.
4661 */
4662bool netdev_has_upper_dev(struct net_device *dev,
4663 struct net_device *upper_dev)
4664{
4665 ASSERT_RTNL();
4666
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004667 return __netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004668}
4669EXPORT_SYMBOL(netdev_has_upper_dev);
4670
4671/**
4672 * netdev_has_any_upper_dev - Check if device is linked to some device
4673 * @dev: device
4674 *
4675 * Find out if a device is linked to an upper device and return true in case
4676 * it is. The caller must hold the RTNL lock.
4677 */
stephen hemminger1d143d92013-12-29 14:01:29 -08004678static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004679{
4680 ASSERT_RTNL();
4681
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004682 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004683}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004684
4685/**
4686 * netdev_master_upper_dev_get - Get master upper device
4687 * @dev: device
4688 *
4689 * Find a master upper device and return pointer to it or NULL in case
4690 * it's not there. The caller must hold the RTNL lock.
4691 */
4692struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
4693{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004694 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004695
4696 ASSERT_RTNL();
4697
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004698 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004699 return NULL;
4700
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004701 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004702 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004703 if (likely(upper->master))
4704 return upper->dev;
4705 return NULL;
4706}
4707EXPORT_SYMBOL(netdev_master_upper_dev_get);
4708
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02004709void *netdev_adjacent_get_private(struct list_head *adj_list)
4710{
4711 struct netdev_adjacent *adj;
4712
4713 adj = list_entry(adj_list, struct netdev_adjacent, list);
4714
4715 return adj->private;
4716}
4717EXPORT_SYMBOL(netdev_adjacent_get_private);
4718
Veaceslav Falico31088a12013-09-25 09:20:12 +02004719/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04004720 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
4721 * @dev: device
4722 * @iter: list_head ** of the current position
4723 *
4724 * Gets the next device from the dev's upper list, starting from iter
4725 * position. The caller must hold RCU read lock.
4726 */
4727struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4728 struct list_head **iter)
4729{
4730 struct netdev_adjacent *upper;
4731
4732 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
4733
4734 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4735
4736 if (&upper->list == &dev->adj_list.upper)
4737 return NULL;
4738
4739 *iter = &upper->list;
4740
4741 return upper->dev;
4742}
4743EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
4744
4745/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004746 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02004747 * @dev: device
4748 * @iter: list_head ** of the current position
4749 *
4750 * Gets the next device from the dev's upper list, starting from iter
4751 * position. The caller must hold RCU read lock.
4752 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004753struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4754 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004755{
4756 struct netdev_adjacent *upper;
4757
John Fastabend85328242013-11-26 06:33:52 +00004758 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02004759
4760 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4761
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004762 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004763 return NULL;
4764
4765 *iter = &upper->list;
4766
4767 return upper->dev;
4768}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004769EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02004770
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004771/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004772 * netdev_lower_get_next_private - Get the next ->private from the
4773 * lower neighbour list
4774 * @dev: device
4775 * @iter: list_head ** of the current position
4776 *
4777 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4778 * list, starting from iter position. The caller must hold either hold the
4779 * RTNL lock or its own locking that guarantees that the neighbour lower
4780 * list will remain unchainged.
4781 */
4782void *netdev_lower_get_next_private(struct net_device *dev,
4783 struct list_head **iter)
4784{
4785 struct netdev_adjacent *lower;
4786
4787 lower = list_entry(*iter, struct netdev_adjacent, list);
4788
4789 if (&lower->list == &dev->adj_list.lower)
4790 return NULL;
4791
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004792 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004793
4794 return lower->private;
4795}
4796EXPORT_SYMBOL(netdev_lower_get_next_private);
4797
4798/**
4799 * netdev_lower_get_next_private_rcu - Get the next ->private from the
4800 * lower neighbour list, RCU
4801 * variant
4802 * @dev: device
4803 * @iter: list_head ** of the current position
4804 *
4805 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4806 * list, starting from iter position. The caller must hold RCU read lock.
4807 */
4808void *netdev_lower_get_next_private_rcu(struct net_device *dev,
4809 struct list_head **iter)
4810{
4811 struct netdev_adjacent *lower;
4812
4813 WARN_ON_ONCE(!rcu_read_lock_held());
4814
4815 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4816
4817 if (&lower->list == &dev->adj_list.lower)
4818 return NULL;
4819
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004820 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004821
4822 return lower->private;
4823}
4824EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
4825
4826/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04004827 * netdev_lower_get_next - Get the next device from the lower neighbour
4828 * list
4829 * @dev: device
4830 * @iter: list_head ** of the current position
4831 *
4832 * Gets the next netdev_adjacent from the dev's lower neighbour
4833 * list, starting from iter position. The caller must hold RTNL lock or
4834 * its own locking that guarantees that the neighbour lower
4835 * list will remain unchainged.
4836 */
4837void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
4838{
4839 struct netdev_adjacent *lower;
4840
4841 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
4842
4843 if (&lower->list == &dev->adj_list.lower)
4844 return NULL;
4845
4846 *iter = &lower->list;
4847
4848 return lower->dev;
4849}
4850EXPORT_SYMBOL(netdev_lower_get_next);
4851
4852/**
dingtianhonge001bfa2013-12-13 10:19:55 +08004853 * netdev_lower_get_first_private_rcu - Get the first ->private from the
4854 * lower neighbour list, RCU
4855 * variant
4856 * @dev: device
4857 *
4858 * Gets the first netdev_adjacent->private from the dev's lower neighbour
4859 * list. The caller must hold RCU read lock.
4860 */
4861void *netdev_lower_get_first_private_rcu(struct net_device *dev)
4862{
4863 struct netdev_adjacent *lower;
4864
4865 lower = list_first_or_null_rcu(&dev->adj_list.lower,
4866 struct netdev_adjacent, list);
4867 if (lower)
4868 return lower->private;
4869 return NULL;
4870}
4871EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
4872
4873/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004874 * netdev_master_upper_dev_get_rcu - Get master upper device
4875 * @dev: device
4876 *
4877 * Find a master upper device and return pointer to it or NULL in case
4878 * it's not there. The caller must hold the RCU read lock.
4879 */
4880struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
4881{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004882 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004883
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004884 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004885 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004886 if (upper && likely(upper->master))
4887 return upper->dev;
4888 return NULL;
4889}
4890EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
4891
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304892static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004893 struct net_device *adj_dev,
4894 struct list_head *dev_list)
4895{
4896 char linkname[IFNAMSIZ+7];
4897 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4898 "upper_%s" : "lower_%s", adj_dev->name);
4899 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
4900 linkname);
4901}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304902static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004903 char *name,
4904 struct list_head *dev_list)
4905{
4906 char linkname[IFNAMSIZ+7];
4907 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4908 "upper_%s" : "lower_%s", name);
4909 sysfs_remove_link(&(dev->dev.kobj), linkname);
4910}
4911
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04004912static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
4913 struct net_device *adj_dev,
4914 struct list_head *dev_list)
4915{
4916 return (dev_list == &dev->adj_list.upper ||
4917 dev_list == &dev->adj_list.lower) &&
4918 net_eq(dev_net(dev), dev_net(adj_dev));
4919}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004920
Veaceslav Falico5d261912013-08-28 23:25:05 +02004921static int __netdev_adjacent_dev_insert(struct net_device *dev,
4922 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02004923 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004924 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004925{
4926 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004927 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004928
Veaceslav Falico7863c052013-09-25 09:20:06 +02004929 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004930
4931 if (adj) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004932 adj->ref_nr++;
4933 return 0;
4934 }
4935
4936 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
4937 if (!adj)
4938 return -ENOMEM;
4939
4940 adj->dev = adj_dev;
4941 adj->master = master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004942 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02004943 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004944 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004945
4946 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
4947 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004948
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04004949 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004950 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004951 if (ret)
4952 goto free_adj;
4953 }
4954
Veaceslav Falico7863c052013-09-25 09:20:06 +02004955 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004956 if (master) {
4957 ret = sysfs_create_link(&(dev->dev.kobj),
4958 &(adj_dev->dev.kobj), "master");
4959 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004960 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004961
Veaceslav Falico7863c052013-09-25 09:20:06 +02004962 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004963 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02004964 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004965 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004966
4967 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004968
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004969remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04004970 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004971 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004972free_adj:
4973 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02004974 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004975
4976 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004977}
4978
stephen hemminger1d143d92013-12-29 14:01:29 -08004979static void __netdev_adjacent_dev_remove(struct net_device *dev,
4980 struct net_device *adj_dev,
4981 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004982{
4983 struct netdev_adjacent *adj;
4984
Veaceslav Falico7863c052013-09-25 09:20:06 +02004985 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004986
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004987 if (!adj) {
4988 pr_err("tried to remove device %s from %s\n",
4989 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004990 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004991 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004992
4993 if (adj->ref_nr > 1) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004994 pr_debug("%s to %s ref_nr-- = %d\n", dev->name, adj_dev->name,
4995 adj->ref_nr-1);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004996 adj->ref_nr--;
4997 return;
4998 }
4999
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005000 if (adj->master)
5001 sysfs_remove_link(&(dev->dev.kobj), "master");
5002
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005003 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005004 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005005
Veaceslav Falico5d261912013-08-28 23:25:05 +02005006 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005007 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5008 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005009 dev_put(adj_dev);
5010 kfree_rcu(adj, rcu);
5011}
5012
stephen hemminger1d143d92013-12-29 14:01:29 -08005013static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5014 struct net_device *upper_dev,
5015 struct list_head *up_list,
5016 struct list_head *down_list,
5017 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005018{
5019 int ret;
5020
Veaceslav Falico402dae92013-09-25 09:20:09 +02005021 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list, private,
5022 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005023 if (ret)
5024 return ret;
5025
Veaceslav Falico402dae92013-09-25 09:20:09 +02005026 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list, private,
5027 false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005028 if (ret) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005029 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005030 return ret;
5031 }
5032
5033 return 0;
5034}
5035
stephen hemminger1d143d92013-12-29 14:01:29 -08005036static int __netdev_adjacent_dev_link(struct net_device *dev,
5037 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005038{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005039 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
5040 &dev->all_adj_list.upper,
5041 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005042 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005043}
5044
stephen hemminger1d143d92013-12-29 14:01:29 -08005045static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5046 struct net_device *upper_dev,
5047 struct list_head *up_list,
5048 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005049{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005050 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
5051 __netdev_adjacent_dev_remove(upper_dev, dev, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005052}
5053
stephen hemminger1d143d92013-12-29 14:01:29 -08005054static void __netdev_adjacent_dev_unlink(struct net_device *dev,
5055 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005056{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005057 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
5058 &dev->all_adj_list.upper,
5059 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005060}
5061
stephen hemminger1d143d92013-12-29 14:01:29 -08005062static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5063 struct net_device *upper_dev,
5064 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005065{
5066 int ret = __netdev_adjacent_dev_link(dev, upper_dev);
5067
5068 if (ret)
5069 return ret;
5070
5071 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev,
5072 &dev->adj_list.upper,
5073 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005074 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005075 if (ret) {
5076 __netdev_adjacent_dev_unlink(dev, upper_dev);
5077 return ret;
5078 }
5079
5080 return 0;
5081}
5082
stephen hemminger1d143d92013-12-29 14:01:29 -08005083static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5084 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005085{
5086 __netdev_adjacent_dev_unlink(dev, upper_dev);
5087 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
5088 &dev->adj_list.upper,
5089 &upper_dev->adj_list.lower);
5090}
Veaceslav Falico5d261912013-08-28 23:25:05 +02005091
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005092static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005093 struct net_device *upper_dev, bool master,
5094 void *private)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005095{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005096 struct netdev_adjacent *i, *j, *to_i, *to_j;
5097 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005098
5099 ASSERT_RTNL();
5100
5101 if (dev == upper_dev)
5102 return -EBUSY;
5103
5104 /* To prevent loops, check if dev is not upper device to upper_dev. */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005105 if (__netdev_find_adj(upper_dev, dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005106 return -EBUSY;
5107
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005108 if (__netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005109 return -EEXIST;
5110
5111 if (master && netdev_master_upper_dev_get(dev))
5112 return -EBUSY;
5113
Veaceslav Falico402dae92013-09-25 09:20:09 +02005114 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, private,
5115 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005116 if (ret)
5117 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005118
Veaceslav Falico5d261912013-08-28 23:25:05 +02005119 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005120 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005121 * versa, and don't forget the devices itself. All of these
5122 * links are non-neighbours.
5123 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005124 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5125 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5126 pr_debug("Interlinking %s with %s, non-neighbour\n",
5127 i->dev->name, j->dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005128 ret = __netdev_adjacent_dev_link(i->dev, j->dev);
5129 if (ret)
5130 goto rollback_mesh;
5131 }
5132 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005133
Veaceslav Falico5d261912013-08-28 23:25:05 +02005134 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005135 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5136 pr_debug("linking %s's upper device %s with %s\n",
5137 upper_dev->name, i->dev->name, dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005138 ret = __netdev_adjacent_dev_link(dev, i->dev);
5139 if (ret)
5140 goto rollback_upper_mesh;
5141 }
5142
5143 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005144 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5145 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5146 i->dev->name, upper_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005147 ret = __netdev_adjacent_dev_link(i->dev, upper_dev);
5148 if (ret)
5149 goto rollback_lower_mesh;
5150 }
5151
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005152 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005153 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005154
5155rollback_lower_mesh:
5156 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005157 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005158 if (i == to_i)
5159 break;
5160 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5161 }
5162
5163 i = NULL;
5164
5165rollback_upper_mesh:
5166 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005167 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005168 if (i == to_i)
5169 break;
5170 __netdev_adjacent_dev_unlink(dev, i->dev);
5171 }
5172
5173 i = j = NULL;
5174
5175rollback_mesh:
5176 to_i = i;
5177 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005178 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5179 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005180 if (i == to_i && j == to_j)
5181 break;
5182 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5183 }
5184 if (i == to_i)
5185 break;
5186 }
5187
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005188 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005189
5190 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005191}
5192
5193/**
5194 * netdev_upper_dev_link - Add a link to the upper device
5195 * @dev: device
5196 * @upper_dev: new upper device
5197 *
5198 * Adds a link to device which is upper to this one. The caller must hold
5199 * the RTNL lock. On a failure a negative errno code is returned.
5200 * On success the reference counts are adjusted and the function
5201 * returns zero.
5202 */
5203int netdev_upper_dev_link(struct net_device *dev,
5204 struct net_device *upper_dev)
5205{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005206 return __netdev_upper_dev_link(dev, upper_dev, false, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005207}
5208EXPORT_SYMBOL(netdev_upper_dev_link);
5209
5210/**
5211 * netdev_master_upper_dev_link - Add a master link to the upper device
5212 * @dev: device
5213 * @upper_dev: new upper device
5214 *
5215 * Adds a link to device which is upper to this one. In this case, only
5216 * one master upper device can be linked, although other non-master devices
5217 * might be linked as well. The caller must hold the RTNL lock.
5218 * On a failure a negative errno code is returned. On success the reference
5219 * counts are adjusted and the function returns zero.
5220 */
5221int netdev_master_upper_dev_link(struct net_device *dev,
5222 struct net_device *upper_dev)
5223{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005224 return __netdev_upper_dev_link(dev, upper_dev, true, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005225}
5226EXPORT_SYMBOL(netdev_master_upper_dev_link);
5227
Veaceslav Falico402dae92013-09-25 09:20:09 +02005228int netdev_master_upper_dev_link_private(struct net_device *dev,
5229 struct net_device *upper_dev,
5230 void *private)
5231{
5232 return __netdev_upper_dev_link(dev, upper_dev, true, private);
5233}
5234EXPORT_SYMBOL(netdev_master_upper_dev_link_private);
5235
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005236/**
5237 * netdev_upper_dev_unlink - Removes a link to upper device
5238 * @dev: device
5239 * @upper_dev: new upper device
5240 *
5241 * Removes a link to device which is upper to this one. The caller must hold
5242 * the RTNL lock.
5243 */
5244void netdev_upper_dev_unlink(struct net_device *dev,
5245 struct net_device *upper_dev)
5246{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005247 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005248 ASSERT_RTNL();
5249
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005250 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005251
5252 /* Here is the tricky part. We must remove all dev's lower
5253 * devices from all upper_dev's upper devices and vice
5254 * versa, to maintain the graph relationship.
5255 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005256 list_for_each_entry(i, &dev->all_adj_list.lower, list)
5257 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005258 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5259
5260 /* remove also the devices itself from lower/upper device
5261 * list
5262 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005263 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005264 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5265
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005266 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005267 __netdev_adjacent_dev_unlink(dev, i->dev);
5268
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005269 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005270}
5271EXPORT_SYMBOL(netdev_upper_dev_unlink);
5272
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005273void netdev_adjacent_add_links(struct net_device *dev)
5274{
5275 struct netdev_adjacent *iter;
5276
5277 struct net *net = dev_net(dev);
5278
5279 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5280 if (!net_eq(net,dev_net(iter->dev)))
5281 continue;
5282 netdev_adjacent_sysfs_add(iter->dev, dev,
5283 &iter->dev->adj_list.lower);
5284 netdev_adjacent_sysfs_add(dev, iter->dev,
5285 &dev->adj_list.upper);
5286 }
5287
5288 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5289 if (!net_eq(net,dev_net(iter->dev)))
5290 continue;
5291 netdev_adjacent_sysfs_add(iter->dev, dev,
5292 &iter->dev->adj_list.upper);
5293 netdev_adjacent_sysfs_add(dev, iter->dev,
5294 &dev->adj_list.lower);
5295 }
5296}
5297
5298void netdev_adjacent_del_links(struct net_device *dev)
5299{
5300 struct netdev_adjacent *iter;
5301
5302 struct net *net = dev_net(dev);
5303
5304 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5305 if (!net_eq(net,dev_net(iter->dev)))
5306 continue;
5307 netdev_adjacent_sysfs_del(iter->dev, dev->name,
5308 &iter->dev->adj_list.lower);
5309 netdev_adjacent_sysfs_del(dev, iter->dev->name,
5310 &dev->adj_list.upper);
5311 }
5312
5313 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5314 if (!net_eq(net,dev_net(iter->dev)))
5315 continue;
5316 netdev_adjacent_sysfs_del(iter->dev, dev->name,
5317 &iter->dev->adj_list.upper);
5318 netdev_adjacent_sysfs_del(dev, iter->dev->name,
5319 &dev->adj_list.lower);
5320 }
5321}
5322
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005323void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02005324{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005325 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005326
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005327 struct net *net = dev_net(dev);
5328
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005329 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005330 if (!net_eq(net,dev_net(iter->dev)))
5331 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005332 netdev_adjacent_sysfs_del(iter->dev, oldname,
5333 &iter->dev->adj_list.lower);
5334 netdev_adjacent_sysfs_add(iter->dev, dev,
5335 &iter->dev->adj_list.lower);
5336 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005337
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005338 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005339 if (!net_eq(net,dev_net(iter->dev)))
5340 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005341 netdev_adjacent_sysfs_del(iter->dev, oldname,
5342 &iter->dev->adj_list.upper);
5343 netdev_adjacent_sysfs_add(iter->dev, dev,
5344 &iter->dev->adj_list.upper);
5345 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005346}
Veaceslav Falico402dae92013-09-25 09:20:09 +02005347
5348void *netdev_lower_dev_get_private(struct net_device *dev,
5349 struct net_device *lower_dev)
5350{
5351 struct netdev_adjacent *lower;
5352
5353 if (!lower_dev)
5354 return NULL;
5355 lower = __netdev_find_adj(dev, lower_dev, &dev->adj_list.lower);
5356 if (!lower)
5357 return NULL;
5358
5359 return lower->private;
5360}
5361EXPORT_SYMBOL(netdev_lower_dev_get_private);
5362
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005363
5364int dev_get_nest_level(struct net_device *dev,
5365 bool (*type_check)(struct net_device *dev))
5366{
5367 struct net_device *lower = NULL;
5368 struct list_head *iter;
5369 int max_nest = -1;
5370 int nest;
5371
5372 ASSERT_RTNL();
5373
5374 netdev_for_each_lower_dev(dev, lower, iter) {
5375 nest = dev_get_nest_level(lower, type_check);
5376 if (max_nest < nest)
5377 max_nest = nest;
5378 }
5379
5380 if (type_check(dev))
5381 max_nest++;
5382
5383 return max_nest;
5384}
5385EXPORT_SYMBOL(dev_get_nest_level);
5386
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005387static void dev_change_rx_flags(struct net_device *dev, int flags)
5388{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005389 const struct net_device_ops *ops = dev->netdev_ops;
5390
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05005391 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005392 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005393}
5394
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005395static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07005396{
Eric Dumazetb536db92011-11-30 21:42:26 +00005397 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005398 kuid_t uid;
5399 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07005400
Patrick McHardy24023452007-07-14 18:51:31 -07005401 ASSERT_RTNL();
5402
Wang Chendad9b332008-06-18 01:48:28 -07005403 dev->flags |= IFF_PROMISC;
5404 dev->promiscuity += inc;
5405 if (dev->promiscuity == 0) {
5406 /*
5407 * Avoid overflow.
5408 * If inc causes overflow, untouch promisc and return error.
5409 */
5410 if (inc < 0)
5411 dev->flags &= ~IFF_PROMISC;
5412 else {
5413 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005414 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
5415 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005416 return -EOVERFLOW;
5417 }
5418 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005419 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005420 pr_info("device %s %s promiscuous mode\n",
5421 dev->name,
5422 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11005423 if (audit_enabled) {
5424 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005425 audit_log(current->audit_context, GFP_ATOMIC,
5426 AUDIT_ANOM_PROMISCUOUS,
5427 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
5428 dev->name, (dev->flags & IFF_PROMISC),
5429 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07005430 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005431 from_kuid(&init_user_ns, uid),
5432 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005433 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11005434 }
Patrick McHardy24023452007-07-14 18:51:31 -07005435
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005436 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07005437 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005438 if (notify)
5439 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07005440 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005441}
5442
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443/**
5444 * dev_set_promiscuity - update promiscuity count on a device
5445 * @dev: device
5446 * @inc: modifier
5447 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07005448 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 * remains above zero the interface remains promiscuous. Once it hits zero
5450 * the device reverts back to normal filtering operation. A negative inc
5451 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07005452 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 */
Wang Chendad9b332008-06-18 01:48:28 -07005454int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455{
Eric Dumazetb536db92011-11-30 21:42:26 +00005456 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07005457 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005459 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07005460 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07005461 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07005462 if (dev->flags != old_flags)
5463 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07005464 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005466EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005468static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005470 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
Patrick McHardy24023452007-07-14 18:51:31 -07005472 ASSERT_RTNL();
5473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07005475 dev->allmulti += inc;
5476 if (dev->allmulti == 0) {
5477 /*
5478 * Avoid overflow.
5479 * If inc causes overflow, untouch allmulti and return error.
5480 */
5481 if (inc < 0)
5482 dev->flags &= ~IFF_ALLMULTI;
5483 else {
5484 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005485 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
5486 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005487 return -EOVERFLOW;
5488 }
5489 }
Patrick McHardy24023452007-07-14 18:51:31 -07005490 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005491 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07005492 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005493 if (notify)
5494 __dev_notify_flags(dev, old_flags,
5495 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07005496 }
Wang Chendad9b332008-06-18 01:48:28 -07005497 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005498}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005499
5500/**
5501 * dev_set_allmulti - update allmulti count on a device
5502 * @dev: device
5503 * @inc: modifier
5504 *
5505 * Add or remove reception of all multicast frames to a device. While the
5506 * count in the device remains above zero the interface remains listening
5507 * to all interfaces. Once it hits zero the device reverts back to normal
5508 * filtering operation. A negative @inc value is used to drop the counter
5509 * when releasing a resource needing all multicasts.
5510 * Return 0 if successful or a negative errno code on error.
5511 */
5512
5513int dev_set_allmulti(struct net_device *dev, int inc)
5514{
5515 return __dev_set_allmulti(dev, inc, true);
5516}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005517EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07005518
5519/*
5520 * Upload unicast and multicast address lists to device and
5521 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08005522 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07005523 * are present.
5524 */
5525void __dev_set_rx_mode(struct net_device *dev)
5526{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005527 const struct net_device_ops *ops = dev->netdev_ops;
5528
Patrick McHardy4417da62007-06-27 01:28:10 -07005529 /* dev_open will call this function so the list will stay sane. */
5530 if (!(dev->flags&IFF_UP))
5531 return;
5532
5533 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09005534 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07005535
Jiri Pirko01789342011-08-16 06:29:00 +00005536 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07005537 /* Unicast addresses changes may only happen under the rtnl,
5538 * therefore calling __dev_set_promiscuity here is safe.
5539 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005540 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005541 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005542 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005543 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005544 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005545 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07005546 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005547 }
Jiri Pirko01789342011-08-16 06:29:00 +00005548
5549 if (ops->ndo_set_rx_mode)
5550 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005551}
5552
5553void dev_set_rx_mode(struct net_device *dev)
5554{
David S. Millerb9e40852008-07-15 00:15:08 -07005555 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005556 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07005557 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558}
5559
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005560/**
5561 * dev_get_flags - get flags reported to userspace
5562 * @dev: device
5563 *
5564 * Get the combination of flag bits exported through APIs to userspace.
5565 */
Eric Dumazet95c96172012-04-15 05:58:06 +00005566unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567{
Eric Dumazet95c96172012-04-15 05:58:06 +00005568 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569
5570 flags = (dev->flags & ~(IFF_PROMISC |
5571 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08005572 IFF_RUNNING |
5573 IFF_LOWER_UP |
5574 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 (dev->gflags & (IFF_PROMISC |
5576 IFF_ALLMULTI));
5577
Stefan Rompfb00055a2006-03-20 17:09:11 -08005578 if (netif_running(dev)) {
5579 if (netif_oper_up(dev))
5580 flags |= IFF_RUNNING;
5581 if (netif_carrier_ok(dev))
5582 flags |= IFF_LOWER_UP;
5583 if (netif_dormant(dev))
5584 flags |= IFF_DORMANT;
5585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
5587 return flags;
5588}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005589EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
Patrick McHardybd380812010-02-26 06:34:53 +00005591int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592{
Eric Dumazetb536db92011-11-30 21:42:26 +00005593 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00005594 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Patrick McHardy24023452007-07-14 18:51:31 -07005596 ASSERT_RTNL();
5597
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598 /*
5599 * Set the flags on our device.
5600 */
5601
5602 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
5603 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
5604 IFF_AUTOMEDIA)) |
5605 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
5606 IFF_ALLMULTI));
5607
5608 /*
5609 * Load in the correct multicast list now the flags have changed.
5610 */
5611
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005612 if ((old_flags ^ flags) & IFF_MULTICAST)
5613 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07005614
Patrick McHardy4417da62007-06-27 01:28:10 -07005615 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616
5617 /*
5618 * Have we downed the interface. We handle IFF_UP ourselves
5619 * according to user attempts to set it, rather than blindly
5620 * setting it.
5621 */
5622
5623 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08005624 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00005625 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005628 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005629 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005630
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005632
5633 if (__dev_set_promiscuity(dev, inc, false) >= 0)
5634 if (dev->flags != old_flags)
5635 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 }
5637
5638 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
5639 is important. Some (broken) drivers set IFF_PROMISC, when
5640 IFF_ALLMULTI is requested not asking us and not reporting.
5641 */
5642 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005643 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
5644
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005646 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 }
5648
Patrick McHardybd380812010-02-26 06:34:53 +00005649 return ret;
5650}
5651
Nicolas Dichtela528c212013-09-25 12:02:44 +02005652void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
5653 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00005654{
5655 unsigned int changes = dev->flags ^ old_flags;
5656
Nicolas Dichtela528c212013-09-25 12:02:44 +02005657 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07005658 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005659
Patrick McHardybd380812010-02-26 06:34:53 +00005660 if (changes & IFF_UP) {
5661 if (dev->flags & IFF_UP)
5662 call_netdevice_notifiers(NETDEV_UP, dev);
5663 else
5664 call_netdevice_notifiers(NETDEV_DOWN, dev);
5665 }
5666
5667 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00005668 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
5669 struct netdev_notifier_change_info change_info;
5670
5671 change_info.flags_changed = changes;
5672 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
5673 &change_info.info);
5674 }
Patrick McHardybd380812010-02-26 06:34:53 +00005675}
5676
5677/**
5678 * dev_change_flags - change device settings
5679 * @dev: device
5680 * @flags: device state flags
5681 *
5682 * Change settings on device based state flags. The flags are
5683 * in the userspace exported format.
5684 */
Eric Dumazetb536db92011-11-30 21:42:26 +00005685int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00005686{
Eric Dumazetb536db92011-11-30 21:42:26 +00005687 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005688 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00005689
5690 ret = __dev_change_flags(dev, flags);
5691 if (ret < 0)
5692 return ret;
5693
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005694 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005695 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696 return ret;
5697}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005698EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005700static int __dev_set_mtu(struct net_device *dev, int new_mtu)
5701{
5702 const struct net_device_ops *ops = dev->netdev_ops;
5703
5704 if (ops->ndo_change_mtu)
5705 return ops->ndo_change_mtu(dev, new_mtu);
5706
5707 dev->mtu = new_mtu;
5708 return 0;
5709}
5710
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005711/**
5712 * dev_set_mtu - Change maximum transfer unit
5713 * @dev: device
5714 * @new_mtu: new transfer unit
5715 *
5716 * Change the maximum transfer size of the network device.
5717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718int dev_set_mtu(struct net_device *dev, int new_mtu)
5719{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005720 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
5722 if (new_mtu == dev->mtu)
5723 return 0;
5724
5725 /* MTU must be positive. */
5726 if (new_mtu < 0)
5727 return -EINVAL;
5728
5729 if (!netif_device_present(dev))
5730 return -ENODEV;
5731
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01005732 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
5733 err = notifier_to_errno(err);
5734 if (err)
5735 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005736
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005737 orig_mtu = dev->mtu;
5738 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005740 if (!err) {
5741 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5742 err = notifier_to_errno(err);
5743 if (err) {
5744 /* setting mtu back and notifying everyone again,
5745 * so that they have a chance to revert changes.
5746 */
5747 __dev_set_mtu(dev, orig_mtu);
5748 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5749 }
5750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 return err;
5752}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005753EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005755/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00005756 * dev_set_group - Change group this device belongs to
5757 * @dev: device
5758 * @new_group: group this device should belong to
5759 */
5760void dev_set_group(struct net_device *dev, int new_group)
5761{
5762 dev->group = new_group;
5763}
5764EXPORT_SYMBOL(dev_set_group);
5765
5766/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005767 * dev_set_mac_address - Change Media Access Control Address
5768 * @dev: device
5769 * @sa: new address
5770 *
5771 * Change the hardware (MAC) address of the device
5772 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
5774{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005775 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 int err;
5777
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005778 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 return -EOPNOTSUPP;
5780 if (sa->sa_family != dev->type)
5781 return -EINVAL;
5782 if (!netif_device_present(dev))
5783 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005784 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00005785 if (err)
5786 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00005787 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00005788 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04005789 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00005790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005792EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005794/**
5795 * dev_change_carrier - Change device carrier
5796 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00005797 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005798 *
5799 * Change device carrier
5800 */
5801int dev_change_carrier(struct net_device *dev, bool new_carrier)
5802{
5803 const struct net_device_ops *ops = dev->netdev_ops;
5804
5805 if (!ops->ndo_change_carrier)
5806 return -EOPNOTSUPP;
5807 if (!netif_device_present(dev))
5808 return -ENODEV;
5809 return ops->ndo_change_carrier(dev, new_carrier);
5810}
5811EXPORT_SYMBOL(dev_change_carrier);
5812
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02005814 * dev_get_phys_port_id - Get device physical port ID
5815 * @dev: device
5816 * @ppid: port ID
5817 *
5818 * Get device physical port ID
5819 */
5820int dev_get_phys_port_id(struct net_device *dev,
5821 struct netdev_phys_port_id *ppid)
5822{
5823 const struct net_device_ops *ops = dev->netdev_ops;
5824
5825 if (!ops->ndo_get_phys_port_id)
5826 return -EOPNOTSUPP;
5827 return ops->ndo_get_phys_port_id(dev, ppid);
5828}
5829EXPORT_SYMBOL(dev_get_phys_port_id);
5830
5831/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005833 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 *
5835 * Returns a suitable unique value for a new device interface
5836 * number. The caller must hold the rtnl semaphore or the
5837 * dev_base_lock to be sure it remains unique.
5838 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07005839static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005841 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 for (;;) {
5843 if (++ifindex <= 0)
5844 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005845 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005846 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 }
5848}
5849
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08005851static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07005852DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
Stephen Hemminger6f05f622007-03-08 20:46:03 -08005854static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07005857 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858}
5859
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005860static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005861{
Krishna Kumare93737b2009-12-08 22:26:02 +00005862 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005863 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005864
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005865 BUG_ON(dev_boot_phase);
5866 ASSERT_RTNL();
5867
Krishna Kumare93737b2009-12-08 22:26:02 +00005868 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005869 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00005870 * for initialization unwind. Remove those
5871 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005872 */
5873 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005874 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
5875 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005876
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005877 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00005878 list_del(&dev->unreg_list);
5879 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005880 }
Eric Dumazet449f4542011-05-19 12:24:16 +00005881 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005882 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00005883 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005884
Octavian Purdila44345722010-12-13 12:44:07 +00005885 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005886 list_for_each_entry(dev, head, unreg_list)
5887 list_add_tail(&dev->close_list, &close_head);
5888 dev_close_many(&close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005889
Octavian Purdila44345722010-12-13 12:44:07 +00005890 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005891 /* And unlink it from device chain. */
5892 unlist_netdevice(dev);
5893
5894 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005895 }
5896
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005897 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005898
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005899 list_for_each_entry(dev, head, unreg_list) {
5900 /* Shutdown queueing discipline. */
5901 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005902
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005903
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005904 /* Notify protocols, that we are about to destroy
5905 this device. They should clean all the things.
5906 */
5907 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5908
5909 /*
5910 * Flush the unicast and multicast chains
5911 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00005912 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005913 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005914
5915 if (dev->netdev_ops->ndo_uninit)
5916 dev->netdev_ops->ndo_uninit(dev);
5917
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07005918 if (!dev->rtnl_link_ops ||
5919 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5920 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
5921
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005922 /* Notifier chain MUST detach us all upper devices. */
5923 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005924
5925 /* Remove entries from kobject tree */
5926 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00005927#ifdef CONFIG_XPS
5928 /* Remove XPS queueing entries */
5929 netif_reset_xps_queues_gt(dev, 0);
5930#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005931 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005932
Eric W. Biederman850a5452011-10-13 22:25:23 +00005933 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005934
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005935 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005936 dev_put(dev);
5937}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005938
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005939static void rollback_registered(struct net_device *dev)
5940{
5941 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005942
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005943 list_add(&dev->unreg_list, &single);
5944 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00005945 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005946}
5947
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005948static netdev_features_t netdev_fix_features(struct net_device *dev,
5949 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07005950{
Michał Mirosław57422dc2011-01-22 12:14:12 +00005951 /* Fix illegal checksum combinations */
5952 if ((features & NETIF_F_HW_CSUM) &&
5953 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005954 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00005955 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5956 }
5957
Herbert Xub63365a2008-10-23 01:11:29 -07005958 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005959 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005960 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005961 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07005962 }
5963
Pravin B Shelarec5f0612013-03-07 09:28:01 +00005964 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
5965 !(features & NETIF_F_IP_CSUM)) {
5966 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
5967 features &= ~NETIF_F_TSO;
5968 features &= ~NETIF_F_TSO_ECN;
5969 }
5970
5971 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
5972 !(features & NETIF_F_IPV6_CSUM)) {
5973 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
5974 features &= ~NETIF_F_TSO6;
5975 }
5976
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00005977 /* TSO ECN requires that TSO is present as well. */
5978 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
5979 features &= ~NETIF_F_TSO_ECN;
5980
Michał Mirosław212b5732011-02-15 16:59:16 +00005981 /* Software GSO depends on SG. */
5982 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005983 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00005984 features &= ~NETIF_F_GSO;
5985 }
5986
Michał Mirosławacd11302011-01-24 15:45:15 -08005987 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07005988 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00005989 /* maybe split UFO into V4 and V6? */
5990 if (!((features & NETIF_F_GEN_CSUM) ||
5991 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))
5992 == (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005993 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08005994 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005995 features &= ~NETIF_F_UFO;
5996 }
5997
5998 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005999 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006000 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006001 features &= ~NETIF_F_UFO;
6002 }
6003 }
6004
Jiri Pirkod0290212014-04-02 23:09:31 +02006005#ifdef CONFIG_NET_RX_BUSY_POLL
6006 if (dev->netdev_ops->ndo_busy_poll)
6007 features |= NETIF_F_BUSY_POLL;
6008 else
6009#endif
6010 features &= ~NETIF_F_BUSY_POLL;
6011
Herbert Xub63365a2008-10-23 01:11:29 -07006012 return features;
6013}
Herbert Xub63365a2008-10-23 01:11:29 -07006014
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006015int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00006016{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006017 netdev_features_t features;
Michał Mirosław5455c692011-02-15 16:59:17 +00006018 int err = 0;
6019
Michał Mirosław87267482011-04-12 09:56:38 +00006020 ASSERT_RTNL();
6021
Michał Mirosław5455c692011-02-15 16:59:17 +00006022 features = netdev_get_wanted_features(dev);
6023
6024 if (dev->netdev_ops->ndo_fix_features)
6025 features = dev->netdev_ops->ndo_fix_features(dev, features);
6026
6027 /* driver might be less strict about feature dependencies */
6028 features = netdev_fix_features(dev, features);
6029
6030 if (dev->features == features)
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006031 return 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00006032
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006033 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
6034 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00006035
6036 if (dev->netdev_ops->ndo_set_features)
6037 err = dev->netdev_ops->ndo_set_features(dev, features);
6038
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006039 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00006040 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006041 "set_features() failed (%d); wanted %pNF, left %pNF\n",
6042 err, &features, &dev->features);
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006043 return -1;
6044 }
6045
6046 if (!err)
6047 dev->features = features;
6048
6049 return 1;
6050}
6051
Michał Mirosławafe12cc2011-05-07 03:22:17 +00006052/**
6053 * netdev_update_features - recalculate device features
6054 * @dev: the device to check
6055 *
6056 * Recalculate dev->features set and send notifications if it
6057 * has changed. Should be called after driver or hardware dependent
6058 * conditions might have changed that influence the features.
6059 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006060void netdev_update_features(struct net_device *dev)
6061{
6062 if (__netdev_update_features(dev))
6063 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00006064}
6065EXPORT_SYMBOL(netdev_update_features);
6066
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00006068 * netdev_change_features - recalculate device features
6069 * @dev: the device to check
6070 *
6071 * Recalculate dev->features set and send notifications even
6072 * if they have not changed. Should be called instead of
6073 * netdev_update_features() if also dev->vlan_features might
6074 * have changed to allow the changes to be propagated to stacked
6075 * VLAN devices.
6076 */
6077void netdev_change_features(struct net_device *dev)
6078{
6079 __netdev_update_features(dev);
6080 netdev_features_change(dev);
6081}
6082EXPORT_SYMBOL(netdev_change_features);
6083
6084/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08006085 * netif_stacked_transfer_operstate - transfer operstate
6086 * @rootdev: the root or lower level device to transfer state from
6087 * @dev: the device to transfer operstate to
6088 *
6089 * Transfer operational state from root to device. This is normally
6090 * called when a stacking relationship exists between the root
6091 * device and the device(a leaf device).
6092 */
6093void netif_stacked_transfer_operstate(const struct net_device *rootdev,
6094 struct net_device *dev)
6095{
6096 if (rootdev->operstate == IF_OPER_DORMANT)
6097 netif_dormant_on(dev);
6098 else
6099 netif_dormant_off(dev);
6100
6101 if (netif_carrier_ok(rootdev)) {
6102 if (!netif_carrier_ok(dev))
6103 netif_carrier_on(dev);
6104 } else {
6105 if (netif_carrier_ok(dev))
6106 netif_carrier_off(dev);
6107 }
6108}
6109EXPORT_SYMBOL(netif_stacked_transfer_operstate);
6110
Michael Daltona953be52014-01-16 22:23:28 -08006111#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006112static int netif_alloc_rx_queues(struct net_device *dev)
6113{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006114 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00006115 struct netdev_rx_queue *rx;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006116
Tom Herbertbd25fa72010-10-18 18:00:16 +00006117 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006118
Tom Herbertbd25fa72010-10-18 18:00:16 +00006119 rx = kcalloc(count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
Joe Perches62b59422013-02-04 16:48:16 +00006120 if (!rx)
Tom Herbertbd25fa72010-10-18 18:00:16 +00006121 return -ENOMEM;
Joe Perches62b59422013-02-04 16:48:16 +00006122
Tom Herbertbd25fa72010-10-18 18:00:16 +00006123 dev->_rx = rx;
6124
Tom Herbertbd25fa72010-10-18 18:00:16 +00006125 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00006126 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006127 return 0;
6128}
Tom Herbertbf264142010-11-26 08:36:09 +00006129#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006130
Changli Gaoaa942102010-12-04 02:31:41 +00006131static void netdev_init_one_queue(struct net_device *dev,
6132 struct netdev_queue *queue, void *_unused)
6133{
6134 /* Initialize queue lock */
6135 spin_lock_init(&queue->_xmit_lock);
6136 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
6137 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00006138 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00006139 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00006140#ifdef CONFIG_BQL
6141 dql_init(&queue->dql, HZ);
6142#endif
Changli Gaoaa942102010-12-04 02:31:41 +00006143}
6144
Eric Dumazet60877a32013-06-20 01:15:51 -07006145static void netif_free_tx_queues(struct net_device *dev)
6146{
WANG Cong4cb28972014-06-02 15:55:22 -07006147 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07006148}
6149
Tom Herberte6484932010-10-18 18:04:39 +00006150static int netif_alloc_netdev_queues(struct net_device *dev)
6151{
6152 unsigned int count = dev->num_tx_queues;
6153 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07006154 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00006155
Eric Dumazet60877a32013-06-20 01:15:51 -07006156 BUG_ON(count < 1 || count > 0xffff);
Tom Herberte6484932010-10-18 18:04:39 +00006157
Eric Dumazet60877a32013-06-20 01:15:51 -07006158 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6159 if (!tx) {
6160 tx = vzalloc(sz);
6161 if (!tx)
6162 return -ENOMEM;
6163 }
Tom Herberte6484932010-10-18 18:04:39 +00006164 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00006165
Tom Herberte6484932010-10-18 18:04:39 +00006166 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
6167 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00006168
6169 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00006170}
6171
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08006172/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173 * register_netdevice - register a network device
6174 * @dev: device to register
6175 *
6176 * Take a completed network device structure and add it to the kernel
6177 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6178 * chain. 0 is returned on success. A negative errno code is returned
6179 * on a failure to set up the device, or if the name is a duplicate.
6180 *
6181 * Callers must hold the rtnl semaphore. You may want
6182 * register_netdev() instead of this.
6183 *
6184 * BUGS:
6185 * The locking appears insufficient to guarantee two parallel registers
6186 * will not get the same name.
6187 */
6188
6189int register_netdevice(struct net_device *dev)
6190{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006192 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193
6194 BUG_ON(dev_boot_phase);
6195 ASSERT_RTNL();
6196
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006197 might_sleep();
6198
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199 /* When net_device's are persistent, this will be fatal. */
6200 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006201 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
David S. Millerf1f28aa2008-07-15 00:08:33 -07006203 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07006204 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206 dev->iflink = -1;
6207
Gao feng828de4f2012-09-13 20:58:27 +00006208 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00006209 if (ret < 0)
6210 goto out;
6211
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006213 if (dev->netdev_ops->ndo_init) {
6214 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 if (ret) {
6216 if (ret > 0)
6217 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08006218 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219 }
6220 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006221
Patrick McHardyf6469682013-04-19 02:04:27 +00006222 if (((dev->hw_features | dev->features) &
6223 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00006224 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
6225 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
6226 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
6227 ret = -EINVAL;
6228 goto err_uninit;
6229 }
6230
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00006231 ret = -EBUSY;
6232 if (!dev->ifindex)
6233 dev->ifindex = dev_new_index(net);
6234 else if (__dev_get_by_index(net, dev->ifindex))
6235 goto err_uninit;
6236
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237 if (dev->iflink == -1)
6238 dev->iflink = dev->ifindex;
6239
Michał Mirosław5455c692011-02-15 16:59:17 +00006240 /* Transfer changeable features to wanted_features and enable
6241 * software offloads (GSO and GRO).
6242 */
6243 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00006244 dev->features |= NETIF_F_SOFT_FEATURES;
6245 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
Michał Mirosław34324dc2011-11-15 15:29:55 +00006247 if (!(dev->flags & IFF_LOOPBACK)) {
6248 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07006249 }
6250
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006251 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00006252 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006253 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00006254
Pravin B Shelaree579672013-03-07 09:28:08 +00006255 /* Make NETIF_F_SG inheritable to tunnel devices.
6256 */
6257 dev->hw_enc_features |= NETIF_F_SG;
6258
Simon Horman0d89d202013-05-23 21:02:52 +00006259 /* Make NETIF_F_SG inheritable to MPLS.
6260 */
6261 dev->mpls_features |= NETIF_F_SG;
6262
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00006263 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
6264 ret = notifier_to_errno(ret);
6265 if (ret)
6266 goto err_uninit;
6267
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006268 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006269 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006270 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006271 dev->reg_state = NETREG_REGISTERED;
6272
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006273 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00006274
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275 /*
6276 * Default initial state at registry is that the
6277 * device is present.
6278 */
6279
6280 set_bit(__LINK_STATE_PRESENT, &dev->state);
6281
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01006282 linkwatch_init_dev(dev);
6283
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006286 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006287 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
Jiri Pirko948b3372013-01-08 01:38:25 +00006289 /* If the device has permanent device address, driver should
6290 * set dev_addr and also addr_assign_type should be set to
6291 * NET_ADDR_PERM (default value).
6292 */
6293 if (dev->addr_assign_type == NET_ADDR_PERM)
6294 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6295
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006297 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07006298 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006299 if (ret) {
6300 rollback_registered(dev);
6301 dev->reg_state = NETREG_UNREGISTERED;
6302 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006303 /*
6304 * Prevent userspace races by waiting until the network
6305 * device is fully setup before sending notifications.
6306 */
Patrick McHardya2835762010-02-26 06:34:51 +00006307 if (!dev->rtnl_link_ops ||
6308 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006309 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
6311out:
6312 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006313
6314err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006315 if (dev->netdev_ops->ndo_uninit)
6316 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006317 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006319EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320
6321/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006322 * init_dummy_netdev - init a dummy network device for NAPI
6323 * @dev: device to init
6324 *
6325 * This takes a network device structure and initialize the minimum
6326 * amount of fields so it can be used to schedule NAPI polls without
6327 * registering a full blown interface. This is to be used by drivers
6328 * that need to tie several hardware interfaces to a single NAPI
6329 * poll scheduler due to HW limitations.
6330 */
6331int init_dummy_netdev(struct net_device *dev)
6332{
6333 /* Clear everything. Note we don't initialize spinlocks
6334 * are they aren't supposed to be taken by any of the
6335 * NAPI code and this dummy netdev is supposed to be
6336 * only ever used for NAPI polls
6337 */
6338 memset(dev, 0, sizeof(struct net_device));
6339
6340 /* make sure we BUG if trying to hit standard
6341 * register/unregister code path
6342 */
6343 dev->reg_state = NETREG_DUMMY;
6344
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006345 /* NAPI wants this */
6346 INIT_LIST_HEAD(&dev->napi_list);
6347
6348 /* a dummy interface is started by default */
6349 set_bit(__LINK_STATE_PRESENT, &dev->state);
6350 set_bit(__LINK_STATE_START, &dev->state);
6351
Eric Dumazet29b44332010-10-11 10:22:12 +00006352 /* Note : We dont allocate pcpu_refcnt for dummy devices,
6353 * because users of this 'device' dont need to change
6354 * its refcount.
6355 */
6356
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006357 return 0;
6358}
6359EXPORT_SYMBOL_GPL(init_dummy_netdev);
6360
6361
6362/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363 * register_netdev - register a network device
6364 * @dev: device to register
6365 *
6366 * Take a completed network device structure and add it to the kernel
6367 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6368 * chain. 0 is returned on success. A negative errno code is returned
6369 * on a failure to set up the device, or if the name is a duplicate.
6370 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07006371 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372 * and expands the device name if you passed a format string to
6373 * alloc_netdev.
6374 */
6375int register_netdev(struct net_device *dev)
6376{
6377 int err;
6378
6379 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381 rtnl_unlock();
6382 return err;
6383}
6384EXPORT_SYMBOL(register_netdev);
6385
Eric Dumazet29b44332010-10-11 10:22:12 +00006386int netdev_refcnt_read(const struct net_device *dev)
6387{
6388 int i, refcnt = 0;
6389
6390 for_each_possible_cpu(i)
6391 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
6392 return refcnt;
6393}
6394EXPORT_SYMBOL(netdev_refcnt_read);
6395
Ben Hutchings2c530402012-07-10 10:55:09 +00006396/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00006398 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399 *
6400 * This is called when unregistering network devices.
6401 *
6402 * Any protocol or device that holds a reference should register
6403 * for netdevice notification, and cleanup and put back the
6404 * reference if they receive an UNREGISTER event.
6405 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006406 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 */
6408static void netdev_wait_allrefs(struct net_device *dev)
6409{
6410 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00006411 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
Eric Dumazete014deb2009-11-17 05:59:21 +00006413 linkwatch_forget_dev(dev);
6414
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00006416 refcnt = netdev_refcnt_read(dev);
6417
6418 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006420 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421
6422 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006423 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Eric Dumazet748e2d92012-08-22 21:50:59 +00006425 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006426 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00006427 rtnl_lock();
6428
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006429 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
6431 &dev->state)) {
6432 /* We must not have linkwatch events
6433 * pending on unregister. If this
6434 * happens, we simply run the queue
6435 * unscheduled, resulting in a noop
6436 * for this device.
6437 */
6438 linkwatch_run_queue();
6439 }
6440
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006441 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442
6443 rebroadcast_time = jiffies;
6444 }
6445
6446 msleep(250);
6447
Eric Dumazet29b44332010-10-11 10:22:12 +00006448 refcnt = netdev_refcnt_read(dev);
6449
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006451 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
6452 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453 warning_time = jiffies;
6454 }
6455 }
6456}
6457
6458/* The sequence is:
6459 *
6460 * rtnl_lock();
6461 * ...
6462 * register_netdevice(x1);
6463 * register_netdevice(x2);
6464 * ...
6465 * unregister_netdevice(y1);
6466 * unregister_netdevice(y2);
6467 * ...
6468 * rtnl_unlock();
6469 * free_netdev(y1);
6470 * free_netdev(y2);
6471 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07006472 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006474 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475 * without deadlocking with linkwatch via keventd.
6476 * 2) Since we run with the RTNL semaphore not held, we can sleep
6477 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07006478 *
6479 * We must not return until all unregister events added during
6480 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482void netdev_run_todo(void)
6483{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006484 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006487 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07006488
6489 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006490
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006491
6492 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00006493 if (!list_empty(&list))
6494 rcu_barrier();
6495
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 while (!list_empty(&list)) {
6497 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00006498 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499 list_del(&dev->todo_list);
6500
Eric Dumazet748e2d92012-08-22 21:50:59 +00006501 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006502 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00006503 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006504
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006505 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006506 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006508 dump_stack();
6509 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006511
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006512 dev->reg_state = NETREG_UNREGISTERED;
6513
Changli Gao152102c2010-03-30 20:16:22 +00006514 on_each_cpu(flush_backlog, dev, 1);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07006515
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006516 netdev_wait_allrefs(dev);
6517
6518 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00006519 BUG_ON(netdev_refcnt_read(dev));
Eric Dumazet33d480c2011-08-11 19:30:52 +00006520 WARN_ON(rcu_access_pointer(dev->ip_ptr));
6521 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07006522 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006523
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006524 if (dev->destructor)
6525 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006526
Eric W. Biederman50624c92013-09-23 21:19:49 -07006527 /* Report a network device has been unregistered */
6528 rtnl_lock();
6529 dev_net(dev)->dev_unreg_count--;
6530 __rtnl_unlock();
6531 wake_up(&netdev_unregistering_wq);
6532
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006533 /* Free network device */
6534 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536}
6537
Ben Hutchings3cfde792010-07-09 09:11:52 +00006538/* Convert net_device_stats to rtnl_link_stats64. They have the same
6539 * fields in the same order, with only the type differing.
6540 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006541void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
6542 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00006543{
6544#if BITS_PER_LONG == 64
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006545 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
6546 memcpy(stats64, netdev_stats, sizeof(*stats64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00006547#else
6548 size_t i, n = sizeof(*stats64) / sizeof(u64);
6549 const unsigned long *src = (const unsigned long *)netdev_stats;
6550 u64 *dst = (u64 *)stats64;
6551
6552 BUILD_BUG_ON(sizeof(*netdev_stats) / sizeof(unsigned long) !=
6553 sizeof(*stats64) / sizeof(u64));
6554 for (i = 0; i < n; i++)
6555 dst[i] = src[i];
6556#endif
6557}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006558EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00006559
Eric Dumazetd83345a2009-11-16 03:36:51 +00006560/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006561 * dev_get_stats - get network device statistics
6562 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07006563 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006564 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00006565 * Get network statistics from device. Return @storage.
6566 * The device driver may provide its own method by setting
6567 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
6568 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006569 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00006570struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
6571 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00006572{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006573 const struct net_device_ops *ops = dev->netdev_ops;
6574
Eric Dumazet28172732010-07-07 14:58:56 -07006575 if (ops->ndo_get_stats64) {
6576 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006577 ops->ndo_get_stats64(dev, storage);
6578 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00006579 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006580 } else {
6581 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07006582 }
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006583 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
Eric Dumazet015f0682014-03-27 08:45:56 -07006584 storage->tx_dropped += atomic_long_read(&dev->tx_dropped);
Eric Dumazet28172732010-07-07 14:58:56 -07006585 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07006586}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006587EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07006588
Eric Dumazet24824a02010-10-02 06:11:55 +00006589struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07006590{
Eric Dumazet24824a02010-10-02 06:11:55 +00006591 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07006592
Eric Dumazet24824a02010-10-02 06:11:55 +00006593#ifdef CONFIG_NET_CLS_ACT
6594 if (queue)
6595 return queue;
6596 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
6597 if (!queue)
6598 return NULL;
6599 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet24824a02010-10-02 06:11:55 +00006600 queue->qdisc = &noop_qdisc;
6601 queue->qdisc_sleeping = &noop_qdisc;
6602 rcu_assign_pointer(dev->ingress_queue, queue);
6603#endif
6604 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07006605}
6606
Eric Dumazet2c60db02012-09-16 09:17:26 +00006607static const struct ethtool_ops default_ethtool_ops;
6608
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00006609void netdev_set_default_ethtool_ops(struct net_device *dev,
6610 const struct ethtool_ops *ops)
6611{
6612 if (dev->ethtool_ops == &default_ethtool_ops)
6613 dev->ethtool_ops = ops;
6614}
6615EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
6616
Eric Dumazet74d332c2013-10-30 13:10:44 -07006617void netdev_freemem(struct net_device *dev)
6618{
6619 char *addr = (char *)dev - dev->padded;
6620
WANG Cong4cb28972014-06-02 15:55:22 -07006621 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006622}
6623
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624/**
Tom Herbert36909ea2011-01-09 19:36:31 +00006625 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02006626 * @sizeof_priv: size of private data to allocate space for
6627 * @name: device name format string
6628 * @name_assign_type: origin of device name
6629 * @setup: callback to initialize device
6630 * @txqs: the number of TX subqueues to allocate
6631 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632 *
6633 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08006634 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00006635 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636 */
Tom Herbert36909ea2011-01-09 19:36:31 +00006637struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02006638 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00006639 void (*setup)(struct net_device *),
6640 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07006643 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006644 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07006646 BUG_ON(strlen(name) >= sizeof(dev->name));
6647
Tom Herbert36909ea2011-01-09 19:36:31 +00006648 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006649 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00006650 return NULL;
6651 }
6652
Michael Daltona953be52014-01-16 22:23:28 -08006653#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00006654 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006655 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00006656 return NULL;
6657 }
6658#endif
6659
David S. Millerfd2ea0a2008-07-17 01:56:23 -07006660 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006661 if (sizeof_priv) {
6662 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006663 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006664 alloc_size += sizeof_priv;
6665 }
6666 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006667 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668
Eric Dumazet74d332c2013-10-30 13:10:44 -07006669 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6670 if (!p)
6671 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00006672 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006675 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006677
Eric Dumazet29b44332010-10-11 10:22:12 +00006678 dev->pcpu_refcnt = alloc_percpu(int);
6679 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07006680 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006681
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00006683 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684
Jiri Pirko22bedad32010-04-01 21:22:57 +00006685 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006686 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00006687
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006688 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07006690 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00006691 dev->gso_max_segs = GSO_MAX_SEGS;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07006692 dev->gso_min_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693
Herbert Xud565b0a2008-12-15 23:38:52 -08006694 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006695 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006696 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00006697 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006698 INIT_LIST_HEAD(&dev->adj_list.upper);
6699 INIT_LIST_HEAD(&dev->adj_list.lower);
6700 INIT_LIST_HEAD(&dev->all_adj_list.upper);
6701 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Eric Dumazet02875872014-10-05 18:38:35 -07006702 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006704
6705 dev->num_tx_queues = txqs;
6706 dev->real_num_tx_queues = txqs;
6707 if (netif_alloc_netdev_queues(dev))
6708 goto free_all;
6709
Michael Daltona953be52014-01-16 22:23:28 -08006710#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006711 dev->num_rx_queues = rxqs;
6712 dev->real_num_rx_queues = rxqs;
6713 if (netif_alloc_rx_queues(dev))
6714 goto free_all;
6715#endif
6716
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02006718 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006719 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00006720 if (!dev->ethtool_ops)
6721 dev->ethtool_ops = &default_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006723
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006724free_all:
6725 free_netdev(dev);
6726 return NULL;
6727
Eric Dumazet29b44332010-10-11 10:22:12 +00006728free_pcpu:
6729 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006730free_dev:
6731 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006732 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733}
Tom Herbert36909ea2011-01-09 19:36:31 +00006734EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
6736/**
6737 * free_netdev - free network device
6738 * @dev: device
6739 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006740 * This function does the last stage of destroying an allocated device
6741 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742 * If this is the last reference then it will be freed.
6743 */
6744void free_netdev(struct net_device *dev)
6745{
Herbert Xud565b0a2008-12-15 23:38:52 -08006746 struct napi_struct *p, *n;
6747
Denis V. Lunevf3005d72008-04-16 02:02:18 -07006748 release_net(dev_net(dev));
6749
Eric Dumazet60877a32013-06-20 01:15:51 -07006750 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08006751#ifdef CONFIG_SYSFS
Tom Herbertfe822242010-11-09 10:47:38 +00006752 kfree(dev->_rx);
6753#endif
David S. Millere8a04642008-07-17 00:34:19 -07006754
Eric Dumazet33d480c2011-08-11 19:30:52 +00006755 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00006756
Jiri Pirkof001fde2009-05-05 02:48:28 +00006757 /* Flush device addresses */
6758 dev_addr_flush(dev);
6759
Herbert Xud565b0a2008-12-15 23:38:52 -08006760 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
6761 netif_napi_del(p);
6762
Eric Dumazet29b44332010-10-11 10:22:12 +00006763 free_percpu(dev->pcpu_refcnt);
6764 dev->pcpu_refcnt = NULL;
6765
Stephen Hemminger3041a062006-05-26 13:25:24 -07006766 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07006768 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 return;
6770 }
6771
6772 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
6773 dev->reg_state = NETREG_RELEASED;
6774
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07006775 /* will free via device release */
6776 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006778EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006779
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006780/**
6781 * synchronize_net - Synchronize with packet receive processing
6782 *
6783 * Wait for packets currently being received to be done.
6784 * Does not block later packets from starting.
6785 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006786void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787{
6788 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00006789 if (rtnl_is_locked())
6790 synchronize_rcu_expedited();
6791 else
6792 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006794EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795
6796/**
Eric Dumazet44a08732009-10-27 07:03:04 +00006797 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00006799 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08006800 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006802 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00006803 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804 *
6805 * Callers must hold the rtnl semaphore. You may want
6806 * unregister_netdev() instead of this.
6807 */
6808
Eric Dumazet44a08732009-10-27 07:03:04 +00006809void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810{
Herbert Xua6620712007-12-12 19:21:56 -08006811 ASSERT_RTNL();
6812
Eric Dumazet44a08732009-10-27 07:03:04 +00006813 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006814 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00006815 } else {
6816 rollback_registered(dev);
6817 /* Finish processing unregister after unlock */
6818 net_set_todo(dev);
6819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820}
Eric Dumazet44a08732009-10-27 07:03:04 +00006821EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822
6823/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006824 * unregister_netdevice_many - unregister many devices
6825 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07006826 *
6827 * Note: As most callers use a stack allocated list_head,
6828 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006829 */
6830void unregister_netdevice_many(struct list_head *head)
6831{
6832 struct net_device *dev;
6833
6834 if (!list_empty(head)) {
6835 rollback_registered_many(head);
6836 list_for_each_entry(dev, head, unreg_list)
6837 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07006838 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006839 }
6840}
Eric Dumazet63c80992009-10-27 07:06:49 +00006841EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006842
6843/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 * unregister_netdev - remove device from the kernel
6845 * @dev: device
6846 *
6847 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006848 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849 *
6850 * This is just a wrapper for unregister_netdevice that takes
6851 * the rtnl semaphore. In general you want to use this and not
6852 * unregister_netdevice.
6853 */
6854void unregister_netdev(struct net_device *dev)
6855{
6856 rtnl_lock();
6857 unregister_netdevice(dev);
6858 rtnl_unlock();
6859}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860EXPORT_SYMBOL(unregister_netdev);
6861
Eric W. Biedermance286d32007-09-12 13:53:49 +02006862/**
6863 * dev_change_net_namespace - move device to different nethost namespace
6864 * @dev: device
6865 * @net: network namespace
6866 * @pat: If not NULL name pattern to try if the current device name
6867 * is already taken in the destination network namespace.
6868 *
6869 * This function shuts down a device interface and moves it
6870 * to a new network namespace. On success 0 is returned, on
6871 * a failure a netagive errno code is returned.
6872 *
6873 * Callers must hold the rtnl semaphore.
6874 */
6875
6876int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
6877{
Eric W. Biedermance286d32007-09-12 13:53:49 +02006878 int err;
6879
6880 ASSERT_RTNL();
6881
6882 /* Don't allow namespace local devices to be moved. */
6883 err = -EINVAL;
6884 if (dev->features & NETIF_F_NETNS_LOCAL)
6885 goto out;
6886
6887 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02006888 if (dev->reg_state != NETREG_REGISTERED)
6889 goto out;
6890
6891 /* Get out if there is nothing todo */
6892 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09006893 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02006894 goto out;
6895
6896 /* Pick the destination device name, and ensure
6897 * we can use it in the destination network namespace.
6898 */
6899 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00006900 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02006901 /* We get here if we can't use the current device name */
6902 if (!pat)
6903 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00006904 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02006905 goto out;
6906 }
6907
6908 /*
6909 * And now a mini version of register_netdevice unregister_netdevice.
6910 */
6911
6912 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07006913 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006914
6915 /* And unlink it from device chain */
6916 err = -ENODEV;
6917 unlist_netdevice(dev);
6918
6919 synchronize_net();
6920
6921 /* Shutdown queueing discipline. */
6922 dev_shutdown(dev);
6923
6924 /* Notify protocols, that we are about to destroy
6925 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00006926
6927 Note that dev->reg_state stays at NETREG_REGISTERED.
6928 This is wanted because this way 8021q and macvlan know
6929 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02006930 */
6931 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00006932 rcu_barrier();
6933 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006934 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006935
6936 /*
6937 * Flush the unicast and multicast chains
6938 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006939 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006940 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006941
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006942 /* Send a netdev-removed uevent to the old namespace */
6943 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006944 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006945
Eric W. Biedermance286d32007-09-12 13:53:49 +02006946 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006947 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006948
Eric W. Biedermance286d32007-09-12 13:53:49 +02006949 /* If there is an ifindex conflict assign a new one */
6950 if (__dev_get_by_index(net, dev->ifindex)) {
6951 int iflink = (dev->iflink == dev->ifindex);
6952 dev->ifindex = dev_new_index(net);
6953 if (iflink)
6954 dev->iflink = dev->ifindex;
6955 }
6956
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006957 /* Send a netdev-add uevent to the new namespace */
6958 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006959 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006960
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006961 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07006962 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006963 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006964
6965 /* Add the device back in the hashes */
6966 list_netdevice(dev);
6967
6968 /* Notify protocols, that a new device appeared. */
6969 call_netdevice_notifiers(NETDEV_REGISTER, dev);
6970
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006971 /*
6972 * Prevent userspace races by waiting until the network
6973 * device is fully setup before sending notifications.
6974 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006975 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006976
Eric W. Biedermance286d32007-09-12 13:53:49 +02006977 synchronize_net();
6978 err = 0;
6979out:
6980 return err;
6981}
Johannes Berg463d0182009-07-14 00:33:35 +02006982EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006983
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984static int dev_cpu_callback(struct notifier_block *nfb,
6985 unsigned long action,
6986 void *ocpu)
6987{
6988 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 struct sk_buff *skb;
6990 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6991 struct softnet_data *sd, *oldsd;
6992
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006993 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994 return NOTIFY_OK;
6995
6996 local_irq_disable();
6997 cpu = smp_processor_id();
6998 sd = &per_cpu(softnet_data, cpu);
6999 oldsd = &per_cpu(softnet_data, oldcpu);
7000
7001 /* Find end of our completion_queue. */
7002 list_skb = &sd->completion_queue;
7003 while (*list_skb)
7004 list_skb = &(*list_skb)->next;
7005 /* Append completion queue from offline CPU. */
7006 *list_skb = oldsd->completion_queue;
7007 oldsd->completion_queue = NULL;
7008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00007010 if (oldsd->output_queue) {
7011 *sd->output_queue_tailp = oldsd->output_queue;
7012 sd->output_queue_tailp = oldsd->output_queue_tailp;
7013 oldsd->output_queue = NULL;
7014 oldsd->output_queue_tailp = &oldsd->output_queue;
7015 }
Heiko Carstens264524d2011-06-06 20:50:03 +00007016 /* Append NAPI poll list from offline CPU. */
7017 if (!list_empty(&oldsd->poll_list)) {
7018 list_splice_init(&oldsd->poll_list, &sd->poll_list);
7019 raise_softirq_irqoff(NET_RX_SOFTIRQ);
7020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021
7022 raise_softirq_irqoff(NET_TX_SOFTIRQ);
7023 local_irq_enable();
7024
7025 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00007026 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00007027 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00007028 input_queue_head_incr(oldsd);
7029 }
Tom Herbertfec5e652010-04-16 16:01:27 -07007030 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00007031 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00007032 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07007033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034
7035 return NOTIFY_OK;
7036}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
7038
Herbert Xu7f353bf2007-08-10 15:47:58 -07007039/**
Herbert Xub63365a2008-10-23 01:11:29 -07007040 * netdev_increment_features - increment feature set by one
7041 * @all: current feature set
7042 * @one: new feature set
7043 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07007044 *
7045 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07007046 * @one to the master device with current feature set @all. Will not
7047 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07007048 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007049netdev_features_t netdev_increment_features(netdev_features_t all,
7050 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07007051{
Michał Mirosław1742f182011-04-22 06:31:16 +00007052 if (mask & NETIF_F_GEN_CSUM)
7053 mask |= NETIF_F_ALL_CSUM;
7054 mask |= NETIF_F_VLAN_CHALLENGED;
7055
7056 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
7057 all &= one | ~NETIF_F_ALL_FOR_ALL;
7058
Michał Mirosław1742f182011-04-22 06:31:16 +00007059 /* If one device supports hw checksumming, set for all. */
7060 if (all & NETIF_F_GEN_CSUM)
7061 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07007062
7063 return all;
7064}
Herbert Xub63365a2008-10-23 01:11:29 -07007065EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07007066
Baruch Siach430f03c2013-06-02 20:43:55 +00007067static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007068{
7069 int i;
7070 struct hlist_head *hash;
7071
7072 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
7073 if (hash != NULL)
7074 for (i = 0; i < NETDEV_HASHENTRIES; i++)
7075 INIT_HLIST_HEAD(&hash[i]);
7076
7077 return hash;
7078}
7079
Eric W. Biederman881d9662007-09-17 11:56:21 -07007080/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07007081static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007082{
Rustad, Mark D734b6542012-07-18 09:06:07 +00007083 if (net != &init_net)
7084 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07007085
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007086 net->dev_name_head = netdev_create_hash();
7087 if (net->dev_name_head == NULL)
7088 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007089
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007090 net->dev_index_head = netdev_create_hash();
7091 if (net->dev_index_head == NULL)
7092 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007093
7094 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007095
7096err_idx:
7097 kfree(net->dev_name_head);
7098err_name:
7099 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007100}
7101
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007102/**
7103 * netdev_drivername - network driver for the device
7104 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007105 *
7106 * Determine network driver for device.
7107 */
David S. Miller3019de12011-06-06 16:41:33 -07007108const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07007109{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07007110 const struct device_driver *driver;
7111 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07007112 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07007113
7114 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07007115 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07007116 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07007117
7118 driver = parent->driver;
7119 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07007120 return driver->name;
7121 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07007122}
7123
Joe Perches6ea754e2014-09-22 11:10:50 -07007124static void __netdev_printk(const char *level, const struct net_device *dev,
7125 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00007126{
Joe Perchesb004ff42012-09-12 20:12:19 -07007127 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07007128 dev_printk_emit(level[1] - '0',
7129 dev->dev.parent,
7130 "%s %s %s%s: %pV",
7131 dev_driver_string(dev->dev.parent),
7132 dev_name(dev->dev.parent),
7133 netdev_name(dev), netdev_reg_state(dev),
7134 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007135 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07007136 printk("%s%s%s: %pV",
7137 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007138 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07007139 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007140 }
Joe Perches256df2f2010-06-27 01:02:35 +00007141}
7142
Joe Perches6ea754e2014-09-22 11:10:50 -07007143void netdev_printk(const char *level, const struct net_device *dev,
7144 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00007145{
7146 struct va_format vaf;
7147 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00007148
7149 va_start(args, format);
7150
7151 vaf.fmt = format;
7152 vaf.va = &args;
7153
Joe Perches6ea754e2014-09-22 11:10:50 -07007154 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007155
Joe Perches256df2f2010-06-27 01:02:35 +00007156 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00007157}
7158EXPORT_SYMBOL(netdev_printk);
7159
7160#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07007161void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00007162{ \
Joe Perches256df2f2010-06-27 01:02:35 +00007163 struct va_format vaf; \
7164 va_list args; \
7165 \
7166 va_start(args, fmt); \
7167 \
7168 vaf.fmt = fmt; \
7169 vaf.va = &args; \
7170 \
Joe Perches6ea754e2014-09-22 11:10:50 -07007171 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07007172 \
Joe Perches256df2f2010-06-27 01:02:35 +00007173 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00007174} \
7175EXPORT_SYMBOL(func);
7176
7177define_netdev_printk_level(netdev_emerg, KERN_EMERG);
7178define_netdev_printk_level(netdev_alert, KERN_ALERT);
7179define_netdev_printk_level(netdev_crit, KERN_CRIT);
7180define_netdev_printk_level(netdev_err, KERN_ERR);
7181define_netdev_printk_level(netdev_warn, KERN_WARNING);
7182define_netdev_printk_level(netdev_notice, KERN_NOTICE);
7183define_netdev_printk_level(netdev_info, KERN_INFO);
7184
Pavel Emelyanov46650792007-10-08 20:38:39 -07007185static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007186{
7187 kfree(net->dev_name_head);
7188 kfree(net->dev_index_head);
7189}
7190
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007191static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07007192 .init = netdev_init,
7193 .exit = netdev_exit,
7194};
7195
Pavel Emelyanov46650792007-10-08 20:38:39 -07007196static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007197{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007198 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02007199 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007200 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02007201 * initial network namespace
7202 */
7203 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007204 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007205 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007206 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02007207
7208 /* Ignore unmoveable devices (i.e. loopback) */
7209 if (dev->features & NETIF_F_NETNS_LOCAL)
7210 continue;
7211
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007212 /* Leave virtual devices for the generic cleanup */
7213 if (dev->rtnl_link_ops)
7214 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08007215
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007216 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007217 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
7218 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007219 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007220 pr_emerg("%s: failed to move %s to init_net: %d\n",
7221 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007222 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02007223 }
7224 }
7225 rtnl_unlock();
7226}
7227
Eric W. Biederman50624c92013-09-23 21:19:49 -07007228static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
7229{
7230 /* Return with the rtnl_lock held when there are no network
7231 * devices unregistering in any network namespace in net_list.
7232 */
7233 struct net *net;
7234 bool unregistering;
7235 DEFINE_WAIT(wait);
7236
7237 for (;;) {
7238 prepare_to_wait(&netdev_unregistering_wq, &wait,
7239 TASK_UNINTERRUPTIBLE);
7240 unregistering = false;
7241 rtnl_lock();
7242 list_for_each_entry(net, net_list, exit_list) {
7243 if (net->dev_unreg_count > 0) {
7244 unregistering = true;
7245 break;
7246 }
7247 }
7248 if (!unregistering)
7249 break;
7250 __rtnl_unlock();
7251 schedule();
7252 }
7253 finish_wait(&netdev_unregistering_wq, &wait);
7254}
7255
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007256static void __net_exit default_device_exit_batch(struct list_head *net_list)
7257{
7258 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007259 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007260 * Do this across as many network namespaces as possible to
7261 * improve batching efficiency.
7262 */
7263 struct net_device *dev;
7264 struct net *net;
7265 LIST_HEAD(dev_kill_list);
7266
Eric W. Biederman50624c92013-09-23 21:19:49 -07007267 /* To prevent network device cleanup code from dereferencing
7268 * loopback devices or network devices that have been freed
7269 * wait here for all pending unregistrations to complete,
7270 * before unregistring the loopback device and allowing the
7271 * network namespace be freed.
7272 *
7273 * The netdev todo list containing all network devices
7274 * unregistrations that happen in default_device_exit_batch
7275 * will run in the rtnl_unlock() at the end of
7276 * default_device_exit_batch.
7277 */
7278 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007279 list_for_each_entry(net, net_list, exit_list) {
7280 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02007281 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007282 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
7283 else
7284 unregister_netdevice_queue(dev, &dev_kill_list);
7285 }
7286 }
7287 unregister_netdevice_many(&dev_kill_list);
7288 rtnl_unlock();
7289}
7290
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007291static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007292 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007293 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02007294};
7295
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296/*
7297 * Initialize the DEV module. At boot time this walks the device list and
7298 * unhooks any devices that fail to initialise (normally hardware not
7299 * present) and leaves us with a valid list of present and active devices.
7300 *
7301 */
7302
7303/*
7304 * This is called single threaded during boot, so no need
7305 * to take the rtnl semaphore.
7306 */
7307static int __init net_dev_init(void)
7308{
7309 int i, rc = -ENOMEM;
7310
7311 BUG_ON(!dev_boot_phase);
7312
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313 if (dev_proc_init())
7314 goto out;
7315
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007316 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317 goto out;
7318
7319 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08007320 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321 INIT_LIST_HEAD(&ptype_base[i]);
7322
Vlad Yasevich62532da2012-11-15 08:49:10 +00007323 INIT_LIST_HEAD(&offload_base);
7324
Eric W. Biederman881d9662007-09-17 11:56:21 -07007325 if (register_pernet_subsys(&netdev_net_ops))
7326 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327
7328 /*
7329 * Initialise the packet receive queues.
7330 */
7331
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07007332 for_each_possible_cpu(i) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007333 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007335 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07007336 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007337 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00007338 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00007339#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007340 sd->csd.func = rps_trigger_softirq;
7341 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007342 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07007343#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00007344
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007345 sd->backlog.poll = process_backlog;
7346 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347 }
7348
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349 dev_boot_phase = 0;
7350
Eric W. Biederman505d4f72008-11-07 22:54:20 -08007351 /* The loopback device is special if any other network devices
7352 * is present in a network namespace the loopback device must
7353 * be present. Since we now dynamically allocate and free the
7354 * loopback device ensure this invariant is maintained by
7355 * keeping the loopback device as the first device on the
7356 * list of network devices. Ensuring the loopback devices
7357 * is the first device that appears and the last network device
7358 * that disappears.
7359 */
7360 if (register_pernet_device(&loopback_net_ops))
7361 goto out;
7362
7363 if (register_pernet_device(&default_device_ops))
7364 goto out;
7365
Carlos R. Mafra962cf362008-05-15 11:15:37 -03007366 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
7367 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368
7369 hotcpu_notifier(dev_cpu_callback, 0);
7370 dst_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371 rc = 0;
7372out:
7373 return rc;
7374}
7375
7376subsys_initcall(net_dev_init);