blob: c6b52068d5ecb47aa141252ac82770347996659a [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>
76#include <asm/system.h>
77#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080078#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/cpu.h>
80#include <linux/types.h>
81#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000082#include <linux/hash.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>
100#include <linux/proc_fs.h>
101#include <linux/seq_file.h>
102#include <linux/stat.h>
103#include <linux/if_bridge.h>
Patrick McHardyb863ceb2007-07-14 18:55:06 -0700104#include <linux/if_macvlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#include <net/dst.h>
106#include <net/pkt_sched.h>
107#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000108#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#include <linux/highmem.h>
110#include <linux/init.h>
111#include <linux/kmod.h>
112#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#include <linux/netpoll.h>
114#include <linux/rcupdate.h>
115#include <linux/delay.h>
Johannes Berg295f4a12007-04-26 20:43:56 -0700116#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500119#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700120#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700121#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700122#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700123#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700124#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700126#include <net/ip.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700127#include <linux/ipv6.h>
128#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700129#include <linux/jhash.h>
130#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700131#include <trace/events/napi.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000132#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700134#include "net-sysfs.h"
135
Herbert Xud565b0a2008-12-15 23:38:52 -0800136/* Instead of increasing this, you should create a hash table. */
137#define MAX_GRO_SKBS 8
138
Herbert Xu5d38a072009-01-04 16:13:40 -0800139/* This should be increased if a protocol with a bigger head is added. */
140#define GRO_MAX_HEAD (MAX_HEADER + 128)
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * The list of packet types we will receive (as opposed to discard)
144 * and the routines to invoke.
145 *
146 * Why 16. Because with 16 the only overlap we get on a hash of the
147 * low nibble of the protocol value is RARP/SNAP/X.25.
148 *
149 * NOTE: That is no longer true with the addition of VLAN tags. Not
150 * sure which should go first, but I bet it won't make much
151 * difference if we are running VLANs. The good news is that
152 * this protocol won't be in the list unless compiled in, so
Stephen Hemminger3041a062006-05-26 13:25:24 -0700153 * the average user (w/out VLANs) will not be adversely affected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * --BLG
155 *
156 * 0800 IP
157 * 8100 802.1Q VLAN
158 * 0001 802.3
159 * 0002 AX.25
160 * 0004 802.2
161 * 8035 RARP
162 * 0005 SNAP
163 * 0805 X.25
164 * 0806 ARP
165 * 8137 IPX
166 * 0009 Localtalk
167 * 86DD IPv6
168 */
169
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +0800170#define PTYPE_HASH_SIZE (16)
171#define PTYPE_HASH_MASK (PTYPE_HASH_SIZE - 1)
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173static DEFINE_SPINLOCK(ptype_lock);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +0800174static struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -0700175static struct list_head ptype_all __read_mostly; /* Taps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700178 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * semaphore.
180 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800181 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 *
183 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700184 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * actual updates. This allows pure readers to access the list even
186 * while a writer is preparing to update it.
187 *
188 * To put it another way, dev_base_lock is held for writing only to
189 * protect against pure readers; the rtnl semaphore provides the
190 * protection against other writers.
191 *
192 * See, for example usages, register_netdevice() and
193 * unregister_netdevice(), which must be called with the rtnl
194 * semaphore held.
195 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197EXPORT_SYMBOL(dev_base_lock);
198
Eric W. Biederman881d9662007-09-17 11:56:21 -0700199static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
stephen hemminger08e98972009-11-10 07:20:34 +0000202 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Eric W. Biederman881d9662007-09-17 11:56:21 -0700205static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700207 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Changli Gao152102c2010-03-30 20:16:22 +0000210static inline void rps_lock(struct softnet_data *queue)
211{
212#ifdef CONFIG_RPS
213 spin_lock(&queue->input_pkt_queue.lock);
214#endif
215}
216
217static inline void rps_unlock(struct softnet_data *queue)
218{
219#ifdef CONFIG_RPS
220 spin_unlock(&queue->input_pkt_queue.lock);
221#endif
222}
223
Eric W. Biedermance286d32007-09-12 13:53:49 +0200224/* Device list insertion */
225static int list_netdevice(struct net_device *dev)
226{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900227 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200228
229 ASSERT_RTNL();
230
231 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800232 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000233 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000234 hlist_add_head_rcu(&dev->index_hlist,
235 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200236 write_unlock_bh(&dev_base_lock);
237 return 0;
238}
239
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000240/* Device list removal
241 * caller must respect a RCU grace period before freeing/reusing dev
242 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200243static void unlist_netdevice(struct net_device *dev)
244{
245 ASSERT_RTNL();
246
247 /* Unlink dev from the device chain */
248 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800249 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000250 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000251 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200252 write_unlock_bh(&dev_base_lock);
253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/*
256 * Our notifier list
257 */
258
Alan Sternf07d5b92006-05-09 15:23:03 -0700259static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261/*
262 * Device drivers call our routines to queue packets here. We empty the
263 * queue in the local softnet handler.
264 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700265
266DEFINE_PER_CPU(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700267EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
David S. Millercf508b12008-07-22 14:16:42 -0700269#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700270/*
David S. Millerc773e842008-07-08 23:13:53 -0700271 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700272 * according to dev->type
273 */
274static const unsigned short netdev_lock_type[] =
275 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
276 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
277 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
278 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
279 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
280 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
281 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
282 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
283 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
284 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
285 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
286 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
287 ARPHRD_FCFABRIC, ARPHRD_IEEE802_TR, ARPHRD_IEEE80211,
Rémi Denis-Courmont2d91d782008-12-17 15:47:29 -0800288 ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET,
Dmitry Eremin-Solenikov929122c2009-08-14 20:00:20 +0400289 ARPHRD_PHONET_PIPE, ARPHRD_IEEE802154,
Sergey Lapinfcb94e42009-06-08 12:18:47 +0000290 ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700291
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700292static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700293 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
294 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
295 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
296 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
297 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
298 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
299 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
300 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
301 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
302 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
303 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
304 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
305 "_xmit_FCFABRIC", "_xmit_IEEE802_TR", "_xmit_IEEE80211",
Rémi Denis-Courmont2d91d782008-12-17 15:47:29 -0800306 "_xmit_IEEE80211_PRISM", "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET",
Dmitry Eremin-Solenikov929122c2009-08-14 20:00:20 +0400307 "_xmit_PHONET_PIPE", "_xmit_IEEE802154",
Sergey Lapinfcb94e42009-06-08 12:18:47 +0000308 "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700309
310static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700311static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700312
313static inline unsigned short netdev_lock_pos(unsigned short dev_type)
314{
315 int i;
316
317 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
318 if (netdev_lock_type[i] == dev_type)
319 return i;
320 /* the last key is used by default */
321 return ARRAY_SIZE(netdev_lock_type) - 1;
322}
323
David S. Millercf508b12008-07-22 14:16:42 -0700324static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
325 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700326{
327 int i;
328
329 i = netdev_lock_pos(dev_type);
330 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
331 netdev_lock_name[i]);
332}
David S. Millercf508b12008-07-22 14:16:42 -0700333
334static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
335{
336 int i;
337
338 i = netdev_lock_pos(dev->type);
339 lockdep_set_class_and_name(&dev->addr_list_lock,
340 &netdev_addr_lock_key[i],
341 netdev_lock_name[i]);
342}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700343#else
David S. Millercf508b12008-07-22 14:16:42 -0700344static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
345 unsigned short dev_type)
346{
347}
348static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700349{
350}
351#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353/*******************************************************************************
354
355 Protocol management and registration routines
356
357*******************************************************************************/
358
359/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * Add a protocol ID to the list. Now that the input handler is
361 * smarter we can dispense with all the messy stuff that used to be
362 * here.
363 *
364 * BEWARE!!! Protocol handlers, mangling input packets,
365 * MUST BE last in hash buckets and checking protocol handlers
366 * MUST start from promiscuous ptype_all chain in net_bh.
367 * It is true now, do not change it.
368 * Explanation follows: if protocol handler, mangling packet, will
369 * be the first on list, it is not able to sense, that packet
370 * is cloned and should be copied-on-write, so that it will
371 * change it and subsequent readers will get broken packet.
372 * --ANK (980803)
373 */
374
375/**
376 * dev_add_pack - add packet handler
377 * @pt: packet type declaration
378 *
379 * Add a protocol handler to the networking stack. The passed &packet_type
380 * is linked into kernel lists and may not be freed until it has been
381 * removed from the kernel lists.
382 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900383 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * guarantee all CPU's that are in middle of receiving packets
385 * will see the new packet type (until the next received packet).
386 */
387
388void dev_add_pack(struct packet_type *pt)
389{
390 int hash;
391
392 spin_lock_bh(&ptype_lock);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700393 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 list_add_rcu(&pt->list, &ptype_all);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700395 else {
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +0800396 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 list_add_rcu(&pt->list, &ptype_base[hash]);
398 }
399 spin_unlock_bh(&ptype_lock);
400}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700401EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/**
404 * __dev_remove_pack - remove packet handler
405 * @pt: packet type declaration
406 *
407 * Remove a protocol handler that was previously added to the kernel
408 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
409 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900410 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
412 * The packet type might still be in use by receivers
413 * and must not be freed until after all the CPU's have gone
414 * through a quiescent state.
415 */
416void __dev_remove_pack(struct packet_type *pt)
417{
418 struct list_head *head;
419 struct packet_type *pt1;
420
421 spin_lock_bh(&ptype_lock);
422
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700423 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 head = &ptype_all;
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700425 else
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +0800426 head = &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 list_for_each_entry(pt1, head, list) {
429 if (pt == pt1) {
430 list_del_rcu(&pt->list);
431 goto out;
432 }
433 }
434
435 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
436out:
437 spin_unlock_bh(&ptype_lock);
438}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700439EXPORT_SYMBOL(__dev_remove_pack);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/**
442 * dev_remove_pack - remove packet handler
443 * @pt: packet type declaration
444 *
445 * Remove a protocol handler that was previously added to the kernel
446 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
447 * from the kernel lists and can be freed or reused once this function
448 * returns.
449 *
450 * This call sleeps to guarantee that no CPU is looking at the packet
451 * type after return.
452 */
453void dev_remove_pack(struct packet_type *pt)
454{
455 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 synchronize_net();
458}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700459EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461/******************************************************************************
462
463 Device Boot-time Settings Routines
464
465*******************************************************************************/
466
467/* Boot time configuration table */
468static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
469
470/**
471 * netdev_boot_setup_add - add new setup entry
472 * @name: name of the device
473 * @map: configured settings for the device
474 *
475 * Adds new setup entry to the dev_boot_setup list. The function
476 * returns 0 on error and 1 on success. This is a generic routine to
477 * all netdevices.
478 */
479static int netdev_boot_setup_add(char *name, struct ifmap *map)
480{
481 struct netdev_boot_setup *s;
482 int i;
483
484 s = dev_boot_setup;
485 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
486 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
487 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700488 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 memcpy(&s[i].map, map, sizeof(s[i].map));
490 break;
491 }
492 }
493
494 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
495}
496
497/**
498 * netdev_boot_setup_check - check boot time settings
499 * @dev: the netdevice
500 *
501 * Check boot time settings for the device.
502 * The found settings are set for the device to be used
503 * later in the device probing.
504 * Returns 0 if no settings found, 1 if they are.
505 */
506int netdev_boot_setup_check(struct net_device *dev)
507{
508 struct netdev_boot_setup *s = dev_boot_setup;
509 int i;
510
511 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
512 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700513 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 dev->irq = s[i].map.irq;
515 dev->base_addr = s[i].map.base_addr;
516 dev->mem_start = s[i].map.mem_start;
517 dev->mem_end = s[i].map.mem_end;
518 return 1;
519 }
520 }
521 return 0;
522}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700523EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525
526/**
527 * netdev_boot_base - get address from boot time settings
528 * @prefix: prefix for network device
529 * @unit: id for network device
530 *
531 * Check boot time settings for the base address of device.
532 * The found settings are set for the device to be used
533 * later in the device probing.
534 * Returns 0 if no settings found.
535 */
536unsigned long netdev_boot_base(const char *prefix, int unit)
537{
538 const struct netdev_boot_setup *s = dev_boot_setup;
539 char name[IFNAMSIZ];
540 int i;
541
542 sprintf(name, "%s%d", prefix, unit);
543
544 /*
545 * If device already registered then return base of 1
546 * to indicate not to probe for this interface
547 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700548 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return 1;
550
551 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
552 if (!strcmp(name, s[i].name))
553 return s[i].map.base_addr;
554 return 0;
555}
556
557/*
558 * Saves at boot time configured settings for any netdevice.
559 */
560int __init netdev_boot_setup(char *str)
561{
562 int ints[5];
563 struct ifmap map;
564
565 str = get_options(str, ARRAY_SIZE(ints), ints);
566 if (!str || !*str)
567 return 0;
568
569 /* Save settings */
570 memset(&map, 0, sizeof(map));
571 if (ints[0] > 0)
572 map.irq = ints[1];
573 if (ints[0] > 1)
574 map.base_addr = ints[2];
575 if (ints[0] > 2)
576 map.mem_start = ints[3];
577 if (ints[0] > 3)
578 map.mem_end = ints[4];
579
580 /* Add new entry to the list */
581 return netdev_boot_setup_add(str, &map);
582}
583
584__setup("netdev=", netdev_boot_setup);
585
586/*******************************************************************************
587
588 Device Interface Subroutines
589
590*******************************************************************************/
591
592/**
593 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700594 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * @name: name to find
596 *
597 * Find an interface by name. Must be called under RTNL semaphore
598 * or @dev_base_lock. If the name is found a pointer to the device
599 * is returned. If the name is not found then %NULL is returned. The
600 * reference counters are not incremented so the caller must be
601 * careful with locks.
602 */
603
Eric W. Biederman881d9662007-09-17 11:56:21 -0700604struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct hlist_node *p;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700607 struct net_device *dev;
608 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700610 hlist_for_each_entry(dev, p, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!strncmp(dev->name, name, IFNAMSIZ))
612 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return NULL;
615}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700616EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000619 * dev_get_by_name_rcu - find a device by its name
620 * @net: the applicable net namespace
621 * @name: name to find
622 *
623 * Find an interface by name.
624 * If the name is found a pointer to the device is returned.
625 * If the name is not found then %NULL is returned.
626 * The reference counters are not incremented so the caller must be
627 * careful with locks. The caller must hold RCU lock.
628 */
629
630struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
631{
632 struct hlist_node *p;
633 struct net_device *dev;
634 struct hlist_head *head = dev_name_hash(net, name);
635
636 hlist_for_each_entry_rcu(dev, p, head, name_hlist)
637 if (!strncmp(dev->name, name, IFNAMSIZ))
638 return dev;
639
640 return NULL;
641}
642EXPORT_SYMBOL(dev_get_by_name_rcu);
643
644/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700646 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 * @name: name to find
648 *
649 * Find an interface by name. This can be called from any
650 * context and does its own locking. The returned handle has
651 * the usage count incremented and the caller must use dev_put() to
652 * release it when it is no longer needed. %NULL is returned if no
653 * matching device is found.
654 */
655
Eric W. Biederman881d9662007-09-17 11:56:21 -0700656struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 struct net_device *dev;
659
Eric Dumazet72c95282009-10-30 07:11:27 +0000660 rcu_read_lock();
661 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (dev)
663 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000664 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return dev;
666}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700667EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669/**
670 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700671 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 * @ifindex: index of device
673 *
674 * Search for an interface by index. Returns %NULL if the device
675 * is not found or a pointer to the device. The device has not
676 * had its reference counter increased so the caller must be careful
677 * about locking. The caller must hold either the RTNL semaphore
678 * or @dev_base_lock.
679 */
680
Eric W. Biederman881d9662007-09-17 11:56:21 -0700681struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct hlist_node *p;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700684 struct net_device *dev;
685 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700687 hlist_for_each_entry(dev, p, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (dev->ifindex == ifindex)
689 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return NULL;
692}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700693EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000695/**
696 * dev_get_by_index_rcu - find a device by its ifindex
697 * @net: the applicable net namespace
698 * @ifindex: index of device
699 *
700 * Search for an interface by index. Returns %NULL if the device
701 * is not found or a pointer to the device. The device has not
702 * had its reference counter increased so the caller must be careful
703 * about locking. The caller must hold RCU lock.
704 */
705
706struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
707{
708 struct hlist_node *p;
709 struct net_device *dev;
710 struct hlist_head *head = dev_index_hash(net, ifindex);
711
712 hlist_for_each_entry_rcu(dev, p, head, index_hlist)
713 if (dev->ifindex == ifindex)
714 return dev;
715
716 return NULL;
717}
718EXPORT_SYMBOL(dev_get_by_index_rcu);
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721/**
722 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700723 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * @ifindex: index of device
725 *
726 * Search for an interface by index. Returns NULL if the device
727 * is not found or a pointer to the device. The device returned has
728 * had a reference added and the pointer is safe until the user calls
729 * dev_put to indicate they have finished with it.
730 */
731
Eric W. Biederman881d9662007-09-17 11:56:21 -0700732struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 struct net_device *dev;
735
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000736 rcu_read_lock();
737 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (dev)
739 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000740 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return dev;
742}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700743EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745/**
746 * dev_getbyhwaddr - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700747 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * @type: media type of device
749 * @ha: hardware address
750 *
751 * Search for an interface by MAC address. Returns NULL if the device
752 * is not found or a pointer to the device. The caller must hold the
753 * rtnl semaphore. The returned device has not had its ref count increased
754 * and the caller must therefore be careful about locking
755 *
756 * BUGS:
757 * If the API was consistent this would be __dev_get_by_hwaddr
758 */
759
Eric W. Biederman881d9662007-09-17 11:56:21 -0700760struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 struct net_device *dev;
763
764 ASSERT_RTNL();
765
Denis V. Lunev81103a52007-12-12 10:47:38 -0800766 for_each_netdev(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (dev->type == type &&
768 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700769 return dev;
770
771 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300773EXPORT_SYMBOL(dev_getbyhwaddr);
774
Eric W. Biederman881d9662007-09-17 11:56:21 -0700775struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700776{
777 struct net_device *dev;
778
779 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700780 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700781 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700782 return dev;
783
784 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700785}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700786EXPORT_SYMBOL(__dev_getfirstbyhwtype);
787
Eric W. Biederman881d9662007-09-17 11:56:21 -0700788struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000790 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000792 rcu_read_lock();
793 for_each_netdev_rcu(net, dev)
794 if (dev->type == type) {
795 dev_hold(dev);
796 ret = dev;
797 break;
798 }
799 rcu_read_unlock();
800 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802EXPORT_SYMBOL(dev_getfirstbyhwtype);
803
804/**
805 * dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700806 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * @if_flags: IFF_* values
808 * @mask: bitmask of bits in if_flags to check
809 *
810 * Search for any interface with the given flags. Returns NULL if a device
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900811 * is not found or a pointer to the device. The device returned has
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * had a reference added and the pointer is safe until the user calls
813 * dev_put to indicate they have finished with it.
814 */
815
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700816struct net_device *dev_get_by_flags(struct net *net, unsigned short if_flags,
817 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700819 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Pavel Emelianov7562f872007-05-03 15:13:45 -0700821 ret = NULL;
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800822 rcu_read_lock();
823 for_each_netdev_rcu(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (((dev->flags ^ if_flags) & mask) == 0) {
825 dev_hold(dev);
Pavel Emelianov7562f872007-05-03 15:13:45 -0700826 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
828 }
829 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800830 rcu_read_unlock();
Pavel Emelianov7562f872007-05-03 15:13:45 -0700831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700833EXPORT_SYMBOL(dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835/**
836 * dev_valid_name - check if name is okay for network device
837 * @name: name string
838 *
839 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700840 * to allow sysfs to work. We also disallow any kind of
841 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 */
Mitch Williamsc2373ee2005-11-09 10:34:45 -0800843int dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700845 if (*name == '\0')
846 return 0;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700847 if (strlen(name) >= IFNAMSIZ)
848 return 0;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700849 if (!strcmp(name, ".") || !strcmp(name, ".."))
850 return 0;
851
852 while (*name) {
853 if (*name == '/' || isspace(*name))
854 return 0;
855 name++;
856 }
857 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700859EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200862 * __dev_alloc_name - allocate a name for a device
863 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200865 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 *
867 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -0700868 * id. It scans list of devices to build up a free map, then chooses
869 * the first empty slot. The caller must hold the dev_base or rtnl lock
870 * while allocating the name and adding the device in order to avoid
871 * duplicates.
872 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
873 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
875
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200876static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 const char *p;
880 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700881 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 struct net_device *d;
883
884 p = strnchr(name, IFNAMSIZ-1, '%');
885 if (p) {
886 /*
887 * Verify the string as this thing may have come from
888 * the user. There must be either one "%d" and no other "%"
889 * characters.
890 */
891 if (p[1] != 'd' || strchr(p + 2, '%'))
892 return -EINVAL;
893
894 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700895 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (!inuse)
897 return -ENOMEM;
898
Eric W. Biederman881d9662007-09-17 11:56:21 -0700899 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (!sscanf(d->name, name, &i))
901 continue;
902 if (i < 0 || i >= max_netdevices)
903 continue;
904
905 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200906 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (!strncmp(buf, d->name, IFNAMSIZ))
908 set_bit(i, inuse);
909 }
910
911 i = find_first_zero_bit(inuse, max_netdevices);
912 free_page((unsigned long) inuse);
913 }
914
Octavian Purdilad9031022009-11-18 02:36:59 +0000915 if (buf != name)
916 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200917 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 /* It is possible to run out of possible slots
921 * when the name is long and there isn't enough space left
922 * for the digits, or if all bits are used.
923 */
924 return -ENFILE;
925}
926
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200927/**
928 * dev_alloc_name - allocate a name for a device
929 * @dev: device
930 * @name: name format string
931 *
932 * Passed a format string - eg "lt%d" it will try and find a suitable
933 * id. It scans list of devices to build up a free map, then chooses
934 * the first empty slot. The caller must hold the dev_base or rtnl lock
935 * while allocating the name and adding the device in order to avoid
936 * duplicates.
937 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
938 * Returns the number of the unit assigned or a negative errno code.
939 */
940
941int dev_alloc_name(struct net_device *dev, const char *name)
942{
943 char buf[IFNAMSIZ];
944 struct net *net;
945 int ret;
946
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900947 BUG_ON(!dev_net(dev));
948 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200949 ret = __dev_alloc_name(net, name, buf);
950 if (ret >= 0)
951 strlcpy(dev->name, buf, IFNAMSIZ);
952 return ret;
953}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700954EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200955
Octavian Purdilad9031022009-11-18 02:36:59 +0000956static int dev_get_valid_name(struct net *net, const char *name, char *buf,
957 bool fmt)
958{
959 if (!dev_valid_name(name))
960 return -EINVAL;
961
962 if (fmt && strchr(name, '%'))
963 return __dev_alloc_name(net, name, buf);
964 else if (__dev_get_by_name(net, name))
965 return -EEXIST;
966 else if (buf != name)
967 strlcpy(buf, name, IFNAMSIZ);
968
969 return 0;
970}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972/**
973 * dev_change_name - change name of a device
974 * @dev: device
975 * @newname: name (or format string) must be at least IFNAMSIZ
976 *
977 * Change name of a device, can pass format strings "eth%d".
978 * for wildcarding.
979 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -0700980int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Herbert Xufcc5a032007-07-30 17:03:38 -0700982 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -0700984 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700985 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900988 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900990 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (dev->flags & IFF_UP)
992 return -EBUSY;
993
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -0700994 if (strncmp(newname, dev->name, IFNAMSIZ) == 0)
995 return 0;
996
Herbert Xufcc5a032007-07-30 17:03:38 -0700997 memcpy(oldname, dev->name, IFNAMSIZ);
998
Octavian Purdilad9031022009-11-18 02:36:59 +0000999 err = dev_get_valid_name(net, newname, dev->name, 1);
1000 if (err < 0)
1001 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Herbert Xufcc5a032007-07-30 17:03:38 -07001003rollback:
Eric W. Biederman38918452008-10-27 17:51:47 -07001004 /* For now only devices in the initial network namespace
1005 * are in sysfs.
1006 */
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001007 if (net_eq(net, &init_net)) {
Eric W. Biederman38918452008-10-27 17:51:47 -07001008 ret = device_rename(&dev->dev, dev->name);
1009 if (ret) {
1010 memcpy(dev->name, oldname, IFNAMSIZ);
1011 return ret;
1012 }
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001013 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001014
1015 write_lock_bh(&dev_base_lock);
Eric W. Biederman92749822007-04-03 00:07:30 -06001016 hlist_del(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001017 write_unlock_bh(&dev_base_lock);
1018
1019 synchronize_rcu();
1020
1021 write_lock_bh(&dev_base_lock);
1022 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001023 write_unlock_bh(&dev_base_lock);
1024
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001025 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001026 ret = notifier_to_errno(ret);
1027
1028 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001029 /* err >= 0 after dev_alloc_name() or stores the first errno */
1030 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001031 err = ret;
1032 memcpy(dev->name, oldname, IFNAMSIZ);
1033 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001034 } else {
1035 printk(KERN_ERR
1036 "%s: name change rollback failed: %d.\n",
1037 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001038 }
1039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 return err;
1042}
1043
1044/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001045 * dev_set_alias - change ifalias of a device
1046 * @dev: device
1047 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001048 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001049 *
1050 * Set ifalias for a device,
1051 */
1052int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1053{
1054 ASSERT_RTNL();
1055
1056 if (len >= IFALIASZ)
1057 return -EINVAL;
1058
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001059 if (!len) {
1060 if (dev->ifalias) {
1061 kfree(dev->ifalias);
1062 dev->ifalias = NULL;
1063 }
1064 return 0;
1065 }
1066
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001067 dev->ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001068 if (!dev->ifalias)
1069 return -ENOMEM;
1070
1071 strlcpy(dev->ifalias, alias, len+1);
1072 return len;
1073}
1074
1075
1076/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001077 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001078 * @dev: device to cause notification
1079 *
1080 * Called to indicate a device has changed features.
1081 */
1082void netdev_features_change(struct net_device *dev)
1083{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001084 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001085}
1086EXPORT_SYMBOL(netdev_features_change);
1087
1088/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 * netdev_state_change - device changes state
1090 * @dev: device to cause notification
1091 *
1092 * Called to indicate a device has changed state. This function calls
1093 * the notifier chains for netdev_chain and sends a NEWLINK message
1094 * to the routing socket.
1095 */
1096void netdev_state_change(struct net_device *dev)
1097{
1098 if (dev->flags & IFF_UP) {
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001099 call_netdevice_notifiers(NETDEV_CHANGE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1101 }
1102}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001103EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001105int netdev_bonding_change(struct net_device *dev, unsigned long event)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001106{
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001107 return call_netdevice_notifiers(event, dev);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001108}
1109EXPORT_SYMBOL(netdev_bonding_change);
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111/**
1112 * dev_load - load a network module
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001113 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * @name: name of interface
1115 *
1116 * If a network interface is not present and the process has suitable
1117 * privileges this function loads the module. If module loading is not
1118 * available in this kernel then it becomes a nop.
1119 */
1120
Eric W. Biederman881d9662007-09-17 11:56:21 -07001121void dev_load(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001123 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Eric Dumazet72c95282009-10-30 07:11:27 +00001125 rcu_read_lock();
1126 dev = dev_get_by_name_rcu(net, name);
1127 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Eric Parisa8f80e82009-08-13 09:44:51 -04001129 if (!dev && capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 request_module("%s", name);
1131}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001132EXPORT_SYMBOL(dev_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Patrick McHardybd380812010-02-26 06:34:53 +00001134static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001136 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001137 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001139 ASSERT_RTNL();
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 * Is it even present?
1143 */
1144 if (!netif_device_present(dev))
1145 return -ENODEV;
1146
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001147 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1148 ret = notifier_to_errno(ret);
1149 if (ret)
1150 return ret;
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 /*
1153 * Call device private open method
1154 */
1155 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001156
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001157 if (ops->ndo_validate_addr)
1158 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001159
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001160 if (!ret && ops->ndo_open)
1161 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001163 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * If it went open OK then:
1165 */
1166
Jeff Garzikbada3392007-10-23 20:19:37 -07001167 if (ret)
1168 clear_bit(__LINK_STATE_START, &dev->state);
1169 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /*
1171 * Set the flags.
1172 */
1173 dev->flags |= IFF_UP;
1174
1175 /*
Dan Williams649274d2009-01-11 00:20:39 -08001176 * Enable NET_DMA
1177 */
David S. Millerb4bd07c2009-02-06 22:06:43 -08001178 net_dmaengine_get();
Dan Williams649274d2009-01-11 00:20:39 -08001179
1180 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 * Initialize multicasting status
1182 */
Patrick McHardy4417da62007-06-27 01:28:10 -07001183 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /*
1186 * Wakeup transmit queue engine
1187 */
1188 dev_activate(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return ret;
1192}
Patrick McHardybd380812010-02-26 06:34:53 +00001193
1194/**
1195 * dev_open - prepare an interface for use.
1196 * @dev: device to open
1197 *
1198 * Takes a device from down to up state. The device's private open
1199 * function is invoked and then the multicast lists are loaded. Finally
1200 * the device is moved into the up state and a %NETDEV_UP message is
1201 * sent to the netdev notifier chain.
1202 *
1203 * Calling this function on an active interface is a nop. On a failure
1204 * a negative errno code is returned.
1205 */
1206int dev_open(struct net_device *dev)
1207{
1208 int ret;
1209
1210 /*
1211 * Is it already up?
1212 */
1213 if (dev->flags & IFF_UP)
1214 return 0;
1215
1216 /*
1217 * Open device
1218 */
1219 ret = __dev_open(dev);
1220 if (ret < 0)
1221 return ret;
1222
1223 /*
1224 * ... and announce new interface.
1225 */
1226 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1227 call_netdevice_notifiers(NETDEV_UP, dev);
1228
1229 return ret;
1230}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001231EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Patrick McHardybd380812010-02-26 06:34:53 +00001233static int __dev_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001235 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardybd380812010-02-26 06:34:53 +00001236
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001237 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001238 might_sleep();
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 /*
1241 * Tell people we are going down, so that they can
1242 * prepare to death, when device is still operating.
1243 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001244 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 clear_bit(__LINK_STATE_START, &dev->state);
1247
1248 /* Synchronize to scheduled poll. We cannot touch poll list,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001249 * it can be even on different cpu. So just clear netif_running().
1250 *
1251 * dev->stop() will invoke napi_disable() on all of it's
1252 * napi_struct instances on this device.
1253 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 smp_mb__after_clear_bit(); /* Commit netif_running(). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001256 dev_deactivate(dev);
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /*
1259 * Call the device specific close. This cannot fail.
1260 * Only if device is UP
1261 *
1262 * We allow it to be called even after a DETACH hot-plug
1263 * event.
1264 */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001265 if (ops->ndo_stop)
1266 ops->ndo_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /*
1269 * Device is now down.
1270 */
1271
1272 dev->flags &= ~IFF_UP;
1273
1274 /*
Dan Williams649274d2009-01-11 00:20:39 -08001275 * Shutdown NET_DMA
1276 */
David S. Millerb4bd07c2009-02-06 22:06:43 -08001277 net_dmaengine_put();
Dan Williams649274d2009-01-11 00:20:39 -08001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return 0;
1280}
Patrick McHardybd380812010-02-26 06:34:53 +00001281
1282/**
1283 * dev_close - shutdown an interface.
1284 * @dev: device to shutdown
1285 *
1286 * This function moves an active device into down state. A
1287 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1288 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1289 * chain.
1290 */
1291int dev_close(struct net_device *dev)
1292{
1293 if (!(dev->flags & IFF_UP))
1294 return 0;
1295
1296 __dev_close(dev);
1297
1298 /*
1299 * Tell people we are down
1300 */
1301 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1302 call_netdevice_notifiers(NETDEV_DOWN, dev);
1303
1304 return 0;
1305}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001306EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001309/**
1310 * dev_disable_lro - disable Large Receive Offload on a device
1311 * @dev: device
1312 *
1313 * Disable Large Receive Offload (LRO) on a net device. Must be
1314 * called under RTNL. This is needed if received packets may be
1315 * forwarded to another interface.
1316 */
1317void dev_disable_lro(struct net_device *dev)
1318{
1319 if (dev->ethtool_ops && dev->ethtool_ops->get_flags &&
1320 dev->ethtool_ops->set_flags) {
1321 u32 flags = dev->ethtool_ops->get_flags(dev);
1322 if (flags & ETH_FLAG_LRO) {
1323 flags &= ~ETH_FLAG_LRO;
1324 dev->ethtool_ops->set_flags(dev, flags);
1325 }
1326 }
1327 WARN_ON(dev->features & NETIF_F_LRO);
1328}
1329EXPORT_SYMBOL(dev_disable_lro);
1330
1331
Eric W. Biederman881d9662007-09-17 11:56:21 -07001332static int dev_boot_phase = 1;
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334/*
1335 * Device change register/unregister. These are not inline or static
1336 * as we export them to the world.
1337 */
1338
1339/**
1340 * register_netdevice_notifier - register a network notifier block
1341 * @nb: notifier
1342 *
1343 * Register a notifier to be called when network device events occur.
1344 * The notifier passed is linked into the kernel structures and must
1345 * not be reused until it has been unregistered. A negative errno code
1346 * is returned on a failure.
1347 *
1348 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001349 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 * view of the network device list.
1351 */
1352
1353int register_netdevice_notifier(struct notifier_block *nb)
1354{
1355 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001356 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001357 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 int err;
1359
1360 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001361 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001362 if (err)
1363 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001364 if (dev_boot_phase)
1365 goto unlock;
1366 for_each_net(net) {
1367 for_each_netdev(net, dev) {
1368 err = nb->notifier_call(nb, NETDEV_REGISTER, dev);
1369 err = notifier_to_errno(err);
1370 if (err)
1371 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Eric W. Biederman881d9662007-09-17 11:56:21 -07001373 if (!(dev->flags & IFF_UP))
1374 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001375
Eric W. Biederman881d9662007-09-17 11:56:21 -07001376 nb->notifier_call(nb, NETDEV_UP, dev);
1377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001379
1380unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 rtnl_unlock();
1382 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001383
1384rollback:
1385 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001386 for_each_net(net) {
1387 for_each_netdev(net, dev) {
1388 if (dev == last)
1389 break;
Herbert Xufcc5a032007-07-30 17:03:38 -07001390
Eric W. Biederman881d9662007-09-17 11:56:21 -07001391 if (dev->flags & IFF_UP) {
1392 nb->notifier_call(nb, NETDEV_GOING_DOWN, dev);
1393 nb->notifier_call(nb, NETDEV_DOWN, dev);
1394 }
1395 nb->notifier_call(nb, NETDEV_UNREGISTER, dev);
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00001396 nb->notifier_call(nb, NETDEV_UNREGISTER_BATCH, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001397 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001398 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001399
1400 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001401 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001403EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405/**
1406 * unregister_netdevice_notifier - unregister a network notifier block
1407 * @nb: notifier
1408 *
1409 * Unregister a notifier previously registered by
1410 * register_netdevice_notifier(). The notifier is unlinked into the
1411 * kernel structures and may then be reused. A negative errno code
1412 * is returned on a failure.
1413 */
1414
1415int unregister_netdevice_notifier(struct notifier_block *nb)
1416{
Herbert Xu9f514952006-03-25 01:24:25 -08001417 int err;
1418
1419 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001420 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xu9f514952006-03-25 01:24:25 -08001421 rtnl_unlock();
1422 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001424EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426/**
1427 * call_netdevice_notifiers - call all network notifier blocks
1428 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001429 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 *
1431 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001432 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 */
1434
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001435int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001437 return raw_notifier_call_chain(&netdev_chain, val, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
1440/* When > 0 there are consumers of rx skb time stamps */
1441static atomic_t netstamp_needed = ATOMIC_INIT(0);
1442
1443void net_enable_timestamp(void)
1444{
1445 atomic_inc(&netstamp_needed);
1446}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001447EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449void net_disable_timestamp(void)
1450{
1451 atomic_dec(&netstamp_needed);
1452}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001453EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001455static inline void net_timestamp(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 if (atomic_read(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001458 __net_timestamp(skb);
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001459 else
1460 skb->tstamp.tv64 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Arnd Bergmann44540962009-11-26 06:07:08 +00001463/**
1464 * dev_forward_skb - loopback an skb to another netif
1465 *
1466 * @dev: destination network device
1467 * @skb: buffer to forward
1468 *
1469 * return values:
1470 * NET_RX_SUCCESS (no congestion)
1471 * NET_RX_DROP (packet was dropped)
1472 *
1473 * dev_forward_skb can be used for injecting an skb from the
1474 * start_xmit function of one device into the receive queue
1475 * of another device.
1476 *
1477 * The receiving device may be in another namespace, so
1478 * we have to clear all information in the skb that could
1479 * impact namespace isolation.
1480 */
1481int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1482{
1483 skb_orphan(skb);
1484
1485 if (!(dev->flags & IFF_UP))
1486 return NET_RX_DROP;
1487
1488 if (skb->len > (dev->mtu + dev->hard_header_len))
1489 return NET_RX_DROP;
1490
Arnd Bergmann8a83a002010-01-30 12:23:03 +00001491 skb_set_dev(skb, dev);
Arnd Bergmann44540962009-11-26 06:07:08 +00001492 skb->tstamp.tv64 = 0;
1493 skb->pkt_type = PACKET_HOST;
1494 skb->protocol = eth_type_trans(skb, dev);
Arnd Bergmann44540962009-11-26 06:07:08 +00001495 return netif_rx(skb);
1496}
1497EXPORT_SYMBOL_GPL(dev_forward_skb);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499/*
1500 * Support routine. Sends outgoing frames to any network
1501 * taps currently in use.
1502 */
1503
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001504static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 struct packet_type *ptype;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001507
Jarek Poplawski8caf1532009-04-17 10:08:49 +00001508#ifdef CONFIG_NET_CLS_ACT
1509 if (!(skb->tstamp.tv64 && (G_TC_FROM(skb->tc_verd) & AT_INGRESS)))
1510 net_timestamp(skb);
1511#else
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001512 net_timestamp(skb);
Jarek Poplawski8caf1532009-04-17 10:08:49 +00001513#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 rcu_read_lock();
1516 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1517 /* Never send packets back to the socket
1518 * they originated from - MvS (miquels@drinkel.ow.org)
1519 */
1520 if ((ptype->dev == dev || !ptype->dev) &&
1521 (ptype->af_packet_priv == NULL ||
1522 (struct sock *)ptype->af_packet_priv != skb->sk)) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001523 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (!skb2)
1525 break;
1526
1527 /* skb->nh should be correctly
1528 set by sender, so that the second statement is
1529 just protection against buggy protocols.
1530 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001531 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001533 if (skb_network_header(skb2) < skb2->data ||
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001534 skb2->network_header > skb2->tail) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (net_ratelimit())
1536 printk(KERN_CRIT "protocol %04x is "
1537 "buggy, dev %s\n",
1538 skb2->protocol, dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001539 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001542 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 skb2->pkt_type = PACKET_OUTGOING;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001544 ptype->func(skb2, skb->dev, ptype, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546 }
1547 rcu_read_unlock();
1548}
1549
Denis Vlasenko56079432006-03-29 15:57:29 -08001550
Jarek Poplawskidef82a12008-08-17 21:54:43 -07001551static inline void __netif_reschedule(struct Qdisc *q)
1552{
1553 struct softnet_data *sd;
1554 unsigned long flags;
1555
1556 local_irq_save(flags);
1557 sd = &__get_cpu_var(softnet_data);
1558 q->next_sched = sd->output_queue;
1559 sd->output_queue = q;
1560 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1561 local_irq_restore(flags);
1562}
1563
David S. Miller37437bb2008-07-16 02:15:04 -07001564void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08001565{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07001566 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
1567 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08001568}
1569EXPORT_SYMBOL(__netif_schedule);
1570
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001571void dev_kfree_skb_irq(struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08001572{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001573 if (atomic_dec_and_test(&skb->users)) {
1574 struct softnet_data *sd;
1575 unsigned long flags;
Denis Vlasenko56079432006-03-29 15:57:29 -08001576
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001577 local_irq_save(flags);
1578 sd = &__get_cpu_var(softnet_data);
1579 skb->next = sd->completion_queue;
1580 sd->completion_queue = skb;
1581 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1582 local_irq_restore(flags);
1583 }
Denis Vlasenko56079432006-03-29 15:57:29 -08001584}
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001585EXPORT_SYMBOL(dev_kfree_skb_irq);
Denis Vlasenko56079432006-03-29 15:57:29 -08001586
1587void dev_kfree_skb_any(struct sk_buff *skb)
1588{
1589 if (in_irq() || irqs_disabled())
1590 dev_kfree_skb_irq(skb);
1591 else
1592 dev_kfree_skb(skb);
1593}
1594EXPORT_SYMBOL(dev_kfree_skb_any);
1595
1596
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001597/**
1598 * netif_device_detach - mark device as removed
1599 * @dev: network device
1600 *
1601 * Mark device as removed from system and therefore no longer available.
1602 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001603void netif_device_detach(struct net_device *dev)
1604{
1605 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1606 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00001607 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08001608 }
1609}
1610EXPORT_SYMBOL(netif_device_detach);
1611
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001612/**
1613 * netif_device_attach - mark device as attached
1614 * @dev: network device
1615 *
1616 * Mark device as attached from system and restart if needed.
1617 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001618void netif_device_attach(struct net_device *dev)
1619{
1620 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1621 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00001622 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001623 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08001624 }
1625}
1626EXPORT_SYMBOL(netif_device_attach);
1627
Ben Hutchings6de329e2008-06-16 17:02:28 -07001628static bool can_checksum_protocol(unsigned long features, __be16 protocol)
1629{
1630 return ((features & NETIF_F_GEN_CSUM) ||
1631 ((features & NETIF_F_IP_CSUM) &&
1632 protocol == htons(ETH_P_IP)) ||
1633 ((features & NETIF_F_IPV6_CSUM) &&
Yi Zou1c8dbcf2009-02-27 14:06:54 -08001634 protocol == htons(ETH_P_IPV6)) ||
1635 ((features & NETIF_F_FCOE_CRC) &&
1636 protocol == htons(ETH_P_FCOE)));
Ben Hutchings6de329e2008-06-16 17:02:28 -07001637}
1638
1639static bool dev_can_checksum(struct net_device *dev, struct sk_buff *skb)
1640{
1641 if (can_checksum_protocol(dev->features, skb->protocol))
1642 return true;
1643
1644 if (skb->protocol == htons(ETH_P_8021Q)) {
1645 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
1646 if (can_checksum_protocol(dev->features & dev->vlan_features,
1647 veh->h_vlan_encapsulated_proto))
1648 return true;
1649 }
1650
1651 return false;
1652}
Denis Vlasenko56079432006-03-29 15:57:29 -08001653
Arnd Bergmann8a83a002010-01-30 12:23:03 +00001654/**
1655 * skb_dev_set -- assign a new device to a buffer
1656 * @skb: buffer for the new device
1657 * @dev: network device
1658 *
1659 * If an skb is owned by a device already, we have to reset
1660 * all data private to the namespace a device belongs to
1661 * before assigning it a new device.
1662 */
1663#ifdef CONFIG_NET_NS
1664void skb_set_dev(struct sk_buff *skb, struct net_device *dev)
1665{
1666 skb_dst_drop(skb);
1667 if (skb->dev && !net_eq(dev_net(skb->dev), dev_net(dev))) {
1668 secpath_reset(skb);
1669 nf_reset(skb);
1670 skb_init_secmark(skb);
1671 skb->mark = 0;
1672 skb->priority = 0;
1673 skb->nf_trace = 0;
1674 skb->ipvs_property = 0;
1675#ifdef CONFIG_NET_SCHED
1676 skb->tc_index = 0;
1677#endif
1678 }
1679 skb->dev = dev;
1680}
1681EXPORT_SYMBOL(skb_set_dev);
1682#endif /* CONFIG_NET_NS */
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684/*
1685 * Invalidate hardware checksum when packet is to be mangled, and
1686 * complete checksum manually on outgoing path.
1687 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07001688int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Al Virod3bc23e2006-11-14 21:24:49 -08001690 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07001691 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Patrick McHardy84fa7932006-08-29 16:44:56 -07001693 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07001694 goto out_set_summed;
1695
1696 if (unlikely(skb_shinfo(skb)->gso_size)) {
Herbert Xua430a432006-07-08 13:34:56 -07001697 /* Let GSO fix up the checksum. */
1698 goto out_set_summed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
1700
Herbert Xua0308472007-10-15 01:47:15 -07001701 offset = skb->csum_start - skb_headroom(skb);
1702 BUG_ON(offset >= skb_headlen(skb));
1703 csum = skb_checksum(skb, offset, skb->len - offset, 0);
1704
1705 offset += skb->csum_offset;
1706 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
1707
1708 if (skb_cloned(skb) &&
1709 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1711 if (ret)
1712 goto out;
1713 }
1714
Herbert Xua0308472007-10-15 01:47:15 -07001715 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07001716out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001718out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return ret;
1720}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001721EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001723/**
1724 * skb_gso_segment - Perform segmentation on skb.
1725 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07001726 * @features: features for the output path (see dev->features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001727 *
1728 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07001729 *
1730 * It may return NULL if the skb requires no segmentation. This is
1731 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001732 */
Herbert Xu576a30e2006-06-27 13:22:38 -07001733struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001734{
1735 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1736 struct packet_type *ptype;
Al Viro252e3342006-11-14 20:48:11 -08001737 __be16 type = skb->protocol;
Herbert Xua430a432006-07-08 13:34:56 -07001738 int err;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001739
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001740 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001741 skb->mac_len = skb->network_header - skb->mac_header;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001742 __skb_pull(skb, skb->mac_len);
1743
Herbert Xu67fd1a72009-01-19 16:26:44 -08001744 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
1745 struct net_device *dev = skb->dev;
1746 struct ethtool_drvinfo info = {};
1747
1748 if (dev && dev->ethtool_ops && dev->ethtool_ops->get_drvinfo)
1749 dev->ethtool_ops->get_drvinfo(dev, &info);
1750
1751 WARN(1, "%s: caps=(0x%lx, 0x%lx) len=%d data_len=%d "
1752 "ip_summed=%d",
1753 info.driver, dev ? dev->features : 0L,
1754 skb->sk ? skb->sk->sk_route_caps : 0L,
1755 skb->len, skb->data_len, skb->ip_summed);
1756
Herbert Xua430a432006-07-08 13:34:56 -07001757 if (skb_header_cloned(skb) &&
1758 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1759 return ERR_PTR(err);
1760 }
1761
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001762 rcu_read_lock();
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08001763 list_for_each_entry_rcu(ptype,
1764 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001765 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
Patrick McHardy84fa7932006-08-29 16:44:56 -07001766 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
Herbert Xua430a432006-07-08 13:34:56 -07001767 err = ptype->gso_send_check(skb);
1768 segs = ERR_PTR(err);
1769 if (err || skb_gso_ok(skb, features))
1770 break;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001771 __skb_push(skb, (skb->data -
1772 skb_network_header(skb)));
Herbert Xua430a432006-07-08 13:34:56 -07001773 }
Herbert Xu576a30e2006-06-27 13:22:38 -07001774 segs = ptype->gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001775 break;
1776 }
1777 }
1778 rcu_read_unlock();
1779
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001780 __skb_push(skb, skb->data - skb_mac_header(skb));
Herbert Xu576a30e2006-06-27 13:22:38 -07001781
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001782 return segs;
1783}
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001784EXPORT_SYMBOL(skb_gso_segment);
1785
Herbert Xufb286bb2005-11-10 13:01:24 -08001786/* Take action when hardware reception checksum errors are detected. */
1787#ifdef CONFIG_BUG
1788void netdev_rx_csum_fault(struct net_device *dev)
1789{
1790 if (net_ratelimit()) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001791 printk(KERN_ERR "%s: hw csum failure.\n",
Stephen Hemminger246a4212005-12-08 15:21:39 -08001792 dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08001793 dump_stack();
1794 }
1795}
1796EXPORT_SYMBOL(netdev_rx_csum_fault);
1797#endif
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799/* Actually, we should eliminate this check as soon as we know, that:
1800 * 1. IOMMU is present and allows to map all the memory.
1801 * 2. No high memory really exists on this machine.
1802 */
1803
Eric Dumazet9092c652010-04-02 13:34:49 -07001804static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Herbert Xu3d3a8532006-06-27 13:33:10 -07001806#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00001808 if (!(dev->features & NETIF_F_HIGHDMA)) {
1809 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1810 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1811 return 1;
1812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00001814 if (PCI_DMA_BUS_IS_PHYS) {
1815 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Eric Dumazet9092c652010-04-02 13:34:49 -07001817 if (!pdev)
1818 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00001819 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1820 dma_addr_t addr = page_to_phys(skb_shinfo(skb)->frags[i].page);
1821 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
1822 return 1;
1823 }
1824 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07001825#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return 0;
1827}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001829struct dev_gso_cb {
1830 void (*destructor)(struct sk_buff *skb);
1831};
1832
1833#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1834
1835static void dev_gso_skb_destructor(struct sk_buff *skb)
1836{
1837 struct dev_gso_cb *cb;
1838
1839 do {
1840 struct sk_buff *nskb = skb->next;
1841
1842 skb->next = nskb->next;
1843 nskb->next = NULL;
1844 kfree_skb(nskb);
1845 } while (skb->next);
1846
1847 cb = DEV_GSO_CB(skb);
1848 if (cb->destructor)
1849 cb->destructor(skb);
1850}
1851
1852/**
1853 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1854 * @skb: buffer to segment
1855 *
1856 * This function segments the given skb and stores the list of segments
1857 * in skb->next.
1858 */
1859static int dev_gso_segment(struct sk_buff *skb)
1860{
1861 struct net_device *dev = skb->dev;
1862 struct sk_buff *segs;
Herbert Xu576a30e2006-06-27 13:22:38 -07001863 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1864 NETIF_F_SG : 0);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001865
Herbert Xu576a30e2006-06-27 13:22:38 -07001866 segs = skb_gso_segment(skb, features);
1867
1868 /* Verifying header integrity only. */
1869 if (!segs)
1870 return 0;
1871
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001872 if (IS_ERR(segs))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001873 return PTR_ERR(segs);
1874
1875 skb->next = segs;
1876 DEV_GSO_CB(skb)->destructor = skb->destructor;
1877 skb->destructor = dev_gso_skb_destructor;
1878
1879 return 0;
1880}
1881
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001882int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
1883 struct netdev_queue *txq)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001884{
Stephen Hemminger00829822008-11-20 20:14:53 -08001885 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy572a9d72009-11-10 06:14:14 +00001886 int rc = NETDEV_TX_OK;
Stephen Hemminger00829822008-11-20 20:14:53 -08001887
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001888 if (likely(!skb->next)) {
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -07001889 if (!list_empty(&ptype_all))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001890 dev_queue_xmit_nit(skb, dev);
1891
Herbert Xu576a30e2006-06-27 13:22:38 -07001892 if (netif_needs_gso(dev, skb)) {
1893 if (unlikely(dev_gso_segment(skb)))
1894 goto out_kfree_skb;
1895 if (skb->next)
1896 goto gso;
1897 }
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001898
Eric Dumazet93f154b2009-05-18 22:19:19 -07001899 /*
1900 * If device doesnt need skb->dst, release it right now while
1901 * its hot in this cpu cache
1902 */
Eric Dumazetadf30902009-06-02 05:19:30 +00001903 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
1904 skb_dst_drop(skb);
1905
Patrick Ohlyac45f602009-02-12 05:03:37 +00001906 rc = ops->ndo_start_xmit(skb, dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001907 if (rc == NETDEV_TX_OK)
Eric Dumazet08baf562009-05-25 22:58:01 -07001908 txq_trans_update(txq);
Patrick Ohlyac45f602009-02-12 05:03:37 +00001909 /*
1910 * TODO: if skb_orphan() was called by
1911 * dev->hard_start_xmit() (for example, the unmodified
1912 * igb driver does that; bnx2 doesn't), then
1913 * skb_tx_software_timestamp() will be unable to send
1914 * back the time stamp.
1915 *
1916 * How can this be prevented? Always create another
1917 * reference to the socket before calling
1918 * dev->hard_start_xmit()? Prevent that skb_orphan()
1919 * does anything in dev->hard_start_xmit() by clearing
1920 * the skb destructor before the call and restoring it
1921 * afterwards, then doing the skb_orphan() ourselves?
1922 */
Patrick Ohlyac45f602009-02-12 05:03:37 +00001923 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001924 }
1925
Herbert Xu576a30e2006-06-27 13:22:38 -07001926gso:
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001927 do {
1928 struct sk_buff *nskb = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001929
1930 skb->next = nskb->next;
1931 nskb->next = NULL;
Krishna Kumar068a2de2009-12-09 20:59:58 +00001932
1933 /*
1934 * If device doesnt need nskb->dst, release it right now while
1935 * its hot in this cpu cache
1936 */
1937 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
1938 skb_dst_drop(nskb);
1939
Stephen Hemminger00829822008-11-20 20:14:53 -08001940 rc = ops->ndo_start_xmit(nskb, dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001941 if (unlikely(rc != NETDEV_TX_OK)) {
Patrick McHardy572a9d72009-11-10 06:14:14 +00001942 if (rc & ~NETDEV_TX_MASK)
1943 goto out_kfree_gso_skb;
Michael Chanf54d9e82006-06-25 23:57:04 -07001944 nskb->next = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001945 skb->next = nskb;
1946 return rc;
1947 }
Eric Dumazet08baf562009-05-25 22:58:01 -07001948 txq_trans_update(txq);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001949 if (unlikely(netif_tx_queue_stopped(txq) && skb->next))
Michael Chanf54d9e82006-06-25 23:57:04 -07001950 return NETDEV_TX_BUSY;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001951 } while (skb->next);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001952
Patrick McHardy572a9d72009-11-10 06:14:14 +00001953out_kfree_gso_skb:
1954 if (likely(skb->next == NULL))
1955 skb->destructor = DEV_GSO_CB(skb)->destructor;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001956out_kfree_skb:
1957 kfree_skb(skb);
Patrick McHardy572a9d72009-11-10 06:14:14 +00001958 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001959}
1960
Tom Herbert0a9627f2010-03-16 08:03:29 +00001961static u32 hashrnd __read_mostly;
David S. Millerb6b2fed2008-07-21 09:48:06 -07001962
Stephen Hemminger92477442009-03-21 13:39:26 -07001963u16 skb_tx_hash(const struct net_device *dev, const struct sk_buff *skb)
David S. Miller8f0f2222008-07-15 03:47:03 -07001964{
David S. Miller70192982009-01-27 16:34:47 -08001965 u32 hash;
David S. Millerb6b2fed2008-07-21 09:48:06 -07001966
David S. Miller513de112009-05-03 14:43:10 -07001967 if (skb_rx_queue_recorded(skb)) {
1968 hash = skb_get_rx_queue(skb);
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001969 while (unlikely(hash >= dev->real_num_tx_queues))
David S. Miller513de112009-05-03 14:43:10 -07001970 hash -= dev->real_num_tx_queues;
1971 return hash;
1972 }
Eric Dumazetec581f62009-05-01 09:05:06 -07001973
1974 if (skb->sk && skb->sk->sk_hash)
David S. Miller70192982009-01-27 16:34:47 -08001975 hash = skb->sk->sk_hash;
Eric Dumazetec581f62009-05-01 09:05:06 -07001976 else
David S. Miller70192982009-01-27 16:34:47 -08001977 hash = skb->protocol;
David S. Millerd5a9e242009-01-27 16:22:11 -08001978
Tom Herbert0a9627f2010-03-16 08:03:29 +00001979 hash = jhash_1word(hash, hashrnd);
David S. Millerd5a9e242009-01-27 16:22:11 -08001980
David S. Millerb6b2fed2008-07-21 09:48:06 -07001981 return (u16) (((u64) hash * dev->real_num_tx_queues) >> 32);
David S. Miller8f0f2222008-07-15 03:47:03 -07001982}
Stephen Hemminger92477442009-03-21 13:39:26 -07001983EXPORT_SYMBOL(skb_tx_hash);
David S. Miller8f0f2222008-07-15 03:47:03 -07001984
Eric Dumazeted046422009-11-13 21:54:04 +00001985static inline u16 dev_cap_txqueue(struct net_device *dev, u16 queue_index)
1986{
1987 if (unlikely(queue_index >= dev->real_num_tx_queues)) {
1988 if (net_ratelimit()) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00001989 netdev_warn(dev, "selects TX queue %d, but "
Eric Dumazeted046422009-11-13 21:54:04 +00001990 "real number of TX queues is %d\n",
Tom Herbert0a9627f2010-03-16 08:03:29 +00001991 queue_index, dev->real_num_tx_queues);
Eric Dumazeted046422009-11-13 21:54:04 +00001992 }
1993 return 0;
1994 }
1995 return queue_index;
1996}
1997
David S. Millere8a04642008-07-17 00:34:19 -07001998static struct netdev_queue *dev_pick_tx(struct net_device *dev,
1999 struct sk_buff *skb)
2000{
Krishna Kumara4ee3ce2009-10-19 23:50:07 +00002001 u16 queue_index;
2002 struct sock *sk = skb->sk;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002003
Krishna Kumara4ee3ce2009-10-19 23:50:07 +00002004 if (sk_tx_queue_recorded(sk)) {
2005 queue_index = sk_tx_queue_get(sk);
2006 } else {
2007 const struct net_device_ops *ops = dev->netdev_ops;
2008
2009 if (ops->ndo_select_queue) {
2010 queue_index = ops->ndo_select_queue(dev, skb);
Eric Dumazeted046422009-11-13 21:54:04 +00002011 queue_index = dev_cap_txqueue(dev, queue_index);
Krishna Kumara4ee3ce2009-10-19 23:50:07 +00002012 } else {
2013 queue_index = 0;
2014 if (dev->real_num_tx_queues > 1)
2015 queue_index = skb_tx_hash(dev, skb);
2016
2017 if (sk && sk->sk_dst_cache)
2018 sk_tx_queue_set(sk, queue_index);
2019 }
2020 }
David S. Millereae792b2008-07-15 03:03:33 -07002021
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002022 skb_set_queue_mapping(skb, queue_index);
2023 return netdev_get_tx_queue(dev, queue_index);
David S. Millere8a04642008-07-17 00:34:19 -07002024}
2025
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002026static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
2027 struct net_device *dev,
2028 struct netdev_queue *txq)
2029{
2030 spinlock_t *root_lock = qdisc_lock(q);
2031 int rc;
2032
2033 spin_lock(root_lock);
2034 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2035 kfree_skb(skb);
2036 rc = NET_XMIT_DROP;
2037 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
2038 !test_and_set_bit(__QDISC_STATE_RUNNING, &q->state)) {
2039 /*
2040 * This is a work-conserving queue; there are no old skbs
2041 * waiting to be sent out; and the qdisc is not running -
2042 * xmit the skb directly.
2043 */
2044 __qdisc_update_bstats(q, skb->len);
2045 if (sch_direct_xmit(skb, q, dev, txq, root_lock))
2046 __qdisc_run(q);
2047 else
2048 clear_bit(__QDISC_STATE_RUNNING, &q->state);
2049
2050 rc = NET_XMIT_SUCCESS;
2051 } else {
2052 rc = qdisc_enqueue_root(skb, q);
2053 qdisc_run(q);
2054 }
2055 spin_unlock(root_lock);
2056
2057 return rc;
2058}
2059
Krishna Kumar4b258462010-01-21 01:26:29 -08002060/*
2061 * Returns true if either:
2062 * 1. skb has frag_list and the device doesn't support FRAGLIST, or
2063 * 2. skb is fragmented and the device does not support SG, or if
2064 * at least one of fragments is in highmem and device does not
2065 * support DMA from it.
2066 */
2067static inline int skb_needs_linearize(struct sk_buff *skb,
2068 struct net_device *dev)
2069{
2070 return (skb_has_frags(skb) && !(dev->features & NETIF_F_FRAGLIST)) ||
2071 (skb_shinfo(skb)->nr_frags && (!(dev->features & NETIF_F_SG) ||
2072 illegal_highdma(dev, skb)));
2073}
2074
Dave Jonesd29f7492008-07-22 14:09:06 -07002075/**
2076 * dev_queue_xmit - transmit a buffer
2077 * @skb: buffer to transmit
2078 *
2079 * Queue a buffer for transmission to a network device. The caller must
2080 * have set the device and priority and built the buffer before calling
2081 * this function. The function can be called from an interrupt.
2082 *
2083 * A negative errno code is returned on a failure. A success does not
2084 * guarantee the frame will be transmitted as it may be dropped due
2085 * to congestion or traffic shaping.
2086 *
2087 * -----------------------------------------------------------------------------------
2088 * I notice this method can also return errors from the queue disciplines,
2089 * including NET_XMIT_DROP, which is a positive value. So, errors can also
2090 * be positive.
2091 *
2092 * Regardless of the return value, the skb is consumed, so it is currently
2093 * difficult to retry a send to this method. (You can bump the ref count
2094 * before sending to hold a reference for retry if you are careful.)
2095 *
2096 * When calling this method, interrupts MUST be enabled. This is because
2097 * the BH enable code must have IRQs enabled so that it will not deadlock.
2098 * --BLG
2099 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100int dev_queue_xmit(struct sk_buff *skb)
2101{
2102 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07002103 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 struct Qdisc *q;
2105 int rc = -ENOMEM;
2106
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002107 /* GSO will handle the following emulations directly. */
2108 if (netif_needs_gso(dev, skb))
2109 goto gso;
2110
Krishna Kumar4b258462010-01-21 01:26:29 -08002111 /* Convert a paged skb to linear, if required */
2112 if (skb_needs_linearize(skb, dev) && __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 goto out_kfree_skb;
2114
2115 /* If packet is not checksummed and device does not support
2116 * checksumming for this protocol, complete checksumming here.
2117 */
Herbert Xu663ead32007-04-09 11:59:07 -07002118 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2119 skb_set_transport_header(skb, skb->csum_start -
2120 skb_headroom(skb));
Ben Hutchings6de329e2008-06-16 17:02:28 -07002121 if (!dev_can_checksum(dev, skb) && skb_checksum_help(skb))
2122 goto out_kfree_skb;
Herbert Xu663ead32007-04-09 11:59:07 -07002123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002125gso:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002126 /* Disable soft irqs for various locks below. Also
2127 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002129 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
David S. Millereae792b2008-07-15 03:03:33 -07002131 txq = dev_pick_tx(dev, skb);
Paul E. McKenneya898def2010-02-22 17:04:49 -08002132 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07002133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134#ifdef CONFIG_NET_CLS_ACT
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002135 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136#endif
2137 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002138 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07002139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
2141
2142 /* The device has no queue. Common case for software devices:
2143 loopback, all the sorts of tunnels...
2144
Herbert Xu932ff272006-06-09 12:20:56 -07002145 Really, it is unlikely that netif_tx_lock protection is necessary
2146 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 counters.)
2148 However, it is possible, that they rely on protection
2149 made by us here.
2150
2151 Check this and shot the lock. It is not prone from deadlocks.
2152 Either shot noqueue qdisc, it is even simpler 8)
2153 */
2154 if (dev->flags & IFF_UP) {
2155 int cpu = smp_processor_id(); /* ok because BHs are off */
2156
David S. Millerc773e842008-07-08 23:13:53 -07002157 if (txq->xmit_lock_owner != cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
David S. Millerc773e842008-07-08 23:13:53 -07002159 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002161 if (!netif_tx_queue_stopped(txq)) {
Patrick McHardy572a9d72009-11-10 06:14:14 +00002162 rc = dev_hard_start_xmit(skb, dev, txq);
2163 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07002164 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 goto out;
2166 }
2167 }
David S. Millerc773e842008-07-08 23:13:53 -07002168 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (net_ratelimit())
2170 printk(KERN_CRIT "Virtual device %s asks to "
2171 "queue packet!\n", dev->name);
2172 } else {
2173 /* Recursion is detected! It is possible,
2174 * unfortunately */
2175 if (net_ratelimit())
2176 printk(KERN_CRIT "Dead loop on virtual device "
2177 "%s, fix it urgently!\n", dev->name);
2178 }
2179 }
2180
2181 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07002182 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184out_kfree_skb:
2185 kfree_skb(skb);
2186 return rc;
2187out:
Herbert Xud4828d82006-06-22 02:28:18 -07002188 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return rc;
2190}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002191EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193
2194/*=======================================================================
2195 Receiver routines
2196 =======================================================================*/
2197
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07002198int netdev_max_backlog __read_mostly = 1000;
2199int netdev_budget __read_mostly = 300;
2200int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
2203
Eric Dumazetdf334542010-03-24 19:13:54 +00002204#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00002205/*
2206 * get_rps_cpu is called from netif_receive_skb and returns the target
2207 * CPU from the RPS map of the receiving queue for a given skb.
2208 */
2209static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb)
2210{
2211 struct ipv6hdr *ip6;
2212 struct iphdr *ip;
2213 struct netdev_rx_queue *rxqueue;
2214 struct rps_map *map;
2215 int cpu = -1;
2216 u8 ip_proto;
2217 u32 addr1, addr2, ports, ihl;
2218
2219 rcu_read_lock();
2220
2221 if (skb_rx_queue_recorded(skb)) {
2222 u16 index = skb_get_rx_queue(skb);
2223 if (unlikely(index >= dev->num_rx_queues)) {
2224 if (net_ratelimit()) {
2225 netdev_warn(dev, "received packet on queue "
2226 "%u, but number of RX queues is %u\n",
2227 index, dev->num_rx_queues);
2228 }
2229 goto done;
2230 }
2231 rxqueue = dev->_rx + index;
2232 } else
2233 rxqueue = dev->_rx;
2234
2235 if (!rxqueue->rps_map)
2236 goto done;
2237
2238 if (skb->rxhash)
2239 goto got_hash; /* Skip hash computation on packet header */
2240
2241 switch (skb->protocol) {
2242 case __constant_htons(ETH_P_IP):
2243 if (!pskb_may_pull(skb, sizeof(*ip)))
2244 goto done;
2245
2246 ip = (struct iphdr *) skb->data;
2247 ip_proto = ip->protocol;
2248 addr1 = ip->saddr;
2249 addr2 = ip->daddr;
2250 ihl = ip->ihl;
2251 break;
2252 case __constant_htons(ETH_P_IPV6):
2253 if (!pskb_may_pull(skb, sizeof(*ip6)))
2254 goto done;
2255
2256 ip6 = (struct ipv6hdr *) skb->data;
2257 ip_proto = ip6->nexthdr;
2258 addr1 = ip6->saddr.s6_addr32[3];
2259 addr2 = ip6->daddr.s6_addr32[3];
2260 ihl = (40 >> 2);
2261 break;
2262 default:
2263 goto done;
2264 }
2265 ports = 0;
2266 switch (ip_proto) {
2267 case IPPROTO_TCP:
2268 case IPPROTO_UDP:
2269 case IPPROTO_DCCP:
2270 case IPPROTO_ESP:
2271 case IPPROTO_AH:
2272 case IPPROTO_SCTP:
2273 case IPPROTO_UDPLITE:
2274 if (pskb_may_pull(skb, (ihl * 4) + 4))
2275 ports = *((u32 *) (skb->data + (ihl * 4)));
2276 break;
2277
2278 default:
2279 break;
2280 }
2281
2282 skb->rxhash = jhash_3words(addr1, addr2, ports, hashrnd);
2283 if (!skb->rxhash)
2284 skb->rxhash = 1;
2285
2286got_hash:
2287 map = rcu_dereference(rxqueue->rps_map);
2288 if (map) {
2289 u16 tcpu = map->cpus[((u64) skb->rxhash * map->len) >> 32];
2290
2291 if (cpu_online(tcpu)) {
2292 cpu = tcpu;
2293 goto done;
2294 }
2295 }
2296
2297done:
2298 rcu_read_unlock();
2299 return cpu;
2300}
2301
2302/*
2303 * This structure holds the per-CPU mask of CPUs for which IPIs are scheduled
2304 * to be sent to kick remote softirq processing. There are two masks since
2305 * the sending of IPIs must be done with interrupts enabled. The select field
2306 * indicates the current mask that enqueue_backlog uses to schedule IPIs.
2307 * select is flipped before net_rps_action is called while still under lock,
2308 * net_rps_action then uses the non-selected mask to send the IPIs and clears
2309 * it without conflicting with enqueue_backlog operation.
2310 */
2311struct rps_remote_softirq_cpus {
2312 cpumask_t mask[2];
2313 int select;
2314};
2315static DEFINE_PER_CPU(struct rps_remote_softirq_cpus, rps_remote_softirq_cpus);
2316
2317/* Called from hardirq (IPI) context */
2318static void trigger_softirq(void *data)
2319{
2320 struct softnet_data *queue = data;
2321 __napi_schedule(&queue->backlog);
2322 __get_cpu_var(netdev_rx_stat).received_rps++;
2323}
Tom Herbert1e94d722010-03-18 17:45:44 -07002324#endif /* CONFIG_SMP */
Tom Herbert0a9627f2010-03-16 08:03:29 +00002325
2326/*
2327 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
2328 * queue (may be a remote CPU queue).
2329 */
2330static int enqueue_to_backlog(struct sk_buff *skb, int cpu)
2331{
2332 struct softnet_data *queue;
2333 unsigned long flags;
2334
2335 queue = &per_cpu(softnet_data, cpu);
2336
2337 local_irq_save(flags);
2338 __get_cpu_var(netdev_rx_stat).total++;
2339
Changli Gao152102c2010-03-30 20:16:22 +00002340 rps_lock(queue);
Tom Herbert0a9627f2010-03-16 08:03:29 +00002341 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
2342 if (queue->input_pkt_queue.qlen) {
2343enqueue:
2344 __skb_queue_tail(&queue->input_pkt_queue, skb);
Changli Gao152102c2010-03-30 20:16:22 +00002345 rps_unlock(queue);
2346 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00002347 return NET_RX_SUCCESS;
2348 }
2349
2350 /* Schedule NAPI for backlog device */
2351 if (napi_schedule_prep(&queue->backlog)) {
Eric Dumazetdf334542010-03-24 19:13:54 +00002352#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00002353 if (cpu != smp_processor_id()) {
2354 struct rps_remote_softirq_cpus *rcpus =
2355 &__get_cpu_var(rps_remote_softirq_cpus);
2356
2357 cpu_set(cpu, rcpus->mask[rcpus->select]);
2358 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2359 } else
2360 __napi_schedule(&queue->backlog);
Tom Herbert1e94d722010-03-18 17:45:44 -07002361#else
2362 __napi_schedule(&queue->backlog);
2363#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00002364 }
2365 goto enqueue;
2366 }
2367
Changli Gao152102c2010-03-30 20:16:22 +00002368 rps_unlock(queue);
Tom Herbert0a9627f2010-03-16 08:03:29 +00002369
2370 __get_cpu_var(netdev_rx_stat).dropped++;
2371 local_irq_restore(flags);
2372
2373 kfree_skb(skb);
2374 return NET_RX_DROP;
2375}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377/**
2378 * netif_rx - post buffer to the network code
2379 * @skb: buffer to post
2380 *
2381 * This function receives a packet from a device driver and queues it for
2382 * the upper (protocol) levels to process. It always succeeds. The buffer
2383 * may be dropped during processing for congestion control or by the
2384 * protocol layers.
2385 *
2386 * return values:
2387 * NET_RX_SUCCESS (no congestion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 * NET_RX_DROP (packet was dropped)
2389 *
2390 */
2391
2392int netif_rx(struct sk_buff *skb)
2393{
Tom Herbert0a9627f2010-03-16 08:03:29 +00002394 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 /* if netpoll wants it, pretend we never saw it */
2397 if (netpoll_rx(skb))
2398 return NET_RX_DROP;
2399
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07002400 if (!skb->tstamp.tv64)
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002401 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Eric Dumazetdf334542010-03-24 19:13:54 +00002403#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00002404 cpu = get_rps_cpu(skb->dev, skb);
2405 if (cpu < 0)
2406 cpu = smp_processor_id();
Tom Herbert1e94d722010-03-18 17:45:44 -07002407#else
2408 cpu = smp_processor_id();
2409#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Tom Herbert0a9627f2010-03-16 08:03:29 +00002411 return enqueue_to_backlog(skb, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002413EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415int netif_rx_ni(struct sk_buff *skb)
2416{
2417 int err;
2418
2419 preempt_disable();
2420 err = netif_rx(skb);
2421 if (local_softirq_pending())
2422 do_softirq();
2423 preempt_enable();
2424
2425 return err;
2426}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427EXPORT_SYMBOL(netif_rx_ni);
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429static void net_tx_action(struct softirq_action *h)
2430{
2431 struct softnet_data *sd = &__get_cpu_var(softnet_data);
2432
2433 if (sd->completion_queue) {
2434 struct sk_buff *clist;
2435
2436 local_irq_disable();
2437 clist = sd->completion_queue;
2438 sd->completion_queue = NULL;
2439 local_irq_enable();
2440
2441 while (clist) {
2442 struct sk_buff *skb = clist;
2443 clist = clist->next;
2444
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002445 WARN_ON(atomic_read(&skb->users));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 __kfree_skb(skb);
2447 }
2448 }
2449
2450 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07002451 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 local_irq_disable();
2454 head = sd->output_queue;
2455 sd->output_queue = NULL;
2456 local_irq_enable();
2457
2458 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07002459 struct Qdisc *q = head;
2460 spinlock_t *root_lock;
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 head = head->next_sched;
2463
David S. Miller5fb66222008-08-02 20:02:43 -07002464 root_lock = qdisc_lock(q);
David S. Miller37437bb2008-07-16 02:15:04 -07002465 if (spin_trylock(root_lock)) {
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002466 smp_mb__before_clear_bit();
2467 clear_bit(__QDISC_STATE_SCHED,
2468 &q->state);
David S. Miller37437bb2008-07-16 02:15:04 -07002469 qdisc_run(q);
2470 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 } else {
David S. Miller195648b2008-08-19 04:00:36 -07002472 if (!test_bit(__QDISC_STATE_DEACTIVATED,
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07002473 &q->state)) {
David S. Miller195648b2008-08-19 04:00:36 -07002474 __netif_reschedule(q);
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07002475 } else {
2476 smp_mb__before_clear_bit();
2477 clear_bit(__QDISC_STATE_SCHED,
2478 &q->state);
2479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481 }
2482 }
2483}
2484
Stephen Hemminger6f05f622007-03-08 20:46:03 -08002485static inline int deliver_skb(struct sk_buff *skb,
2486 struct packet_type *pt_prev,
2487 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
2489 atomic_inc(&skb->users);
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002490 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
2493#if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
Michał Mirosławda678292009-06-05 05:35:28 +00002494
2495#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
2496/* This hook is defined here for ATM LANE */
2497int (*br_fdb_test_addr_hook)(struct net_device *dev,
2498 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07002499EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00002500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Stephen Hemminger6229e362007-03-21 13:38:47 -07002502/*
2503 * If bridge module is loaded call bridging hook.
2504 * returns NULL if packet was consumed.
2505 */
2506struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p,
2507 struct sk_buff *skb) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07002508EXPORT_SYMBOL_GPL(br_handle_frame_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00002509
Stephen Hemminger6229e362007-03-21 13:38:47 -07002510static inline struct sk_buff *handle_bridge(struct sk_buff *skb,
2511 struct packet_type **pt_prev, int *ret,
2512 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
2514 struct net_bridge_port *port;
2515
Stephen Hemminger6229e362007-03-21 13:38:47 -07002516 if (skb->pkt_type == PACKET_LOOPBACK ||
2517 (port = rcu_dereference(skb->dev->br_port)) == NULL)
2518 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520 if (*pt_prev) {
Stephen Hemminger6229e362007-03-21 13:38:47 -07002521 *ret = deliver_skb(skb, *pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 *pt_prev = NULL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002523 }
2524
Stephen Hemminger6229e362007-03-21 13:38:47 -07002525 return br_handle_frame_hook(port, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
2527#else
Stephen Hemminger6229e362007-03-21 13:38:47 -07002528#define handle_bridge(skb, pt_prev, ret, orig_dev) (skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529#endif
2530
Patrick McHardyb863ceb2007-07-14 18:55:06 -07002531#if defined(CONFIG_MACVLAN) || defined(CONFIG_MACVLAN_MODULE)
2532struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *skb) __read_mostly;
2533EXPORT_SYMBOL_GPL(macvlan_handle_frame_hook);
2534
2535static inline struct sk_buff *handle_macvlan(struct sk_buff *skb,
2536 struct packet_type **pt_prev,
2537 int *ret,
2538 struct net_device *orig_dev)
2539{
2540 if (skb->dev->macvlan_port == NULL)
2541 return skb;
2542
2543 if (*pt_prev) {
2544 *ret = deliver_skb(skb, *pt_prev, orig_dev);
2545 *pt_prev = NULL;
2546 }
2547 return macvlan_handle_frame_hook(skb);
2548}
2549#else
2550#define handle_macvlan(skb, pt_prev, ret, orig_dev) (skb)
2551#endif
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553#ifdef CONFIG_NET_CLS_ACT
2554/* TODO: Maybe we should just force sch_ingress to be compiled in
2555 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
2556 * a compare and 2 stores extra right now if we dont have it on
2557 * but have CONFIG_NET_CLS_ACT
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002558 * NOTE: This doesnt stop any functionality; if you dont have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 * the ingress scheduler, you just cant add policies on ingress.
2560 *
2561 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002562static int ing_filter(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 struct net_device *dev = skb->dev;
Herbert Xuf697c3e2007-10-14 00:38:47 -07002565 u32 ttl = G_TC_RTTL(skb->tc_verd);
David S. Miller555353c2008-07-08 17:33:13 -07002566 struct netdev_queue *rxq;
2567 int result = TC_ACT_OK;
2568 struct Qdisc *q;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002569
Herbert Xuf697c3e2007-10-14 00:38:47 -07002570 if (MAX_RED_LOOP < ttl++) {
2571 printk(KERN_WARNING
2572 "Redir loop detected Dropping packet (%d->%d)\n",
Eric Dumazet8964be42009-11-20 15:35:04 -08002573 skb->skb_iif, dev->ifindex);
Herbert Xuf697c3e2007-10-14 00:38:47 -07002574 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 }
2576
Herbert Xuf697c3e2007-10-14 00:38:47 -07002577 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
2578 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
2579
David S. Miller555353c2008-07-08 17:33:13 -07002580 rxq = &dev->rx_queue;
2581
David S. Miller83874002008-07-17 00:53:03 -07002582 q = rxq->qdisc;
David S. Miller8d50b532008-07-30 02:37:46 -07002583 if (q != &noop_qdisc) {
David S. Miller83874002008-07-17 00:53:03 -07002584 spin_lock(qdisc_lock(q));
David S. Millera9312ae2008-08-17 21:51:03 -07002585 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
2586 result = qdisc_enqueue_root(skb, q);
David S. Miller83874002008-07-17 00:53:03 -07002587 spin_unlock(qdisc_lock(q));
2588 }
Herbert Xuf697c3e2007-10-14 00:38:47 -07002589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 return result;
2591}
Herbert Xuf697c3e2007-10-14 00:38:47 -07002592
2593static inline struct sk_buff *handle_ing(struct sk_buff *skb,
2594 struct packet_type **pt_prev,
2595 int *ret, struct net_device *orig_dev)
2596{
David S. Miller8d50b532008-07-30 02:37:46 -07002597 if (skb->dev->rx_queue.qdisc == &noop_qdisc)
Herbert Xuf697c3e2007-10-14 00:38:47 -07002598 goto out;
2599
2600 if (*pt_prev) {
2601 *ret = deliver_skb(skb, *pt_prev, orig_dev);
2602 *pt_prev = NULL;
2603 } else {
2604 /* Huh? Why does turning on AF_PACKET affect this? */
2605 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
2606 }
2607
2608 switch (ing_filter(skb)) {
2609 case TC_ACT_SHOT:
2610 case TC_ACT_STOLEN:
2611 kfree_skb(skb);
2612 return NULL;
2613 }
2614
2615out:
2616 skb->tc_verd = 0;
2617 return skb;
2618}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619#endif
2620
Patrick McHardybc1d0412008-07-14 22:49:30 -07002621/*
2622 * netif_nit_deliver - deliver received packets to network taps
2623 * @skb: buffer
2624 *
2625 * This function is used to deliver incoming packets to network
2626 * taps. It should be used when the normal netif_receive_skb path
2627 * is bypassed, for example because of VLAN acceleration.
2628 */
2629void netif_nit_deliver(struct sk_buff *skb)
2630{
2631 struct packet_type *ptype;
2632
2633 if (list_empty(&ptype_all))
2634 return;
2635
2636 skb_reset_network_header(skb);
2637 skb_reset_transport_header(skb);
2638 skb->mac_len = skb->network_header - skb->mac_header;
2639
2640 rcu_read_lock();
2641 list_for_each_entry_rcu(ptype, &ptype_all, list) {
2642 if (!ptype->dev || ptype->dev == skb->dev)
2643 deliver_skb(skb, ptype, skb->dev);
2644 }
2645 rcu_read_unlock();
2646}
2647
Eric Dumazet10f744d2010-03-28 23:07:20 -07002648static int __netif_receive_skb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
2650 struct packet_type *ptype, *pt_prev;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002651 struct net_device *orig_dev;
Eric Dumazet0641e4f2010-03-18 21:16:45 -07002652 struct net_device *master;
Joe Eykholt0d7a3682008-07-02 18:22:01 -07002653 struct net_device *null_or_orig;
Andy Gospodarekca8d9ea2010-01-06 12:56:37 +00002654 struct net_device *null_or_bond;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08002656 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07002658 if (!skb->tstamp.tv64)
2659 net_timestamp(skb);
2660
Eric Dumazet05423b22009-10-26 18:40:35 -07002661 if (vlan_tx_tag_present(skb) && vlan_hwaccel_do_receive(skb))
Patrick McHardy9b22ea52008-11-04 14:49:57 -08002662 return NET_RX_SUCCESS;
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 /* if we've gotten here through NAPI, check netpoll */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002665 if (netpoll_receive_skb(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 return NET_RX_DROP;
2667
Eric Dumazet8964be42009-11-20 15:35:04 -08002668 if (!skb->skb_iif)
2669 skb->skb_iif = skb->dev->ifindex;
David S. Miller86e65da2005-08-09 19:36:29 -07002670
Joe Eykholt0d7a3682008-07-02 18:22:01 -07002671 null_or_orig = NULL;
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07002672 orig_dev = skb->dev;
Eric Dumazet0641e4f2010-03-18 21:16:45 -07002673 master = ACCESS_ONCE(orig_dev->master);
2674 if (master) {
2675 if (skb_bond_should_drop(skb, master))
Joe Eykholt0d7a3682008-07-02 18:22:01 -07002676 null_or_orig = orig_dev; /* deliver only exact match */
2677 else
Eric Dumazet0641e4f2010-03-18 21:16:45 -07002678 skb->dev = master;
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07002679 }
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 __get_cpu_var(netdev_rx_stat).total++;
2682
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07002683 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002684 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002685 skb->mac_len = skb->network_header - skb->mac_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687 pt_prev = NULL;
2688
2689 rcu_read_lock();
2690
2691#ifdef CONFIG_NET_CLS_ACT
2692 if (skb->tc_verd & TC_NCLS) {
2693 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
2694 goto ncls;
2695 }
2696#endif
2697
2698 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Joe Eykholtf9823072008-07-02 18:22:02 -07002699 if (ptype->dev == null_or_orig || ptype->dev == skb->dev ||
2700 ptype->dev == orig_dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002701 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002702 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 pt_prev = ptype;
2704 }
2705 }
2706
2707#ifdef CONFIG_NET_CLS_ACT
Herbert Xuf697c3e2007-10-14 00:38:47 -07002708 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
2709 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711ncls:
2712#endif
2713
Stephen Hemminger6229e362007-03-21 13:38:47 -07002714 skb = handle_bridge(skb, &pt_prev, &ret, orig_dev);
2715 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 goto out;
Patrick McHardyb863ceb2007-07-14 18:55:06 -07002717 skb = handle_macvlan(skb, &pt_prev, &ret, orig_dev);
2718 if (!skb)
2719 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002721 /*
2722 * Make sure frames received on VLAN interfaces stacked on
2723 * bonding interfaces still make their way to any base bonding
2724 * device that may have registered for a specific ptype. The
2725 * handler may have to adjust skb->dev and orig_dev.
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002726 */
Andy Gospodarekca8d9ea2010-01-06 12:56:37 +00002727 null_or_bond = NULL;
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002728 if ((skb->dev->priv_flags & IFF_802_1Q_VLAN) &&
2729 (vlan_dev_real_dev(skb->dev)->priv_flags & IFF_BONDING)) {
Andy Gospodarekca8d9ea2010-01-06 12:56:37 +00002730 null_or_bond = vlan_dev_real_dev(skb->dev);
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002731 }
2732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 type = skb->protocol;
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08002734 list_for_each_entry_rcu(ptype,
2735 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002736 if (ptype->type == type && (ptype->dev == null_or_orig ||
Andy Gospodarekca8d9ea2010-01-06 12:56:37 +00002737 ptype->dev == skb->dev || ptype->dev == orig_dev ||
2738 ptype->dev == null_or_bond)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002739 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002740 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 pt_prev = ptype;
2742 }
2743 }
2744
2745 if (pt_prev) {
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002746 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 } else {
2748 kfree_skb(skb);
2749 /* Jamal, now you will not able to escape explaining
2750 * me how you were going to use this. :-)
2751 */
2752 ret = NET_RX_DROP;
2753 }
2754
2755out:
2756 rcu_read_unlock();
2757 return ret;
2758}
Tom Herbert0a9627f2010-03-16 08:03:29 +00002759
2760/**
2761 * netif_receive_skb - process receive buffer from network
2762 * @skb: buffer to process
2763 *
2764 * netif_receive_skb() is the main receive data processing function.
2765 * It always succeeds. The buffer may be dropped during processing
2766 * for congestion control or by the protocol layers.
2767 *
2768 * This function may only be called from softirq context and interrupts
2769 * should be enabled.
2770 *
2771 * Return values (usually ignored):
2772 * NET_RX_SUCCESS: no congestion
2773 * NET_RX_DROP: packet was dropped
2774 */
2775int netif_receive_skb(struct sk_buff *skb)
2776{
Eric Dumazetdf334542010-03-24 19:13:54 +00002777#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00002778 int cpu;
2779
2780 cpu = get_rps_cpu(skb->dev, skb);
2781
2782 if (cpu < 0)
2783 return __netif_receive_skb(skb);
2784 else
2785 return enqueue_to_backlog(skb, cpu);
Tom Herbert1e94d722010-03-18 17:45:44 -07002786#else
2787 return __netif_receive_skb(skb);
2788#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00002789}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002790EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07002792/* Network device is going away, flush any packets still pending */
Changli Gao152102c2010-03-30 20:16:22 +00002793static void flush_backlog(void *arg)
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07002794{
Changli Gao152102c2010-03-30 20:16:22 +00002795 struct net_device *dev = arg;
2796 struct softnet_data *queue = &__get_cpu_var(softnet_data);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07002797 struct sk_buff *skb, *tmp;
2798
Changli Gao152102c2010-03-30 20:16:22 +00002799 rps_lock(queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07002800 skb_queue_walk_safe(&queue->input_pkt_queue, skb, tmp)
2801 if (skb->dev == dev) {
2802 __skb_unlink(skb, &queue->input_pkt_queue);
2803 kfree_skb(skb);
2804 }
Changli Gao152102c2010-03-30 20:16:22 +00002805 rps_unlock(queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07002806}
2807
Herbert Xud565b0a2008-12-15 23:38:52 -08002808static int napi_gro_complete(struct sk_buff *skb)
2809{
2810 struct packet_type *ptype;
2811 __be16 type = skb->protocol;
2812 struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK];
2813 int err = -ENOENT;
2814
Herbert Xufc59f9a2009-04-14 15:11:06 -07002815 if (NAPI_GRO_CB(skb)->count == 1) {
2816 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002817 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07002818 }
Herbert Xud565b0a2008-12-15 23:38:52 -08002819
2820 rcu_read_lock();
2821 list_for_each_entry_rcu(ptype, head, list) {
2822 if (ptype->type != type || ptype->dev || !ptype->gro_complete)
2823 continue;
2824
2825 err = ptype->gro_complete(skb);
2826 break;
2827 }
2828 rcu_read_unlock();
2829
2830 if (err) {
2831 WARN_ON(&ptype->list == head);
2832 kfree_skb(skb);
2833 return NET_RX_SUCCESS;
2834 }
2835
2836out:
Herbert Xud565b0a2008-12-15 23:38:52 -08002837 return netif_receive_skb(skb);
2838}
2839
David S. Miller11380a42010-01-19 13:46:10 -08002840static void napi_gro_flush(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08002841{
2842 struct sk_buff *skb, *next;
2843
2844 for (skb = napi->gro_list; skb; skb = next) {
2845 next = skb->next;
2846 skb->next = NULL;
2847 napi_gro_complete(skb);
2848 }
2849
Herbert Xu4ae55442009-02-08 18:00:36 +00002850 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002851 napi->gro_list = NULL;
2852}
Herbert Xud565b0a2008-12-15 23:38:52 -08002853
Ben Hutchings5b252f02009-10-29 07:17:09 +00002854enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08002855{
2856 struct sk_buff **pp = NULL;
2857 struct packet_type *ptype;
2858 __be16 type = skb->protocol;
2859 struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK];
Herbert Xu0da2afd52008-12-26 14:57:42 -08002860 int same_flow;
Herbert Xud565b0a2008-12-15 23:38:52 -08002861 int mac_len;
Ben Hutchings5b252f02009-10-29 07:17:09 +00002862 enum gro_result ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08002863
2864 if (!(skb->dev->features & NETIF_F_GRO))
2865 goto normal;
2866
David S. Miller4cf704f2009-06-09 00:18:51 -07002867 if (skb_is_gso(skb) || skb_has_frags(skb))
Herbert Xuf17f5c92009-01-14 14:36:12 -08002868 goto normal;
2869
Herbert Xud565b0a2008-12-15 23:38:52 -08002870 rcu_read_lock();
2871 list_for_each_entry_rcu(ptype, head, list) {
Herbert Xud565b0a2008-12-15 23:38:52 -08002872 if (ptype->type != type || ptype->dev || !ptype->gro_receive)
2873 continue;
2874
Herbert Xu86911732009-01-29 14:19:50 +00002875 skb_set_network_header(skb, skb_gro_offset(skb));
Herbert Xud565b0a2008-12-15 23:38:52 -08002876 mac_len = skb->network_header - skb->mac_header;
2877 skb->mac_len = mac_len;
2878 NAPI_GRO_CB(skb)->same_flow = 0;
2879 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08002880 NAPI_GRO_CB(skb)->free = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002881
Herbert Xud565b0a2008-12-15 23:38:52 -08002882 pp = ptype->gro_receive(&napi->gro_list, skb);
2883 break;
2884 }
2885 rcu_read_unlock();
2886
2887 if (&ptype->list == head)
2888 goto normal;
2889
Herbert Xu0da2afd52008-12-26 14:57:42 -08002890 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002891 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08002892
Herbert Xud565b0a2008-12-15 23:38:52 -08002893 if (pp) {
2894 struct sk_buff *nskb = *pp;
2895
2896 *pp = nskb->next;
2897 nskb->next = NULL;
2898 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00002899 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08002900 }
2901
Herbert Xu0da2afd52008-12-26 14:57:42 -08002902 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08002903 goto ok;
2904
Herbert Xu4ae55442009-02-08 18:00:36 +00002905 if (NAPI_GRO_CB(skb)->flush || napi->gro_count >= MAX_GRO_SKBS)
Herbert Xud565b0a2008-12-15 23:38:52 -08002906 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08002907
Herbert Xu4ae55442009-02-08 18:00:36 +00002908 napi->gro_count++;
Herbert Xud565b0a2008-12-15 23:38:52 -08002909 NAPI_GRO_CB(skb)->count = 1;
Herbert Xu86911732009-01-29 14:19:50 +00002910 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08002911 skb->next = napi->gro_list;
2912 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002913 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08002914
Herbert Xuad0f9902009-02-01 01:24:55 -08002915pull:
Herbert Xucb189782009-05-26 18:50:31 +00002916 if (skb_headlen(skb) < skb_gro_offset(skb)) {
2917 int grow = skb_gro_offset(skb) - skb_headlen(skb);
2918
2919 BUG_ON(skb->end - skb->tail < grow);
2920
2921 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
2922
2923 skb->tail += grow;
2924 skb->data_len -= grow;
2925
2926 skb_shinfo(skb)->frags[0].page_offset += grow;
2927 skb_shinfo(skb)->frags[0].size -= grow;
2928
2929 if (unlikely(!skb_shinfo(skb)->frags[0].size)) {
2930 put_page(skb_shinfo(skb)->frags[0].page);
2931 memmove(skb_shinfo(skb)->frags,
2932 skb_shinfo(skb)->frags + 1,
2933 --skb_shinfo(skb)->nr_frags);
2934 }
Herbert Xuad0f9902009-02-01 01:24:55 -08002935 }
2936
Herbert Xud565b0a2008-12-15 23:38:52 -08002937ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002938 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08002939
2940normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08002941 ret = GRO_NORMAL;
2942 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08002943}
Herbert Xu96e93ea2009-01-06 10:49:34 -08002944EXPORT_SYMBOL(dev_gro_receive);
2945
Ben Hutchings5b252f02009-10-29 07:17:09 +00002946static gro_result_t
2947__napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08002948{
2949 struct sk_buff *p;
2950
Herbert Xud1c76af2009-03-16 10:50:02 -07002951 if (netpoll_rx_on(skb))
2952 return GRO_NORMAL;
2953
Herbert Xu96e93ea2009-01-06 10:49:34 -08002954 for (p = napi->gro_list; p; p = p->next) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08002955 NAPI_GRO_CB(p)->same_flow =
2956 (p->dev == skb->dev) &&
2957 !compare_ether_header(skb_mac_header(p),
2958 skb_gro_mac_header(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08002959 NAPI_GRO_CB(p)->flush = 0;
2960 }
2961
2962 return dev_gro_receive(napi, skb);
2963}
Herbert Xu5d38a072009-01-04 16:13:40 -08002964
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002965gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08002966{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002967 switch (ret) {
2968 case GRO_NORMAL:
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002969 if (netif_receive_skb(skb))
2970 ret = GRO_DROP;
2971 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08002972
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002973 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002974 case GRO_MERGED_FREE:
Herbert Xu5d38a072009-01-04 16:13:40 -08002975 kfree_skb(skb);
2976 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00002977
2978 case GRO_HELD:
2979 case GRO_MERGED:
2980 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08002981 }
2982
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002983 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002984}
2985EXPORT_SYMBOL(napi_skb_finish);
2986
Herbert Xu78a478d2009-05-26 18:50:21 +00002987void skb_gro_reset_offset(struct sk_buff *skb)
2988{
2989 NAPI_GRO_CB(skb)->data_offset = 0;
2990 NAPI_GRO_CB(skb)->frag0 = NULL;
Herbert Xu74895942009-05-26 18:50:27 +00002991 NAPI_GRO_CB(skb)->frag0_len = 0;
Herbert Xu78a478d2009-05-26 18:50:21 +00002992
Herbert Xu78d3fd02009-05-26 18:50:23 +00002993 if (skb->mac_header == skb->tail &&
Herbert Xu74895942009-05-26 18:50:27 +00002994 !PageHighMem(skb_shinfo(skb)->frags[0].page)) {
Herbert Xu78a478d2009-05-26 18:50:21 +00002995 NAPI_GRO_CB(skb)->frag0 =
2996 page_address(skb_shinfo(skb)->frags[0].page) +
2997 skb_shinfo(skb)->frags[0].page_offset;
Herbert Xu74895942009-05-26 18:50:27 +00002998 NAPI_GRO_CB(skb)->frag0_len = skb_shinfo(skb)->frags[0].size;
2999 }
Herbert Xu78a478d2009-05-26 18:50:21 +00003000}
3001EXPORT_SYMBOL(skb_gro_reset_offset);
3002
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07003003gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003004{
Herbert Xu86911732009-01-29 14:19:50 +00003005 skb_gro_reset_offset(skb);
3006
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003007 return napi_skb_finish(__napi_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003008}
3009EXPORT_SYMBOL(napi_gro_receive);
3010
Herbert Xu96e93ea2009-01-06 10:49:34 -08003011void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
3012{
Herbert Xu96e93ea2009-01-06 10:49:34 -08003013 __skb_pull(skb, skb_headlen(skb));
3014 skb_reserve(skb, NET_IP_ALIGN - skb_headroom(skb));
3015
3016 napi->skb = skb;
3017}
3018EXPORT_SYMBOL(napi_reuse_skb);
3019
Herbert Xu76620aa2009-04-16 02:02:07 -07003020struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08003021{
Herbert Xu5d38a072009-01-04 16:13:40 -08003022 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08003023
3024 if (!skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00003025 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
3026 if (skb)
3027 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08003028 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08003029 return skb;
3030}
Herbert Xu76620aa2009-04-16 02:02:07 -07003031EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08003032
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07003033gro_result_t napi_frags_finish(struct napi_struct *napi, struct sk_buff *skb,
3034 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003035{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003036 switch (ret) {
3037 case GRO_NORMAL:
Herbert Xu86911732009-01-29 14:19:50 +00003038 case GRO_HELD:
Ajit Khapardee76b69c2010-02-16 20:25:43 +00003039 skb->protocol = eth_type_trans(skb, skb->dev);
Herbert Xu86911732009-01-29 14:19:50 +00003040
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07003041 if (ret == GRO_HELD)
3042 skb_gro_pull(skb, -ETH_HLEN);
3043 else if (netif_receive_skb(skb))
3044 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00003045 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003046
3047 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003048 case GRO_MERGED_FREE:
3049 napi_reuse_skb(napi, skb);
3050 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00003051
3052 case GRO_MERGED:
3053 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003054 }
3055
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07003056 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003057}
3058EXPORT_SYMBOL(napi_frags_finish);
3059
Herbert Xu76620aa2009-04-16 02:02:07 -07003060struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08003061{
Herbert Xu76620aa2009-04-16 02:02:07 -07003062 struct sk_buff *skb = napi->skb;
3063 struct ethhdr *eth;
Herbert Xua5b1cf22009-05-26 18:50:28 +00003064 unsigned int hlen;
3065 unsigned int off;
Herbert Xu76620aa2009-04-16 02:02:07 -07003066
3067 napi->skb = NULL;
3068
3069 skb_reset_mac_header(skb);
3070 skb_gro_reset_offset(skb);
3071
Herbert Xua5b1cf22009-05-26 18:50:28 +00003072 off = skb_gro_offset(skb);
3073 hlen = off + sizeof(*eth);
3074 eth = skb_gro_header_fast(skb, off);
3075 if (skb_gro_header_hard(skb, hlen)) {
3076 eth = skb_gro_header_slow(skb, hlen, off);
3077 if (unlikely(!eth)) {
3078 napi_reuse_skb(napi, skb);
3079 skb = NULL;
3080 goto out;
3081 }
Herbert Xu76620aa2009-04-16 02:02:07 -07003082 }
3083
3084 skb_gro_pull(skb, sizeof(*eth));
3085
3086 /*
3087 * This works because the only protocols we care about don't require
3088 * special handling. We'll fix it up properly at the end.
3089 */
3090 skb->protocol = eth->h_proto;
3091
3092out:
3093 return skb;
3094}
3095EXPORT_SYMBOL(napi_frags_skb);
3096
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07003097gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07003098{
3099 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08003100
3101 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07003102 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08003103
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003104 return napi_frags_finish(napi, skb, __napi_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08003105}
3106EXPORT_SYMBOL(napi_gro_frags);
3107
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003108static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
3110 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 struct softnet_data *queue = &__get_cpu_var(softnet_data);
3112 unsigned long start_time = jiffies;
3113
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003114 napi->weight = weight_p;
3115 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Changli Gao152102c2010-03-30 20:16:22 +00003118 local_irq_disable();
3119 rps_lock(queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 skb = __skb_dequeue(&queue->input_pkt_queue);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003121 if (!skb) {
Herbert Xu8f1ead22009-03-26 00:59:10 -07003122 __napi_complete(napi);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003123 spin_unlock_irq(&queue->input_pkt_queue.lock);
Herbert Xu8f1ead22009-03-26 00:59:10 -07003124 break;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003125 }
Changli Gao152102c2010-03-30 20:16:22 +00003126 rps_unlock(queue);
3127 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
Tom Herbert0a9627f2010-03-16 08:03:29 +00003129 __netif_receive_skb(skb);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003130 } while (++work < quota && jiffies == start_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003132 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133}
3134
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003135/**
3136 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07003137 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003138 *
3139 * The entry's receive function will be scheduled to run
3140 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08003141void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003142{
3143 unsigned long flags;
3144
3145 local_irq_save(flags);
3146 list_add_tail(&n->poll_list, &__get_cpu_var(softnet_data).poll_list);
3147 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3148 local_irq_restore(flags);
3149}
3150EXPORT_SYMBOL(__napi_schedule);
3151
Herbert Xud565b0a2008-12-15 23:38:52 -08003152void __napi_complete(struct napi_struct *n)
3153{
3154 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
3155 BUG_ON(n->gro_list);
3156
3157 list_del(&n->poll_list);
3158 smp_mb__before_clear_bit();
3159 clear_bit(NAPI_STATE_SCHED, &n->state);
3160}
3161EXPORT_SYMBOL(__napi_complete);
3162
3163void napi_complete(struct napi_struct *n)
3164{
3165 unsigned long flags;
3166
3167 /*
3168 * don't let napi dequeue from the cpu poll list
3169 * just in case its running on a different cpu
3170 */
3171 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
3172 return;
3173
3174 napi_gro_flush(n);
3175 local_irq_save(flags);
3176 __napi_complete(n);
3177 local_irq_restore(flags);
3178}
3179EXPORT_SYMBOL(napi_complete);
3180
3181void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
3182 int (*poll)(struct napi_struct *, int), int weight)
3183{
3184 INIT_LIST_HEAD(&napi->poll_list);
Herbert Xu4ae55442009-02-08 18:00:36 +00003185 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003186 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08003187 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08003188 napi->poll = poll;
3189 napi->weight = weight;
3190 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08003191 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08003192#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08003193 spin_lock_init(&napi->poll_lock);
3194 napi->poll_owner = -1;
3195#endif
3196 set_bit(NAPI_STATE_SCHED, &napi->state);
3197}
3198EXPORT_SYMBOL(netif_napi_add);
3199
3200void netif_napi_del(struct napi_struct *napi)
3201{
3202 struct sk_buff *skb, *next;
3203
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08003204 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07003205 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08003206
3207 for (skb = napi->gro_list; skb; skb = next) {
3208 next = skb->next;
3209 skb->next = NULL;
3210 kfree_skb(skb);
3211 }
3212
3213 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00003214 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003215}
3216EXPORT_SYMBOL(netif_napi_del);
3217
Eric Dumazetdf334542010-03-24 19:13:54 +00003218#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00003219/*
3220 * net_rps_action sends any pending IPI's for rps. This is only called from
3221 * softirq and interrupts must be enabled.
3222 */
3223static void net_rps_action(cpumask_t *mask)
3224{
3225 int cpu;
3226
3227 /* Send pending IPI's to kick RPS processing on remote cpus. */
3228 for_each_cpu_mask_nr(cpu, *mask) {
3229 struct softnet_data *queue = &per_cpu(softnet_data, cpu);
3230 if (cpu_online(cpu))
3231 __smp_call_function_single(cpu, &queue->csd, 0);
3232 }
3233 cpus_clear(*mask);
3234}
Tom Herbert1e94d722010-03-18 17:45:44 -07003235#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237static void net_rx_action(struct softirq_action *h)
3238{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003239 struct list_head *list = &__get_cpu_var(softnet_data).poll_list;
Stephen Hemminger24f8b232008-11-03 17:14:38 -08003240 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07003241 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07003242 void *have;
Eric Dumazetdf334542010-03-24 19:13:54 +00003243#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00003244 int select;
3245 struct rps_remote_softirq_cpus *rcpus;
Tom Herbert1e94d722010-03-18 17:45:44 -07003246#endif
Matt Mackall53fb95d2005-08-11 19:27:43 -07003247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 local_irq_disable();
3249
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003250 while (!list_empty(list)) {
3251 struct napi_struct *n;
3252 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003254 /* If softirq window is exhuasted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08003255 * Allow this to run for 2 jiffies since which will allow
3256 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003257 */
Stephen Hemminger24f8b232008-11-03 17:14:38 -08003258 if (unlikely(budget <= 0 || time_after(jiffies, time_limit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 goto softnet_break;
3260
3261 local_irq_enable();
3262
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003263 /* Even though interrupts have been re-enabled, this
3264 * access is safe because interrupts can only add new
3265 * entries to the tail of this list, and only ->poll()
3266 * calls can remove this head entry from the list.
3267 */
stephen hemmingere5e26d72010-02-24 14:01:38 +00003268 n = list_first_entry(list, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003270 have = netpoll_poll_lock(n);
3271
3272 weight = n->weight;
3273
David S. Miller0a7606c2007-10-29 21:28:47 -07003274 /* This NAPI_STATE_SCHED test is for avoiding a race
3275 * with netpoll's poll_napi(). Only the entity which
3276 * obtains the lock and sees NAPI_STATE_SCHED set will
3277 * actually make the ->poll() call. Therefore we avoid
3278 * accidently calling ->poll() when NAPI is not scheduled.
3279 */
3280 work = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +00003281 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
David S. Miller0a7606c2007-10-29 21:28:47 -07003282 work = n->poll(n, weight);
Neil Horman4ea7e382009-05-21 07:36:08 +00003283 trace_napi_poll(n);
3284 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003285
3286 WARN_ON_ONCE(work > weight);
3287
3288 budget -= work;
3289
3290 local_irq_disable();
3291
3292 /* Drivers must not modify the NAPI state if they
3293 * consume the entire weight. In such cases this code
3294 * still "owns" the NAPI instance and therefore can
3295 * move the instance around on the list at-will.
3296 */
David S. Millerfed17f32008-01-07 21:00:40 -08003297 if (unlikely(work == weight)) {
Herbert Xuff780cd2009-06-26 19:27:04 -07003298 if (unlikely(napi_disable_pending(n))) {
3299 local_irq_enable();
3300 napi_complete(n);
3301 local_irq_disable();
3302 } else
David S. Millerfed17f32008-01-07 21:00:40 -08003303 list_move_tail(&n->poll_list, list);
3304 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003305
3306 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 }
3308out:
Eric Dumazetdf334542010-03-24 19:13:54 +00003309#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00003310 rcpus = &__get_cpu_var(rps_remote_softirq_cpus);
3311 select = rcpus->select;
3312 rcpus->select ^= 1;
3313
Shannon Nelson515e06c2007-06-23 23:09:23 -07003314 local_irq_enable();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003315
Tom Herbert0a9627f2010-03-16 08:03:29 +00003316 net_rps_action(&rcpus->mask[select]);
Tom Herbert1e94d722010-03-18 17:45:44 -07003317#else
3318 local_irq_enable();
3319#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00003320
Chris Leechdb217332006-06-17 21:24:58 -07003321#ifdef CONFIG_NET_DMA
3322 /*
3323 * There may not be any more sk_buffs coming right now, so push
3324 * any pending DMA copies to hardware
3325 */
Dan Williams2ba05622009-01-06 11:38:14 -07003326 dma_issue_pending_all();
Chris Leechdb217332006-06-17 21:24:58 -07003327#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 return;
3330
3331softnet_break:
3332 __get_cpu_var(netdev_rx_stat).time_squeeze++;
3333 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3334 goto out;
3335}
3336
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003337static gifconf_func_t *gifconf_list[NPROTO];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
3339/**
3340 * register_gifconf - register a SIOCGIF handler
3341 * @family: Address family
3342 * @gifconf: Function handler
3343 *
3344 * Register protocol dependent address dumping routines. The handler
3345 * that is passed must not be freed or reused until it has been replaced
3346 * by another handler.
3347 */
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003348int register_gifconf(unsigned int family, gifconf_func_t *gifconf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349{
3350 if (family >= NPROTO)
3351 return -EINVAL;
3352 gifconf_list[family] = gifconf;
3353 return 0;
3354}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003355EXPORT_SYMBOL(register_gifconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
3357
3358/*
3359 * Map an interface index to its name (SIOCGIFNAME)
3360 */
3361
3362/*
3363 * We need this ioctl for efficient implementation of the
3364 * if_indextoname() function required by the IPv6 API. Without
3365 * it, we would have to search all the interfaces to find a
3366 * match. --pb
3367 */
3368
Eric W. Biederman881d9662007-09-17 11:56:21 -07003369static int dev_ifname(struct net *net, struct ifreq __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
3371 struct net_device *dev;
3372 struct ifreq ifr;
3373
3374 /*
3375 * Fetch the caller's info block.
3376 */
3377
3378 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
3379 return -EFAULT;
3380
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00003381 rcu_read_lock();
3382 dev = dev_get_by_index_rcu(net, ifr.ifr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 if (!dev) {
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00003384 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 return -ENODEV;
3386 }
3387
3388 strcpy(ifr.ifr_name, dev->name);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00003389 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
3391 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
3392 return -EFAULT;
3393 return 0;
3394}
3395
3396/*
3397 * Perform a SIOCGIFCONF call. This structure will change
3398 * size eventually, and there is nothing I can do about it.
3399 * Thus we will need a 'compatibility mode'.
3400 */
3401
Eric W. Biederman881d9662007-09-17 11:56:21 -07003402static int dev_ifconf(struct net *net, char __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403{
3404 struct ifconf ifc;
3405 struct net_device *dev;
3406 char __user *pos;
3407 int len;
3408 int total;
3409 int i;
3410
3411 /*
3412 * Fetch the caller's info block.
3413 */
3414
3415 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
3416 return -EFAULT;
3417
3418 pos = ifc.ifc_buf;
3419 len = ifc.ifc_len;
3420
3421 /*
3422 * Loop over the interfaces, and write an info block for each.
3423 */
3424
3425 total = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003426 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 for (i = 0; i < NPROTO; i++) {
3428 if (gifconf_list[i]) {
3429 int done;
3430 if (!pos)
3431 done = gifconf_list[i](dev, NULL, 0);
3432 else
3433 done = gifconf_list[i](dev, pos + total,
3434 len - total);
3435 if (done < 0)
3436 return -EFAULT;
3437 total += done;
3438 }
3439 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
3442 /*
3443 * All done. Write the updated control block back to the caller.
3444 */
3445 ifc.ifc_len = total;
3446
3447 /*
3448 * Both BSD and Solaris return 0 here, so we do too.
3449 */
3450 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
3451}
3452
3453#ifdef CONFIG_PROC_FS
3454/*
3455 * This is invoked by the /proc filesystem handler to display a device
3456 * in detail.
3457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458void *dev_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003459 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460{
Denis V. Luneve372c412007-11-19 22:31:54 -08003461 struct net *net = seq_file_net(seq);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003462 loff_t off;
3463 struct net_device *dev;
3464
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003465 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07003466 if (!*pos)
3467 return SEQ_START_TOKEN;
3468
3469 off = 1;
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003470 for_each_netdev_rcu(net, dev)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003471 if (off++ == *pos)
3472 return dev;
3473
3474 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475}
3476
3477void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3478{
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003479 struct net_device *dev = (v == SEQ_START_TOKEN) ?
3480 first_net_device(seq_file_net(seq)) :
3481 next_net_device((struct net_device *)v);
3482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 ++*pos;
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003484 return rcu_dereference(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485}
3486
3487void dev_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003488 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489{
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003490 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491}
3492
3493static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
3494{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003495 const struct net_device_stats *stats = dev_get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Jesper Dangaard Brouer2d13baf2010-01-05 05:50:52 +00003497 seq_printf(seq, "%6s: %7lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
Rusty Russell5a1b5892007-04-28 21:04:03 -07003498 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
3499 dev->name, stats->rx_bytes, stats->rx_packets,
3500 stats->rx_errors,
3501 stats->rx_dropped + stats->rx_missed_errors,
3502 stats->rx_fifo_errors,
3503 stats->rx_length_errors + stats->rx_over_errors +
3504 stats->rx_crc_errors + stats->rx_frame_errors,
3505 stats->rx_compressed, stats->multicast,
3506 stats->tx_bytes, stats->tx_packets,
3507 stats->tx_errors, stats->tx_dropped,
3508 stats->tx_fifo_errors, stats->collisions,
3509 stats->tx_carrier_errors +
3510 stats->tx_aborted_errors +
3511 stats->tx_window_errors +
3512 stats->tx_heartbeat_errors,
3513 stats->tx_compressed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514}
3515
3516/*
3517 * Called from the PROCfs module. This now uses the new arbitrary sized
3518 * /proc/net interface to create /proc/net/dev
3519 */
3520static int dev_seq_show(struct seq_file *seq, void *v)
3521{
3522 if (v == SEQ_START_TOKEN)
3523 seq_puts(seq, "Inter-| Receive "
3524 " | Transmit\n"
3525 " face |bytes packets errs drop fifo frame "
3526 "compressed multicast|bytes packets errs "
3527 "drop fifo colls carrier compressed\n");
3528 else
3529 dev_seq_printf_stats(seq, v);
3530 return 0;
3531}
3532
3533static struct netif_rx_stats *softnet_get_online(loff_t *pos)
3534{
3535 struct netif_rx_stats *rc = NULL;
3536
Mike Travis0c0b0ac2008-05-02 16:43:08 -07003537 while (*pos < nr_cpu_ids)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003538 if (cpu_online(*pos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 rc = &per_cpu(netdev_rx_stat, *pos);
3540 break;
3541 } else
3542 ++*pos;
3543 return rc;
3544}
3545
3546static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
3547{
3548 return softnet_get_online(pos);
3549}
3550
3551static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3552{
3553 ++*pos;
3554 return softnet_get_online(pos);
3555}
3556
3557static void softnet_seq_stop(struct seq_file *seq, void *v)
3558{
3559}
3560
3561static int softnet_seq_show(struct seq_file *seq, void *v)
3562{
3563 struct netif_rx_stats *s = v;
3564
Tom Herbert0a9627f2010-03-16 08:03:29 +00003565 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
Stephen Hemminger31aa02c2005-06-23 20:12:48 -07003566 s->total, s->dropped, s->time_squeeze, 0,
Stephen Hemmingerc1ebcdb2005-06-23 20:08:59 -07003567 0, 0, 0, 0, /* was fastroute */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003568 s->cpu_collision, s->received_rps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 return 0;
3570}
3571
Stephen Hemmingerf6908082007-03-12 14:34:29 -07003572static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 .start = dev_seq_start,
3574 .next = dev_seq_next,
3575 .stop = dev_seq_stop,
3576 .show = dev_seq_show,
3577};
3578
3579static int dev_seq_open(struct inode *inode, struct file *file)
3580{
Denis V. Luneve372c412007-11-19 22:31:54 -08003581 return seq_open_net(inode, file, &dev_seq_ops,
3582 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583}
3584
Arjan van de Ven9a321442007-02-12 00:55:35 -08003585static const struct file_operations dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 .owner = THIS_MODULE,
3587 .open = dev_seq_open,
3588 .read = seq_read,
3589 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003590 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591};
3592
Stephen Hemmingerf6908082007-03-12 14:34:29 -07003593static const struct seq_operations softnet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 .start = softnet_seq_start,
3595 .next = softnet_seq_next,
3596 .stop = softnet_seq_stop,
3597 .show = softnet_seq_show,
3598};
3599
3600static int softnet_seq_open(struct inode *inode, struct file *file)
3601{
3602 return seq_open(file, &softnet_seq_ops);
3603}
3604
Arjan van de Ven9a321442007-02-12 00:55:35 -08003605static const struct file_operations softnet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 .owner = THIS_MODULE,
3607 .open = softnet_seq_open,
3608 .read = seq_read,
3609 .llseek = seq_lseek,
3610 .release = seq_release,
3611};
3612
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003613static void *ptype_get_idx(loff_t pos)
3614{
3615 struct packet_type *pt = NULL;
3616 loff_t i = 0;
3617 int t;
3618
3619 list_for_each_entry_rcu(pt, &ptype_all, list) {
3620 if (i == pos)
3621 return pt;
3622 ++i;
3623 }
3624
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08003625 for (t = 0; t < PTYPE_HASH_SIZE; t++) {
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003626 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
3627 if (i == pos)
3628 return pt;
3629 ++i;
3630 }
3631 }
3632 return NULL;
3633}
3634
3635static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemminger72348a42008-01-21 02:27:29 -08003636 __acquires(RCU)
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003637{
3638 rcu_read_lock();
3639 return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
3640}
3641
3642static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3643{
3644 struct packet_type *pt;
3645 struct list_head *nxt;
3646 int hash;
3647
3648 ++*pos;
3649 if (v == SEQ_START_TOKEN)
3650 return ptype_get_idx(0);
3651
3652 pt = v;
3653 nxt = pt->list.next;
3654 if (pt->type == htons(ETH_P_ALL)) {
3655 if (nxt != &ptype_all)
3656 goto found;
3657 hash = 0;
3658 nxt = ptype_base[0].next;
3659 } else
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08003660 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003661
3662 while (nxt == &ptype_base[hash]) {
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08003663 if (++hash >= PTYPE_HASH_SIZE)
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003664 return NULL;
3665 nxt = ptype_base[hash].next;
3666 }
3667found:
3668 return list_entry(nxt, struct packet_type, list);
3669}
3670
3671static void ptype_seq_stop(struct seq_file *seq, void *v)
Stephen Hemminger72348a42008-01-21 02:27:29 -08003672 __releases(RCU)
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003673{
3674 rcu_read_unlock();
3675}
3676
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003677static int ptype_seq_show(struct seq_file *seq, void *v)
3678{
3679 struct packet_type *pt = v;
3680
3681 if (v == SEQ_START_TOKEN)
3682 seq_puts(seq, "Type Device Function\n");
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003683 else if (pt->dev == NULL || dev_net(pt->dev) == seq_file_net(seq)) {
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003684 if (pt->type == htons(ETH_P_ALL))
3685 seq_puts(seq, "ALL ");
3686 else
3687 seq_printf(seq, "%04x", ntohs(pt->type));
3688
Alexey Dobriyan908cd2d2008-11-16 19:50:35 -08003689 seq_printf(seq, " %-8s %pF\n",
3690 pt->dev ? pt->dev->name : "", pt->func);
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003691 }
3692
3693 return 0;
3694}
3695
3696static const struct seq_operations ptype_seq_ops = {
3697 .start = ptype_seq_start,
3698 .next = ptype_seq_next,
3699 .stop = ptype_seq_stop,
3700 .show = ptype_seq_show,
3701};
3702
3703static int ptype_seq_open(struct inode *inode, struct file *file)
3704{
Pavel Emelyanov2feb27d2008-03-24 14:57:45 -07003705 return seq_open_net(inode, file, &ptype_seq_ops,
3706 sizeof(struct seq_net_private));
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003707}
3708
3709static const struct file_operations ptype_seq_fops = {
3710 .owner = THIS_MODULE,
3711 .open = ptype_seq_open,
3712 .read = seq_read,
3713 .llseek = seq_lseek,
Pavel Emelyanov2feb27d2008-03-24 14:57:45 -07003714 .release = seq_release_net,
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003715};
3716
3717
Pavel Emelyanov46650792007-10-08 20:38:39 -07003718static int __net_init dev_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719{
3720 int rc = -ENOMEM;
3721
Eric W. Biederman881d9662007-09-17 11:56:21 -07003722 if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 goto out;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003724 if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 goto out_dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003726 if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003727 goto out_softnet;
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003728
Eric W. Biederman881d9662007-09-17 11:56:21 -07003729 if (wext_proc_init(net))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003730 goto out_ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 rc = 0;
3732out:
3733 return rc;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003734out_ptype:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003735 proc_net_remove(net, "ptype");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736out_softnet:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003737 proc_net_remove(net, "softnet_stat");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738out_dev:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003739 proc_net_remove(net, "dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 goto out;
3741}
Eric W. Biederman881d9662007-09-17 11:56:21 -07003742
Pavel Emelyanov46650792007-10-08 20:38:39 -07003743static void __net_exit dev_proc_net_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003744{
3745 wext_proc_exit(net);
3746
3747 proc_net_remove(net, "ptype");
3748 proc_net_remove(net, "softnet_stat");
3749 proc_net_remove(net, "dev");
3750}
3751
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003752static struct pernet_operations __net_initdata dev_proc_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07003753 .init = dev_proc_net_init,
3754 .exit = dev_proc_net_exit,
3755};
3756
3757static int __init dev_proc_init(void)
3758{
3759 return register_pernet_subsys(&dev_proc_ops);
3760}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761#else
3762#define dev_proc_init() 0
3763#endif /* CONFIG_PROC_FS */
3764
3765
3766/**
3767 * netdev_set_master - set up master/slave pair
3768 * @slave: slave device
3769 * @master: new master device
3770 *
3771 * Changes the master device of the slave. Pass %NULL to break the
3772 * bonding. The caller must hold the RTNL semaphore. On a failure
3773 * a negative errno code is returned. On success the reference counts
3774 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
3775 * function returns zero.
3776 */
3777int netdev_set_master(struct net_device *slave, struct net_device *master)
3778{
3779 struct net_device *old = slave->master;
3780
3781 ASSERT_RTNL();
3782
3783 if (master) {
3784 if (old)
3785 return -EBUSY;
3786 dev_hold(master);
3787 }
3788
3789 slave->master = master;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003790
Eric Dumazet283f2fe2010-03-18 13:37:40 +00003791 if (old) {
3792 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 dev_put(old);
Eric Dumazet283f2fe2010-03-18 13:37:40 +00003794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 if (master)
3796 slave->flags |= IFF_SLAVE;
3797 else
3798 slave->flags &= ~IFF_SLAVE;
3799
3800 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
3801 return 0;
3802}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003803EXPORT_SYMBOL(netdev_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003805static void dev_change_rx_flags(struct net_device *dev, int flags)
3806{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003807 const struct net_device_ops *ops = dev->netdev_ops;
3808
3809 if ((dev->flags & IFF_UP) && ops->ndo_change_rx_flags)
3810 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003811}
3812
Wang Chendad9b332008-06-18 01:48:28 -07003813static int __dev_set_promiscuity(struct net_device *dev, int inc)
Patrick McHardy4417da62007-06-27 01:28:10 -07003814{
3815 unsigned short old_flags = dev->flags;
David Howells8192b0c2008-11-14 10:39:10 +11003816 uid_t uid;
3817 gid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07003818
Patrick McHardy24023452007-07-14 18:51:31 -07003819 ASSERT_RTNL();
3820
Wang Chendad9b332008-06-18 01:48:28 -07003821 dev->flags |= IFF_PROMISC;
3822 dev->promiscuity += inc;
3823 if (dev->promiscuity == 0) {
3824 /*
3825 * Avoid overflow.
3826 * If inc causes overflow, untouch promisc and return error.
3827 */
3828 if (inc < 0)
3829 dev->flags &= ~IFF_PROMISC;
3830 else {
3831 dev->promiscuity -= inc;
3832 printk(KERN_WARNING "%s: promiscuity touches roof, "
3833 "set promiscuity failed, promiscuity feature "
3834 "of device might be broken.\n", dev->name);
3835 return -EOVERFLOW;
3836 }
3837 }
Patrick McHardy4417da62007-06-27 01:28:10 -07003838 if (dev->flags != old_flags) {
3839 printk(KERN_INFO "device %s %s promiscuous mode\n",
3840 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
3841 "left");
David Howells8192b0c2008-11-14 10:39:10 +11003842 if (audit_enabled) {
3843 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05003844 audit_log(current->audit_context, GFP_ATOMIC,
3845 AUDIT_ANOM_PROMISCUOUS,
3846 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
3847 dev->name, (dev->flags & IFF_PROMISC),
3848 (old_flags & IFF_PROMISC),
3849 audit_get_loginuid(current),
David Howells8192b0c2008-11-14 10:39:10 +11003850 uid, gid,
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05003851 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11003852 }
Patrick McHardy24023452007-07-14 18:51:31 -07003853
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003854 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07003855 }
Wang Chendad9b332008-06-18 01:48:28 -07003856 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07003857}
3858
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859/**
3860 * dev_set_promiscuity - update promiscuity count on a device
3861 * @dev: device
3862 * @inc: modifier
3863 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07003864 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 * remains above zero the interface remains promiscuous. Once it hits zero
3866 * the device reverts back to normal filtering operation. A negative inc
3867 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07003868 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 */
Wang Chendad9b332008-06-18 01:48:28 -07003870int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871{
3872 unsigned short old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07003873 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Wang Chendad9b332008-06-18 01:48:28 -07003875 err = __dev_set_promiscuity(dev, inc);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07003876 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07003877 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07003878 if (dev->flags != old_flags)
3879 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07003880 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003882EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
3884/**
3885 * dev_set_allmulti - update allmulti count on a device
3886 * @dev: device
3887 * @inc: modifier
3888 *
3889 * Add or remove reception of all multicast frames to a device. While the
3890 * count in the device remains above zero the interface remains listening
3891 * to all interfaces. Once it hits zero the device reverts back to normal
3892 * filtering operation. A negative @inc value is used to drop the counter
3893 * when releasing a resource needing all multicasts.
Wang Chendad9b332008-06-18 01:48:28 -07003894 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 */
3896
Wang Chendad9b332008-06-18 01:48:28 -07003897int dev_set_allmulti(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898{
3899 unsigned short old_flags = dev->flags;
3900
Patrick McHardy24023452007-07-14 18:51:31 -07003901 ASSERT_RTNL();
3902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07003904 dev->allmulti += inc;
3905 if (dev->allmulti == 0) {
3906 /*
3907 * Avoid overflow.
3908 * If inc causes overflow, untouch allmulti and return error.
3909 */
3910 if (inc < 0)
3911 dev->flags &= ~IFF_ALLMULTI;
3912 else {
3913 dev->allmulti -= inc;
3914 printk(KERN_WARNING "%s: allmulti touches roof, "
3915 "set allmulti failed, allmulti feature of "
3916 "device might be broken.\n", dev->name);
3917 return -EOVERFLOW;
3918 }
3919 }
Patrick McHardy24023452007-07-14 18:51:31 -07003920 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003921 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07003922 dev_set_rx_mode(dev);
Patrick McHardy24023452007-07-14 18:51:31 -07003923 }
Wang Chendad9b332008-06-18 01:48:28 -07003924 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07003925}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003926EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07003927
3928/*
3929 * Upload unicast and multicast address lists to device and
3930 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08003931 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07003932 * are present.
3933 */
3934void __dev_set_rx_mode(struct net_device *dev)
3935{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003936 const struct net_device_ops *ops = dev->netdev_ops;
3937
Patrick McHardy4417da62007-06-27 01:28:10 -07003938 /* dev_open will call this function so the list will stay sane. */
3939 if (!(dev->flags&IFF_UP))
3940 return;
3941
3942 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09003943 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07003944
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003945 if (ops->ndo_set_rx_mode)
3946 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003947 else {
3948 /* Unicast addresses changes may only happen under the rtnl,
3949 * therefore calling __dev_set_promiscuity here is safe.
3950 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08003951 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Patrick McHardy4417da62007-06-27 01:28:10 -07003952 __dev_set_promiscuity(dev, 1);
3953 dev->uc_promisc = 1;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08003954 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Patrick McHardy4417da62007-06-27 01:28:10 -07003955 __dev_set_promiscuity(dev, -1);
3956 dev->uc_promisc = 0;
3957 }
3958
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003959 if (ops->ndo_set_multicast_list)
3960 ops->ndo_set_multicast_list(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003961 }
3962}
3963
3964void dev_set_rx_mode(struct net_device *dev)
3965{
David S. Millerb9e40852008-07-15 00:15:08 -07003966 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003967 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07003968 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969}
3970
Jiri Pirkof001fde2009-05-05 02:48:28 +00003971/* hw addresses list handling functions */
3972
Jiri Pirko31278e72009-06-17 01:12:19 +00003973static int __hw_addr_add(struct netdev_hw_addr_list *list, unsigned char *addr,
3974 int addr_len, unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00003975{
3976 struct netdev_hw_addr *ha;
3977 int alloc_size;
3978
3979 if (addr_len > MAX_ADDR_LEN)
3980 return -EINVAL;
3981
Jiri Pirko31278e72009-06-17 01:12:19 +00003982 list_for_each_entry(ha, &list->list, list) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00003983 if (!memcmp(ha->addr, addr, addr_len) &&
3984 ha->type == addr_type) {
3985 ha->refcount++;
3986 return 0;
3987 }
3988 }
3989
3990
Jiri Pirkof001fde2009-05-05 02:48:28 +00003991 alloc_size = sizeof(*ha);
3992 if (alloc_size < L1_CACHE_BYTES)
3993 alloc_size = L1_CACHE_BYTES;
3994 ha = kmalloc(alloc_size, GFP_ATOMIC);
3995 if (!ha)
3996 return -ENOMEM;
3997 memcpy(ha->addr, addr, addr_len);
3998 ha->type = addr_type;
Jiri Pirkoccffad252009-05-22 23:22:17 +00003999 ha->refcount = 1;
4000 ha->synced = false;
Jiri Pirko31278e72009-06-17 01:12:19 +00004001 list_add_tail_rcu(&ha->list, &list->list);
4002 list->count++;
Jiri Pirkof001fde2009-05-05 02:48:28 +00004003 return 0;
4004}
4005
4006static void ha_rcu_free(struct rcu_head *head)
4007{
4008 struct netdev_hw_addr *ha;
4009
4010 ha = container_of(head, struct netdev_hw_addr, rcu_head);
4011 kfree(ha);
4012}
4013
Jiri Pirko31278e72009-06-17 01:12:19 +00004014static int __hw_addr_del(struct netdev_hw_addr_list *list, unsigned char *addr,
4015 int addr_len, unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00004016{
4017 struct netdev_hw_addr *ha;
Jiri Pirkof001fde2009-05-05 02:48:28 +00004018
Jiri Pirko31278e72009-06-17 01:12:19 +00004019 list_for_each_entry(ha, &list->list, list) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00004020 if (!memcmp(ha->addr, addr, addr_len) &&
Jiri Pirkof001fde2009-05-05 02:48:28 +00004021 (ha->type == addr_type || !addr_type)) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00004022 if (--ha->refcount)
4023 return 0;
Jiri Pirkof001fde2009-05-05 02:48:28 +00004024 list_del_rcu(&ha->list);
4025 call_rcu(&ha->rcu_head, ha_rcu_free);
Jiri Pirko31278e72009-06-17 01:12:19 +00004026 list->count--;
Jiri Pirkof001fde2009-05-05 02:48:28 +00004027 return 0;
4028 }
4029 }
4030 return -ENOENT;
4031}
4032
Jiri Pirko31278e72009-06-17 01:12:19 +00004033static int __hw_addr_add_multiple(struct netdev_hw_addr_list *to_list,
4034 struct netdev_hw_addr_list *from_list,
4035 int addr_len,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004036 unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00004037{
4038 int err;
4039 struct netdev_hw_addr *ha, *ha2;
4040 unsigned char type;
4041
Jiri Pirko31278e72009-06-17 01:12:19 +00004042 list_for_each_entry(ha, &from_list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00004043 type = addr_type ? addr_type : ha->type;
Jiri Pirko31278e72009-06-17 01:12:19 +00004044 err = __hw_addr_add(to_list, ha->addr, addr_len, type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004045 if (err)
4046 goto unroll;
4047 }
4048 return 0;
4049
4050unroll:
Jiri Pirko31278e72009-06-17 01:12:19 +00004051 list_for_each_entry(ha2, &from_list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00004052 if (ha2 == ha)
4053 break;
4054 type = addr_type ? addr_type : ha2->type;
Jiri Pirko31278e72009-06-17 01:12:19 +00004055 __hw_addr_del(to_list, ha2->addr, addr_len, type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004056 }
4057 return err;
4058}
4059
Jiri Pirko31278e72009-06-17 01:12:19 +00004060static void __hw_addr_del_multiple(struct netdev_hw_addr_list *to_list,
4061 struct netdev_hw_addr_list *from_list,
4062 int addr_len,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004063 unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00004064{
4065 struct netdev_hw_addr *ha;
4066 unsigned char type;
4067
Jiri Pirko31278e72009-06-17 01:12:19 +00004068 list_for_each_entry(ha, &from_list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00004069 type = addr_type ? addr_type : ha->type;
Jiri Pirko31278e72009-06-17 01:12:19 +00004070 __hw_addr_del(to_list, ha->addr, addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004071 }
4072}
4073
Jiri Pirko31278e72009-06-17 01:12:19 +00004074static int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
4075 struct netdev_hw_addr_list *from_list,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004076 int addr_len)
4077{
4078 int err = 0;
4079 struct netdev_hw_addr *ha, *tmp;
4080
Jiri Pirko31278e72009-06-17 01:12:19 +00004081 list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00004082 if (!ha->synced) {
Jiri Pirko31278e72009-06-17 01:12:19 +00004083 err = __hw_addr_add(to_list, ha->addr,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004084 addr_len, ha->type);
4085 if (err)
4086 break;
4087 ha->synced = true;
4088 ha->refcount++;
4089 } else if (ha->refcount == 1) {
Jiri Pirko31278e72009-06-17 01:12:19 +00004090 __hw_addr_del(to_list, ha->addr, addr_len, ha->type);
4091 __hw_addr_del(from_list, ha->addr, addr_len, ha->type);
Jiri Pirkoccffad252009-05-22 23:22:17 +00004092 }
4093 }
4094 return err;
4095}
4096
Jiri Pirko31278e72009-06-17 01:12:19 +00004097static void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
4098 struct netdev_hw_addr_list *from_list,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004099 int addr_len)
4100{
4101 struct netdev_hw_addr *ha, *tmp;
4102
Jiri Pirko31278e72009-06-17 01:12:19 +00004103 list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00004104 if (ha->synced) {
Jiri Pirko31278e72009-06-17 01:12:19 +00004105 __hw_addr_del(to_list, ha->addr,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004106 addr_len, ha->type);
4107 ha->synced = false;
Jiri Pirko31278e72009-06-17 01:12:19 +00004108 __hw_addr_del(from_list, ha->addr,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004109 addr_len, ha->type);
4110 }
4111 }
4112}
4113
Jiri Pirko31278e72009-06-17 01:12:19 +00004114static void __hw_addr_flush(struct netdev_hw_addr_list *list)
Jiri Pirkof001fde2009-05-05 02:48:28 +00004115{
4116 struct netdev_hw_addr *ha, *tmp;
4117
Jiri Pirko31278e72009-06-17 01:12:19 +00004118 list_for_each_entry_safe(ha, tmp, &list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00004119 list_del_rcu(&ha->list);
4120 call_rcu(&ha->rcu_head, ha_rcu_free);
4121 }
Jiri Pirko31278e72009-06-17 01:12:19 +00004122 list->count = 0;
4123}
4124
4125static void __hw_addr_init(struct netdev_hw_addr_list *list)
4126{
4127 INIT_LIST_HEAD(&list->list);
4128 list->count = 0;
Jiri Pirkof001fde2009-05-05 02:48:28 +00004129}
4130
4131/* Device addresses handling functions */
4132
4133static void dev_addr_flush(struct net_device *dev)
4134{
4135 /* rtnl_mutex must be held here */
4136
Jiri Pirko31278e72009-06-17 01:12:19 +00004137 __hw_addr_flush(&dev->dev_addrs);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004138 dev->dev_addr = NULL;
4139}
4140
4141static int dev_addr_init(struct net_device *dev)
4142{
4143 unsigned char addr[MAX_ADDR_LEN];
4144 struct netdev_hw_addr *ha;
4145 int err;
4146
4147 /* rtnl_mutex must be held here */
4148
Jiri Pirko31278e72009-06-17 01:12:19 +00004149 __hw_addr_init(&dev->dev_addrs);
Eric Dumazet0c279222009-06-08 03:49:24 +00004150 memset(addr, 0, sizeof(addr));
Jiri Pirko31278e72009-06-17 01:12:19 +00004151 err = __hw_addr_add(&dev->dev_addrs, addr, sizeof(addr),
Jiri Pirkof001fde2009-05-05 02:48:28 +00004152 NETDEV_HW_ADDR_T_LAN);
4153 if (!err) {
4154 /*
4155 * Get the first (previously created) address from the list
4156 * and set dev_addr pointer to this location.
4157 */
Jiri Pirko31278e72009-06-17 01:12:19 +00004158 ha = list_first_entry(&dev->dev_addrs.list,
Jiri Pirkof001fde2009-05-05 02:48:28 +00004159 struct netdev_hw_addr, list);
4160 dev->dev_addr = ha->addr;
4161 }
4162 return err;
4163}
4164
4165/**
4166 * dev_addr_add - Add a device address
4167 * @dev: device
4168 * @addr: address to add
4169 * @addr_type: address type
4170 *
4171 * Add a device address to the device or increase the reference count if
4172 * it already exists.
4173 *
4174 * The caller must hold the rtnl_mutex.
4175 */
4176int dev_addr_add(struct net_device *dev, unsigned char *addr,
4177 unsigned char addr_type)
4178{
4179 int err;
4180
4181 ASSERT_RTNL();
4182
Jiri Pirko31278e72009-06-17 01:12:19 +00004183 err = __hw_addr_add(&dev->dev_addrs, addr, dev->addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004184 if (!err)
4185 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
4186 return err;
4187}
4188EXPORT_SYMBOL(dev_addr_add);
4189
4190/**
4191 * dev_addr_del - Release a device address.
4192 * @dev: device
4193 * @addr: address to delete
4194 * @addr_type: address type
4195 *
4196 * Release reference to a device address and remove it from the device
4197 * if the reference count drops to zero.
4198 *
4199 * The caller must hold the rtnl_mutex.
4200 */
4201int dev_addr_del(struct net_device *dev, unsigned char *addr,
4202 unsigned char addr_type)
4203{
4204 int err;
Jiri Pirkoccffad252009-05-22 23:22:17 +00004205 struct netdev_hw_addr *ha;
Jiri Pirkof001fde2009-05-05 02:48:28 +00004206
4207 ASSERT_RTNL();
4208
Jiri Pirkoccffad252009-05-22 23:22:17 +00004209 /*
4210 * We can not remove the first address from the list because
4211 * dev->dev_addr points to that.
4212 */
Jiri Pirko31278e72009-06-17 01:12:19 +00004213 ha = list_first_entry(&dev->dev_addrs.list,
4214 struct netdev_hw_addr, list);
Jiri Pirkoccffad252009-05-22 23:22:17 +00004215 if (ha->addr == dev->dev_addr && ha->refcount == 1)
4216 return -ENOENT;
4217
Jiri Pirko31278e72009-06-17 01:12:19 +00004218 err = __hw_addr_del(&dev->dev_addrs, addr, dev->addr_len,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004219 addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004220 if (!err)
4221 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
4222 return err;
4223}
4224EXPORT_SYMBOL(dev_addr_del);
4225
4226/**
4227 * dev_addr_add_multiple - Add device addresses from another device
4228 * @to_dev: device to which addresses will be added
4229 * @from_dev: device from which addresses will be added
4230 * @addr_type: address type - 0 means type will be used from from_dev
4231 *
4232 * Add device addresses of the one device to another.
4233 **
4234 * The caller must hold the rtnl_mutex.
4235 */
4236int dev_addr_add_multiple(struct net_device *to_dev,
4237 struct net_device *from_dev,
4238 unsigned char addr_type)
4239{
4240 int err;
4241
4242 ASSERT_RTNL();
4243
4244 if (from_dev->addr_len != to_dev->addr_len)
4245 return -EINVAL;
Jiri Pirko31278e72009-06-17 01:12:19 +00004246 err = __hw_addr_add_multiple(&to_dev->dev_addrs, &from_dev->dev_addrs,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004247 to_dev->addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004248 if (!err)
4249 call_netdevice_notifiers(NETDEV_CHANGEADDR, to_dev);
4250 return err;
4251}
4252EXPORT_SYMBOL(dev_addr_add_multiple);
4253
4254/**
4255 * dev_addr_del_multiple - Delete device addresses by another device
4256 * @to_dev: device where the addresses will be deleted
4257 * @from_dev: device by which addresses the addresses will be deleted
4258 * @addr_type: address type - 0 means type will used from from_dev
4259 *
4260 * Deletes addresses in to device by the list of addresses in from device.
4261 *
4262 * The caller must hold the rtnl_mutex.
4263 */
4264int dev_addr_del_multiple(struct net_device *to_dev,
4265 struct net_device *from_dev,
4266 unsigned char addr_type)
4267{
4268 ASSERT_RTNL();
4269
4270 if (from_dev->addr_len != to_dev->addr_len)
4271 return -EINVAL;
Jiri Pirko31278e72009-06-17 01:12:19 +00004272 __hw_addr_del_multiple(&to_dev->dev_addrs, &from_dev->dev_addrs,
Jiri Pirkoccffad252009-05-22 23:22:17 +00004273 to_dev->addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00004274 call_netdevice_notifiers(NETDEV_CHANGEADDR, to_dev);
4275 return 0;
4276}
4277EXPORT_SYMBOL(dev_addr_del_multiple);
4278
Jiri Pirko31278e72009-06-17 01:12:19 +00004279/* multicast addresses handling functions */
Jiri Pirkof001fde2009-05-05 02:48:28 +00004280
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004281int __dev_addr_delete(struct dev_addr_list **list, int *count,
4282 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07004283{
4284 struct dev_addr_list *da;
4285
4286 for (; (da = *list) != NULL; list = &da->next) {
4287 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
4288 alen == da->da_addrlen) {
4289 if (glbl) {
4290 int old_glbl = da->da_gusers;
4291 da->da_gusers = 0;
4292 if (old_glbl == 0)
4293 break;
4294 }
4295 if (--da->da_users)
4296 return 0;
4297
4298 *list = da->next;
4299 kfree(da);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004300 (*count)--;
Patrick McHardybf742482007-06-27 01:26:19 -07004301 return 0;
4302 }
4303 }
4304 return -ENOENT;
4305}
4306
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004307int __dev_addr_add(struct dev_addr_list **list, int *count,
4308 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07004309{
4310 struct dev_addr_list *da;
4311
4312 for (da = *list; da != NULL; da = da->next) {
4313 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
4314 da->da_addrlen == alen) {
4315 if (glbl) {
4316 int old_glbl = da->da_gusers;
4317 da->da_gusers = 1;
4318 if (old_glbl)
4319 return 0;
4320 }
4321 da->da_users++;
4322 return 0;
4323 }
4324 }
4325
Jorge Boncompte [DTI2]12aa3432008-02-19 14:17:04 -08004326 da = kzalloc(sizeof(*da), GFP_ATOMIC);
Patrick McHardybf742482007-06-27 01:26:19 -07004327 if (da == NULL)
4328 return -ENOMEM;
4329 memcpy(da->da_addr, addr, alen);
4330 da->da_addrlen = alen;
4331 da->da_users = 1;
4332 da->da_gusers = glbl ? 1 : 0;
4333 da->next = *list;
4334 *list = da;
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004335 (*count)++;
Patrick McHardybf742482007-06-27 01:26:19 -07004336 return 0;
4337}
4338
Patrick McHardy4417da62007-06-27 01:28:10 -07004339/**
4340 * dev_unicast_delete - Release secondary unicast address.
4341 * @dev: device
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07004342 * @addr: address to delete
Patrick McHardy4417da62007-06-27 01:28:10 -07004343 *
4344 * Release reference to a secondary unicast address and remove it
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07004345 * from the device if the reference count drops to zero.
Patrick McHardy4417da62007-06-27 01:28:10 -07004346 *
4347 * The caller must hold the rtnl_mutex.
4348 */
Jiri Pirkoccffad252009-05-22 23:22:17 +00004349int dev_unicast_delete(struct net_device *dev, void *addr)
Patrick McHardy4417da62007-06-27 01:28:10 -07004350{
4351 int err;
4352
4353 ASSERT_RTNL();
4354
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004355 netif_addr_lock_bh(dev);
Jiri Pirko31278e72009-06-17 01:12:19 +00004356 err = __hw_addr_del(&dev->uc, addr, dev->addr_len,
4357 NETDEV_HW_ADDR_T_UNICAST);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004358 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07004359 __dev_set_rx_mode(dev);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004360 netif_addr_unlock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07004361 return err;
4362}
4363EXPORT_SYMBOL(dev_unicast_delete);
4364
4365/**
4366 * dev_unicast_add - add a secondary unicast address
4367 * @dev: device
Wang Chen5dbaec52008-06-27 19:35:16 -07004368 * @addr: address to add
Patrick McHardy4417da62007-06-27 01:28:10 -07004369 *
4370 * Add a secondary unicast address to the device or increase
4371 * the reference count if it already exists.
4372 *
4373 * The caller must hold the rtnl_mutex.
4374 */
Jiri Pirkoccffad252009-05-22 23:22:17 +00004375int dev_unicast_add(struct net_device *dev, void *addr)
Patrick McHardy4417da62007-06-27 01:28:10 -07004376{
4377 int err;
4378
4379 ASSERT_RTNL();
4380
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004381 netif_addr_lock_bh(dev);
Jiri Pirko31278e72009-06-17 01:12:19 +00004382 err = __hw_addr_add(&dev->uc, addr, dev->addr_len,
4383 NETDEV_HW_ADDR_T_UNICAST);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004384 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07004385 __dev_set_rx_mode(dev);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004386 netif_addr_unlock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07004387 return err;
4388}
4389EXPORT_SYMBOL(dev_unicast_add);
4390
Chris Leeche83a2ea2008-01-31 16:53:23 -08004391int __dev_addr_sync(struct dev_addr_list **to, int *to_count,
4392 struct dev_addr_list **from, int *from_count)
4393{
4394 struct dev_addr_list *da, *next;
4395 int err = 0;
4396
4397 da = *from;
4398 while (da != NULL) {
4399 next = da->next;
4400 if (!da->da_synced) {
4401 err = __dev_addr_add(to, to_count,
4402 da->da_addr, da->da_addrlen, 0);
4403 if (err < 0)
4404 break;
4405 da->da_synced = 1;
4406 da->da_users++;
4407 } else if (da->da_users == 1) {
4408 __dev_addr_delete(to, to_count,
4409 da->da_addr, da->da_addrlen, 0);
4410 __dev_addr_delete(from, from_count,
4411 da->da_addr, da->da_addrlen, 0);
4412 }
4413 da = next;
4414 }
4415 return err;
4416}
Johannes Bergc4029082009-06-17 17:43:30 +02004417EXPORT_SYMBOL_GPL(__dev_addr_sync);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004418
4419void __dev_addr_unsync(struct dev_addr_list **to, int *to_count,
4420 struct dev_addr_list **from, int *from_count)
4421{
4422 struct dev_addr_list *da, *next;
4423
4424 da = *from;
4425 while (da != NULL) {
4426 next = da->next;
4427 if (da->da_synced) {
4428 __dev_addr_delete(to, to_count,
4429 da->da_addr, da->da_addrlen, 0);
4430 da->da_synced = 0;
4431 __dev_addr_delete(from, from_count,
4432 da->da_addr, da->da_addrlen, 0);
4433 }
4434 da = next;
4435 }
4436}
Johannes Bergc4029082009-06-17 17:43:30 +02004437EXPORT_SYMBOL_GPL(__dev_addr_unsync);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004438
4439/**
4440 * dev_unicast_sync - Synchronize device's unicast list to another device
4441 * @to: destination device
4442 * @from: source device
4443 *
4444 * Add newly added addresses to the destination device and release
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004445 * addresses that have no users left. The source device must be
4446 * locked by netif_tx_lock_bh.
Chris Leeche83a2ea2008-01-31 16:53:23 -08004447 *
4448 * This function is intended to be called from the dev->set_rx_mode
4449 * function of layered software devices.
4450 */
4451int dev_unicast_sync(struct net_device *to, struct net_device *from)
4452{
4453 int err = 0;
4454
Jiri Pirkoccffad252009-05-22 23:22:17 +00004455 if (to->addr_len != from->addr_len)
4456 return -EINVAL;
4457
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004458 netif_addr_lock_bh(to);
Jiri Pirko31278e72009-06-17 01:12:19 +00004459 err = __hw_addr_sync(&to->uc, &from->uc, to->addr_len);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004460 if (!err)
4461 __dev_set_rx_mode(to);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004462 netif_addr_unlock_bh(to);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004463 return err;
4464}
4465EXPORT_SYMBOL(dev_unicast_sync);
4466
4467/**
Randy Dunlapbc2cda12008-02-13 15:03:25 -08004468 * dev_unicast_unsync - Remove synchronized addresses from the destination device
Chris Leeche83a2ea2008-01-31 16:53:23 -08004469 * @to: destination device
4470 * @from: source device
4471 *
4472 * Remove all addresses that were added to the destination device by
4473 * dev_unicast_sync(). This function is intended to be called from the
4474 * dev->stop function of layered software devices.
4475 */
4476void dev_unicast_unsync(struct net_device *to, struct net_device *from)
4477{
Jiri Pirkoccffad252009-05-22 23:22:17 +00004478 if (to->addr_len != from->addr_len)
4479 return;
4480
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004481 netif_addr_lock_bh(from);
4482 netif_addr_lock(to);
Jiri Pirko31278e72009-06-17 01:12:19 +00004483 __hw_addr_unsync(&to->uc, &from->uc, to->addr_len);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004484 __dev_set_rx_mode(to);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004485 netif_addr_unlock(to);
4486 netif_addr_unlock_bh(from);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004487}
4488EXPORT_SYMBOL(dev_unicast_unsync);
4489
Jiri Pirko32a806c2010-03-19 04:00:23 +00004490void dev_unicast_flush(struct net_device *dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00004491{
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004492 netif_addr_lock_bh(dev);
Jiri Pirko31278e72009-06-17 01:12:19 +00004493 __hw_addr_flush(&dev->uc);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004494 netif_addr_unlock_bh(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00004495}
Jiri Pirko32a806c2010-03-19 04:00:23 +00004496EXPORT_SYMBOL(dev_unicast_flush);
Jiri Pirkoccffad252009-05-22 23:22:17 +00004497
4498static void dev_unicast_init(struct net_device *dev)
4499{
Jiri Pirko31278e72009-06-17 01:12:19 +00004500 __hw_addr_init(&dev->uc);
Jiri Pirkoccffad252009-05-22 23:22:17 +00004501}
4502
4503
Denis Cheng12972622007-07-18 02:12:56 -07004504static void __dev_addr_discard(struct dev_addr_list **list)
4505{
4506 struct dev_addr_list *tmp;
4507
4508 while (*list != NULL) {
4509 tmp = *list;
4510 *list = tmp->next;
4511 if (tmp->da_users > tmp->da_gusers)
4512 printk("__dev_addr_discard: address leakage! "
4513 "da_users=%d\n", tmp->da_users);
4514 kfree(tmp);
4515 }
4516}
4517
Jiri Pirko32a806c2010-03-19 04:00:23 +00004518void dev_addr_discard(struct net_device *dev)
Patrick McHardy4417da62007-06-27 01:28:10 -07004519{
David S. Millerb9e40852008-07-15 00:15:08 -07004520 netif_addr_lock_bh(dev);
Denis Cheng26cc2522007-07-18 02:12:03 -07004521
Denis Cheng456ad752007-07-18 02:10:54 -07004522 __dev_addr_discard(&dev->mc_list);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00004523 netdev_mc_count(dev) = 0;
Denis Cheng26cc2522007-07-18 02:12:03 -07004524
David S. Millerb9e40852008-07-15 00:15:08 -07004525 netif_addr_unlock_bh(dev);
Denis Cheng456ad752007-07-18 02:10:54 -07004526}
Jiri Pirko32a806c2010-03-19 04:00:23 +00004527EXPORT_SYMBOL(dev_addr_discard);
Denis Cheng456ad752007-07-18 02:10:54 -07004528
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004529/**
4530 * dev_get_flags - get flags reported to userspace
4531 * @dev: device
4532 *
4533 * Get the combination of flag bits exported through APIs to userspace.
4534 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535unsigned dev_get_flags(const struct net_device *dev)
4536{
4537 unsigned flags;
4538
4539 flags = (dev->flags & ~(IFF_PROMISC |
4540 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08004541 IFF_RUNNING |
4542 IFF_LOWER_UP |
4543 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 (dev->gflags & (IFF_PROMISC |
4545 IFF_ALLMULTI));
4546
Stefan Rompfb00055a2006-03-20 17:09:11 -08004547 if (netif_running(dev)) {
4548 if (netif_oper_up(dev))
4549 flags |= IFF_RUNNING;
4550 if (netif_carrier_ok(dev))
4551 flags |= IFF_LOWER_UP;
4552 if (netif_dormant(dev))
4553 flags |= IFF_DORMANT;
4554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556 return flags;
4557}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004558EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Patrick McHardybd380812010-02-26 06:34:53 +00004560int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00004563 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Patrick McHardy24023452007-07-14 18:51:31 -07004565 ASSERT_RTNL();
4566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 /*
4568 * Set the flags on our device.
4569 */
4570
4571 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
4572 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
4573 IFF_AUTOMEDIA)) |
4574 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
4575 IFF_ALLMULTI));
4576
4577 /*
4578 * Load in the correct multicast list now the flags have changed.
4579 */
4580
Patrick McHardyb6c40d62008-10-07 15:26:48 -07004581 if ((old_flags ^ flags) & IFF_MULTICAST)
4582 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07004583
Patrick McHardy4417da62007-06-27 01:28:10 -07004584 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
4586 /*
4587 * Have we downed the interface. We handle IFF_UP ourselves
4588 * according to user attempts to set it, rather than blindly
4589 * setting it.
4590 */
4591
4592 ret = 0;
4593 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
Patrick McHardybd380812010-02-26 06:34:53 +00004594 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
4596 if (!ret)
Patrick McHardy4417da62007-06-27 01:28:10 -07004597 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 }
4599
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004601 int inc = (flags & IFF_PROMISC) ? 1 : -1;
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 dev->gflags ^= IFF_PROMISC;
4604 dev_set_promiscuity(dev, inc);
4605 }
4606
4607 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
4608 is important. Some (broken) drivers set IFF_PROMISC, when
4609 IFF_ALLMULTI is requested not asking us and not reporting.
4610 */
4611 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004612 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
4613
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 dev->gflags ^= IFF_ALLMULTI;
4615 dev_set_allmulti(dev, inc);
4616 }
4617
Patrick McHardybd380812010-02-26 06:34:53 +00004618 return ret;
4619}
4620
4621void __dev_notify_flags(struct net_device *dev, unsigned int old_flags)
4622{
4623 unsigned int changes = dev->flags ^ old_flags;
4624
4625 if (changes & IFF_UP) {
4626 if (dev->flags & IFF_UP)
4627 call_netdevice_notifiers(NETDEV_UP, dev);
4628 else
4629 call_netdevice_notifiers(NETDEV_DOWN, dev);
4630 }
4631
4632 if (dev->flags & IFF_UP &&
4633 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE)))
4634 call_netdevice_notifiers(NETDEV_CHANGE, dev);
4635}
4636
4637/**
4638 * dev_change_flags - change device settings
4639 * @dev: device
4640 * @flags: device state flags
4641 *
4642 * Change settings on device based state flags. The flags are
4643 * in the userspace exported format.
4644 */
4645int dev_change_flags(struct net_device *dev, unsigned flags)
4646{
4647 int ret, changes;
4648 int old_flags = dev->flags;
4649
4650 ret = __dev_change_flags(dev, flags);
4651 if (ret < 0)
4652 return ret;
4653
4654 changes = old_flags ^ dev->flags;
Thomas Graf7c355f52007-06-05 16:03:03 -07004655 if (changes)
4656 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Patrick McHardybd380812010-02-26 06:34:53 +00004658 __dev_notify_flags(dev, old_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 return ret;
4660}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004661EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004663/**
4664 * dev_set_mtu - Change maximum transfer unit
4665 * @dev: device
4666 * @new_mtu: new transfer unit
4667 *
4668 * Change the maximum transfer size of the network device.
4669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670int dev_set_mtu(struct net_device *dev, int new_mtu)
4671{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004672 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 int err;
4674
4675 if (new_mtu == dev->mtu)
4676 return 0;
4677
4678 /* MTU must be positive. */
4679 if (new_mtu < 0)
4680 return -EINVAL;
4681
4682 if (!netif_device_present(dev))
4683 return -ENODEV;
4684
4685 err = 0;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004686 if (ops->ndo_change_mtu)
4687 err = ops->ndo_change_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 else
4689 dev->mtu = new_mtu;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 if (!err && dev->flags & IFF_UP)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07004692 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 return err;
4694}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004695EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004697/**
4698 * dev_set_mac_address - Change Media Access Control Address
4699 * @dev: device
4700 * @sa: new address
4701 *
4702 * Change the hardware (MAC) address of the device
4703 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
4705{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004706 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 int err;
4708
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004709 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 return -EOPNOTSUPP;
4711 if (sa->sa_family != dev->type)
4712 return -EINVAL;
4713 if (!netif_device_present(dev))
4714 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004715 err = ops->ndo_set_mac_address(dev, sa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 if (!err)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07004717 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 return err;
4719}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004720EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721
4722/*
Eric Dumazet3710bec2009-11-01 19:42:09 +00004723 * Perform the SIOCxIFxxx calls, inside rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 */
Jeff Garzik14e3e072007-10-08 00:06:32 -07004725static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726{
4727 int err;
Eric Dumazet3710bec2009-11-01 19:42:09 +00004728 struct net_device *dev = dev_get_by_name_rcu(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
4730 if (!dev)
4731 return -ENODEV;
4732
4733 switch (cmd) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004734 case SIOCGIFFLAGS: /* Get interface flags */
4735 ifr->ifr_flags = (short) dev_get_flags(dev);
4736 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004738 case SIOCGIFMETRIC: /* Get the metric on the interface
4739 (currently unused) */
4740 ifr->ifr_metric = 0;
4741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004743 case SIOCGIFMTU: /* Get the MTU of a device */
4744 ifr->ifr_mtu = dev->mtu;
4745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004747 case SIOCGIFHWADDR:
4748 if (!dev->addr_len)
4749 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
4750 else
4751 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
4752 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
4753 ifr->ifr_hwaddr.sa_family = dev->type;
4754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004756 case SIOCGIFSLAVE:
4757 err = -EINVAL;
4758 break;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004759
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004760 case SIOCGIFMAP:
4761 ifr->ifr_map.mem_start = dev->mem_start;
4762 ifr->ifr_map.mem_end = dev->mem_end;
4763 ifr->ifr_map.base_addr = dev->base_addr;
4764 ifr->ifr_map.irq = dev->irq;
4765 ifr->ifr_map.dma = dev->dma;
4766 ifr->ifr_map.port = dev->if_port;
4767 return 0;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004768
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004769 case SIOCGIFINDEX:
4770 ifr->ifr_ifindex = dev->ifindex;
4771 return 0;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004772
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004773 case SIOCGIFTXQLEN:
4774 ifr->ifr_qlen = dev->tx_queue_len;
4775 return 0;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004776
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004777 default:
4778 /* dev_ioctl() should ensure this case
4779 * is never reached
4780 */
4781 WARN_ON(1);
4782 err = -EINVAL;
4783 break;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004784
4785 }
4786 return err;
4787}
4788
4789/*
4790 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
4791 */
4792static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd)
4793{
4794 int err;
4795 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Jarek Poplawski5f2f6da2008-12-22 19:35:28 -08004796 const struct net_device_ops *ops;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004797
4798 if (!dev)
4799 return -ENODEV;
4800
Jarek Poplawski5f2f6da2008-12-22 19:35:28 -08004801 ops = dev->netdev_ops;
4802
Jeff Garzik14e3e072007-10-08 00:06:32 -07004803 switch (cmd) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004804 case SIOCSIFFLAGS: /* Set interface flags */
4805 return dev_change_flags(dev, ifr->ifr_flags);
Jeff Garzik14e3e072007-10-08 00:06:32 -07004806
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004807 case SIOCSIFMETRIC: /* Set the metric on the interface
4808 (currently unused) */
4809 return -EOPNOTSUPP;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004810
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004811 case SIOCSIFMTU: /* Set the MTU of a device */
4812 return dev_set_mtu(dev, ifr->ifr_mtu);
Jeff Garzik14e3e072007-10-08 00:06:32 -07004813
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004814 case SIOCSIFHWADDR:
4815 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004817 case SIOCSIFHWBROADCAST:
4818 if (ifr->ifr_hwaddr.sa_family != dev->type)
4819 return -EINVAL;
4820 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
4821 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
4822 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
4823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004825 case SIOCSIFMAP:
4826 if (ops->ndo_set_config) {
4827 if (!netif_device_present(dev))
4828 return -ENODEV;
4829 return ops->ndo_set_config(dev, &ifr->ifr_map);
4830 }
4831 return -EOPNOTSUPP;
4832
4833 case SIOCADDMULTI:
4834 if ((!ops->ndo_set_multicast_list && !ops->ndo_set_rx_mode) ||
4835 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
4836 return -EINVAL;
4837 if (!netif_device_present(dev))
4838 return -ENODEV;
4839 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
4840 dev->addr_len, 1);
4841
4842 case SIOCDELMULTI:
4843 if ((!ops->ndo_set_multicast_list && !ops->ndo_set_rx_mode) ||
4844 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
4845 return -EINVAL;
4846 if (!netif_device_present(dev))
4847 return -ENODEV;
4848 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
4849 dev->addr_len, 1);
4850
4851 case SIOCSIFTXQLEN:
4852 if (ifr->ifr_qlen < 0)
4853 return -EINVAL;
4854 dev->tx_queue_len = ifr->ifr_qlen;
4855 return 0;
4856
4857 case SIOCSIFNAME:
4858 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
4859 return dev_change_name(dev, ifr->ifr_newname);
4860
4861 /*
4862 * Unknown or private ioctl
4863 */
4864 default:
4865 if ((cmd >= SIOCDEVPRIVATE &&
4866 cmd <= SIOCDEVPRIVATE + 15) ||
4867 cmd == SIOCBONDENSLAVE ||
4868 cmd == SIOCBONDRELEASE ||
4869 cmd == SIOCBONDSETHWADDR ||
4870 cmd == SIOCBONDSLAVEINFOQUERY ||
4871 cmd == SIOCBONDINFOQUERY ||
4872 cmd == SIOCBONDCHANGEACTIVE ||
4873 cmd == SIOCGMIIPHY ||
4874 cmd == SIOCGMIIREG ||
4875 cmd == SIOCSMIIREG ||
4876 cmd == SIOCBRADDIF ||
4877 cmd == SIOCBRDELIF ||
4878 cmd == SIOCSHWTSTAMP ||
4879 cmd == SIOCWANDEV) {
4880 err = -EOPNOTSUPP;
4881 if (ops->ndo_do_ioctl) {
4882 if (netif_device_present(dev))
4883 err = ops->ndo_do_ioctl(dev, ifr, cmd);
4884 else
4885 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 }
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004887 } else
4888 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
4890 }
4891 return err;
4892}
4893
4894/*
4895 * This function handles all "interface"-type I/O control requests. The actual
4896 * 'doing' part of this is dev_ifsioc above.
4897 */
4898
4899/**
4900 * dev_ioctl - network device ioctl
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004901 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 * @cmd: command to issue
4903 * @arg: pointer to a struct ifreq in user space
4904 *
4905 * Issue ioctl functions to devices. This is normally called by the
4906 * user space syscall interfaces but can sometimes be useful for
4907 * other purposes. The return value is the return from the syscall if
4908 * positive or a negative errno code on error.
4909 */
4910
Eric W. Biederman881d9662007-09-17 11:56:21 -07004911int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912{
4913 struct ifreq ifr;
4914 int ret;
4915 char *colon;
4916
4917 /* One special case: SIOCGIFCONF takes ifconf argument
4918 and requires shared lock, because it sleeps writing
4919 to user space.
4920 */
4921
4922 if (cmd == SIOCGIFCONF) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08004923 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07004924 ret = dev_ifconf(net, (char __user *) arg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08004925 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 return ret;
4927 }
4928 if (cmd == SIOCGIFNAME)
Eric W. Biederman881d9662007-09-17 11:56:21 -07004929 return dev_ifname(net, (struct ifreq __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
4931 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
4932 return -EFAULT;
4933
4934 ifr.ifr_name[IFNAMSIZ-1] = 0;
4935
4936 colon = strchr(ifr.ifr_name, ':');
4937 if (colon)
4938 *colon = 0;
4939
4940 /*
4941 * See which interface the caller is talking about.
4942 */
4943
4944 switch (cmd) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004945 /*
4946 * These ioctl calls:
4947 * - can be done by all.
4948 * - atomic and do not require locking.
4949 * - return a value
4950 */
4951 case SIOCGIFFLAGS:
4952 case SIOCGIFMETRIC:
4953 case SIOCGIFMTU:
4954 case SIOCGIFHWADDR:
4955 case SIOCGIFSLAVE:
4956 case SIOCGIFMAP:
4957 case SIOCGIFINDEX:
4958 case SIOCGIFTXQLEN:
4959 dev_load(net, ifr.ifr_name);
Eric Dumazet3710bec2009-11-01 19:42:09 +00004960 rcu_read_lock();
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004961 ret = dev_ifsioc_locked(net, &ifr, cmd);
Eric Dumazet3710bec2009-11-01 19:42:09 +00004962 rcu_read_unlock();
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004963 if (!ret) {
4964 if (colon)
4965 *colon = ':';
4966 if (copy_to_user(arg, &ifr,
4967 sizeof(struct ifreq)))
4968 ret = -EFAULT;
4969 }
4970 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004972 case SIOCETHTOOL:
4973 dev_load(net, ifr.ifr_name);
4974 rtnl_lock();
4975 ret = dev_ethtool(net, &ifr);
4976 rtnl_unlock();
4977 if (!ret) {
4978 if (colon)
4979 *colon = ':';
4980 if (copy_to_user(arg, &ifr,
4981 sizeof(struct ifreq)))
4982 ret = -EFAULT;
4983 }
4984 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004986 /*
4987 * These ioctl calls:
4988 * - require superuser power.
4989 * - require strict serialization.
4990 * - return a value
4991 */
4992 case SIOCGMIIPHY:
4993 case SIOCGMIIREG:
4994 case SIOCSIFNAME:
4995 if (!capable(CAP_NET_ADMIN))
4996 return -EPERM;
4997 dev_load(net, ifr.ifr_name);
4998 rtnl_lock();
4999 ret = dev_ifsioc(net, &ifr, cmd);
5000 rtnl_unlock();
5001 if (!ret) {
5002 if (colon)
5003 *colon = ':';
5004 if (copy_to_user(arg, &ifr,
5005 sizeof(struct ifreq)))
5006 ret = -EFAULT;
5007 }
5008 return ret;
5009
5010 /*
5011 * These ioctl calls:
5012 * - require superuser power.
5013 * - require strict serialization.
5014 * - do not return a value
5015 */
5016 case SIOCSIFFLAGS:
5017 case SIOCSIFMETRIC:
5018 case SIOCSIFMTU:
5019 case SIOCSIFMAP:
5020 case SIOCSIFHWADDR:
5021 case SIOCSIFSLAVE:
5022 case SIOCADDMULTI:
5023 case SIOCDELMULTI:
5024 case SIOCSIFHWBROADCAST:
5025 case SIOCSIFTXQLEN:
5026 case SIOCSMIIREG:
5027 case SIOCBONDENSLAVE:
5028 case SIOCBONDRELEASE:
5029 case SIOCBONDSETHWADDR:
5030 case SIOCBONDCHANGEACTIVE:
5031 case SIOCBRADDIF:
5032 case SIOCBRDELIF:
5033 case SIOCSHWTSTAMP:
5034 if (!capable(CAP_NET_ADMIN))
5035 return -EPERM;
5036 /* fall through */
5037 case SIOCBONDSLAVEINFOQUERY:
5038 case SIOCBONDINFOQUERY:
5039 dev_load(net, ifr.ifr_name);
5040 rtnl_lock();
5041 ret = dev_ifsioc(net, &ifr, cmd);
5042 rtnl_unlock();
5043 return ret;
5044
5045 case SIOCGIFMEM:
5046 /* Get the per device memory space. We can add this but
5047 * currently do not support it */
5048 case SIOCSIFMEM:
5049 /* Set the per device memory buffer space.
5050 * Not applicable in our case */
5051 case SIOCSIFLINK:
5052 return -EINVAL;
5053
5054 /*
5055 * Unknown or private ioctl.
5056 */
5057 default:
5058 if (cmd == SIOCWANDEV ||
5059 (cmd >= SIOCDEVPRIVATE &&
5060 cmd <= SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07005061 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07005063 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 rtnl_unlock();
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005065 if (!ret && copy_to_user(arg, &ifr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 sizeof(struct ifreq)))
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005067 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 return ret;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005069 }
5070 /* Take care of Wireless Extensions */
5071 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST)
5072 return wext_handle_ioctl(net, &ifr, cmd, arg);
5073 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 }
5075}
5076
5077
5078/**
5079 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005080 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081 *
5082 * Returns a suitable unique value for a new device interface
5083 * number. The caller must hold the rtnl semaphore or the
5084 * dev_base_lock to be sure it remains unique.
5085 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07005086static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087{
5088 static int ifindex;
5089 for (;;) {
5090 if (++ifindex <= 0)
5091 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005092 if (!__dev_get_by_index(net, ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 return ifindex;
5094 }
5095}
5096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08005098static LIST_HEAD(net_todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099
Stephen Hemminger6f05f622007-03-08 20:46:03 -08005100static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 list_add_tail(&dev->todo_list, &net_todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103}
5104
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005105static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005106{
Krishna Kumare93737b2009-12-08 22:26:02 +00005107 struct net_device *dev, *tmp;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005108
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005109 BUG_ON(dev_boot_phase);
5110 ASSERT_RTNL();
5111
Krishna Kumare93737b2009-12-08 22:26:02 +00005112 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005113 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00005114 * for initialization unwind. Remove those
5115 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005116 */
5117 if (dev->reg_state == NETREG_UNINITIALIZED) {
5118 pr_debug("unregister_netdevice: device %s/%p never "
5119 "was registered\n", dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005120
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005121 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00005122 list_del(&dev->unreg_list);
5123 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005124 }
5125
5126 BUG_ON(dev->reg_state != NETREG_REGISTERED);
5127
5128 /* If device is running, close it first. */
5129 dev_close(dev);
5130
5131 /* And unlink it from device chain. */
5132 unlist_netdevice(dev);
5133
5134 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005135 }
5136
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005137 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005138
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005139 list_for_each_entry(dev, head, unreg_list) {
5140 /* Shutdown queueing discipline. */
5141 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005142
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005143
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005144 /* Notify protocols, that we are about to destroy
5145 this device. They should clean all the things.
5146 */
5147 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5148
Patrick McHardya2835762010-02-26 06:34:51 +00005149 if (!dev->rtnl_link_ops ||
5150 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5151 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
5152
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005153 /*
5154 * Flush the unicast and multicast chains
5155 */
5156 dev_unicast_flush(dev);
5157 dev_addr_discard(dev);
5158
5159 if (dev->netdev_ops->ndo_uninit)
5160 dev->netdev_ops->ndo_uninit(dev);
5161
5162 /* Notifier chain MUST detach us from master device. */
5163 WARN_ON(dev->master);
5164
5165 /* Remove entries from kobject tree */
5166 netdev_unregister_kobject(dev);
5167 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005168
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005169 /* Process any work delayed until the end of the batch */
stephen hemmingere5e26d72010-02-24 14:01:38 +00005170 dev = list_first_entry(head, struct net_device, unreg_list);
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005171 call_netdevice_notifiers(NETDEV_UNREGISTER_BATCH, dev);
5172
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005173 synchronize_net();
5174
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005175 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005176 dev_put(dev);
5177}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005178
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005179static void rollback_registered(struct net_device *dev)
5180{
5181 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005182
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005183 list_add(&dev->unreg_list, &single);
5184 rollback_registered_many(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005185}
5186
David S. Millere8a04642008-07-17 00:34:19 -07005187static void __netdev_init_queue_locks_one(struct net_device *dev,
5188 struct netdev_queue *dev_queue,
5189 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005190{
5191 spin_lock_init(&dev_queue->_xmit_lock);
David S. Millercf508b12008-07-22 14:16:42 -07005192 netdev_set_xmit_lockdep_class(&dev_queue->_xmit_lock, dev->type);
David S. Millerc773e842008-07-08 23:13:53 -07005193 dev_queue->xmit_lock_owner = -1;
5194}
5195
5196static void netdev_init_queue_locks(struct net_device *dev)
5197{
David S. Millere8a04642008-07-17 00:34:19 -07005198 netdev_for_each_tx_queue(dev, __netdev_init_queue_locks_one, NULL);
5199 __netdev_init_queue_locks_one(dev, &dev->rx_queue, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005200}
5201
Herbert Xub63365a2008-10-23 01:11:29 -07005202unsigned long netdev_fix_features(unsigned long features, const char *name)
5203{
5204 /* Fix illegal SG+CSUM combinations. */
5205 if ((features & NETIF_F_SG) &&
5206 !(features & NETIF_F_ALL_CSUM)) {
5207 if (name)
5208 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no "
5209 "checksum feature.\n", name);
5210 features &= ~NETIF_F_SG;
5211 }
5212
5213 /* TSO requires that SG is present as well. */
5214 if ((features & NETIF_F_TSO) && !(features & NETIF_F_SG)) {
5215 if (name)
5216 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no "
5217 "SG feature.\n", name);
5218 features &= ~NETIF_F_TSO;
5219 }
5220
5221 if (features & NETIF_F_UFO) {
5222 if (!(features & NETIF_F_GEN_CSUM)) {
5223 if (name)
5224 printk(KERN_ERR "%s: Dropping NETIF_F_UFO "
5225 "since no NETIF_F_HW_CSUM feature.\n",
5226 name);
5227 features &= ~NETIF_F_UFO;
5228 }
5229
5230 if (!(features & NETIF_F_SG)) {
5231 if (name)
5232 printk(KERN_ERR "%s: Dropping NETIF_F_UFO "
5233 "since no NETIF_F_SG feature.\n", name);
5234 features &= ~NETIF_F_UFO;
5235 }
5236 }
5237
5238 return features;
5239}
5240EXPORT_SYMBOL(netdev_fix_features);
5241
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08005243 * netif_stacked_transfer_operstate - transfer operstate
5244 * @rootdev: the root or lower level device to transfer state from
5245 * @dev: the device to transfer operstate to
5246 *
5247 * Transfer operational state from root to device. This is normally
5248 * called when a stacking relationship exists between the root
5249 * device and the device(a leaf device).
5250 */
5251void netif_stacked_transfer_operstate(const struct net_device *rootdev,
5252 struct net_device *dev)
5253{
5254 if (rootdev->operstate == IF_OPER_DORMANT)
5255 netif_dormant_on(dev);
5256 else
5257 netif_dormant_off(dev);
5258
5259 if (netif_carrier_ok(rootdev)) {
5260 if (!netif_carrier_ok(dev))
5261 netif_carrier_on(dev);
5262 } else {
5263 if (netif_carrier_ok(dev))
5264 netif_carrier_off(dev);
5265 }
5266}
5267EXPORT_SYMBOL(netif_stacked_transfer_operstate);
5268
5269/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 * register_netdevice - register a network device
5271 * @dev: device to register
5272 *
5273 * Take a completed network device structure and add it to the kernel
5274 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
5275 * chain. 0 is returned on success. A negative errno code is returned
5276 * on a failure to set up the device, or if the name is a duplicate.
5277 *
5278 * Callers must hold the rtnl semaphore. You may want
5279 * register_netdev() instead of this.
5280 *
5281 * BUGS:
5282 * The locking appears insufficient to guarantee two parallel registers
5283 * will not get the same name.
5284 */
5285
5286int register_netdevice(struct net_device *dev)
5287{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005289 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
5291 BUG_ON(dev_boot_phase);
5292 ASSERT_RTNL();
5293
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005294 might_sleep();
5295
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 /* When net_device's are persistent, this will be fatal. */
5297 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005298 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
David S. Millerf1f28aa2008-07-15 00:08:33 -07005300 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07005301 netdev_set_addr_lockdep_class(dev);
David S. Millerc773e842008-07-08 23:13:53 -07005302 netdev_init_queue_locks(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 dev->iflink = -1;
5305
Eric Dumazetdf334542010-03-24 19:13:54 +00005306#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00005307 if (!dev->num_rx_queues) {
5308 /*
5309 * Allocate a single RX queue if driver never called
5310 * alloc_netdev_mq
5311 */
5312
5313 dev->_rx = kzalloc(sizeof(struct netdev_rx_queue), GFP_KERNEL);
5314 if (!dev->_rx) {
5315 ret = -ENOMEM;
5316 goto out;
5317 }
5318
5319 dev->_rx->first = dev->_rx;
5320 atomic_set(&dev->_rx->count, 1);
5321 dev->num_rx_queues = 1;
5322 }
Eric Dumazetdf334542010-03-24 19:13:54 +00005323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005325 if (dev->netdev_ops->ndo_init) {
5326 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 if (ret) {
5328 if (ret > 0)
5329 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08005330 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 }
5332 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005333
Octavian Purdilad9031022009-11-18 02:36:59 +00005334 ret = dev_get_valid_name(net, dev->name, dev->name, 0);
5335 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07005336 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
Eric W. Biederman881d9662007-09-17 11:56:21 -07005338 dev->ifindex = dev_new_index(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 if (dev->iflink == -1)
5340 dev->iflink = dev->ifindex;
5341
Stephen Hemmingerd212f872007-06-27 00:47:37 -07005342 /* Fix illegal checksum combinations */
5343 if ((dev->features & NETIF_F_HW_CSUM) &&
5344 (dev->features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
5345 printk(KERN_NOTICE "%s: mixed HW and IP checksum settings.\n",
5346 dev->name);
5347 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5348 }
5349
5350 if ((dev->features & NETIF_F_NO_CSUM) &&
5351 (dev->features & (NETIF_F_HW_CSUM|NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
5352 printk(KERN_NOTICE "%s: mixed no checksumming and other settings.\n",
5353 dev->name);
5354 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM|NETIF_F_HW_CSUM);
5355 }
5356
Herbert Xub63365a2008-10-23 01:11:29 -07005357 dev->features = netdev_fix_features(dev->features, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Lennert Buytenheke5a4a722008-08-03 01:23:10 -07005359 /* Enable software GSO if SG is supported. */
5360 if (dev->features & NETIF_F_SG)
5361 dev->features |= NETIF_F_GSO;
5362
Daniel Lezcanoaaf8cdc2008-05-02 17:00:58 -07005363 netdev_initialize_kobject(dev);
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00005364
5365 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
5366 ret = notifier_to_errno(ret);
5367 if (ret)
5368 goto err_uninit;
5369
Eric W. Biederman8b41d182007-09-26 22:02:53 -07005370 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005371 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07005372 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005373 dev->reg_state = NETREG_REGISTERED;
5374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 /*
5376 * Default initial state at registry is that the
5377 * device is present.
5378 */
5379
5380 set_bit(__LINK_STATE_PRESENT, &dev->state);
5381
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005384 list_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
5386 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07005387 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07005388 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005389 if (ret) {
5390 rollback_registered(dev);
5391 dev->reg_state = NETREG_UNREGISTERED;
5392 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00005393 /*
5394 * Prevent userspace races by waiting until the network
5395 * device is fully setup before sending notifications.
5396 */
Patrick McHardya2835762010-02-26 06:34:51 +00005397 if (!dev->rtnl_link_ops ||
5398 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5399 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
5401out:
5402 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07005403
5404err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005405 if (dev->netdev_ops->ndo_uninit)
5406 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07005407 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005409EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410
5411/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08005412 * init_dummy_netdev - init a dummy network device for NAPI
5413 * @dev: device to init
5414 *
5415 * This takes a network device structure and initialize the minimum
5416 * amount of fields so it can be used to schedule NAPI polls without
5417 * registering a full blown interface. This is to be used by drivers
5418 * that need to tie several hardware interfaces to a single NAPI
5419 * poll scheduler due to HW limitations.
5420 */
5421int init_dummy_netdev(struct net_device *dev)
5422{
5423 /* Clear everything. Note we don't initialize spinlocks
5424 * are they aren't supposed to be taken by any of the
5425 * NAPI code and this dummy netdev is supposed to be
5426 * only ever used for NAPI polls
5427 */
5428 memset(dev, 0, sizeof(struct net_device));
5429
5430 /* make sure we BUG if trying to hit standard
5431 * register/unregister code path
5432 */
5433 dev->reg_state = NETREG_DUMMY;
5434
5435 /* initialize the ref count */
5436 atomic_set(&dev->refcnt, 1);
5437
5438 /* NAPI wants this */
5439 INIT_LIST_HEAD(&dev->napi_list);
5440
5441 /* a dummy interface is started by default */
5442 set_bit(__LINK_STATE_PRESENT, &dev->state);
5443 set_bit(__LINK_STATE_START, &dev->state);
5444
5445 return 0;
5446}
5447EXPORT_SYMBOL_GPL(init_dummy_netdev);
5448
5449
5450/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451 * register_netdev - register a network device
5452 * @dev: device to register
5453 *
5454 * Take a completed network device structure and add it to the kernel
5455 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
5456 * chain. 0 is returned on success. A negative errno code is returned
5457 * on a failure to set up the device, or if the name is a duplicate.
5458 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07005459 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 * and expands the device name if you passed a format string to
5461 * alloc_netdev.
5462 */
5463int register_netdev(struct net_device *dev)
5464{
5465 int err;
5466
5467 rtnl_lock();
5468
5469 /*
5470 * If the name is a format string the caller wants us to do a
5471 * name allocation.
5472 */
5473 if (strchr(dev->name, '%')) {
5474 err = dev_alloc_name(dev, dev->name);
5475 if (err < 0)
5476 goto out;
5477 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005478
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 err = register_netdevice(dev);
5480out:
5481 rtnl_unlock();
5482 return err;
5483}
5484EXPORT_SYMBOL(register_netdev);
5485
5486/*
5487 * netdev_wait_allrefs - wait until all references are gone.
5488 *
5489 * This is called when unregistering network devices.
5490 *
5491 * Any protocol or device that holds a reference should register
5492 * for netdevice notification, and cleanup and put back the
5493 * reference if they receive an UNREGISTER event.
5494 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005495 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 */
5497static void netdev_wait_allrefs(struct net_device *dev)
5498{
5499 unsigned long rebroadcast_time, warning_time;
5500
Eric Dumazete014deb2009-11-17 05:59:21 +00005501 linkwatch_forget_dev(dev);
5502
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 rebroadcast_time = warning_time = jiffies;
5504 while (atomic_read(&dev->refcnt) != 0) {
5505 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08005506 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507
5508 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07005509 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005510 /* don't resend NETDEV_UNREGISTER_BATCH, _BATCH users
Octavian Purdila395264d2009-11-16 13:49:35 +00005511 * should have already handle it the first time */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512
5513 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
5514 &dev->state)) {
5515 /* We must not have linkwatch events
5516 * pending on unregister. If this
5517 * happens, we simply run the queue
5518 * unscheduled, resulting in a noop
5519 * for this device.
5520 */
5521 linkwatch_run_queue();
5522 }
5523
Stephen Hemminger6756ae42006-03-20 22:23:58 -08005524 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
5526 rebroadcast_time = jiffies;
5527 }
5528
5529 msleep(250);
5530
5531 if (time_after(jiffies, warning_time + 10 * HZ)) {
5532 printk(KERN_EMERG "unregister_netdevice: "
5533 "waiting for %s to become free. Usage "
5534 "count = %d\n",
5535 dev->name, atomic_read(&dev->refcnt));
5536 warning_time = jiffies;
5537 }
5538 }
5539}
5540
5541/* The sequence is:
5542 *
5543 * rtnl_lock();
5544 * ...
5545 * register_netdevice(x1);
5546 * register_netdevice(x2);
5547 * ...
5548 * unregister_netdevice(y1);
5549 * unregister_netdevice(y2);
5550 * ...
5551 * rtnl_unlock();
5552 * free_netdev(y1);
5553 * free_netdev(y2);
5554 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07005555 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005557 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558 * without deadlocking with linkwatch via keventd.
5559 * 2) Since we run with the RTNL semaphore not held, we can sleep
5560 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07005561 *
5562 * We must not return until all unregister events added during
5563 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565void netdev_run_todo(void)
5566{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07005567 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07005570 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07005571
5572 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07005573
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 while (!list_empty(&list)) {
5575 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00005576 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577 list_del(&dev->todo_list);
5578
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005579 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 printk(KERN_ERR "network todo '%s' but state %d\n",
5581 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005582 dump_stack();
5583 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005585
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005586 dev->reg_state = NETREG_UNREGISTERED;
5587
Changli Gao152102c2010-03-30 20:16:22 +00005588 on_each_cpu(flush_backlog, dev, 1);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005589
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005590 netdev_wait_allrefs(dev);
5591
5592 /* paranoia */
5593 BUG_ON(atomic_read(&dev->refcnt));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07005594 WARN_ON(dev->ip_ptr);
5595 WARN_ON(dev->ip6_ptr);
5596 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005597
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005598 if (dev->destructor)
5599 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07005600
5601 /* Free network device */
5602 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604}
5605
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005606/**
Eric Dumazetd83345a2009-11-16 03:36:51 +00005607 * dev_txq_stats_fold - fold tx_queues stats
5608 * @dev: device to get statistics from
5609 * @stats: struct net_device_stats to hold results
5610 */
5611void dev_txq_stats_fold(const struct net_device *dev,
5612 struct net_device_stats *stats)
5613{
5614 unsigned long tx_bytes = 0, tx_packets = 0, tx_dropped = 0;
5615 unsigned int i;
5616 struct netdev_queue *txq;
5617
5618 for (i = 0; i < dev->num_tx_queues; i++) {
5619 txq = netdev_get_tx_queue(dev, i);
5620 tx_bytes += txq->tx_bytes;
5621 tx_packets += txq->tx_packets;
5622 tx_dropped += txq->tx_dropped;
5623 }
5624 if (tx_bytes || tx_packets || tx_dropped) {
5625 stats->tx_bytes = tx_bytes;
5626 stats->tx_packets = tx_packets;
5627 stats->tx_dropped = tx_dropped;
5628 }
5629}
5630EXPORT_SYMBOL(dev_txq_stats_fold);
5631
5632/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005633 * dev_get_stats - get network device statistics
5634 * @dev: device to get statistics from
5635 *
5636 * Get network statistics from device. The device driver may provide
5637 * its own method by setting dev->netdev_ops->get_stats; otherwise
5638 * the internal statistics structure is used.
5639 */
5640const struct net_device_stats *dev_get_stats(struct net_device *dev)
Eric Dumazet7004bf22009-05-18 00:34:33 +00005641{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005642 const struct net_device_ops *ops = dev->netdev_ops;
5643
5644 if (ops->ndo_get_stats)
5645 return ops->ndo_get_stats(dev);
Eric Dumazet7004bf22009-05-18 00:34:33 +00005646
Eric Dumazetd83345a2009-11-16 03:36:51 +00005647 dev_txq_stats_fold(dev, &dev->stats);
5648 return &dev->stats;
Rusty Russellc45d2862007-03-28 14:29:08 -07005649}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005650EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07005651
David S. Millerdc2b4842008-07-08 17:18:23 -07005652static void netdev_init_one_queue(struct net_device *dev,
David S. Millere8a04642008-07-17 00:34:19 -07005653 struct netdev_queue *queue,
5654 void *_unused)
David S. Millerdc2b4842008-07-08 17:18:23 -07005655{
David S. Millerdc2b4842008-07-08 17:18:23 -07005656 queue->dev = dev;
5657}
5658
David S. Millerbb949fb2008-07-08 16:55:56 -07005659static void netdev_init_queues(struct net_device *dev)
5660{
David S. Millere8a04642008-07-17 00:34:19 -07005661 netdev_init_one_queue(dev, &dev->rx_queue, NULL);
5662 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
David S. Millerc3f26a22008-07-31 16:58:50 -07005663 spin_lock_init(&dev->tx_global_lock);
David S. Millerbb949fb2008-07-08 16:55:56 -07005664}
5665
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666/**
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005667 * alloc_netdev_mq - allocate network device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 * @sizeof_priv: size of private data to allocate space for
5669 * @name: device name format string
5670 * @setup: callback to initialize device
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005671 * @queue_count: the number of subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 *
5673 * Allocates a struct net_device with private data area for driver use
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005674 * and performs basic initialization. Also allocates subquue structs
5675 * for each queue on the device at the end of the netdevice.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 */
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005677struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
5678 void (*setup)(struct net_device *), unsigned int queue_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679{
David S. Millere8a04642008-07-17 00:34:19 -07005680 struct netdev_queue *tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07005682 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005683 struct net_device *p;
Eric Dumazetdf334542010-03-24 19:13:54 +00005684#ifdef CONFIG_RPS
5685 struct netdev_rx_queue *rx;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005686 int i;
Eric Dumazetdf334542010-03-24 19:13:54 +00005687#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07005689 BUG_ON(strlen(name) >= sizeof(dev->name));
5690
David S. Millerfd2ea0a2008-07-17 01:56:23 -07005691 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07005692 if (sizeof_priv) {
5693 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005694 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07005695 alloc_size += sizeof_priv;
5696 }
5697 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005698 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
Paolo 'Blaisorblade' Giarrusso31380de2006-04-06 22:38:28 -07005700 p = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701 if (!p) {
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07005702 printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 return NULL;
5704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705
Stephen Hemminger79439862008-07-21 13:28:44 -07005706 tx = kcalloc(queue_count, sizeof(struct netdev_queue), GFP_KERNEL);
David S. Millere8a04642008-07-17 00:34:19 -07005707 if (!tx) {
5708 printk(KERN_ERR "alloc_netdev: Unable to allocate "
5709 "tx qdiscs.\n");
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005710 goto free_p;
David S. Millere8a04642008-07-17 00:34:19 -07005711 }
5712
Eric Dumazetdf334542010-03-24 19:13:54 +00005713#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00005714 rx = kcalloc(queue_count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
5715 if (!rx) {
5716 printk(KERN_ERR "alloc_netdev: Unable to allocate "
5717 "rx queues.\n");
5718 goto free_tx;
5719 }
5720
5721 atomic_set(&rx->count, queue_count);
5722
5723 /*
5724 * Set a pointer to first element in the array which holds the
5725 * reference count.
5726 */
5727 for (i = 0; i < queue_count; i++)
5728 rx[i].first = rx;
Eric Dumazetdf334542010-03-24 19:13:54 +00005729#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00005730
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005731 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005733
5734 if (dev_addr_init(dev))
Tom Herbert0a9627f2010-03-16 08:03:29 +00005735 goto free_rx;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005736
Jiri Pirkoccffad252009-05-22 23:22:17 +00005737 dev_unicast_init(dev);
5738
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005739 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
David S. Millere8a04642008-07-17 00:34:19 -07005741 dev->_tx = tx;
5742 dev->num_tx_queues = queue_count;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07005743 dev->real_num_tx_queues = queue_count;
David S. Millere8a04642008-07-17 00:34:19 -07005744
Eric Dumazetdf334542010-03-24 19:13:54 +00005745#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00005746 dev->_rx = rx;
5747 dev->num_rx_queues = queue_count;
Eric Dumazetdf334542010-03-24 19:13:54 +00005748#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00005749
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07005750 dev->gso_max_size = GSO_MAX_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751
David S. Millerbb949fb2008-07-08 16:55:56 -07005752 netdev_init_queues(dev);
5753
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -08005754 INIT_LIST_HEAD(&dev->ethtool_ntuple_list.list);
5755 dev->ethtool_ntuple_list.count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005756 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00005757 INIT_LIST_HEAD(&dev->unreg_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00005758 INIT_LIST_HEAD(&dev->link_watch_list);
Eric Dumazet93f154b2009-05-18 22:19:19 -07005759 dev->priv_flags = IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 setup(dev);
5761 strcpy(dev->name, name);
5762 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005763
Tom Herbert0a9627f2010-03-16 08:03:29 +00005764free_rx:
Eric Dumazetdf334542010-03-24 19:13:54 +00005765#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00005766 kfree(rx);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005767free_tx:
Eric Dumazetdf334542010-03-24 19:13:54 +00005768#endif
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005769 kfree(tx);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005770free_p:
5771 kfree(p);
5772 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773}
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005774EXPORT_SYMBOL(alloc_netdev_mq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775
5776/**
5777 * free_netdev - free network device
5778 * @dev: device
5779 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005780 * This function does the last stage of destroying an allocated device
5781 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 * If this is the last reference then it will be freed.
5783 */
5784void free_netdev(struct net_device *dev)
5785{
Herbert Xud565b0a2008-12-15 23:38:52 -08005786 struct napi_struct *p, *n;
5787
Denis V. Lunevf3005d72008-04-16 02:02:18 -07005788 release_net(dev_net(dev));
5789
David S. Millere8a04642008-07-17 00:34:19 -07005790 kfree(dev->_tx);
5791
Jiri Pirkof001fde2009-05-05 02:48:28 +00005792 /* Flush device addresses */
5793 dev_addr_flush(dev);
5794
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -08005795 /* Clear ethtool n-tuple list */
5796 ethtool_ntuple_flush(dev);
5797
Herbert Xud565b0a2008-12-15 23:38:52 -08005798 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
5799 netif_napi_del(p);
5800
Stephen Hemminger3041a062006-05-26 13:25:24 -07005801 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802 if (dev->reg_state == NETREG_UNINITIALIZED) {
5803 kfree((char *)dev - dev->padded);
5804 return;
5805 }
5806
5807 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
5808 dev->reg_state = NETREG_RELEASED;
5809
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07005810 /* will free via device release */
5811 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005813EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005814
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005815/**
5816 * synchronize_net - Synchronize with packet receive processing
5817 *
5818 * Wait for packets currently being received to be done.
5819 * Does not block later packets from starting.
5820 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005821void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822{
5823 might_sleep();
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005824 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005826EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827
5828/**
Eric Dumazet44a08732009-10-27 07:03:04 +00005829 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00005831 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08005832 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08005834 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00005835 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 *
5837 * Callers must hold the rtnl semaphore. You may want
5838 * unregister_netdev() instead of this.
5839 */
5840
Eric Dumazet44a08732009-10-27 07:03:04 +00005841void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842{
Herbert Xua6620712007-12-12 19:21:56 -08005843 ASSERT_RTNL();
5844
Eric Dumazet44a08732009-10-27 07:03:04 +00005845 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00005846 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00005847 } else {
5848 rollback_registered(dev);
5849 /* Finish processing unregister after unlock */
5850 net_set_todo(dev);
5851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852}
Eric Dumazet44a08732009-10-27 07:03:04 +00005853EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854
5855/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005856 * unregister_netdevice_many - unregister many devices
5857 * @head: list of devices
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005858 */
5859void unregister_netdevice_many(struct list_head *head)
5860{
5861 struct net_device *dev;
5862
5863 if (!list_empty(head)) {
5864 rollback_registered_many(head);
5865 list_for_each_entry(dev, head, unreg_list)
5866 net_set_todo(dev);
5867 }
5868}
Eric Dumazet63c80992009-10-27 07:06:49 +00005869EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005870
5871/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 * unregister_netdev - remove device from the kernel
5873 * @dev: device
5874 *
5875 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08005876 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877 *
5878 * This is just a wrapper for unregister_netdevice that takes
5879 * the rtnl semaphore. In general you want to use this and not
5880 * unregister_netdevice.
5881 */
5882void unregister_netdev(struct net_device *dev)
5883{
5884 rtnl_lock();
5885 unregister_netdevice(dev);
5886 rtnl_unlock();
5887}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888EXPORT_SYMBOL(unregister_netdev);
5889
Eric W. Biedermance286d32007-09-12 13:53:49 +02005890/**
5891 * dev_change_net_namespace - move device to different nethost namespace
5892 * @dev: device
5893 * @net: network namespace
5894 * @pat: If not NULL name pattern to try if the current device name
5895 * is already taken in the destination network namespace.
5896 *
5897 * This function shuts down a device interface and moves it
5898 * to a new network namespace. On success 0 is returned, on
5899 * a failure a netagive errno code is returned.
5900 *
5901 * Callers must hold the rtnl semaphore.
5902 */
5903
5904int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
5905{
Eric W. Biedermance286d32007-09-12 13:53:49 +02005906 int err;
5907
5908 ASSERT_RTNL();
5909
5910 /* Don't allow namespace local devices to be moved. */
5911 err = -EINVAL;
5912 if (dev->features & NETIF_F_NETNS_LOCAL)
5913 goto out;
5914
Eric W. Biederman38918452008-10-27 17:51:47 -07005915#ifdef CONFIG_SYSFS
5916 /* Don't allow real devices to be moved when sysfs
5917 * is enabled.
5918 */
5919 err = -EINVAL;
5920 if (dev->dev.parent)
5921 goto out;
5922#endif
5923
Eric W. Biedermance286d32007-09-12 13:53:49 +02005924 /* Ensure the device has been registrered */
5925 err = -EINVAL;
5926 if (dev->reg_state != NETREG_REGISTERED)
5927 goto out;
5928
5929 /* Get out if there is nothing todo */
5930 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09005931 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02005932 goto out;
5933
5934 /* Pick the destination device name, and ensure
5935 * we can use it in the destination network namespace.
5936 */
5937 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00005938 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02005939 /* We get here if we can't use the current device name */
5940 if (!pat)
5941 goto out;
Octavian Purdilad9031022009-11-18 02:36:59 +00005942 if (dev_get_valid_name(net, pat, dev->name, 1))
Eric W. Biedermance286d32007-09-12 13:53:49 +02005943 goto out;
5944 }
5945
5946 /*
5947 * And now a mini version of register_netdevice unregister_netdevice.
5948 */
5949
5950 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07005951 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005952
5953 /* And unlink it from device chain */
5954 err = -ENODEV;
5955 unlist_netdevice(dev);
5956
5957 synchronize_net();
5958
5959 /* Shutdown queueing discipline. */
5960 dev_shutdown(dev);
5961
5962 /* Notify protocols, that we are about to destroy
5963 this device. They should clean all the things.
5964 */
5965 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005966 call_netdevice_notifiers(NETDEV_UNREGISTER_BATCH, dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005967
5968 /*
5969 * Flush the unicast and multicast chains
5970 */
Jiri Pirkoccffad252009-05-22 23:22:17 +00005971 dev_unicast_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005972 dev_addr_discard(dev);
5973
Eric W. Biederman38918452008-10-27 17:51:47 -07005974 netdev_unregister_kobject(dev);
5975
Eric W. Biedermance286d32007-09-12 13:53:49 +02005976 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005977 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005978
Eric W. Biedermance286d32007-09-12 13:53:49 +02005979 /* If there is an ifindex conflict assign a new one */
5980 if (__dev_get_by_index(net, dev->ifindex)) {
5981 int iflink = (dev->iflink == dev->ifindex);
5982 dev->ifindex = dev_new_index(net);
5983 if (iflink)
5984 dev->iflink = dev->ifindex;
5985 }
5986
Eric W. Biederman8b41d182007-09-26 22:02:53 -07005987 /* Fixup kobjects */
Daniel Lezcanoaaf8cdc2008-05-02 17:00:58 -07005988 err = netdev_register_kobject(dev);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07005989 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005990
5991 /* Add the device back in the hashes */
5992 list_netdevice(dev);
5993
5994 /* Notify protocols, that a new device appeared. */
5995 call_netdevice_notifiers(NETDEV_REGISTER, dev);
5996
Eric W. Biedermand90a9092009-12-12 22:11:15 +00005997 /*
5998 * Prevent userspace races by waiting until the network
5999 * device is fully setup before sending notifications.
6000 */
6001 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
6002
Eric W. Biedermance286d32007-09-12 13:53:49 +02006003 synchronize_net();
6004 err = 0;
6005out:
6006 return err;
6007}
Johannes Berg463d0182009-07-14 00:33:35 +02006008EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006009
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010static int dev_cpu_callback(struct notifier_block *nfb,
6011 unsigned long action,
6012 void *ocpu)
6013{
6014 struct sk_buff **list_skb;
David S. Miller37437bb2008-07-16 02:15:04 -07006015 struct Qdisc **list_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 struct sk_buff *skb;
6017 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6018 struct softnet_data *sd, *oldsd;
6019
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006020 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 return NOTIFY_OK;
6022
6023 local_irq_disable();
6024 cpu = smp_processor_id();
6025 sd = &per_cpu(softnet_data, cpu);
6026 oldsd = &per_cpu(softnet_data, oldcpu);
6027
6028 /* Find end of our completion_queue. */
6029 list_skb = &sd->completion_queue;
6030 while (*list_skb)
6031 list_skb = &(*list_skb)->next;
6032 /* Append completion queue from offline CPU. */
6033 *list_skb = oldsd->completion_queue;
6034 oldsd->completion_queue = NULL;
6035
6036 /* Find end of our output_queue. */
6037 list_net = &sd->output_queue;
6038 while (*list_net)
6039 list_net = &(*list_net)->next_sched;
6040 /* Append output queue from offline CPU. */
6041 *list_net = oldsd->output_queue;
6042 oldsd->output_queue = NULL;
6043
6044 raise_softirq_irqoff(NET_TX_SOFTIRQ);
6045 local_irq_enable();
6046
6047 /* Process offline CPU's input_pkt_queue */
6048 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
6049 netif_rx(skb);
6050
6051 return NOTIFY_OK;
6052}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
6054
Herbert Xu7f353bf2007-08-10 15:47:58 -07006055/**
Herbert Xub63365a2008-10-23 01:11:29 -07006056 * netdev_increment_features - increment feature set by one
6057 * @all: current feature set
6058 * @one: new feature set
6059 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07006060 *
6061 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07006062 * @one to the master device with current feature set @all. Will not
6063 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07006064 */
Herbert Xub63365a2008-10-23 01:11:29 -07006065unsigned long netdev_increment_features(unsigned long all, unsigned long one,
6066 unsigned long mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07006067{
Herbert Xub63365a2008-10-23 01:11:29 -07006068 /* If device needs checksumming, downgrade to it. */
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006069 if (all & NETIF_F_NO_CSUM && !(one & NETIF_F_NO_CSUM))
Herbert Xub63365a2008-10-23 01:11:29 -07006070 all ^= NETIF_F_NO_CSUM | (one & NETIF_F_ALL_CSUM);
6071 else if (mask & NETIF_F_ALL_CSUM) {
6072 /* If one device supports v4/v6 checksumming, set for all. */
6073 if (one & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM) &&
6074 !(all & NETIF_F_GEN_CSUM)) {
6075 all &= ~NETIF_F_ALL_CSUM;
6076 all |= one & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
6077 }
Herbert Xu7f353bf2007-08-10 15:47:58 -07006078
Herbert Xub63365a2008-10-23 01:11:29 -07006079 /* If one device supports hw checksumming, set for all. */
6080 if (one & NETIF_F_GEN_CSUM && !(all & NETIF_F_GEN_CSUM)) {
6081 all &= ~NETIF_F_ALL_CSUM;
6082 all |= NETIF_F_HW_CSUM;
6083 }
6084 }
Herbert Xu7f353bf2007-08-10 15:47:58 -07006085
Herbert Xub63365a2008-10-23 01:11:29 -07006086 one |= NETIF_F_ALL_CSUM;
Herbert Xu7f353bf2007-08-10 15:47:58 -07006087
Herbert Xub63365a2008-10-23 01:11:29 -07006088 one |= all & NETIF_F_ONE_FOR_ALL;
Sridhar Samudralad9f59502009-10-07 12:24:25 +00006089 all &= one | NETIF_F_LLTX | NETIF_F_GSO | NETIF_F_UFO;
Herbert Xub63365a2008-10-23 01:11:29 -07006090 all |= one & mask & NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07006091
6092 return all;
6093}
Herbert Xub63365a2008-10-23 01:11:29 -07006094EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006095
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006096static struct hlist_head *netdev_create_hash(void)
6097{
6098 int i;
6099 struct hlist_head *hash;
6100
6101 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
6102 if (hash != NULL)
6103 for (i = 0; i < NETDEV_HASHENTRIES; i++)
6104 INIT_HLIST_HEAD(&hash[i]);
6105
6106 return hash;
6107}
6108
Eric W. Biederman881d9662007-09-17 11:56:21 -07006109/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07006110static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07006111{
Eric W. Biederman881d9662007-09-17 11:56:21 -07006112 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07006113
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006114 net->dev_name_head = netdev_create_hash();
6115 if (net->dev_name_head == NULL)
6116 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006117
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006118 net->dev_index_head = netdev_create_hash();
6119 if (net->dev_index_head == NULL)
6120 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006121
6122 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006123
6124err_idx:
6125 kfree(net->dev_name_head);
6126err_name:
6127 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006128}
6129
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006130/**
6131 * netdev_drivername - network driver for the device
6132 * @dev: network device
6133 * @buffer: buffer for resulting name
6134 * @len: size of buffer
6135 *
6136 * Determine network driver for device.
6137 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07006138char *netdev_drivername(const struct net_device *dev, char *buffer, int len)
Arjan van de Ven6579e572008-07-21 13:31:48 -07006139{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07006140 const struct device_driver *driver;
6141 const struct device *parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006142
6143 if (len <= 0 || !buffer)
6144 return buffer;
6145 buffer[0] = 0;
6146
6147 parent = dev->dev.parent;
6148
6149 if (!parent)
6150 return buffer;
6151
6152 driver = parent->driver;
6153 if (driver && driver->name)
6154 strlcpy(buffer, driver->name, len);
6155 return buffer;
6156}
6157
Pavel Emelyanov46650792007-10-08 20:38:39 -07006158static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07006159{
6160 kfree(net->dev_name_head);
6161 kfree(net->dev_index_head);
6162}
6163
Denis V. Lunev022cbae2007-11-13 03:23:50 -08006164static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07006165 .init = netdev_init,
6166 .exit = netdev_exit,
6167};
6168
Pavel Emelyanov46650792007-10-08 20:38:39 -07006169static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02006170{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00006171 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02006172 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00006173 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02006174 * initial network namespace
6175 */
6176 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00006177 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02006178 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07006179 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02006180
6181 /* Ignore unmoveable devices (i.e. loopback) */
6182 if (dev->features & NETIF_F_NETNS_LOCAL)
6183 continue;
6184
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00006185 /* Leave virtual devices for the generic cleanup */
6186 if (dev->rtnl_link_ops)
6187 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08006188
Eric W. Biedermance286d32007-09-12 13:53:49 +02006189 /* Push remaing network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07006190 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
6191 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006192 if (err) {
Pavel Emelyanovaca51392008-05-08 01:24:25 -07006193 printk(KERN_EMERG "%s: failed to move %s to init_net: %d\n",
Eric W. Biedermance286d32007-09-12 13:53:49 +02006194 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07006195 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02006196 }
6197 }
6198 rtnl_unlock();
6199}
6200
Eric W. Biederman04dc7f62009-12-03 02:29:04 +00006201static void __net_exit default_device_exit_batch(struct list_head *net_list)
6202{
6203 /* At exit all network devices most be removed from a network
6204 * namespace. Do this in the reverse order of registeration.
6205 * Do this across as many network namespaces as possible to
6206 * improve batching efficiency.
6207 */
6208 struct net_device *dev;
6209 struct net *net;
6210 LIST_HEAD(dev_kill_list);
6211
6212 rtnl_lock();
6213 list_for_each_entry(net, net_list, exit_list) {
6214 for_each_netdev_reverse(net, dev) {
6215 if (dev->rtnl_link_ops)
6216 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
6217 else
6218 unregister_netdevice_queue(dev, &dev_kill_list);
6219 }
6220 }
6221 unregister_netdevice_many(&dev_kill_list);
6222 rtnl_unlock();
6223}
6224
Denis V. Lunev022cbae2007-11-13 03:23:50 -08006225static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02006226 .exit = default_device_exit,
Eric W. Biederman04dc7f62009-12-03 02:29:04 +00006227 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02006228};
6229
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230/*
6231 * Initialize the DEV module. At boot time this walks the device list and
6232 * unhooks any devices that fail to initialise (normally hardware not
6233 * present) and leaves us with a valid list of present and active devices.
6234 *
6235 */
6236
6237/*
6238 * This is called single threaded during boot, so no need
6239 * to take the rtnl semaphore.
6240 */
6241static int __init net_dev_init(void)
6242{
6243 int i, rc = -ENOMEM;
6244
6245 BUG_ON(!dev_boot_phase);
6246
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247 if (dev_proc_init())
6248 goto out;
6249
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006250 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 goto out;
6252
6253 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08006254 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255 INIT_LIST_HEAD(&ptype_base[i]);
6256
Eric W. Biederman881d9662007-09-17 11:56:21 -07006257 if (register_pernet_subsys(&netdev_net_ops))
6258 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259
6260 /*
6261 * Initialise the packet receive queues.
6262 */
6263
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07006264 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265 struct softnet_data *queue;
6266
6267 queue = &per_cpu(softnet_data, i);
6268 skb_queue_head_init(&queue->input_pkt_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269 queue->completion_queue = NULL;
6270 INIT_LIST_HEAD(&queue->poll_list);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006271
Eric Dumazetdf334542010-03-24 19:13:54 +00006272#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +00006273 queue->csd.func = trigger_softirq;
6274 queue->csd.info = queue;
6275 queue->csd.flags = 0;
Tom Herbert1e94d722010-03-18 17:45:44 -07006276#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00006277
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006278 queue->backlog.poll = process_backlog;
6279 queue->backlog.weight = weight_p;
Herbert Xud565b0a2008-12-15 23:38:52 -08006280 queue->backlog.gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00006281 queue->backlog.gro_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282 }
6283
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284 dev_boot_phase = 0;
6285
Eric W. Biederman505d4f72008-11-07 22:54:20 -08006286 /* The loopback device is special if any other network devices
6287 * is present in a network namespace the loopback device must
6288 * be present. Since we now dynamically allocate and free the
6289 * loopback device ensure this invariant is maintained by
6290 * keeping the loopback device as the first device on the
6291 * list of network devices. Ensuring the loopback devices
6292 * is the first device that appears and the last network device
6293 * that disappears.
6294 */
6295 if (register_pernet_device(&loopback_net_ops))
6296 goto out;
6297
6298 if (register_pernet_device(&default_device_ops))
6299 goto out;
6300
Carlos R. Mafra962cf362008-05-15 11:15:37 -03006301 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
6302 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303
6304 hotcpu_notifier(dev_cpu_callback, 0);
6305 dst_init();
6306 dev_mcast_init();
6307 rc = 0;
6308out:
6309 return rc;
6310}
6311
6312subsys_initcall(net_dev_init);
6313
Krishna Kumare88721f2009-02-18 17:55:02 -08006314static int __init initialize_hashrnd(void)
6315{
Tom Herbert0a9627f2010-03-16 08:03:29 +00006316 get_random_bytes(&hashrnd, sizeof(hashrnd));
Krishna Kumare88721f2009-02-18 17:55:02 -08006317 return 0;
6318}
6319
6320late_initcall_sync(initialize_hashrnd);
6321