blob: ad8e320ceba78d75afef1d1e22a7b3cb7f8bb995 [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>
108#include <linux/highmem.h>
109#include <linux/init.h>
110#include <linux/kmod.h>
111#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <linux/netpoll.h>
113#include <linux/rcupdate.h>
114#include <linux/delay.h>
Johannes Berg295f4a12007-04-26 20:43:56 -0700115#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500118#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700119#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700120#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700121#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700122#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700123#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700124#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700125#include <net/ip.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700126#include <linux/ipv6.h>
127#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700128#include <linux/jhash.h>
129#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700130#include <trace/events/napi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700132#include "net-sysfs.h"
133
Herbert Xud565b0a2008-12-15 23:38:52 -0800134/* Instead of increasing this, you should create a hash table. */
135#define MAX_GRO_SKBS 8
136
Herbert Xu5d38a072009-01-04 16:13:40 -0800137/* This should be increased if a protocol with a bigger head is added. */
138#define GRO_MAX_HEAD (MAX_HEADER + 128)
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
141 * The list of packet types we will receive (as opposed to discard)
142 * and the routines to invoke.
143 *
144 * Why 16. Because with 16 the only overlap we get on a hash of the
145 * low nibble of the protocol value is RARP/SNAP/X.25.
146 *
147 * NOTE: That is no longer true with the addition of VLAN tags. Not
148 * sure which should go first, but I bet it won't make much
149 * difference if we are running VLANs. The good news is that
150 * this protocol won't be in the list unless compiled in, so
Stephen Hemminger3041a062006-05-26 13:25:24 -0700151 * the average user (w/out VLANs) will not be adversely affected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * --BLG
153 *
154 * 0800 IP
155 * 8100 802.1Q VLAN
156 * 0001 802.3
157 * 0002 AX.25
158 * 0004 802.2
159 * 8035 RARP
160 * 0005 SNAP
161 * 0805 X.25
162 * 0806 ARP
163 * 8137 IPX
164 * 0009 Localtalk
165 * 86DD IPv6
166 */
167
Pavel Emelyanov82d8a862007-11-26 20:12:58 +0800168#define PTYPE_HASH_SIZE (16)
169#define PTYPE_HASH_MASK (PTYPE_HASH_SIZE - 1)
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static DEFINE_SPINLOCK(ptype_lock);
Pavel Emelyanov82d8a862007-11-26 20:12:58 +0800172static struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -0700173static struct list_head ptype_all __read_mostly; /* Taps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700176 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * semaphore.
178 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800179 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *
181 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700182 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * actual updates. This allows pure readers to access the list even
184 * while a writer is preparing to update it.
185 *
186 * To put it another way, dev_base_lock is held for writing only to
187 * protect against pure readers; the rtnl semaphore provides the
188 * protection against other writers.
189 *
190 * See, for example usages, register_netdevice() and
191 * unregister_netdevice(), which must be called with the rtnl
192 * semaphore held.
193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195EXPORT_SYMBOL(dev_base_lock);
196
Eric W. Biederman881d9662007-09-17 11:56:21 -0700197static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
stephen hemminger08e98972009-11-10 07:20:34 +0000200 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Eric W. Biederman881d9662007-09-17 11:56:21 -0700203static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700205 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Eric W. Biedermance286d32007-09-12 13:53:49 +0200208/* Device list insertion */
209static int list_netdevice(struct net_device *dev)
210{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900211 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200212
213 ASSERT_RTNL();
214
215 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800216 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000217 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000218 hlist_add_head_rcu(&dev->index_hlist,
219 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200220 write_unlock_bh(&dev_base_lock);
221 return 0;
222}
223
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000224/* Device list removal
225 * caller must respect a RCU grace period before freeing/reusing dev
226 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200227static void unlist_netdevice(struct net_device *dev)
228{
229 ASSERT_RTNL();
230
231 /* Unlink dev from the device chain */
232 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800233 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000234 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000235 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200236 write_unlock_bh(&dev_base_lock);
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * Our notifier list
241 */
242
Alan Sternf07d5b92006-05-09 15:23:03 -0700243static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245/*
246 * Device drivers call our routines to queue packets here. We empty the
247 * queue in the local softnet handler.
248 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700249
250DEFINE_PER_CPU(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700251EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
David S. Millercf508b12008-07-22 14:16:42 -0700253#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700254/*
David S. Millerc773e842008-07-08 23:13:53 -0700255 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700256 * according to dev->type
257 */
258static const unsigned short netdev_lock_type[] =
259 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
260 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
261 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
262 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
263 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
264 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
265 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
266 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
267 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
268 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
269 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
270 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
271 ARPHRD_FCFABRIC, ARPHRD_IEEE802_TR, ARPHRD_IEEE80211,
Rémi Denis-Courmont2d91d782008-12-17 15:47:29 -0800272 ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET,
Dmitry Eremin-Solenikov929122c2009-08-14 20:00:20 +0400273 ARPHRD_PHONET_PIPE, ARPHRD_IEEE802154,
Sergey Lapinfcb94e42009-06-08 12:18:47 +0000274 ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700275
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700276static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700277 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
278 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
279 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
280 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
281 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
282 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
283 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
284 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
285 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
286 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
287 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
288 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
289 "_xmit_FCFABRIC", "_xmit_IEEE802_TR", "_xmit_IEEE80211",
Rémi Denis-Courmont2d91d782008-12-17 15:47:29 -0800290 "_xmit_IEEE80211_PRISM", "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET",
Dmitry Eremin-Solenikov929122c2009-08-14 20:00:20 +0400291 "_xmit_PHONET_PIPE", "_xmit_IEEE802154",
Sergey Lapinfcb94e42009-06-08 12:18:47 +0000292 "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700293
294static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700295static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700296
297static inline unsigned short netdev_lock_pos(unsigned short dev_type)
298{
299 int i;
300
301 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
302 if (netdev_lock_type[i] == dev_type)
303 return i;
304 /* the last key is used by default */
305 return ARRAY_SIZE(netdev_lock_type) - 1;
306}
307
David S. Millercf508b12008-07-22 14:16:42 -0700308static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
309 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700310{
311 int i;
312
313 i = netdev_lock_pos(dev_type);
314 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
315 netdev_lock_name[i]);
316}
David S. Millercf508b12008-07-22 14:16:42 -0700317
318static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
319{
320 int i;
321
322 i = netdev_lock_pos(dev->type);
323 lockdep_set_class_and_name(&dev->addr_list_lock,
324 &netdev_addr_lock_key[i],
325 netdev_lock_name[i]);
326}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700327#else
David S. Millercf508b12008-07-22 14:16:42 -0700328static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
329 unsigned short dev_type)
330{
331}
332static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700333{
334}
335#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337/*******************************************************************************
338
339 Protocol management and registration routines
340
341*******************************************************************************/
342
343/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * Add a protocol ID to the list. Now that the input handler is
345 * smarter we can dispense with all the messy stuff that used to be
346 * here.
347 *
348 * BEWARE!!! Protocol handlers, mangling input packets,
349 * MUST BE last in hash buckets and checking protocol handlers
350 * MUST start from promiscuous ptype_all chain in net_bh.
351 * It is true now, do not change it.
352 * Explanation follows: if protocol handler, mangling packet, will
353 * be the first on list, it is not able to sense, that packet
354 * is cloned and should be copied-on-write, so that it will
355 * change it and subsequent readers will get broken packet.
356 * --ANK (980803)
357 */
358
359/**
360 * dev_add_pack - add packet handler
361 * @pt: packet type declaration
362 *
363 * Add a protocol handler to the networking stack. The passed &packet_type
364 * is linked into kernel lists and may not be freed until it has been
365 * removed from the kernel lists.
366 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900367 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * guarantee all CPU's that are in middle of receiving packets
369 * will see the new packet type (until the next received packet).
370 */
371
372void dev_add_pack(struct packet_type *pt)
373{
374 int hash;
375
376 spin_lock_bh(&ptype_lock);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700377 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 list_add_rcu(&pt->list, &ptype_all);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700379 else {
Pavel Emelyanov82d8a862007-11-26 20:12:58 +0800380 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 list_add_rcu(&pt->list, &ptype_base[hash]);
382 }
383 spin_unlock_bh(&ptype_lock);
384}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700385EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/**
388 * __dev_remove_pack - remove packet handler
389 * @pt: packet type declaration
390 *
391 * Remove a protocol handler that was previously added to the kernel
392 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
393 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900394 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
396 * The packet type might still be in use by receivers
397 * and must not be freed until after all the CPU's have gone
398 * through a quiescent state.
399 */
400void __dev_remove_pack(struct packet_type *pt)
401{
402 struct list_head *head;
403 struct packet_type *pt1;
404
405 spin_lock_bh(&ptype_lock);
406
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700407 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 head = &ptype_all;
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700409 else
Pavel Emelyanov82d8a862007-11-26 20:12:58 +0800410 head = &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 list_for_each_entry(pt1, head, list) {
413 if (pt == pt1) {
414 list_del_rcu(&pt->list);
415 goto out;
416 }
417 }
418
419 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
420out:
421 spin_unlock_bh(&ptype_lock);
422}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700423EXPORT_SYMBOL(__dev_remove_pack);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/**
426 * dev_remove_pack - remove packet handler
427 * @pt: packet type declaration
428 *
429 * Remove a protocol handler that was previously added to the kernel
430 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
431 * from the kernel lists and can be freed or reused once this function
432 * returns.
433 *
434 * This call sleeps to guarantee that no CPU is looking at the packet
435 * type after return.
436 */
437void dev_remove_pack(struct packet_type *pt)
438{
439 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 synchronize_net();
442}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700443EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445/******************************************************************************
446
447 Device Boot-time Settings Routines
448
449*******************************************************************************/
450
451/* Boot time configuration table */
452static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
453
454/**
455 * netdev_boot_setup_add - add new setup entry
456 * @name: name of the device
457 * @map: configured settings for the device
458 *
459 * Adds new setup entry to the dev_boot_setup list. The function
460 * returns 0 on error and 1 on success. This is a generic routine to
461 * all netdevices.
462 */
463static int netdev_boot_setup_add(char *name, struct ifmap *map)
464{
465 struct netdev_boot_setup *s;
466 int i;
467
468 s = dev_boot_setup;
469 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
470 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
471 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700472 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 memcpy(&s[i].map, map, sizeof(s[i].map));
474 break;
475 }
476 }
477
478 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
479}
480
481/**
482 * netdev_boot_setup_check - check boot time settings
483 * @dev: the netdevice
484 *
485 * Check boot time settings for the device.
486 * The found settings are set for the device to be used
487 * later in the device probing.
488 * Returns 0 if no settings found, 1 if they are.
489 */
490int netdev_boot_setup_check(struct net_device *dev)
491{
492 struct netdev_boot_setup *s = dev_boot_setup;
493 int i;
494
495 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
496 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700497 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 dev->irq = s[i].map.irq;
499 dev->base_addr = s[i].map.base_addr;
500 dev->mem_start = s[i].map.mem_start;
501 dev->mem_end = s[i].map.mem_end;
502 return 1;
503 }
504 }
505 return 0;
506}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700507EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509
510/**
511 * netdev_boot_base - get address from boot time settings
512 * @prefix: prefix for network device
513 * @unit: id for network device
514 *
515 * Check boot time settings for the base address of device.
516 * The found settings are set for the device to be used
517 * later in the device probing.
518 * Returns 0 if no settings found.
519 */
520unsigned long netdev_boot_base(const char *prefix, int unit)
521{
522 const struct netdev_boot_setup *s = dev_boot_setup;
523 char name[IFNAMSIZ];
524 int i;
525
526 sprintf(name, "%s%d", prefix, unit);
527
528 /*
529 * If device already registered then return base of 1
530 * to indicate not to probe for this interface
531 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700532 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return 1;
534
535 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
536 if (!strcmp(name, s[i].name))
537 return s[i].map.base_addr;
538 return 0;
539}
540
541/*
542 * Saves at boot time configured settings for any netdevice.
543 */
544int __init netdev_boot_setup(char *str)
545{
546 int ints[5];
547 struct ifmap map;
548
549 str = get_options(str, ARRAY_SIZE(ints), ints);
550 if (!str || !*str)
551 return 0;
552
553 /* Save settings */
554 memset(&map, 0, sizeof(map));
555 if (ints[0] > 0)
556 map.irq = ints[1];
557 if (ints[0] > 1)
558 map.base_addr = ints[2];
559 if (ints[0] > 2)
560 map.mem_start = ints[3];
561 if (ints[0] > 3)
562 map.mem_end = ints[4];
563
564 /* Add new entry to the list */
565 return netdev_boot_setup_add(str, &map);
566}
567
568__setup("netdev=", netdev_boot_setup);
569
570/*******************************************************************************
571
572 Device Interface Subroutines
573
574*******************************************************************************/
575
576/**
577 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700578 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * @name: name to find
580 *
581 * Find an interface by name. Must be called under RTNL semaphore
582 * or @dev_base_lock. If the name is found a pointer to the device
583 * is returned. If the name is not found then %NULL is returned. The
584 * reference counters are not incremented so the caller must be
585 * careful with locks.
586 */
587
Eric W. Biederman881d9662007-09-17 11:56:21 -0700588struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 struct hlist_node *p;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700591 struct net_device *dev;
592 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700594 hlist_for_each_entry(dev, p, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (!strncmp(dev->name, name, IFNAMSIZ))
596 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return NULL;
599}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700600EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000603 * dev_get_by_name_rcu - find a device by its name
604 * @net: the applicable net namespace
605 * @name: name to find
606 *
607 * Find an interface by name.
608 * If the name is found a pointer to the device is returned.
609 * If the name is not found then %NULL is returned.
610 * The reference counters are not incremented so the caller must be
611 * careful with locks. The caller must hold RCU lock.
612 */
613
614struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
615{
616 struct hlist_node *p;
617 struct net_device *dev;
618 struct hlist_head *head = dev_name_hash(net, name);
619
620 hlist_for_each_entry_rcu(dev, p, head, name_hlist)
621 if (!strncmp(dev->name, name, IFNAMSIZ))
622 return dev;
623
624 return NULL;
625}
626EXPORT_SYMBOL(dev_get_by_name_rcu);
627
628/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700630 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * @name: name to find
632 *
633 * Find an interface by name. This can be called from any
634 * context and does its own locking. The returned handle has
635 * the usage count incremented and the caller must use dev_put() to
636 * release it when it is no longer needed. %NULL is returned if no
637 * matching device is found.
638 */
639
Eric W. Biederman881d9662007-09-17 11:56:21 -0700640struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 struct net_device *dev;
643
Eric Dumazet72c95282009-10-30 07:11:27 +0000644 rcu_read_lock();
645 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (dev)
647 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000648 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return dev;
650}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700651EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653/**
654 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700655 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 * @ifindex: index of device
657 *
658 * Search for an interface by index. Returns %NULL if the device
659 * is not found or a pointer to the device. The device has not
660 * had its reference counter increased so the caller must be careful
661 * about locking. The caller must hold either the RTNL semaphore
662 * or @dev_base_lock.
663 */
664
Eric W. Biederman881d9662007-09-17 11:56:21 -0700665struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 struct hlist_node *p;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700668 struct net_device *dev;
669 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700671 hlist_for_each_entry(dev, p, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (dev->ifindex == ifindex)
673 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return NULL;
676}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700677EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000679/**
680 * dev_get_by_index_rcu - find a device by its ifindex
681 * @net: the applicable net namespace
682 * @ifindex: index of device
683 *
684 * Search for an interface by index. Returns %NULL if the device
685 * is not found or a pointer to the device. The device has not
686 * had its reference counter increased so the caller must be careful
687 * about locking. The caller must hold RCU lock.
688 */
689
690struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
691{
692 struct hlist_node *p;
693 struct net_device *dev;
694 struct hlist_head *head = dev_index_hash(net, ifindex);
695
696 hlist_for_each_entry_rcu(dev, p, head, index_hlist)
697 if (dev->ifindex == ifindex)
698 return dev;
699
700 return NULL;
701}
702EXPORT_SYMBOL(dev_get_by_index_rcu);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705/**
706 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700707 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 * @ifindex: index of device
709 *
710 * Search for an interface by index. Returns NULL if the device
711 * is not found or a pointer to the device. The device returned has
712 * had a reference added and the pointer is safe until the user calls
713 * dev_put to indicate they have finished with it.
714 */
715
Eric W. Biederman881d9662007-09-17 11:56:21 -0700716struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 struct net_device *dev;
719
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000720 rcu_read_lock();
721 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (dev)
723 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000724 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return dev;
726}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700727EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729/**
730 * dev_getbyhwaddr - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700731 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 * @type: media type of device
733 * @ha: hardware address
734 *
735 * Search for an interface by MAC address. Returns NULL if the device
736 * is not found or a pointer to the device. The caller must hold the
737 * rtnl semaphore. The returned device has not had its ref count increased
738 * and the caller must therefore be careful about locking
739 *
740 * BUGS:
741 * If the API was consistent this would be __dev_get_by_hwaddr
742 */
743
Eric W. Biederman881d9662007-09-17 11:56:21 -0700744struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 struct net_device *dev;
747
748 ASSERT_RTNL();
749
Denis V. Lunev81103a52007-12-12 10:47:38 -0800750 for_each_netdev(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (dev->type == type &&
752 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700753 return dev;
754
755 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300757EXPORT_SYMBOL(dev_getbyhwaddr);
758
Eric W. Biederman881d9662007-09-17 11:56:21 -0700759struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700760{
761 struct net_device *dev;
762
763 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700764 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700765 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700766 return dev;
767
768 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700769}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700770EXPORT_SYMBOL(__dev_getfirstbyhwtype);
771
Eric W. Biederman881d9662007-09-17 11:56:21 -0700772struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct net_device *dev;
775
776 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700777 dev = __dev_getfirstbyhwtype(net, type);
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700778 if (dev)
779 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 rtnl_unlock();
781 return dev;
782}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783EXPORT_SYMBOL(dev_getfirstbyhwtype);
784
785/**
786 * dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700787 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * @if_flags: IFF_* values
789 * @mask: bitmask of bits in if_flags to check
790 *
791 * Search for any interface with the given flags. Returns NULL if a device
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900792 * is not found or a pointer to the device. The device returned has
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * had a reference added and the pointer is safe until the user calls
794 * dev_put to indicate they have finished with it.
795 */
796
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700797struct net_device *dev_get_by_flags(struct net *net, unsigned short if_flags,
798 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700800 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Pavel Emelianov7562f872007-05-03 15:13:45 -0700802 ret = NULL;
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800803 rcu_read_lock();
804 for_each_netdev_rcu(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (((dev->flags ^ if_flags) & mask) == 0) {
806 dev_hold(dev);
Pavel Emelianov7562f872007-05-03 15:13:45 -0700807 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 break;
809 }
810 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800811 rcu_read_unlock();
Pavel Emelianov7562f872007-05-03 15:13:45 -0700812 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700814EXPORT_SYMBOL(dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816/**
817 * dev_valid_name - check if name is okay for network device
818 * @name: name string
819 *
820 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700821 * to allow sysfs to work. We also disallow any kind of
822 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 */
Mitch Williamsc2373ee2005-11-09 10:34:45 -0800824int dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700826 if (*name == '\0')
827 return 0;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700828 if (strlen(name) >= IFNAMSIZ)
829 return 0;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700830 if (!strcmp(name, ".") || !strcmp(name, ".."))
831 return 0;
832
833 while (*name) {
834 if (*name == '/' || isspace(*name))
835 return 0;
836 name++;
837 }
838 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700840EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200843 * __dev_alloc_name - allocate a name for a device
844 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200846 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 *
848 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -0700849 * id. It scans list of devices to build up a free map, then chooses
850 * the first empty slot. The caller must hold the dev_base or rtnl lock
851 * while allocating the name and adding the device in order to avoid
852 * duplicates.
853 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
854 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
856
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200857static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 const char *p;
861 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700862 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct net_device *d;
864
865 p = strnchr(name, IFNAMSIZ-1, '%');
866 if (p) {
867 /*
868 * Verify the string as this thing may have come from
869 * the user. There must be either one "%d" and no other "%"
870 * characters.
871 */
872 if (p[1] != 'd' || strchr(p + 2, '%'))
873 return -EINVAL;
874
875 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700876 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (!inuse)
878 return -ENOMEM;
879
Eric W. Biederman881d9662007-09-17 11:56:21 -0700880 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (!sscanf(d->name, name, &i))
882 continue;
883 if (i < 0 || i >= max_netdevices)
884 continue;
885
886 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200887 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (!strncmp(buf, d->name, IFNAMSIZ))
889 set_bit(i, inuse);
890 }
891
892 i = find_first_zero_bit(inuse, max_netdevices);
893 free_page((unsigned long) inuse);
894 }
895
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200896 snprintf(buf, IFNAMSIZ, name, i);
897 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 /* It is possible to run out of possible slots
901 * when the name is long and there isn't enough space left
902 * for the digits, or if all bits are used.
903 */
904 return -ENFILE;
905}
906
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200907/**
908 * dev_alloc_name - allocate a name for a device
909 * @dev: device
910 * @name: name format string
911 *
912 * Passed a format string - eg "lt%d" it will try and find a suitable
913 * id. It scans list of devices to build up a free map, then chooses
914 * the first empty slot. The caller must hold the dev_base or rtnl lock
915 * while allocating the name and adding the device in order to avoid
916 * duplicates.
917 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
918 * Returns the number of the unit assigned or a negative errno code.
919 */
920
921int dev_alloc_name(struct net_device *dev, const char *name)
922{
923 char buf[IFNAMSIZ];
924 struct net *net;
925 int ret;
926
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900927 BUG_ON(!dev_net(dev));
928 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200929 ret = __dev_alloc_name(net, name, buf);
930 if (ret >= 0)
931 strlcpy(dev->name, buf, IFNAMSIZ);
932 return ret;
933}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700934EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937/**
938 * dev_change_name - change name of a device
939 * @dev: device
940 * @newname: name (or format string) must be at least IFNAMSIZ
941 *
942 * Change name of a device, can pass format strings "eth%d".
943 * for wildcarding.
944 */
Stephen Hemmingercf04a4c2008-09-30 02:22:14 -0700945int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Herbert Xufcc5a032007-07-30 17:03:38 -0700947 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -0700949 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700950 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900953 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900955 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (dev->flags & IFF_UP)
957 return -EBUSY;
958
959 if (!dev_valid_name(newname))
960 return -EINVAL;
961
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -0700962 if (strncmp(newname, dev->name, IFNAMSIZ) == 0)
963 return 0;
964
Herbert Xufcc5a032007-07-30 17:03:38 -0700965 memcpy(oldname, dev->name, IFNAMSIZ);
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (strchr(newname, '%')) {
968 err = dev_alloc_name(dev, newname);
969 if (err < 0)
970 return err;
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700971 } else if (__dev_get_by_name(net, newname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return -EEXIST;
973 else
974 strlcpy(dev->name, newname, IFNAMSIZ);
975
Herbert Xufcc5a032007-07-30 17:03:38 -0700976rollback:
Eric W. Biederman38918452008-10-27 17:51:47 -0700977 /* For now only devices in the initial network namespace
978 * are in sysfs.
979 */
980 if (net == &init_net) {
981 ret = device_rename(&dev->dev, dev->name);
982 if (ret) {
983 memcpy(dev->name, oldname, IFNAMSIZ);
984 return ret;
985 }
Stephen Hemmingerdcc99772008-05-14 22:33:38 -0700986 }
Herbert Xu7f988ea2007-07-30 16:35:46 -0700987
988 write_lock_bh(&dev_base_lock);
Eric W. Biederman92749822007-04-03 00:07:30 -0600989 hlist_del(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +0000990 write_unlock_bh(&dev_base_lock);
991
992 synchronize_rcu();
993
994 write_lock_bh(&dev_base_lock);
995 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -0700996 write_unlock_bh(&dev_base_lock);
997
Pavel Emelyanov056925a2007-09-16 15:42:43 -0700998 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -0700999 ret = notifier_to_errno(ret);
1000
1001 if (ret) {
1002 if (err) {
1003 printk(KERN_ERR
1004 "%s: name change rollback failed: %d.\n",
1005 dev->name, ret);
1006 } else {
1007 err = ret;
1008 memcpy(dev->name, oldname, IFNAMSIZ);
1009 goto rollback;
1010 }
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 return err;
1014}
1015
1016/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001017 * dev_set_alias - change ifalias of a device
1018 * @dev: device
1019 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001020 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001021 *
1022 * Set ifalias for a device,
1023 */
1024int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1025{
1026 ASSERT_RTNL();
1027
1028 if (len >= IFALIASZ)
1029 return -EINVAL;
1030
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001031 if (!len) {
1032 if (dev->ifalias) {
1033 kfree(dev->ifalias);
1034 dev->ifalias = NULL;
1035 }
1036 return 0;
1037 }
1038
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001039 dev->ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001040 if (!dev->ifalias)
1041 return -ENOMEM;
1042
1043 strlcpy(dev->ifalias, alias, len+1);
1044 return len;
1045}
1046
1047
1048/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001049 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001050 * @dev: device to cause notification
1051 *
1052 * Called to indicate a device has changed features.
1053 */
1054void netdev_features_change(struct net_device *dev)
1055{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001056 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001057}
1058EXPORT_SYMBOL(netdev_features_change);
1059
1060/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 * netdev_state_change - device changes state
1062 * @dev: device to cause notification
1063 *
1064 * Called to indicate a device has changed state. This function calls
1065 * the notifier chains for netdev_chain and sends a NEWLINK message
1066 * to the routing socket.
1067 */
1068void netdev_state_change(struct net_device *dev)
1069{
1070 if (dev->flags & IFF_UP) {
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001071 call_netdevice_notifiers(NETDEV_CHANGE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1073 }
1074}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001075EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Moni Shoua75c78502009-09-15 02:37:40 -07001077void netdev_bonding_change(struct net_device *dev, unsigned long event)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001078{
Moni Shoua75c78502009-09-15 02:37:40 -07001079 call_netdevice_notifiers(event, dev);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001080}
1081EXPORT_SYMBOL(netdev_bonding_change);
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083/**
1084 * dev_load - load a network module
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001085 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 * @name: name of interface
1087 *
1088 * If a network interface is not present and the process has suitable
1089 * privileges this function loads the module. If module loading is not
1090 * available in this kernel then it becomes a nop.
1091 */
1092
Eric W. Biederman881d9662007-09-17 11:56:21 -07001093void dev_load(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001095 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Eric Dumazet72c95282009-10-30 07:11:27 +00001097 rcu_read_lock();
1098 dev = dev_get_by_name_rcu(net, name);
1099 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Eric Parisa8f80e82009-08-13 09:44:51 -04001101 if (!dev && capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 request_module("%s", name);
1103}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001104EXPORT_SYMBOL(dev_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/**
1107 * dev_open - prepare an interface for use.
1108 * @dev: device to open
1109 *
1110 * Takes a device from down to up state. The device's private open
1111 * function is invoked and then the multicast lists are loaded. Finally
1112 * the device is moved into the up state and a %NETDEV_UP message is
1113 * sent to the netdev notifier chain.
1114 *
1115 * Calling this function on an active interface is a nop. On a failure
1116 * a negative errno code is returned.
1117 */
1118int dev_open(struct net_device *dev)
1119{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001120 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001121 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001123 ASSERT_RTNL();
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /*
1126 * Is it already up?
1127 */
1128
1129 if (dev->flags & IFF_UP)
1130 return 0;
1131
1132 /*
1133 * Is it even present?
1134 */
1135 if (!netif_device_present(dev))
1136 return -ENODEV;
1137
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001138 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1139 ret = notifier_to_errno(ret);
1140 if (ret)
1141 return ret;
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 /*
1144 * Call device private open method
1145 */
1146 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001147
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001148 if (ops->ndo_validate_addr)
1149 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001150
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001151 if (!ret && ops->ndo_open)
1152 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001154 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * If it went open OK then:
1156 */
1157
Jeff Garzikbada3392007-10-23 20:19:37 -07001158 if (ret)
1159 clear_bit(__LINK_STATE_START, &dev->state);
1160 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /*
1162 * Set the flags.
1163 */
1164 dev->flags |= IFF_UP;
1165
1166 /*
Dan Williams649274d2009-01-11 00:20:39 -08001167 * Enable NET_DMA
1168 */
David S. Millerb4bd07c2009-02-06 22:06:43 -08001169 net_dmaengine_get();
Dan Williams649274d2009-01-11 00:20:39 -08001170
1171 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * Initialize multicasting status
1173 */
Patrick McHardy4417da62007-06-27 01:28:10 -07001174 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 /*
1177 * Wakeup transmit queue engine
1178 */
1179 dev_activate(dev);
1180
1181 /*
1182 * ... and announce new interface.
1183 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001184 call_netdevice_notifiers(NETDEV_UP, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return ret;
1188}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001189EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191/**
1192 * dev_close - shutdown an interface.
1193 * @dev: device to shutdown
1194 *
1195 * This function moves an active device into down state. A
1196 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1197 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1198 * chain.
1199 */
1200int dev_close(struct net_device *dev)
1201{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001202 const struct net_device_ops *ops = dev->netdev_ops;
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001203 ASSERT_RTNL();
1204
David S. Miller9d5010d2007-09-12 14:33:25 +02001205 might_sleep();
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!(dev->flags & IFF_UP))
1208 return 0;
1209
1210 /*
1211 * Tell people we are going down, so that they can
1212 * prepare to death, when device is still operating.
1213 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001214 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 clear_bit(__LINK_STATE_START, &dev->state);
1217
1218 /* Synchronize to scheduled poll. We cannot touch poll list,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001219 * it can be even on different cpu. So just clear netif_running().
1220 *
1221 * dev->stop() will invoke napi_disable() on all of it's
1222 * napi_struct instances on this device.
1223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 smp_mb__after_clear_bit(); /* Commit netif_running(). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001226 dev_deactivate(dev);
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /*
1229 * Call the device specific close. This cannot fail.
1230 * Only if device is UP
1231 *
1232 * We allow it to be called even after a DETACH hot-plug
1233 * event.
1234 */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001235 if (ops->ndo_stop)
1236 ops->ndo_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 /*
1239 * Device is now down.
1240 */
1241
1242 dev->flags &= ~IFF_UP;
1243
1244 /*
1245 * Tell people we are down
1246 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001247 call_netdevice_notifiers(NETDEV_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Dan Williams649274d2009-01-11 00:20:39 -08001249 /*
1250 * Shutdown NET_DMA
1251 */
David S. Millerb4bd07c2009-02-06 22:06:43 -08001252 net_dmaengine_put();
Dan Williams649274d2009-01-11 00:20:39 -08001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return 0;
1255}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001256EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001259/**
1260 * dev_disable_lro - disable Large Receive Offload on a device
1261 * @dev: device
1262 *
1263 * Disable Large Receive Offload (LRO) on a net device. Must be
1264 * called under RTNL. This is needed if received packets may be
1265 * forwarded to another interface.
1266 */
1267void dev_disable_lro(struct net_device *dev)
1268{
1269 if (dev->ethtool_ops && dev->ethtool_ops->get_flags &&
1270 dev->ethtool_ops->set_flags) {
1271 u32 flags = dev->ethtool_ops->get_flags(dev);
1272 if (flags & ETH_FLAG_LRO) {
1273 flags &= ~ETH_FLAG_LRO;
1274 dev->ethtool_ops->set_flags(dev, flags);
1275 }
1276 }
1277 WARN_ON(dev->features & NETIF_F_LRO);
1278}
1279EXPORT_SYMBOL(dev_disable_lro);
1280
1281
Eric W. Biederman881d9662007-09-17 11:56:21 -07001282static int dev_boot_phase = 1;
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284/*
1285 * Device change register/unregister. These are not inline or static
1286 * as we export them to the world.
1287 */
1288
1289/**
1290 * register_netdevice_notifier - register a network notifier block
1291 * @nb: notifier
1292 *
1293 * Register a notifier to be called when network device events occur.
1294 * The notifier passed is linked into the kernel structures and must
1295 * not be reused until it has been unregistered. A negative errno code
1296 * is returned on a failure.
1297 *
1298 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001299 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 * view of the network device list.
1301 */
1302
1303int register_netdevice_notifier(struct notifier_block *nb)
1304{
1305 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001306 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001307 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 int err;
1309
1310 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001311 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001312 if (err)
1313 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001314 if (dev_boot_phase)
1315 goto unlock;
1316 for_each_net(net) {
1317 for_each_netdev(net, dev) {
1318 err = nb->notifier_call(nb, NETDEV_REGISTER, dev);
1319 err = notifier_to_errno(err);
1320 if (err)
1321 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Eric W. Biederman881d9662007-09-17 11:56:21 -07001323 if (!(dev->flags & IFF_UP))
1324 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001325
Eric W. Biederman881d9662007-09-17 11:56:21 -07001326 nb->notifier_call(nb, NETDEV_UP, dev);
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001329
1330unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 rtnl_unlock();
1332 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001333
1334rollback:
1335 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001336 for_each_net(net) {
1337 for_each_netdev(net, dev) {
1338 if (dev == last)
1339 break;
Herbert Xufcc5a032007-07-30 17:03:38 -07001340
Eric W. Biederman881d9662007-09-17 11:56:21 -07001341 if (dev->flags & IFF_UP) {
1342 nb->notifier_call(nb, NETDEV_GOING_DOWN, dev);
1343 nb->notifier_call(nb, NETDEV_DOWN, dev);
1344 }
1345 nb->notifier_call(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001346 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001347 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001348
1349 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001350 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001352EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354/**
1355 * unregister_netdevice_notifier - unregister a network notifier block
1356 * @nb: notifier
1357 *
1358 * Unregister a notifier previously registered by
1359 * register_netdevice_notifier(). The notifier is unlinked into the
1360 * kernel structures and may then be reused. A negative errno code
1361 * is returned on a failure.
1362 */
1363
1364int unregister_netdevice_notifier(struct notifier_block *nb)
1365{
Herbert Xu9f514952006-03-25 01:24:25 -08001366 int err;
1367
1368 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001369 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xu9f514952006-03-25 01:24:25 -08001370 rtnl_unlock();
1371 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001373EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375/**
1376 * call_netdevice_notifiers - call all network notifier blocks
1377 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001378 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 *
1380 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001381 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 */
1383
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001384int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001386 return raw_notifier_call_chain(&netdev_chain, val, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389/* When > 0 there are consumers of rx skb time stamps */
1390static atomic_t netstamp_needed = ATOMIC_INIT(0);
1391
1392void net_enable_timestamp(void)
1393{
1394 atomic_inc(&netstamp_needed);
1395}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001396EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398void net_disable_timestamp(void)
1399{
1400 atomic_dec(&netstamp_needed);
1401}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001402EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001404static inline void net_timestamp(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 if (atomic_read(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001407 __net_timestamp(skb);
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001408 else
1409 skb->tstamp.tv64 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
1412/*
1413 * Support routine. Sends outgoing frames to any network
1414 * taps currently in use.
1415 */
1416
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001417static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 struct packet_type *ptype;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001420
Jarek Poplawski8caf1532009-04-17 10:08:49 +00001421#ifdef CONFIG_NET_CLS_ACT
1422 if (!(skb->tstamp.tv64 && (G_TC_FROM(skb->tc_verd) & AT_INGRESS)))
1423 net_timestamp(skb);
1424#else
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001425 net_timestamp(skb);
Jarek Poplawski8caf1532009-04-17 10:08:49 +00001426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 rcu_read_lock();
1429 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1430 /* Never send packets back to the socket
1431 * they originated from - MvS (miquels@drinkel.ow.org)
1432 */
1433 if ((ptype->dev == dev || !ptype->dev) &&
1434 (ptype->af_packet_priv == NULL ||
1435 (struct sock *)ptype->af_packet_priv != skb->sk)) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001436 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (!skb2)
1438 break;
1439
1440 /* skb->nh should be correctly
1441 set by sender, so that the second statement is
1442 just protection against buggy protocols.
1443 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001444 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001446 if (skb_network_header(skb2) < skb2->data ||
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001447 skb2->network_header > skb2->tail) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (net_ratelimit())
1449 printk(KERN_CRIT "protocol %04x is "
1450 "buggy, dev %s\n",
1451 skb2->protocol, dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001452 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001455 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 skb2->pkt_type = PACKET_OUTGOING;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001457 ptype->func(skb2, skb->dev, ptype, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459 }
1460 rcu_read_unlock();
1461}
1462
Denis Vlasenko56079432006-03-29 15:57:29 -08001463
Jarek Poplawskidef82a12008-08-17 21:54:43 -07001464static inline void __netif_reschedule(struct Qdisc *q)
1465{
1466 struct softnet_data *sd;
1467 unsigned long flags;
1468
1469 local_irq_save(flags);
1470 sd = &__get_cpu_var(softnet_data);
1471 q->next_sched = sd->output_queue;
1472 sd->output_queue = q;
1473 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1474 local_irq_restore(flags);
1475}
1476
David S. Miller37437bb2008-07-16 02:15:04 -07001477void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08001478{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07001479 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
1480 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08001481}
1482EXPORT_SYMBOL(__netif_schedule);
1483
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001484void dev_kfree_skb_irq(struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08001485{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001486 if (atomic_dec_and_test(&skb->users)) {
1487 struct softnet_data *sd;
1488 unsigned long flags;
Denis Vlasenko56079432006-03-29 15:57:29 -08001489
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001490 local_irq_save(flags);
1491 sd = &__get_cpu_var(softnet_data);
1492 skb->next = sd->completion_queue;
1493 sd->completion_queue = skb;
1494 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1495 local_irq_restore(flags);
1496 }
Denis Vlasenko56079432006-03-29 15:57:29 -08001497}
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001498EXPORT_SYMBOL(dev_kfree_skb_irq);
Denis Vlasenko56079432006-03-29 15:57:29 -08001499
1500void dev_kfree_skb_any(struct sk_buff *skb)
1501{
1502 if (in_irq() || irqs_disabled())
1503 dev_kfree_skb_irq(skb);
1504 else
1505 dev_kfree_skb(skb);
1506}
1507EXPORT_SYMBOL(dev_kfree_skb_any);
1508
1509
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001510/**
1511 * netif_device_detach - mark device as removed
1512 * @dev: network device
1513 *
1514 * Mark device as removed from system and therefore no longer available.
1515 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001516void netif_device_detach(struct net_device *dev)
1517{
1518 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1519 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00001520 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08001521 }
1522}
1523EXPORT_SYMBOL(netif_device_detach);
1524
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001525/**
1526 * netif_device_attach - mark device as attached
1527 * @dev: network device
1528 *
1529 * Mark device as attached from system and restart if needed.
1530 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001531void netif_device_attach(struct net_device *dev)
1532{
1533 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1534 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00001535 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001536 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08001537 }
1538}
1539EXPORT_SYMBOL(netif_device_attach);
1540
Ben Hutchings6de329e2008-06-16 17:02:28 -07001541static bool can_checksum_protocol(unsigned long features, __be16 protocol)
1542{
1543 return ((features & NETIF_F_GEN_CSUM) ||
1544 ((features & NETIF_F_IP_CSUM) &&
1545 protocol == htons(ETH_P_IP)) ||
1546 ((features & NETIF_F_IPV6_CSUM) &&
Yi Zou1c8dbcf2009-02-27 14:06:54 -08001547 protocol == htons(ETH_P_IPV6)) ||
1548 ((features & NETIF_F_FCOE_CRC) &&
1549 protocol == htons(ETH_P_FCOE)));
Ben Hutchings6de329e2008-06-16 17:02:28 -07001550}
1551
1552static bool dev_can_checksum(struct net_device *dev, struct sk_buff *skb)
1553{
1554 if (can_checksum_protocol(dev->features, skb->protocol))
1555 return true;
1556
1557 if (skb->protocol == htons(ETH_P_8021Q)) {
1558 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
1559 if (can_checksum_protocol(dev->features & dev->vlan_features,
1560 veh->h_vlan_encapsulated_proto))
1561 return true;
1562 }
1563
1564 return false;
1565}
Denis Vlasenko56079432006-03-29 15:57:29 -08001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567/*
1568 * Invalidate hardware checksum when packet is to be mangled, and
1569 * complete checksum manually on outgoing path.
1570 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07001571int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Al Virod3bc23e2006-11-14 21:24:49 -08001573 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07001574 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Patrick McHardy84fa7932006-08-29 16:44:56 -07001576 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07001577 goto out_set_summed;
1578
1579 if (unlikely(skb_shinfo(skb)->gso_size)) {
Herbert Xua430a432006-07-08 13:34:56 -07001580 /* Let GSO fix up the checksum. */
1581 goto out_set_summed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
Herbert Xua0308472007-10-15 01:47:15 -07001584 offset = skb->csum_start - skb_headroom(skb);
1585 BUG_ON(offset >= skb_headlen(skb));
1586 csum = skb_checksum(skb, offset, skb->len - offset, 0);
1587
1588 offset += skb->csum_offset;
1589 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
1590
1591 if (skb_cloned(skb) &&
1592 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1594 if (ret)
1595 goto out;
1596 }
1597
Herbert Xua0308472007-10-15 01:47:15 -07001598 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07001599out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001601out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return ret;
1603}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001604EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001606/**
1607 * skb_gso_segment - Perform segmentation on skb.
1608 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07001609 * @features: features for the output path (see dev->features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001610 *
1611 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07001612 *
1613 * It may return NULL if the skb requires no segmentation. This is
1614 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001615 */
Herbert Xu576a30e2006-06-27 13:22:38 -07001616struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001617{
1618 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1619 struct packet_type *ptype;
Al Viro252e3342006-11-14 20:48:11 -08001620 __be16 type = skb->protocol;
Herbert Xua430a432006-07-08 13:34:56 -07001621 int err;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001622
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001623 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001624 skb->mac_len = skb->network_header - skb->mac_header;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001625 __skb_pull(skb, skb->mac_len);
1626
Herbert Xu67fd1a72009-01-19 16:26:44 -08001627 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
1628 struct net_device *dev = skb->dev;
1629 struct ethtool_drvinfo info = {};
1630
1631 if (dev && dev->ethtool_ops && dev->ethtool_ops->get_drvinfo)
1632 dev->ethtool_ops->get_drvinfo(dev, &info);
1633
1634 WARN(1, "%s: caps=(0x%lx, 0x%lx) len=%d data_len=%d "
1635 "ip_summed=%d",
1636 info.driver, dev ? dev->features : 0L,
1637 skb->sk ? skb->sk->sk_route_caps : 0L,
1638 skb->len, skb->data_len, skb->ip_summed);
1639
Herbert Xua430a432006-07-08 13:34:56 -07001640 if (skb_header_cloned(skb) &&
1641 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1642 return ERR_PTR(err);
1643 }
1644
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001645 rcu_read_lock();
Pavel Emelyanov82d8a862007-11-26 20:12:58 +08001646 list_for_each_entry_rcu(ptype,
1647 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001648 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
Patrick McHardy84fa7932006-08-29 16:44:56 -07001649 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
Herbert Xua430a432006-07-08 13:34:56 -07001650 err = ptype->gso_send_check(skb);
1651 segs = ERR_PTR(err);
1652 if (err || skb_gso_ok(skb, features))
1653 break;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001654 __skb_push(skb, (skb->data -
1655 skb_network_header(skb)));
Herbert Xua430a432006-07-08 13:34:56 -07001656 }
Herbert Xu576a30e2006-06-27 13:22:38 -07001657 segs = ptype->gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001658 break;
1659 }
1660 }
1661 rcu_read_unlock();
1662
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001663 __skb_push(skb, skb->data - skb_mac_header(skb));
Herbert Xu576a30e2006-06-27 13:22:38 -07001664
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001665 return segs;
1666}
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001667EXPORT_SYMBOL(skb_gso_segment);
1668
Herbert Xufb286bb2005-11-10 13:01:24 -08001669/* Take action when hardware reception checksum errors are detected. */
1670#ifdef CONFIG_BUG
1671void netdev_rx_csum_fault(struct net_device *dev)
1672{
1673 if (net_ratelimit()) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001674 printk(KERN_ERR "%s: hw csum failure.\n",
Stephen Hemminger246a4212005-12-08 15:21:39 -08001675 dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08001676 dump_stack();
1677 }
1678}
1679EXPORT_SYMBOL(netdev_rx_csum_fault);
1680#endif
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682/* Actually, we should eliminate this check as soon as we know, that:
1683 * 1. IOMMU is present and allows to map all the memory.
1684 * 2. No high memory really exists on this machine.
1685 */
1686
1687static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1688{
Herbert Xu3d3a8532006-06-27 13:33:10 -07001689#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 int i;
1691
1692 if (dev->features & NETIF_F_HIGHDMA)
1693 return 0;
1694
1695 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1696 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1697 return 1;
1698
Herbert Xu3d3a8532006-06-27 13:33:10 -07001699#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return 0;
1701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001703struct dev_gso_cb {
1704 void (*destructor)(struct sk_buff *skb);
1705};
1706
1707#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1708
1709static void dev_gso_skb_destructor(struct sk_buff *skb)
1710{
1711 struct dev_gso_cb *cb;
1712
1713 do {
1714 struct sk_buff *nskb = skb->next;
1715
1716 skb->next = nskb->next;
1717 nskb->next = NULL;
1718 kfree_skb(nskb);
1719 } while (skb->next);
1720
1721 cb = DEV_GSO_CB(skb);
1722 if (cb->destructor)
1723 cb->destructor(skb);
1724}
1725
1726/**
1727 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1728 * @skb: buffer to segment
1729 *
1730 * This function segments the given skb and stores the list of segments
1731 * in skb->next.
1732 */
1733static int dev_gso_segment(struct sk_buff *skb)
1734{
1735 struct net_device *dev = skb->dev;
1736 struct sk_buff *segs;
Herbert Xu576a30e2006-06-27 13:22:38 -07001737 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1738 NETIF_F_SG : 0);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001739
Herbert Xu576a30e2006-06-27 13:22:38 -07001740 segs = skb_gso_segment(skb, features);
1741
1742 /* Verifying header integrity only. */
1743 if (!segs)
1744 return 0;
1745
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001746 if (IS_ERR(segs))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001747 return PTR_ERR(segs);
1748
1749 skb->next = segs;
1750 DEV_GSO_CB(skb)->destructor = skb->destructor;
1751 skb->destructor = dev_gso_skb_destructor;
1752
1753 return 0;
1754}
1755
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001756int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
1757 struct netdev_queue *txq)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001758{
Stephen Hemminger00829822008-11-20 20:14:53 -08001759 const struct net_device_ops *ops = dev->netdev_ops;
Patrick Ohlyac45f602009-02-12 05:03:37 +00001760 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08001761
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001762 if (likely(!skb->next)) {
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -07001763 if (!list_empty(&ptype_all))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001764 dev_queue_xmit_nit(skb, dev);
1765
Herbert Xu576a30e2006-06-27 13:22:38 -07001766 if (netif_needs_gso(dev, skb)) {
1767 if (unlikely(dev_gso_segment(skb)))
1768 goto out_kfree_skb;
1769 if (skb->next)
1770 goto gso;
1771 }
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001772
Eric Dumazet93f154b2009-05-18 22:19:19 -07001773 /*
1774 * If device doesnt need skb->dst, release it right now while
1775 * its hot in this cpu cache
1776 */
Eric Dumazetadf30902009-06-02 05:19:30 +00001777 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
1778 skb_dst_drop(skb);
1779
Patrick Ohlyac45f602009-02-12 05:03:37 +00001780 rc = ops->ndo_start_xmit(skb, dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001781 if (rc == NETDEV_TX_OK)
Eric Dumazet08baf562009-05-25 22:58:01 -07001782 txq_trans_update(txq);
Patrick Ohlyac45f602009-02-12 05:03:37 +00001783 /*
1784 * TODO: if skb_orphan() was called by
1785 * dev->hard_start_xmit() (for example, the unmodified
1786 * igb driver does that; bnx2 doesn't), then
1787 * skb_tx_software_timestamp() will be unable to send
1788 * back the time stamp.
1789 *
1790 * How can this be prevented? Always create another
1791 * reference to the socket before calling
1792 * dev->hard_start_xmit()? Prevent that skb_orphan()
1793 * does anything in dev->hard_start_xmit() by clearing
1794 * the skb destructor before the call and restoring it
1795 * afterwards, then doing the skb_orphan() ourselves?
1796 */
Patrick Ohlyac45f602009-02-12 05:03:37 +00001797 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001798 }
1799
Herbert Xu576a30e2006-06-27 13:22:38 -07001800gso:
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001801 do {
1802 struct sk_buff *nskb = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001803
1804 skb->next = nskb->next;
1805 nskb->next = NULL;
Stephen Hemminger00829822008-11-20 20:14:53 -08001806 rc = ops->ndo_start_xmit(nskb, dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001807 if (unlikely(rc != NETDEV_TX_OK)) {
Michael Chanf54d9e82006-06-25 23:57:04 -07001808 nskb->next = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001809 skb->next = nskb;
1810 return rc;
1811 }
Eric Dumazet08baf562009-05-25 22:58:01 -07001812 txq_trans_update(txq);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001813 if (unlikely(netif_tx_queue_stopped(txq) && skb->next))
Michael Chanf54d9e82006-06-25 23:57:04 -07001814 return NETDEV_TX_BUSY;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001815 } while (skb->next);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001816
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001817 skb->destructor = DEV_GSO_CB(skb)->destructor;
1818
1819out_kfree_skb:
1820 kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001821 return NETDEV_TX_OK;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001822}
1823
David S. Miller70192982009-01-27 16:34:47 -08001824static u32 skb_tx_hashrnd;
David S. Millerb6b2fed2008-07-21 09:48:06 -07001825
Stephen Hemminger92477442009-03-21 13:39:26 -07001826u16 skb_tx_hash(const struct net_device *dev, const struct sk_buff *skb)
David S. Miller8f0f2222008-07-15 03:47:03 -07001827{
David S. Miller70192982009-01-27 16:34:47 -08001828 u32 hash;
David S. Millerb6b2fed2008-07-21 09:48:06 -07001829
David S. Miller513de112009-05-03 14:43:10 -07001830 if (skb_rx_queue_recorded(skb)) {
1831 hash = skb_get_rx_queue(skb);
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001832 while (unlikely(hash >= dev->real_num_tx_queues))
David S. Miller513de112009-05-03 14:43:10 -07001833 hash -= dev->real_num_tx_queues;
1834 return hash;
1835 }
Eric Dumazetec581f62009-05-01 09:05:06 -07001836
1837 if (skb->sk && skb->sk->sk_hash)
David S. Miller70192982009-01-27 16:34:47 -08001838 hash = skb->sk->sk_hash;
Eric Dumazetec581f62009-05-01 09:05:06 -07001839 else
David S. Miller70192982009-01-27 16:34:47 -08001840 hash = skb->protocol;
David S. Millerd5a9e242009-01-27 16:22:11 -08001841
David S. Miller70192982009-01-27 16:34:47 -08001842 hash = jhash_1word(hash, skb_tx_hashrnd);
David S. Millerd5a9e242009-01-27 16:22:11 -08001843
David S. Millerb6b2fed2008-07-21 09:48:06 -07001844 return (u16) (((u64) hash * dev->real_num_tx_queues) >> 32);
David S. Miller8f0f2222008-07-15 03:47:03 -07001845}
Stephen Hemminger92477442009-03-21 13:39:26 -07001846EXPORT_SYMBOL(skb_tx_hash);
David S. Miller8f0f2222008-07-15 03:47:03 -07001847
David S. Millere8a04642008-07-17 00:34:19 -07001848static struct netdev_queue *dev_pick_tx(struct net_device *dev,
1849 struct sk_buff *skb)
1850{
Krishna Kumara4ee3ce2009-10-19 23:50:07 +00001851 u16 queue_index;
1852 struct sock *sk = skb->sk;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001853
Krishna Kumara4ee3ce2009-10-19 23:50:07 +00001854 if (sk_tx_queue_recorded(sk)) {
1855 queue_index = sk_tx_queue_get(sk);
1856 } else {
1857 const struct net_device_ops *ops = dev->netdev_ops;
1858
1859 if (ops->ndo_select_queue) {
1860 queue_index = ops->ndo_select_queue(dev, skb);
1861 } else {
1862 queue_index = 0;
1863 if (dev->real_num_tx_queues > 1)
1864 queue_index = skb_tx_hash(dev, skb);
1865
1866 if (sk && sk->sk_dst_cache)
1867 sk_tx_queue_set(sk, queue_index);
1868 }
1869 }
David S. Millereae792b2008-07-15 03:03:33 -07001870
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001871 skb_set_queue_mapping(skb, queue_index);
1872 return netdev_get_tx_queue(dev, queue_index);
David S. Millere8a04642008-07-17 00:34:19 -07001873}
1874
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00001875static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
1876 struct net_device *dev,
1877 struct netdev_queue *txq)
1878{
1879 spinlock_t *root_lock = qdisc_lock(q);
1880 int rc;
1881
1882 spin_lock(root_lock);
1883 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
1884 kfree_skb(skb);
1885 rc = NET_XMIT_DROP;
1886 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
1887 !test_and_set_bit(__QDISC_STATE_RUNNING, &q->state)) {
1888 /*
1889 * This is a work-conserving queue; there are no old skbs
1890 * waiting to be sent out; and the qdisc is not running -
1891 * xmit the skb directly.
1892 */
1893 __qdisc_update_bstats(q, skb->len);
1894 if (sch_direct_xmit(skb, q, dev, txq, root_lock))
1895 __qdisc_run(q);
1896 else
1897 clear_bit(__QDISC_STATE_RUNNING, &q->state);
1898
1899 rc = NET_XMIT_SUCCESS;
1900 } else {
1901 rc = qdisc_enqueue_root(skb, q);
1902 qdisc_run(q);
1903 }
1904 spin_unlock(root_lock);
1905
1906 return rc;
1907}
1908
Dave Jonesd29f7492008-07-22 14:09:06 -07001909/**
1910 * dev_queue_xmit - transmit a buffer
1911 * @skb: buffer to transmit
1912 *
1913 * Queue a buffer for transmission to a network device. The caller must
1914 * have set the device and priority and built the buffer before calling
1915 * this function. The function can be called from an interrupt.
1916 *
1917 * A negative errno code is returned on a failure. A success does not
1918 * guarantee the frame will be transmitted as it may be dropped due
1919 * to congestion or traffic shaping.
1920 *
1921 * -----------------------------------------------------------------------------------
1922 * I notice this method can also return errors from the queue disciplines,
1923 * including NET_XMIT_DROP, which is a positive value. So, errors can also
1924 * be positive.
1925 *
1926 * Regardless of the return value, the skb is consumed, so it is currently
1927 * difficult to retry a send to this method. (You can bump the ref count
1928 * before sending to hold a reference for retry if you are careful.)
1929 *
1930 * When calling this method, interrupts MUST be enabled. This is because
1931 * the BH enable code must have IRQs enabled so that it will not deadlock.
1932 * --BLG
1933 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934int dev_queue_xmit(struct sk_buff *skb)
1935{
1936 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07001937 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 struct Qdisc *q;
1939 int rc = -ENOMEM;
1940
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001941 /* GSO will handle the following emulations directly. */
1942 if (netif_needs_gso(dev, skb))
1943 goto gso;
1944
David S. Miller4cf704f2009-06-09 00:18:51 -07001945 if (skb_has_frags(skb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 !(dev->features & NETIF_F_FRAGLIST) &&
Herbert Xu364c6ba2006-06-09 16:10:40 -07001947 __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 goto out_kfree_skb;
1949
1950 /* Fragmented skb is linearized if device does not support SG,
1951 * or if at least one of fragments is in highmem and device
1952 * does not support DMA from it.
1953 */
1954 if (skb_shinfo(skb)->nr_frags &&
1955 (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
Herbert Xu364c6ba2006-06-09 16:10:40 -07001956 __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 goto out_kfree_skb;
1958
1959 /* If packet is not checksummed and device does not support
1960 * checksumming for this protocol, complete checksumming here.
1961 */
Herbert Xu663ead32007-04-09 11:59:07 -07001962 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1963 skb_set_transport_header(skb, skb->csum_start -
1964 skb_headroom(skb));
Ben Hutchings6de329e2008-06-16 17:02:28 -07001965 if (!dev_can_checksum(dev, skb) && skb_checksum_help(skb))
1966 goto out_kfree_skb;
Herbert Xu663ead32007-04-09 11:59:07 -07001967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001969gso:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001970 /* Disable soft irqs for various locks below. Also
1971 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001973 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
David S. Millereae792b2008-07-15 03:03:33 -07001975 txq = dev_pick_tx(dev, skb);
David S. Millerb0e1e642008-07-08 17:42:10 -07001976 q = rcu_dereference(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978#ifdef CONFIG_NET_CLS_ACT
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001979 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980#endif
1981 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00001982 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07001983 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
1985
1986 /* The device has no queue. Common case for software devices:
1987 loopback, all the sorts of tunnels...
1988
Herbert Xu932ff272006-06-09 12:20:56 -07001989 Really, it is unlikely that netif_tx_lock protection is necessary
1990 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 counters.)
1992 However, it is possible, that they rely on protection
1993 made by us here.
1994
1995 Check this and shot the lock. It is not prone from deadlocks.
1996 Either shot noqueue qdisc, it is even simpler 8)
1997 */
1998 if (dev->flags & IFF_UP) {
1999 int cpu = smp_processor_id(); /* ok because BHs are off */
2000
David S. Millerc773e842008-07-08 23:13:53 -07002001 if (txq->xmit_lock_owner != cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
David S. Millerc773e842008-07-08 23:13:53 -07002003 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002005 if (!netif_tx_queue_stopped(txq)) {
Krishna Kumar03a9a442009-08-29 20:21:36 +00002006 rc = NET_XMIT_SUCCESS;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002007 if (!dev_hard_start_xmit(skb, dev, txq)) {
David S. Millerc773e842008-07-08 23:13:53 -07002008 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 goto out;
2010 }
2011 }
David S. Millerc773e842008-07-08 23:13:53 -07002012 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (net_ratelimit())
2014 printk(KERN_CRIT "Virtual device %s asks to "
2015 "queue packet!\n", dev->name);
2016 } else {
2017 /* Recursion is detected! It is possible,
2018 * unfortunately */
2019 if (net_ratelimit())
2020 printk(KERN_CRIT "Dead loop on virtual device "
2021 "%s, fix it urgently!\n", dev->name);
2022 }
2023 }
2024
2025 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07002026 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028out_kfree_skb:
2029 kfree_skb(skb);
2030 return rc;
2031out:
Herbert Xud4828d82006-06-22 02:28:18 -07002032 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return rc;
2034}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002035EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037
2038/*=======================================================================
2039 Receiver routines
2040 =======================================================================*/
2041
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07002042int netdev_max_backlog __read_mostly = 1000;
2043int netdev_budget __read_mostly = 300;
2044int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
2047
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049/**
2050 * netif_rx - post buffer to the network code
2051 * @skb: buffer to post
2052 *
2053 * This function receives a packet from a device driver and queues it for
2054 * the upper (protocol) levels to process. It always succeeds. The buffer
2055 * may be dropped during processing for congestion control or by the
2056 * protocol layers.
2057 *
2058 * return values:
2059 * NET_RX_SUCCESS (no congestion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 * NET_RX_DROP (packet was dropped)
2061 *
2062 */
2063
2064int netif_rx(struct sk_buff *skb)
2065{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 struct softnet_data *queue;
2067 unsigned long flags;
2068
2069 /* if netpoll wants it, pretend we never saw it */
2070 if (netpoll_rx(skb))
2071 return NET_RX_DROP;
2072
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07002073 if (!skb->tstamp.tv64)
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002074 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 /*
2077 * The code is rearranged so that the path is the most
2078 * short when CPU is congested, but is still operating.
2079 */
2080 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 queue = &__get_cpu_var(softnet_data);
2082
2083 __get_cpu_var(netdev_rx_stat).total++;
2084 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
2085 if (queue->input_pkt_queue.qlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086enqueue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 __skb_queue_tail(&queue->input_pkt_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 local_irq_restore(flags);
Stephen Hemminger34008d82005-06-23 20:10:00 -07002089 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002092 napi_schedule(&queue->backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 goto enqueue;
2094 }
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 __get_cpu_var(netdev_rx_stat).dropped++;
2097 local_irq_restore(flags);
2098
2099 kfree_skb(skb);
2100 return NET_RX_DROP;
2101}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002102EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104int netif_rx_ni(struct sk_buff *skb)
2105{
2106 int err;
2107
2108 preempt_disable();
2109 err = netif_rx(skb);
2110 if (local_softirq_pending())
2111 do_softirq();
2112 preempt_enable();
2113
2114 return err;
2115}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116EXPORT_SYMBOL(netif_rx_ni);
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118static void net_tx_action(struct softirq_action *h)
2119{
2120 struct softnet_data *sd = &__get_cpu_var(softnet_data);
2121
2122 if (sd->completion_queue) {
2123 struct sk_buff *clist;
2124
2125 local_irq_disable();
2126 clist = sd->completion_queue;
2127 sd->completion_queue = NULL;
2128 local_irq_enable();
2129
2130 while (clist) {
2131 struct sk_buff *skb = clist;
2132 clist = clist->next;
2133
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002134 WARN_ON(atomic_read(&skb->users));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 __kfree_skb(skb);
2136 }
2137 }
2138
2139 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07002140 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 local_irq_disable();
2143 head = sd->output_queue;
2144 sd->output_queue = NULL;
2145 local_irq_enable();
2146
2147 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07002148 struct Qdisc *q = head;
2149 spinlock_t *root_lock;
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 head = head->next_sched;
2152
David S. Miller5fb66222008-08-02 20:02:43 -07002153 root_lock = qdisc_lock(q);
David S. Miller37437bb2008-07-16 02:15:04 -07002154 if (spin_trylock(root_lock)) {
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002155 smp_mb__before_clear_bit();
2156 clear_bit(__QDISC_STATE_SCHED,
2157 &q->state);
David S. Miller37437bb2008-07-16 02:15:04 -07002158 qdisc_run(q);
2159 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 } else {
David S. Miller195648b2008-08-19 04:00:36 -07002161 if (!test_bit(__QDISC_STATE_DEACTIVATED,
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07002162 &q->state)) {
David S. Miller195648b2008-08-19 04:00:36 -07002163 __netif_reschedule(q);
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07002164 } else {
2165 smp_mb__before_clear_bit();
2166 clear_bit(__QDISC_STATE_SCHED,
2167 &q->state);
2168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170 }
2171 }
2172}
2173
Stephen Hemminger6f05f622007-03-08 20:46:03 -08002174static inline int deliver_skb(struct sk_buff *skb,
2175 struct packet_type *pt_prev,
2176 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
2178 atomic_inc(&skb->users);
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002179 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
2182#if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
Michał Mirosławda678292009-06-05 05:35:28 +00002183
2184#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
2185/* This hook is defined here for ATM LANE */
2186int (*br_fdb_test_addr_hook)(struct net_device *dev,
2187 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07002188EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00002189#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Stephen Hemminger6229e362007-03-21 13:38:47 -07002191/*
2192 * If bridge module is loaded call bridging hook.
2193 * returns NULL if packet was consumed.
2194 */
2195struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p,
2196 struct sk_buff *skb) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07002197EXPORT_SYMBOL_GPL(br_handle_frame_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00002198
Stephen Hemminger6229e362007-03-21 13:38:47 -07002199static inline struct sk_buff *handle_bridge(struct sk_buff *skb,
2200 struct packet_type **pt_prev, int *ret,
2201 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 struct net_bridge_port *port;
2204
Stephen Hemminger6229e362007-03-21 13:38:47 -07002205 if (skb->pkt_type == PACKET_LOOPBACK ||
2206 (port = rcu_dereference(skb->dev->br_port)) == NULL)
2207 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 if (*pt_prev) {
Stephen Hemminger6229e362007-03-21 13:38:47 -07002210 *ret = deliver_skb(skb, *pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 *pt_prev = NULL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002212 }
2213
Stephen Hemminger6229e362007-03-21 13:38:47 -07002214 return br_handle_frame_hook(port, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216#else
Stephen Hemminger6229e362007-03-21 13:38:47 -07002217#define handle_bridge(skb, pt_prev, ret, orig_dev) (skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218#endif
2219
Patrick McHardyb863ceb2007-07-14 18:55:06 -07002220#if defined(CONFIG_MACVLAN) || defined(CONFIG_MACVLAN_MODULE)
2221struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *skb) __read_mostly;
2222EXPORT_SYMBOL_GPL(macvlan_handle_frame_hook);
2223
2224static inline struct sk_buff *handle_macvlan(struct sk_buff *skb,
2225 struct packet_type **pt_prev,
2226 int *ret,
2227 struct net_device *orig_dev)
2228{
2229 if (skb->dev->macvlan_port == NULL)
2230 return skb;
2231
2232 if (*pt_prev) {
2233 *ret = deliver_skb(skb, *pt_prev, orig_dev);
2234 *pt_prev = NULL;
2235 }
2236 return macvlan_handle_frame_hook(skb);
2237}
2238#else
2239#define handle_macvlan(skb, pt_prev, ret, orig_dev) (skb)
2240#endif
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#ifdef CONFIG_NET_CLS_ACT
2243/* TODO: Maybe we should just force sch_ingress to be compiled in
2244 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
2245 * a compare and 2 stores extra right now if we dont have it on
2246 * but have CONFIG_NET_CLS_ACT
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002247 * NOTE: This doesnt stop any functionality; if you dont have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 * the ingress scheduler, you just cant add policies on ingress.
2249 *
2250 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002251static int ing_filter(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 struct net_device *dev = skb->dev;
Herbert Xuf697c3e2007-10-14 00:38:47 -07002254 u32 ttl = G_TC_RTTL(skb->tc_verd);
David S. Miller555353c2008-07-08 17:33:13 -07002255 struct netdev_queue *rxq;
2256 int result = TC_ACT_OK;
2257 struct Qdisc *q;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002258
Herbert Xuf697c3e2007-10-14 00:38:47 -07002259 if (MAX_RED_LOOP < ttl++) {
2260 printk(KERN_WARNING
2261 "Redir loop detected Dropping packet (%d->%d)\n",
2262 skb->iif, dev->ifindex);
2263 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265
Herbert Xuf697c3e2007-10-14 00:38:47 -07002266 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
2267 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
2268
David S. Miller555353c2008-07-08 17:33:13 -07002269 rxq = &dev->rx_queue;
2270
David S. Miller83874002008-07-17 00:53:03 -07002271 q = rxq->qdisc;
David S. Miller8d50b532008-07-30 02:37:46 -07002272 if (q != &noop_qdisc) {
David S. Miller83874002008-07-17 00:53:03 -07002273 spin_lock(qdisc_lock(q));
David S. Millera9312ae2008-08-17 21:51:03 -07002274 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
2275 result = qdisc_enqueue_root(skb, q);
David S. Miller83874002008-07-17 00:53:03 -07002276 spin_unlock(qdisc_lock(q));
2277 }
Herbert Xuf697c3e2007-10-14 00:38:47 -07002278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 return result;
2280}
Herbert Xuf697c3e2007-10-14 00:38:47 -07002281
2282static inline struct sk_buff *handle_ing(struct sk_buff *skb,
2283 struct packet_type **pt_prev,
2284 int *ret, struct net_device *orig_dev)
2285{
David S. Miller8d50b532008-07-30 02:37:46 -07002286 if (skb->dev->rx_queue.qdisc == &noop_qdisc)
Herbert Xuf697c3e2007-10-14 00:38:47 -07002287 goto out;
2288
2289 if (*pt_prev) {
2290 *ret = deliver_skb(skb, *pt_prev, orig_dev);
2291 *pt_prev = NULL;
2292 } else {
2293 /* Huh? Why does turning on AF_PACKET affect this? */
2294 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
2295 }
2296
2297 switch (ing_filter(skb)) {
2298 case TC_ACT_SHOT:
2299 case TC_ACT_STOLEN:
2300 kfree_skb(skb);
2301 return NULL;
2302 }
2303
2304out:
2305 skb->tc_verd = 0;
2306 return skb;
2307}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308#endif
2309
Patrick McHardybc1d0412008-07-14 22:49:30 -07002310/*
2311 * netif_nit_deliver - deliver received packets to network taps
2312 * @skb: buffer
2313 *
2314 * This function is used to deliver incoming packets to network
2315 * taps. It should be used when the normal netif_receive_skb path
2316 * is bypassed, for example because of VLAN acceleration.
2317 */
2318void netif_nit_deliver(struct sk_buff *skb)
2319{
2320 struct packet_type *ptype;
2321
2322 if (list_empty(&ptype_all))
2323 return;
2324
2325 skb_reset_network_header(skb);
2326 skb_reset_transport_header(skb);
2327 skb->mac_len = skb->network_header - skb->mac_header;
2328
2329 rcu_read_lock();
2330 list_for_each_entry_rcu(ptype, &ptype_all, list) {
2331 if (!ptype->dev || ptype->dev == skb->dev)
2332 deliver_skb(skb, ptype, skb->dev);
2333 }
2334 rcu_read_unlock();
2335}
2336
Stephen Hemminger3b582cc2007-11-01 02:21:47 -07002337/**
2338 * netif_receive_skb - process receive buffer from network
2339 * @skb: buffer to process
2340 *
2341 * netif_receive_skb() is the main receive data processing function.
2342 * It always succeeds. The buffer may be dropped during processing
2343 * for congestion control or by the protocol layers.
2344 *
2345 * This function may only be called from softirq context and interrupts
2346 * should be enabled.
2347 *
2348 * Return values (usually ignored):
2349 * NET_RX_SUCCESS: no congestion
2350 * NET_RX_DROP: packet was dropped
2351 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352int netif_receive_skb(struct sk_buff *skb)
2353{
2354 struct packet_type *ptype, *pt_prev;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002355 struct net_device *orig_dev;
Joe Eykholt0d7a3682008-07-02 18:22:01 -07002356 struct net_device *null_or_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08002358 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07002360 if (!skb->tstamp.tv64)
2361 net_timestamp(skb);
2362
Eric Dumazet05423b22009-10-26 18:40:35 -07002363 if (vlan_tx_tag_present(skb) && vlan_hwaccel_do_receive(skb))
Patrick McHardy9b22ea52008-11-04 14:49:57 -08002364 return NET_RX_SUCCESS;
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 /* if we've gotten here through NAPI, check netpoll */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002367 if (netpoll_receive_skb(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 return NET_RX_DROP;
2369
Patrick McHardyc01003c2007-03-29 11:46:52 -07002370 if (!skb->iif)
2371 skb->iif = skb->dev->ifindex;
David S. Miller86e65da2005-08-09 19:36:29 -07002372
Joe Eykholt0d7a3682008-07-02 18:22:01 -07002373 null_or_orig = NULL;
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07002374 orig_dev = skb->dev;
2375 if (orig_dev->master) {
Joe Eykholt0d7a3682008-07-02 18:22:01 -07002376 if (skb_bond_should_drop(skb))
2377 null_or_orig = orig_dev; /* deliver only exact match */
2378 else
2379 skb->dev = orig_dev->master;
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07002380 }
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 __get_cpu_var(netdev_rx_stat).total++;
2383
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07002384 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002385 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002386 skb->mac_len = skb->network_header - skb->mac_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 pt_prev = NULL;
2389
2390 rcu_read_lock();
2391
2392#ifdef CONFIG_NET_CLS_ACT
2393 if (skb->tc_verd & TC_NCLS) {
2394 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
2395 goto ncls;
2396 }
2397#endif
2398
2399 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Joe Eykholtf9823072008-07-02 18:22:02 -07002400 if (ptype->dev == null_or_orig || ptype->dev == skb->dev ||
2401 ptype->dev == orig_dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002402 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002403 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 pt_prev = ptype;
2405 }
2406 }
2407
2408#ifdef CONFIG_NET_CLS_ACT
Herbert Xuf697c3e2007-10-14 00:38:47 -07002409 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
2410 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412ncls:
2413#endif
2414
Stephen Hemminger6229e362007-03-21 13:38:47 -07002415 skb = handle_bridge(skb, &pt_prev, &ret, orig_dev);
2416 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 goto out;
Patrick McHardyb863ceb2007-07-14 18:55:06 -07002418 skb = handle_macvlan(skb, &pt_prev, &ret, orig_dev);
2419 if (!skb)
2420 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 type = skb->protocol;
Pavel Emelyanov82d8a862007-11-26 20:12:58 +08002423 list_for_each_entry_rcu(ptype,
2424 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (ptype->type == type &&
Joe Eykholtf9823072008-07-02 18:22:02 -07002426 (ptype->dev == null_or_orig || ptype->dev == skb->dev ||
2427 ptype->dev == orig_dev)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002428 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002429 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 pt_prev = ptype;
2431 }
2432 }
2433
2434 if (pt_prev) {
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002435 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 } else {
2437 kfree_skb(skb);
2438 /* Jamal, now you will not able to escape explaining
2439 * me how you were going to use this. :-)
2440 */
2441 ret = NET_RX_DROP;
2442 }
2443
2444out:
2445 rcu_read_unlock();
2446 return ret;
2447}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002448EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07002450/* Network device is going away, flush any packets still pending */
2451static void flush_backlog(void *arg)
2452{
2453 struct net_device *dev = arg;
2454 struct softnet_data *queue = &__get_cpu_var(softnet_data);
2455 struct sk_buff *skb, *tmp;
2456
2457 skb_queue_walk_safe(&queue->input_pkt_queue, skb, tmp)
2458 if (skb->dev == dev) {
2459 __skb_unlink(skb, &queue->input_pkt_queue);
2460 kfree_skb(skb);
2461 }
2462}
2463
Herbert Xud565b0a2008-12-15 23:38:52 -08002464static int napi_gro_complete(struct sk_buff *skb)
2465{
2466 struct packet_type *ptype;
2467 __be16 type = skb->protocol;
2468 struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK];
2469 int err = -ENOENT;
2470
Herbert Xufc59f9a2009-04-14 15:11:06 -07002471 if (NAPI_GRO_CB(skb)->count == 1) {
2472 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002473 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07002474 }
Herbert Xud565b0a2008-12-15 23:38:52 -08002475
2476 rcu_read_lock();
2477 list_for_each_entry_rcu(ptype, head, list) {
2478 if (ptype->type != type || ptype->dev || !ptype->gro_complete)
2479 continue;
2480
2481 err = ptype->gro_complete(skb);
2482 break;
2483 }
2484 rcu_read_unlock();
2485
2486 if (err) {
2487 WARN_ON(&ptype->list == head);
2488 kfree_skb(skb);
2489 return NET_RX_SUCCESS;
2490 }
2491
2492out:
Herbert Xud565b0a2008-12-15 23:38:52 -08002493 return netif_receive_skb(skb);
2494}
2495
2496void napi_gro_flush(struct napi_struct *napi)
2497{
2498 struct sk_buff *skb, *next;
2499
2500 for (skb = napi->gro_list; skb; skb = next) {
2501 next = skb->next;
2502 skb->next = NULL;
2503 napi_gro_complete(skb);
2504 }
2505
Herbert Xu4ae55442009-02-08 18:00:36 +00002506 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002507 napi->gro_list = NULL;
2508}
2509EXPORT_SYMBOL(napi_gro_flush);
2510
Ben Hutchings5b252f02009-10-29 07:17:09 +00002511enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08002512{
2513 struct sk_buff **pp = NULL;
2514 struct packet_type *ptype;
2515 __be16 type = skb->protocol;
2516 struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK];
Herbert Xu0da2afd2008-12-26 14:57:42 -08002517 int same_flow;
Herbert Xud565b0a2008-12-15 23:38:52 -08002518 int mac_len;
Ben Hutchings5b252f02009-10-29 07:17:09 +00002519 enum gro_result ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08002520
2521 if (!(skb->dev->features & NETIF_F_GRO))
2522 goto normal;
2523
David S. Miller4cf704f2009-06-09 00:18:51 -07002524 if (skb_is_gso(skb) || skb_has_frags(skb))
Herbert Xuf17f5c92009-01-14 14:36:12 -08002525 goto normal;
2526
Herbert Xud565b0a2008-12-15 23:38:52 -08002527 rcu_read_lock();
2528 list_for_each_entry_rcu(ptype, head, list) {
Herbert Xud565b0a2008-12-15 23:38:52 -08002529 if (ptype->type != type || ptype->dev || !ptype->gro_receive)
2530 continue;
2531
Herbert Xu86911732009-01-29 14:19:50 +00002532 skb_set_network_header(skb, skb_gro_offset(skb));
Herbert Xud565b0a2008-12-15 23:38:52 -08002533 mac_len = skb->network_header - skb->mac_header;
2534 skb->mac_len = mac_len;
2535 NAPI_GRO_CB(skb)->same_flow = 0;
2536 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08002537 NAPI_GRO_CB(skb)->free = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002538
Herbert Xud565b0a2008-12-15 23:38:52 -08002539 pp = ptype->gro_receive(&napi->gro_list, skb);
2540 break;
2541 }
2542 rcu_read_unlock();
2543
2544 if (&ptype->list == head)
2545 goto normal;
2546
Herbert Xu0da2afd2008-12-26 14:57:42 -08002547 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002548 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd2008-12-26 14:57:42 -08002549
Herbert Xud565b0a2008-12-15 23:38:52 -08002550 if (pp) {
2551 struct sk_buff *nskb = *pp;
2552
2553 *pp = nskb->next;
2554 nskb->next = NULL;
2555 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00002556 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08002557 }
2558
Herbert Xu0da2afd2008-12-26 14:57:42 -08002559 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08002560 goto ok;
2561
Herbert Xu4ae55442009-02-08 18:00:36 +00002562 if (NAPI_GRO_CB(skb)->flush || napi->gro_count >= MAX_GRO_SKBS)
Herbert Xud565b0a2008-12-15 23:38:52 -08002563 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08002564
Herbert Xu4ae55442009-02-08 18:00:36 +00002565 napi->gro_count++;
Herbert Xud565b0a2008-12-15 23:38:52 -08002566 NAPI_GRO_CB(skb)->count = 1;
Herbert Xu86911732009-01-29 14:19:50 +00002567 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08002568 skb->next = napi->gro_list;
2569 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002570 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08002571
Herbert Xuad0f9902009-02-01 01:24:55 -08002572pull:
Herbert Xucb189782009-05-26 18:50:31 +00002573 if (skb_headlen(skb) < skb_gro_offset(skb)) {
2574 int grow = skb_gro_offset(skb) - skb_headlen(skb);
2575
2576 BUG_ON(skb->end - skb->tail < grow);
2577
2578 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
2579
2580 skb->tail += grow;
2581 skb->data_len -= grow;
2582
2583 skb_shinfo(skb)->frags[0].page_offset += grow;
2584 skb_shinfo(skb)->frags[0].size -= grow;
2585
2586 if (unlikely(!skb_shinfo(skb)->frags[0].size)) {
2587 put_page(skb_shinfo(skb)->frags[0].page);
2588 memmove(skb_shinfo(skb)->frags,
2589 skb_shinfo(skb)->frags + 1,
2590 --skb_shinfo(skb)->nr_frags);
2591 }
Herbert Xuad0f9902009-02-01 01:24:55 -08002592 }
2593
Herbert Xud565b0a2008-12-15 23:38:52 -08002594ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002595 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08002596
2597normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08002598 ret = GRO_NORMAL;
2599 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08002600}
Herbert Xu96e93ea2009-01-06 10:49:34 -08002601EXPORT_SYMBOL(dev_gro_receive);
2602
Ben Hutchings5b252f02009-10-29 07:17:09 +00002603static gro_result_t
2604__napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08002605{
2606 struct sk_buff *p;
2607
Herbert Xud1c76af2009-03-16 10:50:02 -07002608 if (netpoll_rx_on(skb))
2609 return GRO_NORMAL;
2610
Herbert Xu96e93ea2009-01-06 10:49:34 -08002611 for (p = napi->gro_list; p; p = p->next) {
Stephen Hemmingerf2bde732009-04-01 11:20:20 +00002612 NAPI_GRO_CB(p)->same_flow = (p->dev == skb->dev)
2613 && !compare_ether_header(skb_mac_header(p),
2614 skb_gro_mac_header(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08002615 NAPI_GRO_CB(p)->flush = 0;
2616 }
2617
2618 return dev_gro_receive(napi, skb);
2619}
Herbert Xu5d38a072009-01-04 16:13:40 -08002620
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002621gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08002622{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002623 switch (ret) {
2624 case GRO_NORMAL:
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002625 if (netif_receive_skb(skb))
2626 ret = GRO_DROP;
2627 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08002628
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002629 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002630 case GRO_MERGED_FREE:
Herbert Xu5d38a072009-01-04 16:13:40 -08002631 kfree_skb(skb);
2632 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00002633
2634 case GRO_HELD:
2635 case GRO_MERGED:
2636 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08002637 }
2638
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002639 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002640}
2641EXPORT_SYMBOL(napi_skb_finish);
2642
Herbert Xu78a478d2009-05-26 18:50:21 +00002643void skb_gro_reset_offset(struct sk_buff *skb)
2644{
2645 NAPI_GRO_CB(skb)->data_offset = 0;
2646 NAPI_GRO_CB(skb)->frag0 = NULL;
Herbert Xu74895942009-05-26 18:50:27 +00002647 NAPI_GRO_CB(skb)->frag0_len = 0;
Herbert Xu78a478d2009-05-26 18:50:21 +00002648
Herbert Xu78d3fd02009-05-26 18:50:23 +00002649 if (skb->mac_header == skb->tail &&
Herbert Xu74895942009-05-26 18:50:27 +00002650 !PageHighMem(skb_shinfo(skb)->frags[0].page)) {
Herbert Xu78a478d2009-05-26 18:50:21 +00002651 NAPI_GRO_CB(skb)->frag0 =
2652 page_address(skb_shinfo(skb)->frags[0].page) +
2653 skb_shinfo(skb)->frags[0].page_offset;
Herbert Xu74895942009-05-26 18:50:27 +00002654 NAPI_GRO_CB(skb)->frag0_len = skb_shinfo(skb)->frags[0].size;
2655 }
Herbert Xu78a478d2009-05-26 18:50:21 +00002656}
2657EXPORT_SYMBOL(skb_gro_reset_offset);
2658
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002659gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002660{
Herbert Xu86911732009-01-29 14:19:50 +00002661 skb_gro_reset_offset(skb);
2662
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002663 return napi_skb_finish(__napi_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08002664}
2665EXPORT_SYMBOL(napi_gro_receive);
2666
Herbert Xu96e93ea2009-01-06 10:49:34 -08002667void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
2668{
Herbert Xu96e93ea2009-01-06 10:49:34 -08002669 __skb_pull(skb, skb_headlen(skb));
2670 skb_reserve(skb, NET_IP_ALIGN - skb_headroom(skb));
2671
2672 napi->skb = skb;
2673}
2674EXPORT_SYMBOL(napi_reuse_skb);
2675
Herbert Xu76620aa2009-04-16 02:02:07 -07002676struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08002677{
Herbert Xu5d38a072009-01-04 16:13:40 -08002678 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08002679
2680 if (!skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00002681 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
2682 if (skb)
2683 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08002684 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08002685 return skb;
2686}
Herbert Xu76620aa2009-04-16 02:02:07 -07002687EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08002688
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002689gro_result_t napi_frags_finish(struct napi_struct *napi, struct sk_buff *skb,
2690 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002691{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002692 switch (ret) {
2693 case GRO_NORMAL:
Herbert Xu86911732009-01-29 14:19:50 +00002694 case GRO_HELD:
Herbert Xu86911732009-01-29 14:19:50 +00002695 skb->protocol = eth_type_trans(skb, napi->dev);
2696
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002697 if (ret == GRO_HELD)
2698 skb_gro_pull(skb, -ETH_HLEN);
2699 else if (netif_receive_skb(skb))
2700 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00002701 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002702
2703 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002704 case GRO_MERGED_FREE:
2705 napi_reuse_skb(napi, skb);
2706 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00002707
2708 case GRO_MERGED:
2709 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002710 }
2711
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002712 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002713}
2714EXPORT_SYMBOL(napi_frags_finish);
2715
Herbert Xu76620aa2009-04-16 02:02:07 -07002716struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08002717{
Herbert Xu76620aa2009-04-16 02:02:07 -07002718 struct sk_buff *skb = napi->skb;
2719 struct ethhdr *eth;
Herbert Xua5b1cf22009-05-26 18:50:28 +00002720 unsigned int hlen;
2721 unsigned int off;
Herbert Xu76620aa2009-04-16 02:02:07 -07002722
2723 napi->skb = NULL;
2724
2725 skb_reset_mac_header(skb);
2726 skb_gro_reset_offset(skb);
2727
Herbert Xua5b1cf22009-05-26 18:50:28 +00002728 off = skb_gro_offset(skb);
2729 hlen = off + sizeof(*eth);
2730 eth = skb_gro_header_fast(skb, off);
2731 if (skb_gro_header_hard(skb, hlen)) {
2732 eth = skb_gro_header_slow(skb, hlen, off);
2733 if (unlikely(!eth)) {
2734 napi_reuse_skb(napi, skb);
2735 skb = NULL;
2736 goto out;
2737 }
Herbert Xu76620aa2009-04-16 02:02:07 -07002738 }
2739
2740 skb_gro_pull(skb, sizeof(*eth));
2741
2742 /*
2743 * This works because the only protocols we care about don't require
2744 * special handling. We'll fix it up properly at the end.
2745 */
2746 skb->protocol = eth->h_proto;
2747
2748out:
2749 return skb;
2750}
2751EXPORT_SYMBOL(napi_frags_skb);
2752
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002753gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07002754{
2755 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08002756
2757 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07002758 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08002759
Herbert Xu5d0d9be2009-01-29 14:19:48 +00002760 return napi_frags_finish(napi, skb, __napi_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08002761}
2762EXPORT_SYMBOL(napi_gro_frags);
2763
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002764static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
2766 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 struct softnet_data *queue = &__get_cpu_var(softnet_data);
2768 unsigned long start_time = jiffies;
2769
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002770 napi->weight = weight_p;
2771 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 local_irq_disable();
2775 skb = __skb_dequeue(&queue->input_pkt_queue);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002776 if (!skb) {
Herbert Xu8f1ead22009-03-26 00:59:10 -07002777 __napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002778 local_irq_enable();
Herbert Xu8f1ead22009-03-26 00:59:10 -07002779 break;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 local_irq_enable();
2782
Herbert Xu8f1ead22009-03-26 00:59:10 -07002783 netif_receive_skb(skb);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002784 } while (++work < quota && jiffies == start_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002786 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
2788
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002789/**
2790 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002791 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002792 *
2793 * The entry's receive function will be scheduled to run
2794 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08002795void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002796{
2797 unsigned long flags;
2798
2799 local_irq_save(flags);
2800 list_add_tail(&n->poll_list, &__get_cpu_var(softnet_data).poll_list);
2801 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2802 local_irq_restore(flags);
2803}
2804EXPORT_SYMBOL(__napi_schedule);
2805
Herbert Xud565b0a2008-12-15 23:38:52 -08002806void __napi_complete(struct napi_struct *n)
2807{
2808 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
2809 BUG_ON(n->gro_list);
2810
2811 list_del(&n->poll_list);
2812 smp_mb__before_clear_bit();
2813 clear_bit(NAPI_STATE_SCHED, &n->state);
2814}
2815EXPORT_SYMBOL(__napi_complete);
2816
2817void napi_complete(struct napi_struct *n)
2818{
2819 unsigned long flags;
2820
2821 /*
2822 * don't let napi dequeue from the cpu poll list
2823 * just in case its running on a different cpu
2824 */
2825 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
2826 return;
2827
2828 napi_gro_flush(n);
2829 local_irq_save(flags);
2830 __napi_complete(n);
2831 local_irq_restore(flags);
2832}
2833EXPORT_SYMBOL(napi_complete);
2834
2835void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
2836 int (*poll)(struct napi_struct *, int), int weight)
2837{
2838 INIT_LIST_HEAD(&napi->poll_list);
Herbert Xu4ae55442009-02-08 18:00:36 +00002839 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002840 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08002841 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08002842 napi->poll = poll;
2843 napi->weight = weight;
2844 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08002845 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08002846#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08002847 spin_lock_init(&napi->poll_lock);
2848 napi->poll_owner = -1;
2849#endif
2850 set_bit(NAPI_STATE_SCHED, &napi->state);
2851}
2852EXPORT_SYMBOL(netif_napi_add);
2853
2854void netif_napi_del(struct napi_struct *napi)
2855{
2856 struct sk_buff *skb, *next;
2857
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08002858 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07002859 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08002860
2861 for (skb = napi->gro_list; skb; skb = next) {
2862 next = skb->next;
2863 skb->next = NULL;
2864 kfree_skb(skb);
2865 }
2866
2867 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00002868 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08002869}
2870EXPORT_SYMBOL(netif_napi_del);
2871
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873static void net_rx_action(struct softirq_action *h)
2874{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002875 struct list_head *list = &__get_cpu_var(softnet_data).poll_list;
Stephen Hemminger24f8b232008-11-03 17:14:38 -08002876 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07002877 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07002878 void *have;
2879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 local_irq_disable();
2881
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002882 while (!list_empty(list)) {
2883 struct napi_struct *n;
2884 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002886 /* If softirq window is exhuasted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08002887 * Allow this to run for 2 jiffies since which will allow
2888 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002889 */
Stephen Hemminger24f8b232008-11-03 17:14:38 -08002890 if (unlikely(budget <= 0 || time_after(jiffies, time_limit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 goto softnet_break;
2892
2893 local_irq_enable();
2894
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002895 /* Even though interrupts have been re-enabled, this
2896 * access is safe because interrupts can only add new
2897 * entries to the tail of this list, and only ->poll()
2898 * calls can remove this head entry from the list.
2899 */
2900 n = list_entry(list->next, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002902 have = netpoll_poll_lock(n);
2903
2904 weight = n->weight;
2905
David S. Miller0a7606c2007-10-29 21:28:47 -07002906 /* This NAPI_STATE_SCHED test is for avoiding a race
2907 * with netpoll's poll_napi(). Only the entity which
2908 * obtains the lock and sees NAPI_STATE_SCHED set will
2909 * actually make the ->poll() call. Therefore we avoid
2910 * accidently calling ->poll() when NAPI is not scheduled.
2911 */
2912 work = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +00002913 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
David S. Miller0a7606c2007-10-29 21:28:47 -07002914 work = n->poll(n, weight);
Neil Horman4ea7e382009-05-21 07:36:08 +00002915 trace_napi_poll(n);
2916 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002917
2918 WARN_ON_ONCE(work > weight);
2919
2920 budget -= work;
2921
2922 local_irq_disable();
2923
2924 /* Drivers must not modify the NAPI state if they
2925 * consume the entire weight. In such cases this code
2926 * still "owns" the NAPI instance and therefore can
2927 * move the instance around on the list at-will.
2928 */
David S. Millerfed17f32008-01-07 21:00:40 -08002929 if (unlikely(work == weight)) {
Herbert Xuff780cd2009-06-26 19:27:04 -07002930 if (unlikely(napi_disable_pending(n))) {
2931 local_irq_enable();
2932 napi_complete(n);
2933 local_irq_disable();
2934 } else
David S. Millerfed17f32008-01-07 21:00:40 -08002935 list_move_tail(&n->poll_list, list);
2936 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002937
2938 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 }
2940out:
Shannon Nelson515e06c2007-06-23 23:09:23 -07002941 local_irq_enable();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002942
Chris Leechdb217332006-06-17 21:24:58 -07002943#ifdef CONFIG_NET_DMA
2944 /*
2945 * There may not be any more sk_buffs coming right now, so push
2946 * any pending DMA copies to hardware
2947 */
Dan Williams2ba05622009-01-06 11:38:14 -07002948 dma_issue_pending_all();
Chris Leechdb217332006-06-17 21:24:58 -07002949#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return;
2952
2953softnet_break:
2954 __get_cpu_var(netdev_rx_stat).time_squeeze++;
2955 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2956 goto out;
2957}
2958
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002959static gifconf_func_t *gifconf_list[NPROTO];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961/**
2962 * register_gifconf - register a SIOCGIF handler
2963 * @family: Address family
2964 * @gifconf: Function handler
2965 *
2966 * Register protocol dependent address dumping routines. The handler
2967 * that is passed must not be freed or reused until it has been replaced
2968 * by another handler.
2969 */
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002970int register_gifconf(unsigned int family, gifconf_func_t *gifconf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
2972 if (family >= NPROTO)
2973 return -EINVAL;
2974 gifconf_list[family] = gifconf;
2975 return 0;
2976}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002977EXPORT_SYMBOL(register_gifconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
2979
2980/*
2981 * Map an interface index to its name (SIOCGIFNAME)
2982 */
2983
2984/*
2985 * We need this ioctl for efficient implementation of the
2986 * if_indextoname() function required by the IPv6 API. Without
2987 * it, we would have to search all the interfaces to find a
2988 * match. --pb
2989 */
2990
Eric W. Biederman881d9662007-09-17 11:56:21 -07002991static int dev_ifname(struct net *net, struct ifreq __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
2993 struct net_device *dev;
2994 struct ifreq ifr;
2995
2996 /*
2997 * Fetch the caller's info block.
2998 */
2999
3000 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
3001 return -EFAULT;
3002
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00003003 rcu_read_lock();
3004 dev = dev_get_by_index_rcu(net, ifr.ifr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 if (!dev) {
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00003006 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 return -ENODEV;
3008 }
3009
3010 strcpy(ifr.ifr_name, dev->name);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00003011 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
3014 return -EFAULT;
3015 return 0;
3016}
3017
3018/*
3019 * Perform a SIOCGIFCONF call. This structure will change
3020 * size eventually, and there is nothing I can do about it.
3021 * Thus we will need a 'compatibility mode'.
3022 */
3023
Eric W. Biederman881d9662007-09-17 11:56:21 -07003024static int dev_ifconf(struct net *net, char __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
3026 struct ifconf ifc;
3027 struct net_device *dev;
3028 char __user *pos;
3029 int len;
3030 int total;
3031 int i;
3032
3033 /*
3034 * Fetch the caller's info block.
3035 */
3036
3037 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
3038 return -EFAULT;
3039
3040 pos = ifc.ifc_buf;
3041 len = ifc.ifc_len;
3042
3043 /*
3044 * Loop over the interfaces, and write an info block for each.
3045 */
3046
3047 total = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003048 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 for (i = 0; i < NPROTO; i++) {
3050 if (gifconf_list[i]) {
3051 int done;
3052 if (!pos)
3053 done = gifconf_list[i](dev, NULL, 0);
3054 else
3055 done = gifconf_list[i](dev, pos + total,
3056 len - total);
3057 if (done < 0)
3058 return -EFAULT;
3059 total += done;
3060 }
3061 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
3064 /*
3065 * All done. Write the updated control block back to the caller.
3066 */
3067 ifc.ifc_len = total;
3068
3069 /*
3070 * Both BSD and Solaris return 0 here, so we do too.
3071 */
3072 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
3073}
3074
3075#ifdef CONFIG_PROC_FS
3076/*
3077 * This is invoked by the /proc filesystem handler to display a device
3078 * in detail.
3079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080void *dev_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003081 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
Denis V. Luneve372c412007-11-19 22:31:54 -08003083 struct net *net = seq_file_net(seq);
Pavel Emelianov7562f872007-05-03 15:13:45 -07003084 loff_t off;
3085 struct net_device *dev;
3086
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003087 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07003088 if (!*pos)
3089 return SEQ_START_TOKEN;
3090
3091 off = 1;
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003092 for_each_netdev_rcu(net, dev)
Pavel Emelianov7562f872007-05-03 15:13:45 -07003093 if (off++ == *pos)
3094 return dev;
3095
3096 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
3098
3099void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3100{
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003101 struct net_device *dev = (v == SEQ_START_TOKEN) ?
3102 first_net_device(seq_file_net(seq)) :
3103 next_net_device((struct net_device *)v);
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 ++*pos;
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003106 return rcu_dereference(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107}
3108
3109void dev_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003110 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111{
Eric Dumazetc6d14c82009-11-04 05:43:23 -08003112 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113}
3114
3115static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
3116{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003117 const struct net_device_stats *stats = dev_get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Rusty Russell5a1b5892007-04-28 21:04:03 -07003119 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
3120 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
3121 dev->name, stats->rx_bytes, stats->rx_packets,
3122 stats->rx_errors,
3123 stats->rx_dropped + stats->rx_missed_errors,
3124 stats->rx_fifo_errors,
3125 stats->rx_length_errors + stats->rx_over_errors +
3126 stats->rx_crc_errors + stats->rx_frame_errors,
3127 stats->rx_compressed, stats->multicast,
3128 stats->tx_bytes, stats->tx_packets,
3129 stats->tx_errors, stats->tx_dropped,
3130 stats->tx_fifo_errors, stats->collisions,
3131 stats->tx_carrier_errors +
3132 stats->tx_aborted_errors +
3133 stats->tx_window_errors +
3134 stats->tx_heartbeat_errors,
3135 stats->tx_compressed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136}
3137
3138/*
3139 * Called from the PROCfs module. This now uses the new arbitrary sized
3140 * /proc/net interface to create /proc/net/dev
3141 */
3142static int dev_seq_show(struct seq_file *seq, void *v)
3143{
3144 if (v == SEQ_START_TOKEN)
3145 seq_puts(seq, "Inter-| Receive "
3146 " | Transmit\n"
3147 " face |bytes packets errs drop fifo frame "
3148 "compressed multicast|bytes packets errs "
3149 "drop fifo colls carrier compressed\n");
3150 else
3151 dev_seq_printf_stats(seq, v);
3152 return 0;
3153}
3154
3155static struct netif_rx_stats *softnet_get_online(loff_t *pos)
3156{
3157 struct netif_rx_stats *rc = NULL;
3158
Mike Travis0c0b0ac2008-05-02 16:43:08 -07003159 while (*pos < nr_cpu_ids)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003160 if (cpu_online(*pos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 rc = &per_cpu(netdev_rx_stat, *pos);
3162 break;
3163 } else
3164 ++*pos;
3165 return rc;
3166}
3167
3168static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
3169{
3170 return softnet_get_online(pos);
3171}
3172
3173static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3174{
3175 ++*pos;
3176 return softnet_get_online(pos);
3177}
3178
3179static void softnet_seq_stop(struct seq_file *seq, void *v)
3180{
3181}
3182
3183static int softnet_seq_show(struct seq_file *seq, void *v)
3184{
3185 struct netif_rx_stats *s = v;
3186
3187 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
Stephen Hemminger31aa02c2005-06-23 20:12:48 -07003188 s->total, s->dropped, s->time_squeeze, 0,
Stephen Hemmingerc1ebcdb2005-06-23 20:08:59 -07003189 0, 0, 0, 0, /* was fastroute */
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003190 s->cpu_collision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 return 0;
3192}
3193
Stephen Hemmingerf6908082007-03-12 14:34:29 -07003194static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 .start = dev_seq_start,
3196 .next = dev_seq_next,
3197 .stop = dev_seq_stop,
3198 .show = dev_seq_show,
3199};
3200
3201static int dev_seq_open(struct inode *inode, struct file *file)
3202{
Denis V. Luneve372c412007-11-19 22:31:54 -08003203 return seq_open_net(inode, file, &dev_seq_ops,
3204 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205}
3206
Arjan van de Ven9a321442007-02-12 00:55:35 -08003207static const struct file_operations dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 .owner = THIS_MODULE,
3209 .open = dev_seq_open,
3210 .read = seq_read,
3211 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003212 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213};
3214
Stephen Hemmingerf6908082007-03-12 14:34:29 -07003215static const struct seq_operations softnet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 .start = softnet_seq_start,
3217 .next = softnet_seq_next,
3218 .stop = softnet_seq_stop,
3219 .show = softnet_seq_show,
3220};
3221
3222static int softnet_seq_open(struct inode *inode, struct file *file)
3223{
3224 return seq_open(file, &softnet_seq_ops);
3225}
3226
Arjan van de Ven9a321442007-02-12 00:55:35 -08003227static const struct file_operations softnet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 .owner = THIS_MODULE,
3229 .open = softnet_seq_open,
3230 .read = seq_read,
3231 .llseek = seq_lseek,
3232 .release = seq_release,
3233};
3234
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003235static void *ptype_get_idx(loff_t pos)
3236{
3237 struct packet_type *pt = NULL;
3238 loff_t i = 0;
3239 int t;
3240
3241 list_for_each_entry_rcu(pt, &ptype_all, list) {
3242 if (i == pos)
3243 return pt;
3244 ++i;
3245 }
3246
Pavel Emelyanov82d8a862007-11-26 20:12:58 +08003247 for (t = 0; t < PTYPE_HASH_SIZE; t++) {
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003248 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
3249 if (i == pos)
3250 return pt;
3251 ++i;
3252 }
3253 }
3254 return NULL;
3255}
3256
3257static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemminger72348a42008-01-21 02:27:29 -08003258 __acquires(RCU)
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003259{
3260 rcu_read_lock();
3261 return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
3262}
3263
3264static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3265{
3266 struct packet_type *pt;
3267 struct list_head *nxt;
3268 int hash;
3269
3270 ++*pos;
3271 if (v == SEQ_START_TOKEN)
3272 return ptype_get_idx(0);
3273
3274 pt = v;
3275 nxt = pt->list.next;
3276 if (pt->type == htons(ETH_P_ALL)) {
3277 if (nxt != &ptype_all)
3278 goto found;
3279 hash = 0;
3280 nxt = ptype_base[0].next;
3281 } else
Pavel Emelyanov82d8a862007-11-26 20:12:58 +08003282 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003283
3284 while (nxt == &ptype_base[hash]) {
Pavel Emelyanov82d8a862007-11-26 20:12:58 +08003285 if (++hash >= PTYPE_HASH_SIZE)
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003286 return NULL;
3287 nxt = ptype_base[hash].next;
3288 }
3289found:
3290 return list_entry(nxt, struct packet_type, list);
3291}
3292
3293static void ptype_seq_stop(struct seq_file *seq, void *v)
Stephen Hemminger72348a42008-01-21 02:27:29 -08003294 __releases(RCU)
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003295{
3296 rcu_read_unlock();
3297}
3298
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003299static int ptype_seq_show(struct seq_file *seq, void *v)
3300{
3301 struct packet_type *pt = v;
3302
3303 if (v == SEQ_START_TOKEN)
3304 seq_puts(seq, "Type Device Function\n");
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003305 else if (pt->dev == NULL || dev_net(pt->dev) == seq_file_net(seq)) {
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003306 if (pt->type == htons(ETH_P_ALL))
3307 seq_puts(seq, "ALL ");
3308 else
3309 seq_printf(seq, "%04x", ntohs(pt->type));
3310
Alexey Dobriyan908cd2d2008-11-16 19:50:35 -08003311 seq_printf(seq, " %-8s %pF\n",
3312 pt->dev ? pt->dev->name : "", pt->func);
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003313 }
3314
3315 return 0;
3316}
3317
3318static const struct seq_operations ptype_seq_ops = {
3319 .start = ptype_seq_start,
3320 .next = ptype_seq_next,
3321 .stop = ptype_seq_stop,
3322 .show = ptype_seq_show,
3323};
3324
3325static int ptype_seq_open(struct inode *inode, struct file *file)
3326{
Pavel Emelyanov2feb27d2008-03-24 14:57:45 -07003327 return seq_open_net(inode, file, &ptype_seq_ops,
3328 sizeof(struct seq_net_private));
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003329}
3330
3331static const struct file_operations ptype_seq_fops = {
3332 .owner = THIS_MODULE,
3333 .open = ptype_seq_open,
3334 .read = seq_read,
3335 .llseek = seq_lseek,
Pavel Emelyanov2feb27d2008-03-24 14:57:45 -07003336 .release = seq_release_net,
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003337};
3338
3339
Pavel Emelyanov46650792007-10-08 20:38:39 -07003340static int __net_init dev_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341{
3342 int rc = -ENOMEM;
3343
Eric W. Biederman881d9662007-09-17 11:56:21 -07003344 if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 goto out;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003346 if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 goto out_dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003348 if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003349 goto out_softnet;
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07003350
Eric W. Biederman881d9662007-09-17 11:56:21 -07003351 if (wext_proc_init(net))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003352 goto out_ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 rc = 0;
3354out:
3355 return rc;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003356out_ptype:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003357 proc_net_remove(net, "ptype");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358out_softnet:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003359 proc_net_remove(net, "softnet_stat");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360out_dev:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003361 proc_net_remove(net, "dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 goto out;
3363}
Eric W. Biederman881d9662007-09-17 11:56:21 -07003364
Pavel Emelyanov46650792007-10-08 20:38:39 -07003365static void __net_exit dev_proc_net_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003366{
3367 wext_proc_exit(net);
3368
3369 proc_net_remove(net, "ptype");
3370 proc_net_remove(net, "softnet_stat");
3371 proc_net_remove(net, "dev");
3372}
3373
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003374static struct pernet_operations __net_initdata dev_proc_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07003375 .init = dev_proc_net_init,
3376 .exit = dev_proc_net_exit,
3377};
3378
3379static int __init dev_proc_init(void)
3380{
3381 return register_pernet_subsys(&dev_proc_ops);
3382}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383#else
3384#define dev_proc_init() 0
3385#endif /* CONFIG_PROC_FS */
3386
3387
3388/**
3389 * netdev_set_master - set up master/slave pair
3390 * @slave: slave device
3391 * @master: new master device
3392 *
3393 * Changes the master device of the slave. Pass %NULL to break the
3394 * bonding. The caller must hold the RTNL semaphore. On a failure
3395 * a negative errno code is returned. On success the reference counts
3396 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
3397 * function returns zero.
3398 */
3399int netdev_set_master(struct net_device *slave, struct net_device *master)
3400{
3401 struct net_device *old = slave->master;
3402
3403 ASSERT_RTNL();
3404
3405 if (master) {
3406 if (old)
3407 return -EBUSY;
3408 dev_hold(master);
3409 }
3410
3411 slave->master = master;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003412
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 synchronize_net();
3414
3415 if (old)
3416 dev_put(old);
3417
3418 if (master)
3419 slave->flags |= IFF_SLAVE;
3420 else
3421 slave->flags &= ~IFF_SLAVE;
3422
3423 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
3424 return 0;
3425}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003426EXPORT_SYMBOL(netdev_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003428static void dev_change_rx_flags(struct net_device *dev, int flags)
3429{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003430 const struct net_device_ops *ops = dev->netdev_ops;
3431
3432 if ((dev->flags & IFF_UP) && ops->ndo_change_rx_flags)
3433 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003434}
3435
Wang Chendad9b332008-06-18 01:48:28 -07003436static int __dev_set_promiscuity(struct net_device *dev, int inc)
Patrick McHardy4417da62007-06-27 01:28:10 -07003437{
3438 unsigned short old_flags = dev->flags;
David Howells8192b0c2008-11-14 10:39:10 +11003439 uid_t uid;
3440 gid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07003441
Patrick McHardy24023452007-07-14 18:51:31 -07003442 ASSERT_RTNL();
3443
Wang Chendad9b332008-06-18 01:48:28 -07003444 dev->flags |= IFF_PROMISC;
3445 dev->promiscuity += inc;
3446 if (dev->promiscuity == 0) {
3447 /*
3448 * Avoid overflow.
3449 * If inc causes overflow, untouch promisc and return error.
3450 */
3451 if (inc < 0)
3452 dev->flags &= ~IFF_PROMISC;
3453 else {
3454 dev->promiscuity -= inc;
3455 printk(KERN_WARNING "%s: promiscuity touches roof, "
3456 "set promiscuity failed, promiscuity feature "
3457 "of device might be broken.\n", dev->name);
3458 return -EOVERFLOW;
3459 }
3460 }
Patrick McHardy4417da62007-06-27 01:28:10 -07003461 if (dev->flags != old_flags) {
3462 printk(KERN_INFO "device %s %s promiscuous mode\n",
3463 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
3464 "left");
David Howells8192b0c2008-11-14 10:39:10 +11003465 if (audit_enabled) {
3466 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05003467 audit_log(current->audit_context, GFP_ATOMIC,
3468 AUDIT_ANOM_PROMISCUOUS,
3469 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
3470 dev->name, (dev->flags & IFF_PROMISC),
3471 (old_flags & IFF_PROMISC),
3472 audit_get_loginuid(current),
David Howells8192b0c2008-11-14 10:39:10 +11003473 uid, gid,
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05003474 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11003475 }
Patrick McHardy24023452007-07-14 18:51:31 -07003476
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003477 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07003478 }
Wang Chendad9b332008-06-18 01:48:28 -07003479 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07003480}
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482/**
3483 * dev_set_promiscuity - update promiscuity count on a device
3484 * @dev: device
3485 * @inc: modifier
3486 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07003487 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 * remains above zero the interface remains promiscuous. Once it hits zero
3489 * the device reverts back to normal filtering operation. A negative inc
3490 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07003491 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 */
Wang Chendad9b332008-06-18 01:48:28 -07003493int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494{
3495 unsigned short old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07003496 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Wang Chendad9b332008-06-18 01:48:28 -07003498 err = __dev_set_promiscuity(dev, inc);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07003499 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07003500 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07003501 if (dev->flags != old_flags)
3502 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07003503 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003505EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
3507/**
3508 * dev_set_allmulti - update allmulti count on a device
3509 * @dev: device
3510 * @inc: modifier
3511 *
3512 * Add or remove reception of all multicast frames to a device. While the
3513 * count in the device remains above zero the interface remains listening
3514 * to all interfaces. Once it hits zero the device reverts back to normal
3515 * filtering operation. A negative @inc value is used to drop the counter
3516 * when releasing a resource needing all multicasts.
Wang Chendad9b332008-06-18 01:48:28 -07003517 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 */
3519
Wang Chendad9b332008-06-18 01:48:28 -07003520int dev_set_allmulti(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521{
3522 unsigned short old_flags = dev->flags;
3523
Patrick McHardy24023452007-07-14 18:51:31 -07003524 ASSERT_RTNL();
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07003527 dev->allmulti += inc;
3528 if (dev->allmulti == 0) {
3529 /*
3530 * Avoid overflow.
3531 * If inc causes overflow, untouch allmulti and return error.
3532 */
3533 if (inc < 0)
3534 dev->flags &= ~IFF_ALLMULTI;
3535 else {
3536 dev->allmulti -= inc;
3537 printk(KERN_WARNING "%s: allmulti touches roof, "
3538 "set allmulti failed, allmulti feature of "
3539 "device might be broken.\n", dev->name);
3540 return -EOVERFLOW;
3541 }
3542 }
Patrick McHardy24023452007-07-14 18:51:31 -07003543 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07003544 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07003545 dev_set_rx_mode(dev);
Patrick McHardy24023452007-07-14 18:51:31 -07003546 }
Wang Chendad9b332008-06-18 01:48:28 -07003547 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07003548}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003549EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07003550
3551/*
3552 * Upload unicast and multicast address lists to device and
3553 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08003554 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07003555 * are present.
3556 */
3557void __dev_set_rx_mode(struct net_device *dev)
3558{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003559 const struct net_device_ops *ops = dev->netdev_ops;
3560
Patrick McHardy4417da62007-06-27 01:28:10 -07003561 /* dev_open will call this function so the list will stay sane. */
3562 if (!(dev->flags&IFF_UP))
3563 return;
3564
3565 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09003566 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07003567
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003568 if (ops->ndo_set_rx_mode)
3569 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003570 else {
3571 /* Unicast addresses changes may only happen under the rtnl,
3572 * therefore calling __dev_set_promiscuity here is safe.
3573 */
Jiri Pirko31278e72009-06-17 01:12:19 +00003574 if (dev->uc.count > 0 && !dev->uc_promisc) {
Patrick McHardy4417da62007-06-27 01:28:10 -07003575 __dev_set_promiscuity(dev, 1);
3576 dev->uc_promisc = 1;
Jiri Pirko31278e72009-06-17 01:12:19 +00003577 } else if (dev->uc.count == 0 && dev->uc_promisc) {
Patrick McHardy4417da62007-06-27 01:28:10 -07003578 __dev_set_promiscuity(dev, -1);
3579 dev->uc_promisc = 0;
3580 }
3581
Stephen Hemmingerd3147742008-11-19 21:32:24 -08003582 if (ops->ndo_set_multicast_list)
3583 ops->ndo_set_multicast_list(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003584 }
3585}
3586
3587void dev_set_rx_mode(struct net_device *dev)
3588{
David S. Millerb9e40852008-07-15 00:15:08 -07003589 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003590 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07003591 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592}
3593
Jiri Pirkof001fde2009-05-05 02:48:28 +00003594/* hw addresses list handling functions */
3595
Jiri Pirko31278e72009-06-17 01:12:19 +00003596static int __hw_addr_add(struct netdev_hw_addr_list *list, unsigned char *addr,
3597 int addr_len, unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00003598{
3599 struct netdev_hw_addr *ha;
3600 int alloc_size;
3601
3602 if (addr_len > MAX_ADDR_LEN)
3603 return -EINVAL;
3604
Jiri Pirko31278e72009-06-17 01:12:19 +00003605 list_for_each_entry(ha, &list->list, list) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00003606 if (!memcmp(ha->addr, addr, addr_len) &&
3607 ha->type == addr_type) {
3608 ha->refcount++;
3609 return 0;
3610 }
3611 }
3612
3613
Jiri Pirkof001fde2009-05-05 02:48:28 +00003614 alloc_size = sizeof(*ha);
3615 if (alloc_size < L1_CACHE_BYTES)
3616 alloc_size = L1_CACHE_BYTES;
3617 ha = kmalloc(alloc_size, GFP_ATOMIC);
3618 if (!ha)
3619 return -ENOMEM;
3620 memcpy(ha->addr, addr, addr_len);
3621 ha->type = addr_type;
Jiri Pirkoccffad22009-05-22 23:22:17 +00003622 ha->refcount = 1;
3623 ha->synced = false;
Jiri Pirko31278e72009-06-17 01:12:19 +00003624 list_add_tail_rcu(&ha->list, &list->list);
3625 list->count++;
Jiri Pirkof001fde2009-05-05 02:48:28 +00003626 return 0;
3627}
3628
3629static void ha_rcu_free(struct rcu_head *head)
3630{
3631 struct netdev_hw_addr *ha;
3632
3633 ha = container_of(head, struct netdev_hw_addr, rcu_head);
3634 kfree(ha);
3635}
3636
Jiri Pirko31278e72009-06-17 01:12:19 +00003637static int __hw_addr_del(struct netdev_hw_addr_list *list, unsigned char *addr,
3638 int addr_len, unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00003639{
3640 struct netdev_hw_addr *ha;
Jiri Pirkof001fde2009-05-05 02:48:28 +00003641
Jiri Pirko31278e72009-06-17 01:12:19 +00003642 list_for_each_entry(ha, &list->list, list) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00003643 if (!memcmp(ha->addr, addr, addr_len) &&
Jiri Pirkof001fde2009-05-05 02:48:28 +00003644 (ha->type == addr_type || !addr_type)) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00003645 if (--ha->refcount)
3646 return 0;
Jiri Pirkof001fde2009-05-05 02:48:28 +00003647 list_del_rcu(&ha->list);
3648 call_rcu(&ha->rcu_head, ha_rcu_free);
Jiri Pirko31278e72009-06-17 01:12:19 +00003649 list->count--;
Jiri Pirkof001fde2009-05-05 02:48:28 +00003650 return 0;
3651 }
3652 }
3653 return -ENOENT;
3654}
3655
Jiri Pirko31278e72009-06-17 01:12:19 +00003656static int __hw_addr_add_multiple(struct netdev_hw_addr_list *to_list,
3657 struct netdev_hw_addr_list *from_list,
3658 int addr_len,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003659 unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00003660{
3661 int err;
3662 struct netdev_hw_addr *ha, *ha2;
3663 unsigned char type;
3664
Jiri Pirko31278e72009-06-17 01:12:19 +00003665 list_for_each_entry(ha, &from_list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00003666 type = addr_type ? addr_type : ha->type;
Jiri Pirko31278e72009-06-17 01:12:19 +00003667 err = __hw_addr_add(to_list, ha->addr, addr_len, type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003668 if (err)
3669 goto unroll;
3670 }
3671 return 0;
3672
3673unroll:
Jiri Pirko31278e72009-06-17 01:12:19 +00003674 list_for_each_entry(ha2, &from_list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00003675 if (ha2 == ha)
3676 break;
3677 type = addr_type ? addr_type : ha2->type;
Jiri Pirko31278e72009-06-17 01:12:19 +00003678 __hw_addr_del(to_list, ha2->addr, addr_len, type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003679 }
3680 return err;
3681}
3682
Jiri Pirko31278e72009-06-17 01:12:19 +00003683static void __hw_addr_del_multiple(struct netdev_hw_addr_list *to_list,
3684 struct netdev_hw_addr_list *from_list,
3685 int addr_len,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003686 unsigned char addr_type)
Jiri Pirkof001fde2009-05-05 02:48:28 +00003687{
3688 struct netdev_hw_addr *ha;
3689 unsigned char type;
3690
Jiri Pirko31278e72009-06-17 01:12:19 +00003691 list_for_each_entry(ha, &from_list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00003692 type = addr_type ? addr_type : ha->type;
Jiri Pirko31278e72009-06-17 01:12:19 +00003693 __hw_addr_del(to_list, ha->addr, addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003694 }
3695}
3696
Jiri Pirko31278e72009-06-17 01:12:19 +00003697static int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
3698 struct netdev_hw_addr_list *from_list,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003699 int addr_len)
3700{
3701 int err = 0;
3702 struct netdev_hw_addr *ha, *tmp;
3703
Jiri Pirko31278e72009-06-17 01:12:19 +00003704 list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00003705 if (!ha->synced) {
Jiri Pirko31278e72009-06-17 01:12:19 +00003706 err = __hw_addr_add(to_list, ha->addr,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003707 addr_len, ha->type);
3708 if (err)
3709 break;
3710 ha->synced = true;
3711 ha->refcount++;
3712 } else if (ha->refcount == 1) {
Jiri Pirko31278e72009-06-17 01:12:19 +00003713 __hw_addr_del(to_list, ha->addr, addr_len, ha->type);
3714 __hw_addr_del(from_list, ha->addr, addr_len, ha->type);
Jiri Pirkoccffad22009-05-22 23:22:17 +00003715 }
3716 }
3717 return err;
3718}
3719
Jiri Pirko31278e72009-06-17 01:12:19 +00003720static void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
3721 struct netdev_hw_addr_list *from_list,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003722 int addr_len)
3723{
3724 struct netdev_hw_addr *ha, *tmp;
3725
Jiri Pirko31278e72009-06-17 01:12:19 +00003726 list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00003727 if (ha->synced) {
Jiri Pirko31278e72009-06-17 01:12:19 +00003728 __hw_addr_del(to_list, ha->addr,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003729 addr_len, ha->type);
3730 ha->synced = false;
Jiri Pirko31278e72009-06-17 01:12:19 +00003731 __hw_addr_del(from_list, ha->addr,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003732 addr_len, ha->type);
3733 }
3734 }
3735}
3736
Jiri Pirko31278e72009-06-17 01:12:19 +00003737static void __hw_addr_flush(struct netdev_hw_addr_list *list)
Jiri Pirkof001fde2009-05-05 02:48:28 +00003738{
3739 struct netdev_hw_addr *ha, *tmp;
3740
Jiri Pirko31278e72009-06-17 01:12:19 +00003741 list_for_each_entry_safe(ha, tmp, &list->list, list) {
Jiri Pirkof001fde2009-05-05 02:48:28 +00003742 list_del_rcu(&ha->list);
3743 call_rcu(&ha->rcu_head, ha_rcu_free);
3744 }
Jiri Pirko31278e72009-06-17 01:12:19 +00003745 list->count = 0;
3746}
3747
3748static void __hw_addr_init(struct netdev_hw_addr_list *list)
3749{
3750 INIT_LIST_HEAD(&list->list);
3751 list->count = 0;
Jiri Pirkof001fde2009-05-05 02:48:28 +00003752}
3753
3754/* Device addresses handling functions */
3755
3756static void dev_addr_flush(struct net_device *dev)
3757{
3758 /* rtnl_mutex must be held here */
3759
Jiri Pirko31278e72009-06-17 01:12:19 +00003760 __hw_addr_flush(&dev->dev_addrs);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003761 dev->dev_addr = NULL;
3762}
3763
3764static int dev_addr_init(struct net_device *dev)
3765{
3766 unsigned char addr[MAX_ADDR_LEN];
3767 struct netdev_hw_addr *ha;
3768 int err;
3769
3770 /* rtnl_mutex must be held here */
3771
Jiri Pirko31278e72009-06-17 01:12:19 +00003772 __hw_addr_init(&dev->dev_addrs);
Eric Dumazet0c279222009-06-08 03:49:24 +00003773 memset(addr, 0, sizeof(addr));
Jiri Pirko31278e72009-06-17 01:12:19 +00003774 err = __hw_addr_add(&dev->dev_addrs, addr, sizeof(addr),
Jiri Pirkof001fde2009-05-05 02:48:28 +00003775 NETDEV_HW_ADDR_T_LAN);
3776 if (!err) {
3777 /*
3778 * Get the first (previously created) address from the list
3779 * and set dev_addr pointer to this location.
3780 */
Jiri Pirko31278e72009-06-17 01:12:19 +00003781 ha = list_first_entry(&dev->dev_addrs.list,
Jiri Pirkof001fde2009-05-05 02:48:28 +00003782 struct netdev_hw_addr, list);
3783 dev->dev_addr = ha->addr;
3784 }
3785 return err;
3786}
3787
3788/**
3789 * dev_addr_add - Add a device address
3790 * @dev: device
3791 * @addr: address to add
3792 * @addr_type: address type
3793 *
3794 * Add a device address to the device or increase the reference count if
3795 * it already exists.
3796 *
3797 * The caller must hold the rtnl_mutex.
3798 */
3799int dev_addr_add(struct net_device *dev, unsigned char *addr,
3800 unsigned char addr_type)
3801{
3802 int err;
3803
3804 ASSERT_RTNL();
3805
Jiri Pirko31278e72009-06-17 01:12:19 +00003806 err = __hw_addr_add(&dev->dev_addrs, addr, dev->addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003807 if (!err)
3808 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
3809 return err;
3810}
3811EXPORT_SYMBOL(dev_addr_add);
3812
3813/**
3814 * dev_addr_del - Release a device address.
3815 * @dev: device
3816 * @addr: address to delete
3817 * @addr_type: address type
3818 *
3819 * Release reference to a device address and remove it from the device
3820 * if the reference count drops to zero.
3821 *
3822 * The caller must hold the rtnl_mutex.
3823 */
3824int dev_addr_del(struct net_device *dev, unsigned char *addr,
3825 unsigned char addr_type)
3826{
3827 int err;
Jiri Pirkoccffad22009-05-22 23:22:17 +00003828 struct netdev_hw_addr *ha;
Jiri Pirkof001fde2009-05-05 02:48:28 +00003829
3830 ASSERT_RTNL();
3831
Jiri Pirkoccffad22009-05-22 23:22:17 +00003832 /*
3833 * We can not remove the first address from the list because
3834 * dev->dev_addr points to that.
3835 */
Jiri Pirko31278e72009-06-17 01:12:19 +00003836 ha = list_first_entry(&dev->dev_addrs.list,
3837 struct netdev_hw_addr, list);
Jiri Pirkoccffad22009-05-22 23:22:17 +00003838 if (ha->addr == dev->dev_addr && ha->refcount == 1)
3839 return -ENOENT;
3840
Jiri Pirko31278e72009-06-17 01:12:19 +00003841 err = __hw_addr_del(&dev->dev_addrs, addr, dev->addr_len,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003842 addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003843 if (!err)
3844 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
3845 return err;
3846}
3847EXPORT_SYMBOL(dev_addr_del);
3848
3849/**
3850 * dev_addr_add_multiple - Add device addresses from another device
3851 * @to_dev: device to which addresses will be added
3852 * @from_dev: device from which addresses will be added
3853 * @addr_type: address type - 0 means type will be used from from_dev
3854 *
3855 * Add device addresses of the one device to another.
3856 **
3857 * The caller must hold the rtnl_mutex.
3858 */
3859int dev_addr_add_multiple(struct net_device *to_dev,
3860 struct net_device *from_dev,
3861 unsigned char addr_type)
3862{
3863 int err;
3864
3865 ASSERT_RTNL();
3866
3867 if (from_dev->addr_len != to_dev->addr_len)
3868 return -EINVAL;
Jiri Pirko31278e72009-06-17 01:12:19 +00003869 err = __hw_addr_add_multiple(&to_dev->dev_addrs, &from_dev->dev_addrs,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003870 to_dev->addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003871 if (!err)
3872 call_netdevice_notifiers(NETDEV_CHANGEADDR, to_dev);
3873 return err;
3874}
3875EXPORT_SYMBOL(dev_addr_add_multiple);
3876
3877/**
3878 * dev_addr_del_multiple - Delete device addresses by another device
3879 * @to_dev: device where the addresses will be deleted
3880 * @from_dev: device by which addresses the addresses will be deleted
3881 * @addr_type: address type - 0 means type will used from from_dev
3882 *
3883 * Deletes addresses in to device by the list of addresses in from device.
3884 *
3885 * The caller must hold the rtnl_mutex.
3886 */
3887int dev_addr_del_multiple(struct net_device *to_dev,
3888 struct net_device *from_dev,
3889 unsigned char addr_type)
3890{
3891 ASSERT_RTNL();
3892
3893 if (from_dev->addr_len != to_dev->addr_len)
3894 return -EINVAL;
Jiri Pirko31278e72009-06-17 01:12:19 +00003895 __hw_addr_del_multiple(&to_dev->dev_addrs, &from_dev->dev_addrs,
Jiri Pirkoccffad22009-05-22 23:22:17 +00003896 to_dev->addr_len, addr_type);
Jiri Pirkof001fde2009-05-05 02:48:28 +00003897 call_netdevice_notifiers(NETDEV_CHANGEADDR, to_dev);
3898 return 0;
3899}
3900EXPORT_SYMBOL(dev_addr_del_multiple);
3901
Jiri Pirko31278e72009-06-17 01:12:19 +00003902/* multicast addresses handling functions */
Jiri Pirkof001fde2009-05-05 02:48:28 +00003903
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07003904int __dev_addr_delete(struct dev_addr_list **list, int *count,
3905 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07003906{
3907 struct dev_addr_list *da;
3908
3909 for (; (da = *list) != NULL; list = &da->next) {
3910 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
3911 alen == da->da_addrlen) {
3912 if (glbl) {
3913 int old_glbl = da->da_gusers;
3914 da->da_gusers = 0;
3915 if (old_glbl == 0)
3916 break;
3917 }
3918 if (--da->da_users)
3919 return 0;
3920
3921 *list = da->next;
3922 kfree(da);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07003923 (*count)--;
Patrick McHardybf742482007-06-27 01:26:19 -07003924 return 0;
3925 }
3926 }
3927 return -ENOENT;
3928}
3929
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07003930int __dev_addr_add(struct dev_addr_list **list, int *count,
3931 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07003932{
3933 struct dev_addr_list *da;
3934
3935 for (da = *list; da != NULL; da = da->next) {
3936 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
3937 da->da_addrlen == alen) {
3938 if (glbl) {
3939 int old_glbl = da->da_gusers;
3940 da->da_gusers = 1;
3941 if (old_glbl)
3942 return 0;
3943 }
3944 da->da_users++;
3945 return 0;
3946 }
3947 }
3948
Jorge Boncompte [DTI2]12aa3432008-02-19 14:17:04 -08003949 da = kzalloc(sizeof(*da), GFP_ATOMIC);
Patrick McHardybf742482007-06-27 01:26:19 -07003950 if (da == NULL)
3951 return -ENOMEM;
3952 memcpy(da->da_addr, addr, alen);
3953 da->da_addrlen = alen;
3954 da->da_users = 1;
3955 da->da_gusers = glbl ? 1 : 0;
3956 da->next = *list;
3957 *list = da;
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07003958 (*count)++;
Patrick McHardybf742482007-06-27 01:26:19 -07003959 return 0;
3960}
3961
Patrick McHardy4417da62007-06-27 01:28:10 -07003962/**
3963 * dev_unicast_delete - Release secondary unicast address.
3964 * @dev: device
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07003965 * @addr: address to delete
Patrick McHardy4417da62007-06-27 01:28:10 -07003966 *
3967 * Release reference to a secondary unicast address and remove it
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07003968 * from the device if the reference count drops to zero.
Patrick McHardy4417da62007-06-27 01:28:10 -07003969 *
3970 * The caller must hold the rtnl_mutex.
3971 */
Jiri Pirkoccffad22009-05-22 23:22:17 +00003972int dev_unicast_delete(struct net_device *dev, void *addr)
Patrick McHardy4417da62007-06-27 01:28:10 -07003973{
3974 int err;
3975
3976 ASSERT_RTNL();
3977
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00003978 netif_addr_lock_bh(dev);
Jiri Pirko31278e72009-06-17 01:12:19 +00003979 err = __hw_addr_del(&dev->uc, addr, dev->addr_len,
3980 NETDEV_HW_ADDR_T_UNICAST);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07003981 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07003982 __dev_set_rx_mode(dev);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00003983 netif_addr_unlock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07003984 return err;
3985}
3986EXPORT_SYMBOL(dev_unicast_delete);
3987
3988/**
3989 * dev_unicast_add - add a secondary unicast address
3990 * @dev: device
Wang Chen5dbaec52008-06-27 19:35:16 -07003991 * @addr: address to add
Patrick McHardy4417da62007-06-27 01:28:10 -07003992 *
3993 * Add a secondary unicast address to the device or increase
3994 * the reference count if it already exists.
3995 *
3996 * The caller must hold the rtnl_mutex.
3997 */
Jiri Pirkoccffad22009-05-22 23:22:17 +00003998int dev_unicast_add(struct net_device *dev, void *addr)
Patrick McHardy4417da62007-06-27 01:28:10 -07003999{
4000 int err;
4001
4002 ASSERT_RTNL();
4003
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004004 netif_addr_lock_bh(dev);
Jiri Pirko31278e72009-06-17 01:12:19 +00004005 err = __hw_addr_add(&dev->uc, addr, dev->addr_len,
4006 NETDEV_HW_ADDR_T_UNICAST);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07004007 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07004008 __dev_set_rx_mode(dev);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004009 netif_addr_unlock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07004010 return err;
4011}
4012EXPORT_SYMBOL(dev_unicast_add);
4013
Chris Leeche83a2ea2008-01-31 16:53:23 -08004014int __dev_addr_sync(struct dev_addr_list **to, int *to_count,
4015 struct dev_addr_list **from, int *from_count)
4016{
4017 struct dev_addr_list *da, *next;
4018 int err = 0;
4019
4020 da = *from;
4021 while (da != NULL) {
4022 next = da->next;
4023 if (!da->da_synced) {
4024 err = __dev_addr_add(to, to_count,
4025 da->da_addr, da->da_addrlen, 0);
4026 if (err < 0)
4027 break;
4028 da->da_synced = 1;
4029 da->da_users++;
4030 } else if (da->da_users == 1) {
4031 __dev_addr_delete(to, to_count,
4032 da->da_addr, da->da_addrlen, 0);
4033 __dev_addr_delete(from, from_count,
4034 da->da_addr, da->da_addrlen, 0);
4035 }
4036 da = next;
4037 }
4038 return err;
4039}
Johannes Bergc4029082009-06-17 17:43:30 +02004040EXPORT_SYMBOL_GPL(__dev_addr_sync);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004041
4042void __dev_addr_unsync(struct dev_addr_list **to, int *to_count,
4043 struct dev_addr_list **from, int *from_count)
4044{
4045 struct dev_addr_list *da, *next;
4046
4047 da = *from;
4048 while (da != NULL) {
4049 next = da->next;
4050 if (da->da_synced) {
4051 __dev_addr_delete(to, to_count,
4052 da->da_addr, da->da_addrlen, 0);
4053 da->da_synced = 0;
4054 __dev_addr_delete(from, from_count,
4055 da->da_addr, da->da_addrlen, 0);
4056 }
4057 da = next;
4058 }
4059}
Johannes Bergc4029082009-06-17 17:43:30 +02004060EXPORT_SYMBOL_GPL(__dev_addr_unsync);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004061
4062/**
4063 * dev_unicast_sync - Synchronize device's unicast list to another device
4064 * @to: destination device
4065 * @from: source device
4066 *
4067 * Add newly added addresses to the destination device and release
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004068 * addresses that have no users left. The source device must be
4069 * locked by netif_tx_lock_bh.
Chris Leeche83a2ea2008-01-31 16:53:23 -08004070 *
4071 * This function is intended to be called from the dev->set_rx_mode
4072 * function of layered software devices.
4073 */
4074int dev_unicast_sync(struct net_device *to, struct net_device *from)
4075{
4076 int err = 0;
4077
Jiri Pirkoccffad22009-05-22 23:22:17 +00004078 if (to->addr_len != from->addr_len)
4079 return -EINVAL;
4080
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004081 netif_addr_lock_bh(to);
Jiri Pirko31278e72009-06-17 01:12:19 +00004082 err = __hw_addr_sync(&to->uc, &from->uc, to->addr_len);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004083 if (!err)
4084 __dev_set_rx_mode(to);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004085 netif_addr_unlock_bh(to);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004086 return err;
4087}
4088EXPORT_SYMBOL(dev_unicast_sync);
4089
4090/**
Randy Dunlapbc2cda12008-02-13 15:03:25 -08004091 * dev_unicast_unsync - Remove synchronized addresses from the destination device
Chris Leeche83a2ea2008-01-31 16:53:23 -08004092 * @to: destination device
4093 * @from: source device
4094 *
4095 * Remove all addresses that were added to the destination device by
4096 * dev_unicast_sync(). This function is intended to be called from the
4097 * dev->stop function of layered software devices.
4098 */
4099void dev_unicast_unsync(struct net_device *to, struct net_device *from)
4100{
Jiri Pirkoccffad22009-05-22 23:22:17 +00004101 if (to->addr_len != from->addr_len)
4102 return;
4103
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004104 netif_addr_lock_bh(from);
4105 netif_addr_lock(to);
Jiri Pirko31278e72009-06-17 01:12:19 +00004106 __hw_addr_unsync(&to->uc, &from->uc, to->addr_len);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004107 __dev_set_rx_mode(to);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004108 netif_addr_unlock(to);
4109 netif_addr_unlock_bh(from);
Chris Leeche83a2ea2008-01-31 16:53:23 -08004110}
4111EXPORT_SYMBOL(dev_unicast_unsync);
4112
Jiri Pirkoccffad22009-05-22 23:22:17 +00004113static void dev_unicast_flush(struct net_device *dev)
4114{
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004115 netif_addr_lock_bh(dev);
Jiri Pirko31278e72009-06-17 01:12:19 +00004116 __hw_addr_flush(&dev->uc);
Jiri Pirkoa6ac65d2009-07-30 01:06:12 +00004117 netif_addr_unlock_bh(dev);
Jiri Pirkoccffad22009-05-22 23:22:17 +00004118}
4119
4120static void dev_unicast_init(struct net_device *dev)
4121{
Jiri Pirko31278e72009-06-17 01:12:19 +00004122 __hw_addr_init(&dev->uc);
Jiri Pirkoccffad22009-05-22 23:22:17 +00004123}
4124
4125
Denis Cheng12972622007-07-18 02:12:56 -07004126static void __dev_addr_discard(struct dev_addr_list **list)
4127{
4128 struct dev_addr_list *tmp;
4129
4130 while (*list != NULL) {
4131 tmp = *list;
4132 *list = tmp->next;
4133 if (tmp->da_users > tmp->da_gusers)
4134 printk("__dev_addr_discard: address leakage! "
4135 "da_users=%d\n", tmp->da_users);
4136 kfree(tmp);
4137 }
4138}
4139
Denis Cheng26cc2522007-07-18 02:12:03 -07004140static void dev_addr_discard(struct net_device *dev)
Patrick McHardy4417da62007-06-27 01:28:10 -07004141{
David S. Millerb9e40852008-07-15 00:15:08 -07004142 netif_addr_lock_bh(dev);
Denis Cheng26cc2522007-07-18 02:12:03 -07004143
Denis Cheng456ad752007-07-18 02:10:54 -07004144 __dev_addr_discard(&dev->mc_list);
4145 dev->mc_count = 0;
Denis Cheng26cc2522007-07-18 02:12:03 -07004146
David S. Millerb9e40852008-07-15 00:15:08 -07004147 netif_addr_unlock_bh(dev);
Denis Cheng456ad752007-07-18 02:10:54 -07004148}
4149
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004150/**
4151 * dev_get_flags - get flags reported to userspace
4152 * @dev: device
4153 *
4154 * Get the combination of flag bits exported through APIs to userspace.
4155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156unsigned dev_get_flags(const struct net_device *dev)
4157{
4158 unsigned flags;
4159
4160 flags = (dev->flags & ~(IFF_PROMISC |
4161 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08004162 IFF_RUNNING |
4163 IFF_LOWER_UP |
4164 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 (dev->gflags & (IFF_PROMISC |
4166 IFF_ALLMULTI));
4167
Stefan Rompfb00055a2006-03-20 17:09:11 -08004168 if (netif_running(dev)) {
4169 if (netif_oper_up(dev))
4170 flags |= IFF_RUNNING;
4171 if (netif_carrier_ok(dev))
4172 flags |= IFF_LOWER_UP;
4173 if (netif_dormant(dev))
4174 flags |= IFF_DORMANT;
4175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
4177 return flags;
4178}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004179EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004181/**
4182 * dev_change_flags - change device settings
4183 * @dev: device
4184 * @flags: device state flags
4185 *
4186 * Change settings on device based state flags. The flags are
4187 * in the userspace exported format.
4188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189int dev_change_flags(struct net_device *dev, unsigned flags)
4190{
Thomas Graf7c355f52007-06-05 16:03:03 -07004191 int ret, changes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 int old_flags = dev->flags;
4193
Patrick McHardy24023452007-07-14 18:51:31 -07004194 ASSERT_RTNL();
4195
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 /*
4197 * Set the flags on our device.
4198 */
4199
4200 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
4201 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
4202 IFF_AUTOMEDIA)) |
4203 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
4204 IFF_ALLMULTI));
4205
4206 /*
4207 * Load in the correct multicast list now the flags have changed.
4208 */
4209
Patrick McHardyb6c40d62008-10-07 15:26:48 -07004210 if ((old_flags ^ flags) & IFF_MULTICAST)
4211 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07004212
Patrick McHardy4417da62007-06-27 01:28:10 -07004213 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
4215 /*
4216 * Have we downed the interface. We handle IFF_UP ourselves
4217 * according to user attempts to set it, rather than blindly
4218 * setting it.
4219 */
4220
4221 ret = 0;
4222 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
4223 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
4224
4225 if (!ret)
Patrick McHardy4417da62007-06-27 01:28:10 -07004226 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 }
4228
4229 if (dev->flags & IFF_UP &&
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004230 ((old_flags ^ dev->flags) & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 IFF_VOLATILE)))
Pavel Emelyanov056925a2007-09-16 15:42:43 -07004232 call_netdevice_notifiers(NETDEV_CHANGE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233
4234 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004235 int inc = (flags & IFF_PROMISC) ? 1 : -1;
4236
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 dev->gflags ^= IFF_PROMISC;
4238 dev_set_promiscuity(dev, inc);
4239 }
4240
4241 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
4242 is important. Some (broken) drivers set IFF_PROMISC, when
4243 IFF_ALLMULTI is requested not asking us and not reporting.
4244 */
4245 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004246 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
4247
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 dev->gflags ^= IFF_ALLMULTI;
4249 dev_set_allmulti(dev, inc);
4250 }
4251
Thomas Graf7c355f52007-06-05 16:03:03 -07004252 /* Exclude state transition flags, already notified */
4253 changes = (old_flags ^ dev->flags) & ~(IFF_UP | IFF_RUNNING);
4254 if (changes)
4255 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
4257 return ret;
4258}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004259EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004261/**
4262 * dev_set_mtu - Change maximum transfer unit
4263 * @dev: device
4264 * @new_mtu: new transfer unit
4265 *
4266 * Change the maximum transfer size of the network device.
4267 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268int dev_set_mtu(struct net_device *dev, int new_mtu)
4269{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004270 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 int err;
4272
4273 if (new_mtu == dev->mtu)
4274 return 0;
4275
4276 /* MTU must be positive. */
4277 if (new_mtu < 0)
4278 return -EINVAL;
4279
4280 if (!netif_device_present(dev))
4281 return -ENODEV;
4282
4283 err = 0;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004284 if (ops->ndo_change_mtu)
4285 err = ops->ndo_change_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 else
4287 dev->mtu = new_mtu;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004288
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 if (!err && dev->flags & IFF_UP)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07004290 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 return err;
4292}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004293EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07004295/**
4296 * dev_set_mac_address - Change Media Access Control Address
4297 * @dev: device
4298 * @sa: new address
4299 *
4300 * Change the hardware (MAC) address of the device
4301 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
4303{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004304 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 int err;
4306
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004307 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 return -EOPNOTSUPP;
4309 if (sa->sa_family != dev->type)
4310 return -EINVAL;
4311 if (!netif_device_present(dev))
4312 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004313 err = ops->ndo_set_mac_address(dev, sa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 if (!err)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07004315 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 return err;
4317}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004318EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
4320/*
Eric Dumazet3710bec2009-11-01 19:42:09 +00004321 * Perform the SIOCxIFxxx calls, inside rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 */
Jeff Garzik14e3e072007-10-08 00:06:32 -07004323static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324{
4325 int err;
Eric Dumazet3710bec2009-11-01 19:42:09 +00004326 struct net_device *dev = dev_get_by_name_rcu(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328 if (!dev)
4329 return -ENODEV;
4330
4331 switch (cmd) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004332 case SIOCGIFFLAGS: /* Get interface flags */
4333 ifr->ifr_flags = (short) dev_get_flags(dev);
4334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004336 case SIOCGIFMETRIC: /* Get the metric on the interface
4337 (currently unused) */
4338 ifr->ifr_metric = 0;
4339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004341 case SIOCGIFMTU: /* Get the MTU of a device */
4342 ifr->ifr_mtu = dev->mtu;
4343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004345 case SIOCGIFHWADDR:
4346 if (!dev->addr_len)
4347 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
4348 else
4349 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
4350 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
4351 ifr->ifr_hwaddr.sa_family = dev->type;
4352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004354 case SIOCGIFSLAVE:
4355 err = -EINVAL;
4356 break;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004357
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004358 case SIOCGIFMAP:
4359 ifr->ifr_map.mem_start = dev->mem_start;
4360 ifr->ifr_map.mem_end = dev->mem_end;
4361 ifr->ifr_map.base_addr = dev->base_addr;
4362 ifr->ifr_map.irq = dev->irq;
4363 ifr->ifr_map.dma = dev->dma;
4364 ifr->ifr_map.port = dev->if_port;
4365 return 0;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004366
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004367 case SIOCGIFINDEX:
4368 ifr->ifr_ifindex = dev->ifindex;
4369 return 0;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004370
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004371 case SIOCGIFTXQLEN:
4372 ifr->ifr_qlen = dev->tx_queue_len;
4373 return 0;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004374
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004375 default:
4376 /* dev_ioctl() should ensure this case
4377 * is never reached
4378 */
4379 WARN_ON(1);
4380 err = -EINVAL;
4381 break;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004382
4383 }
4384 return err;
4385}
4386
4387/*
4388 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
4389 */
4390static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd)
4391{
4392 int err;
4393 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Jarek Poplawski5f2f6da2008-12-22 19:35:28 -08004394 const struct net_device_ops *ops;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004395
4396 if (!dev)
4397 return -ENODEV;
4398
Jarek Poplawski5f2f6da2008-12-22 19:35:28 -08004399 ops = dev->netdev_ops;
4400
Jeff Garzik14e3e072007-10-08 00:06:32 -07004401 switch (cmd) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004402 case SIOCSIFFLAGS: /* Set interface flags */
4403 return dev_change_flags(dev, ifr->ifr_flags);
Jeff Garzik14e3e072007-10-08 00:06:32 -07004404
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004405 case SIOCSIFMETRIC: /* Set the metric on the interface
4406 (currently unused) */
4407 return -EOPNOTSUPP;
Jeff Garzik14e3e072007-10-08 00:06:32 -07004408
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004409 case SIOCSIFMTU: /* Set the MTU of a device */
4410 return dev_set_mtu(dev, ifr->ifr_mtu);
Jeff Garzik14e3e072007-10-08 00:06:32 -07004411
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004412 case SIOCSIFHWADDR:
4413 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004415 case SIOCSIFHWBROADCAST:
4416 if (ifr->ifr_hwaddr.sa_family != dev->type)
4417 return -EINVAL;
4418 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
4419 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
4420 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
4421 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004423 case SIOCSIFMAP:
4424 if (ops->ndo_set_config) {
4425 if (!netif_device_present(dev))
4426 return -ENODEV;
4427 return ops->ndo_set_config(dev, &ifr->ifr_map);
4428 }
4429 return -EOPNOTSUPP;
4430
4431 case SIOCADDMULTI:
4432 if ((!ops->ndo_set_multicast_list && !ops->ndo_set_rx_mode) ||
4433 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
4434 return -EINVAL;
4435 if (!netif_device_present(dev))
4436 return -ENODEV;
4437 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
4438 dev->addr_len, 1);
4439
4440 case SIOCDELMULTI:
4441 if ((!ops->ndo_set_multicast_list && !ops->ndo_set_rx_mode) ||
4442 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
4443 return -EINVAL;
4444 if (!netif_device_present(dev))
4445 return -ENODEV;
4446 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
4447 dev->addr_len, 1);
4448
4449 case SIOCSIFTXQLEN:
4450 if (ifr->ifr_qlen < 0)
4451 return -EINVAL;
4452 dev->tx_queue_len = ifr->ifr_qlen;
4453 return 0;
4454
4455 case SIOCSIFNAME:
4456 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
4457 return dev_change_name(dev, ifr->ifr_newname);
4458
4459 /*
4460 * Unknown or private ioctl
4461 */
4462 default:
4463 if ((cmd >= SIOCDEVPRIVATE &&
4464 cmd <= SIOCDEVPRIVATE + 15) ||
4465 cmd == SIOCBONDENSLAVE ||
4466 cmd == SIOCBONDRELEASE ||
4467 cmd == SIOCBONDSETHWADDR ||
4468 cmd == SIOCBONDSLAVEINFOQUERY ||
4469 cmd == SIOCBONDINFOQUERY ||
4470 cmd == SIOCBONDCHANGEACTIVE ||
4471 cmd == SIOCGMIIPHY ||
4472 cmd == SIOCGMIIREG ||
4473 cmd == SIOCSMIIREG ||
4474 cmd == SIOCBRADDIF ||
4475 cmd == SIOCBRDELIF ||
4476 cmd == SIOCSHWTSTAMP ||
4477 cmd == SIOCWANDEV) {
4478 err = -EOPNOTSUPP;
4479 if (ops->ndo_do_ioctl) {
4480 if (netif_device_present(dev))
4481 err = ops->ndo_do_ioctl(dev, ifr, cmd);
4482 else
4483 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 }
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004485 } else
4486 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
4488 }
4489 return err;
4490}
4491
4492/*
4493 * This function handles all "interface"-type I/O control requests. The actual
4494 * 'doing' part of this is dev_ifsioc above.
4495 */
4496
4497/**
4498 * dev_ioctl - network device ioctl
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004499 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 * @cmd: command to issue
4501 * @arg: pointer to a struct ifreq in user space
4502 *
4503 * Issue ioctl functions to devices. This is normally called by the
4504 * user space syscall interfaces but can sometimes be useful for
4505 * other purposes. The return value is the return from the syscall if
4506 * positive or a negative errno code on error.
4507 */
4508
Eric W. Biederman881d9662007-09-17 11:56:21 -07004509int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510{
4511 struct ifreq ifr;
4512 int ret;
4513 char *colon;
4514
4515 /* One special case: SIOCGIFCONF takes ifconf argument
4516 and requires shared lock, because it sleeps writing
4517 to user space.
4518 */
4519
4520 if (cmd == SIOCGIFCONF) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08004521 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07004522 ret = dev_ifconf(net, (char __user *) arg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08004523 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 return ret;
4525 }
4526 if (cmd == SIOCGIFNAME)
Eric W. Biederman881d9662007-09-17 11:56:21 -07004527 return dev_ifname(net, (struct ifreq __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
4529 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
4530 return -EFAULT;
4531
4532 ifr.ifr_name[IFNAMSIZ-1] = 0;
4533
4534 colon = strchr(ifr.ifr_name, ':');
4535 if (colon)
4536 *colon = 0;
4537
4538 /*
4539 * See which interface the caller is talking about.
4540 */
4541
4542 switch (cmd) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004543 /*
4544 * These ioctl calls:
4545 * - can be done by all.
4546 * - atomic and do not require locking.
4547 * - return a value
4548 */
4549 case SIOCGIFFLAGS:
4550 case SIOCGIFMETRIC:
4551 case SIOCGIFMTU:
4552 case SIOCGIFHWADDR:
4553 case SIOCGIFSLAVE:
4554 case SIOCGIFMAP:
4555 case SIOCGIFINDEX:
4556 case SIOCGIFTXQLEN:
4557 dev_load(net, ifr.ifr_name);
Eric Dumazet3710bec2009-11-01 19:42:09 +00004558 rcu_read_lock();
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004559 ret = dev_ifsioc_locked(net, &ifr, cmd);
Eric Dumazet3710bec2009-11-01 19:42:09 +00004560 rcu_read_unlock();
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004561 if (!ret) {
4562 if (colon)
4563 *colon = ':';
4564 if (copy_to_user(arg, &ifr,
4565 sizeof(struct ifreq)))
4566 ret = -EFAULT;
4567 }
4568 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004570 case SIOCETHTOOL:
4571 dev_load(net, ifr.ifr_name);
4572 rtnl_lock();
4573 ret = dev_ethtool(net, &ifr);
4574 rtnl_unlock();
4575 if (!ret) {
4576 if (colon)
4577 *colon = ':';
4578 if (copy_to_user(arg, &ifr,
4579 sizeof(struct ifreq)))
4580 ret = -EFAULT;
4581 }
4582 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004584 /*
4585 * These ioctl calls:
4586 * - require superuser power.
4587 * - require strict serialization.
4588 * - return a value
4589 */
4590 case SIOCGMIIPHY:
4591 case SIOCGMIIREG:
4592 case SIOCSIFNAME:
4593 if (!capable(CAP_NET_ADMIN))
4594 return -EPERM;
4595 dev_load(net, ifr.ifr_name);
4596 rtnl_lock();
4597 ret = dev_ifsioc(net, &ifr, cmd);
4598 rtnl_unlock();
4599 if (!ret) {
4600 if (colon)
4601 *colon = ':';
4602 if (copy_to_user(arg, &ifr,
4603 sizeof(struct ifreq)))
4604 ret = -EFAULT;
4605 }
4606 return ret;
4607
4608 /*
4609 * These ioctl calls:
4610 * - require superuser power.
4611 * - require strict serialization.
4612 * - do not return a value
4613 */
4614 case SIOCSIFFLAGS:
4615 case SIOCSIFMETRIC:
4616 case SIOCSIFMTU:
4617 case SIOCSIFMAP:
4618 case SIOCSIFHWADDR:
4619 case SIOCSIFSLAVE:
4620 case SIOCADDMULTI:
4621 case SIOCDELMULTI:
4622 case SIOCSIFHWBROADCAST:
4623 case SIOCSIFTXQLEN:
4624 case SIOCSMIIREG:
4625 case SIOCBONDENSLAVE:
4626 case SIOCBONDRELEASE:
4627 case SIOCBONDSETHWADDR:
4628 case SIOCBONDCHANGEACTIVE:
4629 case SIOCBRADDIF:
4630 case SIOCBRDELIF:
4631 case SIOCSHWTSTAMP:
4632 if (!capable(CAP_NET_ADMIN))
4633 return -EPERM;
4634 /* fall through */
4635 case SIOCBONDSLAVEINFOQUERY:
4636 case SIOCBONDINFOQUERY:
4637 dev_load(net, ifr.ifr_name);
4638 rtnl_lock();
4639 ret = dev_ifsioc(net, &ifr, cmd);
4640 rtnl_unlock();
4641 return ret;
4642
4643 case SIOCGIFMEM:
4644 /* Get the per device memory space. We can add this but
4645 * currently do not support it */
4646 case SIOCSIFMEM:
4647 /* Set the per device memory buffer space.
4648 * Not applicable in our case */
4649 case SIOCSIFLINK:
4650 return -EINVAL;
4651
4652 /*
4653 * Unknown or private ioctl.
4654 */
4655 default:
4656 if (cmd == SIOCWANDEV ||
4657 (cmd >= SIOCDEVPRIVATE &&
4658 cmd <= SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07004659 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07004661 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 rtnl_unlock();
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004663 if (!ret && copy_to_user(arg, &ifr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 sizeof(struct ifreq)))
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004665 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 return ret;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004667 }
4668 /* Take care of Wireless Extensions */
4669 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST)
4670 return wext_handle_ioctl(net, &ifr, cmd, arg);
4671 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 }
4673}
4674
4675
4676/**
4677 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004678 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 *
4680 * Returns a suitable unique value for a new device interface
4681 * number. The caller must hold the rtnl semaphore or the
4682 * dev_base_lock to be sure it remains unique.
4683 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07004684static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685{
4686 static int ifindex;
4687 for (;;) {
4688 if (++ifindex <= 0)
4689 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004690 if (!__dev_get_by_index(net, ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 return ifindex;
4692 }
4693}
4694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08004696static LIST_HEAD(net_todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Stephen Hemminger6f05f622007-03-08 20:46:03 -08004698static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 list_add_tail(&dev->todo_list, &net_todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701}
4702
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004703static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004704{
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004705 struct net_device *dev;
4706
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004707 BUG_ON(dev_boot_phase);
4708 ASSERT_RTNL();
4709
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004710 list_for_each_entry(dev, head, unreg_list) {
4711 /* Some devices call without registering
4712 * for initialization unwind.
4713 */
4714 if (dev->reg_state == NETREG_UNINITIALIZED) {
4715 pr_debug("unregister_netdevice: device %s/%p never "
4716 "was registered\n", dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004717
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004718 WARN_ON(1);
4719 return;
4720 }
4721
4722 BUG_ON(dev->reg_state != NETREG_REGISTERED);
4723
4724 /* If device is running, close it first. */
4725 dev_close(dev);
4726
4727 /* And unlink it from device chain. */
4728 unlist_netdevice(dev);
4729
4730 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004731 }
4732
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004733 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004734
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004735 list_for_each_entry(dev, head, unreg_list) {
4736 /* Shutdown queueing discipline. */
4737 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004738
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004739
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004740 /* Notify protocols, that we are about to destroy
4741 this device. They should clean all the things.
4742 */
4743 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
4744
4745 /*
4746 * Flush the unicast and multicast chains
4747 */
4748 dev_unicast_flush(dev);
4749 dev_addr_discard(dev);
4750
4751 if (dev->netdev_ops->ndo_uninit)
4752 dev->netdev_ops->ndo_uninit(dev);
4753
4754 /* Notifier chain MUST detach us from master device. */
4755 WARN_ON(dev->master);
4756
4757 /* Remove entries from kobject tree */
4758 netdev_unregister_kobject(dev);
4759 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004760
4761 synchronize_net();
4762
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004763 list_for_each_entry(dev, head, unreg_list)
4764 dev_put(dev);
4765}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004766
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004767static void rollback_registered(struct net_device *dev)
4768{
4769 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004770
Eric Dumazet9b5e3832009-10-27 07:04:19 +00004771 list_add(&dev->unreg_list, &single);
4772 rollback_registered_many(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004773}
4774
David S. Millere8a04642008-07-17 00:34:19 -07004775static void __netdev_init_queue_locks_one(struct net_device *dev,
4776 struct netdev_queue *dev_queue,
4777 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07004778{
4779 spin_lock_init(&dev_queue->_xmit_lock);
David S. Millercf508b12008-07-22 14:16:42 -07004780 netdev_set_xmit_lockdep_class(&dev_queue->_xmit_lock, dev->type);
David S. Millerc773e842008-07-08 23:13:53 -07004781 dev_queue->xmit_lock_owner = -1;
4782}
4783
4784static void netdev_init_queue_locks(struct net_device *dev)
4785{
David S. Millere8a04642008-07-17 00:34:19 -07004786 netdev_for_each_tx_queue(dev, __netdev_init_queue_locks_one, NULL);
4787 __netdev_init_queue_locks_one(dev, &dev->rx_queue, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07004788}
4789
Herbert Xub63365a2008-10-23 01:11:29 -07004790unsigned long netdev_fix_features(unsigned long features, const char *name)
4791{
4792 /* Fix illegal SG+CSUM combinations. */
4793 if ((features & NETIF_F_SG) &&
4794 !(features & NETIF_F_ALL_CSUM)) {
4795 if (name)
4796 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no "
4797 "checksum feature.\n", name);
4798 features &= ~NETIF_F_SG;
4799 }
4800
4801 /* TSO requires that SG is present as well. */
4802 if ((features & NETIF_F_TSO) && !(features & NETIF_F_SG)) {
4803 if (name)
4804 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no "
4805 "SG feature.\n", name);
4806 features &= ~NETIF_F_TSO;
4807 }
4808
4809 if (features & NETIF_F_UFO) {
4810 if (!(features & NETIF_F_GEN_CSUM)) {
4811 if (name)
4812 printk(KERN_ERR "%s: Dropping NETIF_F_UFO "
4813 "since no NETIF_F_HW_CSUM feature.\n",
4814 name);
4815 features &= ~NETIF_F_UFO;
4816 }
4817
4818 if (!(features & NETIF_F_SG)) {
4819 if (name)
4820 printk(KERN_ERR "%s: Dropping NETIF_F_UFO "
4821 "since no NETIF_F_SG feature.\n", name);
4822 features &= ~NETIF_F_UFO;
4823 }
4824 }
4825
4826 return features;
4827}
4828EXPORT_SYMBOL(netdev_fix_features);
4829
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830/**
4831 * register_netdevice - register a network device
4832 * @dev: device to register
4833 *
4834 * Take a completed network device structure and add it to the kernel
4835 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
4836 * chain. 0 is returned on success. A negative errno code is returned
4837 * on a failure to set up the device, or if the name is a duplicate.
4838 *
4839 * Callers must hold the rtnl semaphore. You may want
4840 * register_netdev() instead of this.
4841 *
4842 * BUGS:
4843 * The locking appears insufficient to guarantee two parallel registers
4844 * will not get the same name.
4845 */
4846
4847int register_netdevice(struct net_device *dev)
4848{
4849 struct hlist_head *head;
4850 struct hlist_node *p;
4851 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004852 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
4854 BUG_ON(dev_boot_phase);
4855 ASSERT_RTNL();
4856
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07004857 might_sleep();
4858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 /* When net_device's are persistent, this will be fatal. */
4860 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004861 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
David S. Millerf1f28aa2008-07-15 00:08:33 -07004863 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07004864 netdev_set_addr_lockdep_class(dev);
David S. Millerc773e842008-07-08 23:13:53 -07004865 netdev_init_queue_locks(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 dev->iflink = -1;
4868
4869 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004870 if (dev->netdev_ops->ndo_init) {
4871 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 if (ret) {
4873 if (ret > 0)
4874 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08004875 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 }
4877 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004878
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 if (!dev_valid_name(dev->name)) {
4880 ret = -EINVAL;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07004881 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 }
4883
Eric W. Biederman881d9662007-09-17 11:56:21 -07004884 dev->ifindex = dev_new_index(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 if (dev->iflink == -1)
4886 dev->iflink = dev->ifindex;
4887
4888 /* Check for existence of name */
Eric W. Biederman881d9662007-09-17 11:56:21 -07004889 head = dev_name_hash(net, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 hlist_for_each(p, head) {
4891 struct net_device *d
4892 = hlist_entry(p, struct net_device, name_hlist);
4893 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
4894 ret = -EEXIST;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07004895 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
Stephen Hemmingerd212f872007-06-27 00:47:37 -07004899 /* Fix illegal checksum combinations */
4900 if ((dev->features & NETIF_F_HW_CSUM) &&
4901 (dev->features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
4902 printk(KERN_NOTICE "%s: mixed HW and IP checksum settings.\n",
4903 dev->name);
4904 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
4905 }
4906
4907 if ((dev->features & NETIF_F_NO_CSUM) &&
4908 (dev->features & (NETIF_F_HW_CSUM|NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
4909 printk(KERN_NOTICE "%s: mixed no checksumming and other settings.\n",
4910 dev->name);
4911 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM|NETIF_F_HW_CSUM);
4912 }
4913
Herbert Xub63365a2008-10-23 01:11:29 -07004914 dev->features = netdev_fix_features(dev->features, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Lennert Buytenheke5a4a722008-08-03 01:23:10 -07004916 /* Enable software GSO if SG is supported. */
4917 if (dev->features & NETIF_F_SG)
4918 dev->features |= NETIF_F_GSO;
4919
Daniel Lezcanoaaf8cdc2008-05-02 17:00:58 -07004920 netdev_initialize_kobject(dev);
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00004921
4922 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
4923 ret = notifier_to_errno(ret);
4924 if (ret)
4925 goto err_uninit;
4926
Eric W. Biederman8b41d182007-09-26 22:02:53 -07004927 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07004928 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07004929 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07004930 dev->reg_state = NETREG_REGISTERED;
4931
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 /*
4933 * Default initial state at registry is that the
4934 * device is present.
4935 */
4936
4937 set_bit(__LINK_STATE_PRESENT, &dev->state);
4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02004941 list_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
4943 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07004944 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07004945 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07004946 if (ret) {
4947 rollback_registered(dev);
4948 dev->reg_state = NETREG_UNREGISTERED;
4949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950
4951out:
4952 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07004953
4954err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08004955 if (dev->netdev_ops->ndo_uninit)
4956 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07004957 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004959EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
4961/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08004962 * init_dummy_netdev - init a dummy network device for NAPI
4963 * @dev: device to init
4964 *
4965 * This takes a network device structure and initialize the minimum
4966 * amount of fields so it can be used to schedule NAPI polls without
4967 * registering a full blown interface. This is to be used by drivers
4968 * that need to tie several hardware interfaces to a single NAPI
4969 * poll scheduler due to HW limitations.
4970 */
4971int init_dummy_netdev(struct net_device *dev)
4972{
4973 /* Clear everything. Note we don't initialize spinlocks
4974 * are they aren't supposed to be taken by any of the
4975 * NAPI code and this dummy netdev is supposed to be
4976 * only ever used for NAPI polls
4977 */
4978 memset(dev, 0, sizeof(struct net_device));
4979
4980 /* make sure we BUG if trying to hit standard
4981 * register/unregister code path
4982 */
4983 dev->reg_state = NETREG_DUMMY;
4984
4985 /* initialize the ref count */
4986 atomic_set(&dev->refcnt, 1);
4987
4988 /* NAPI wants this */
4989 INIT_LIST_HEAD(&dev->napi_list);
4990
4991 /* a dummy interface is started by default */
4992 set_bit(__LINK_STATE_PRESENT, &dev->state);
4993 set_bit(__LINK_STATE_START, &dev->state);
4994
4995 return 0;
4996}
4997EXPORT_SYMBOL_GPL(init_dummy_netdev);
4998
4999
5000/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 * register_netdev - register a network device
5002 * @dev: device to register
5003 *
5004 * Take a completed network device structure and add it to the kernel
5005 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
5006 * chain. 0 is returned on success. A negative errno code is returned
5007 * on a failure to set up the device, or if the name is a duplicate.
5008 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07005009 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 * and expands the device name if you passed a format string to
5011 * alloc_netdev.
5012 */
5013int register_netdev(struct net_device *dev)
5014{
5015 int err;
5016
5017 rtnl_lock();
5018
5019 /*
5020 * If the name is a format string the caller wants us to do a
5021 * name allocation.
5022 */
5023 if (strchr(dev->name, '%')) {
5024 err = dev_alloc_name(dev, dev->name);
5025 if (err < 0)
5026 goto out;
5027 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005028
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 err = register_netdevice(dev);
5030out:
5031 rtnl_unlock();
5032 return err;
5033}
5034EXPORT_SYMBOL(register_netdev);
5035
5036/*
5037 * netdev_wait_allrefs - wait until all references are gone.
5038 *
5039 * This is called when unregistering network devices.
5040 *
5041 * Any protocol or device that holds a reference should register
5042 * for netdevice notification, and cleanup and put back the
5043 * reference if they receive an UNREGISTER event.
5044 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005045 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046 */
5047static void netdev_wait_allrefs(struct net_device *dev)
5048{
5049 unsigned long rebroadcast_time, warning_time;
5050
5051 rebroadcast_time = warning_time = jiffies;
5052 while (atomic_read(&dev->refcnt) != 0) {
5053 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08005054 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
5056 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07005057 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
5060 &dev->state)) {
5061 /* We must not have linkwatch events
5062 * pending on unregister. If this
5063 * happens, we simply run the queue
5064 * unscheduled, resulting in a noop
5065 * for this device.
5066 */
5067 linkwatch_run_queue();
5068 }
5069
Stephen Hemminger6756ae42006-03-20 22:23:58 -08005070 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071
5072 rebroadcast_time = jiffies;
5073 }
5074
5075 msleep(250);
5076
5077 if (time_after(jiffies, warning_time + 10 * HZ)) {
5078 printk(KERN_EMERG "unregister_netdevice: "
5079 "waiting for %s to become free. Usage "
5080 "count = %d\n",
5081 dev->name, atomic_read(&dev->refcnt));
5082 warning_time = jiffies;
5083 }
5084 }
5085}
5086
5087/* The sequence is:
5088 *
5089 * rtnl_lock();
5090 * ...
5091 * register_netdevice(x1);
5092 * register_netdevice(x2);
5093 * ...
5094 * unregister_netdevice(y1);
5095 * unregister_netdevice(y2);
5096 * ...
5097 * rtnl_unlock();
5098 * free_netdev(y1);
5099 * free_netdev(y2);
5100 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07005101 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005103 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 * without deadlocking with linkwatch via keventd.
5105 * 2) Since we run with the RTNL semaphore not held, we can sleep
5106 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07005107 *
5108 * We must not return until all unregister events added during
5109 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111void netdev_run_todo(void)
5112{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07005113 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07005116 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07005117
5118 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07005119
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 while (!list_empty(&list)) {
5121 struct net_device *dev
5122 = list_entry(list.next, struct net_device, todo_list);
5123 list_del(&dev->todo_list);
5124
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005125 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 printk(KERN_ERR "network todo '%s' but state %d\n",
5127 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005128 dump_stack();
5129 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005131
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005132 dev->reg_state = NETREG_UNREGISTERED;
5133
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005134 on_each_cpu(flush_backlog, dev, 1);
5135
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005136 netdev_wait_allrefs(dev);
5137
5138 /* paranoia */
5139 BUG_ON(atomic_read(&dev->refcnt));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07005140 WARN_ON(dev->ip_ptr);
5141 WARN_ON(dev->ip6_ptr);
5142 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005143
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07005144 if (dev->destructor)
5145 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07005146
5147 /* Free network device */
5148 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150}
5151
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005152/**
5153 * dev_get_stats - get network device statistics
5154 * @dev: device to get statistics from
5155 *
5156 * Get network statistics from device. The device driver may provide
5157 * its own method by setting dev->netdev_ops->get_stats; otherwise
5158 * the internal statistics structure is used.
5159 */
5160const struct net_device_stats *dev_get_stats(struct net_device *dev)
Eric Dumazet7004bf22009-05-18 00:34:33 +00005161{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005162 const struct net_device_ops *ops = dev->netdev_ops;
5163
5164 if (ops->ndo_get_stats)
5165 return ops->ndo_get_stats(dev);
Eric Dumazet7004bf22009-05-18 00:34:33 +00005166 else {
5167 unsigned long tx_bytes = 0, tx_packets = 0, tx_dropped = 0;
5168 struct net_device_stats *stats = &dev->stats;
5169 unsigned int i;
5170 struct netdev_queue *txq;
5171
5172 for (i = 0; i < dev->num_tx_queues; i++) {
5173 txq = netdev_get_tx_queue(dev, i);
5174 tx_bytes += txq->tx_bytes;
5175 tx_packets += txq->tx_packets;
5176 tx_dropped += txq->tx_dropped;
5177 }
5178 if (tx_bytes || tx_packets || tx_dropped) {
5179 stats->tx_bytes = tx_bytes;
5180 stats->tx_packets = tx_packets;
5181 stats->tx_dropped = tx_dropped;
5182 }
5183 return stats;
5184 }
Rusty Russellc45d2862007-03-28 14:29:08 -07005185}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08005186EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07005187
David S. Millerdc2b4842008-07-08 17:18:23 -07005188static void netdev_init_one_queue(struct net_device *dev,
David S. Millere8a04642008-07-17 00:34:19 -07005189 struct netdev_queue *queue,
5190 void *_unused)
David S. Millerdc2b4842008-07-08 17:18:23 -07005191{
David S. Millerdc2b4842008-07-08 17:18:23 -07005192 queue->dev = dev;
5193}
5194
David S. Millerbb949fb2008-07-08 16:55:56 -07005195static void netdev_init_queues(struct net_device *dev)
5196{
David S. Millere8a04642008-07-17 00:34:19 -07005197 netdev_init_one_queue(dev, &dev->rx_queue, NULL);
5198 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
David S. Millerc3f26a22008-07-31 16:58:50 -07005199 spin_lock_init(&dev->tx_global_lock);
David S. Millerbb949fb2008-07-08 16:55:56 -07005200}
5201
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202/**
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005203 * alloc_netdev_mq - allocate network device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204 * @sizeof_priv: size of private data to allocate space for
5205 * @name: device name format string
5206 * @setup: callback to initialize device
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005207 * @queue_count: the number of subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 *
5209 * Allocates a struct net_device with private data area for driver use
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005210 * and performs basic initialization. Also allocates subquue structs
5211 * for each queue on the device at the end of the netdevice.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 */
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005213struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
5214 void (*setup)(struct net_device *), unsigned int queue_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215{
David S. Millere8a04642008-07-17 00:34:19 -07005216 struct netdev_queue *tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07005218 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005219 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07005221 BUG_ON(strlen(name) >= sizeof(dev->name));
5222
David S. Millerfd2ea0a2008-07-17 01:56:23 -07005223 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07005224 if (sizeof_priv) {
5225 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005226 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07005227 alloc_size += sizeof_priv;
5228 }
5229 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005230 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Paolo 'Blaisorblade' Giarrusso31380de2006-04-06 22:38:28 -07005232 p = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 if (!p) {
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07005234 printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 return NULL;
5236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
Stephen Hemminger79439862008-07-21 13:28:44 -07005238 tx = kcalloc(queue_count, sizeof(struct netdev_queue), GFP_KERNEL);
David S. Millere8a04642008-07-17 00:34:19 -07005239 if (!tx) {
5240 printk(KERN_ERR "alloc_netdev: Unable to allocate "
5241 "tx qdiscs.\n");
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005242 goto free_p;
David S. Millere8a04642008-07-17 00:34:19 -07005243 }
5244
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00005245 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005247
5248 if (dev_addr_init(dev))
5249 goto free_tx;
5250
Jiri Pirkoccffad22009-05-22 23:22:17 +00005251 dev_unicast_init(dev);
5252
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005253 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
David S. Millere8a04642008-07-17 00:34:19 -07005255 dev->_tx = tx;
5256 dev->num_tx_queues = queue_count;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07005257 dev->real_num_tx_queues = queue_count;
David S. Millere8a04642008-07-17 00:34:19 -07005258
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07005259 dev->gso_max_size = GSO_MAX_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
David S. Millerbb949fb2008-07-08 16:55:56 -07005261 netdev_init_queues(dev);
5262
Herbert Xud565b0a2008-12-15 23:38:52 -08005263 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00005264 INIT_LIST_HEAD(&dev->unreg_list);
Eric Dumazet93f154b2009-05-18 22:19:19 -07005265 dev->priv_flags = IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 setup(dev);
5267 strcpy(dev->name, name);
5268 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00005269
5270free_tx:
5271 kfree(tx);
5272
5273free_p:
5274 kfree(p);
5275 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276}
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07005277EXPORT_SYMBOL(alloc_netdev_mq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
5279/**
5280 * free_netdev - free network device
5281 * @dev: device
5282 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005283 * This function does the last stage of destroying an allocated device
5284 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 * If this is the last reference then it will be freed.
5286 */
5287void free_netdev(struct net_device *dev)
5288{
Herbert Xud565b0a2008-12-15 23:38:52 -08005289 struct napi_struct *p, *n;
5290
Denis V. Lunevf3005d72008-04-16 02:02:18 -07005291 release_net(dev_net(dev));
5292
David S. Millere8a04642008-07-17 00:34:19 -07005293 kfree(dev->_tx);
5294
Jiri Pirkof001fde2009-05-05 02:48:28 +00005295 /* Flush device addresses */
5296 dev_addr_flush(dev);
5297
Herbert Xud565b0a2008-12-15 23:38:52 -08005298 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
5299 netif_napi_del(p);
5300
Stephen Hemminger3041a062006-05-26 13:25:24 -07005301 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 if (dev->reg_state == NETREG_UNINITIALIZED) {
5303 kfree((char *)dev - dev->padded);
5304 return;
5305 }
5306
5307 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
5308 dev->reg_state = NETREG_RELEASED;
5309
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07005310 /* will free via device release */
5311 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005313EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005314
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005315/**
5316 * synchronize_net - Synchronize with packet receive processing
5317 *
5318 * Wait for packets currently being received to be done.
5319 * Does not block later packets from starting.
5320 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005321void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322{
5323 might_sleep();
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005324 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005326EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
5328/**
Eric Dumazet44a08732009-10-27 07:03:04 +00005329 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00005331 * @head: list
5332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08005334 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00005335 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336 *
5337 * Callers must hold the rtnl semaphore. You may want
5338 * unregister_netdev() instead of this.
5339 */
5340
Eric Dumazet44a08732009-10-27 07:03:04 +00005341void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342{
Herbert Xua6620712007-12-12 19:21:56 -08005343 ASSERT_RTNL();
5344
Eric Dumazet44a08732009-10-27 07:03:04 +00005345 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00005346 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00005347 } else {
5348 rollback_registered(dev);
5349 /* Finish processing unregister after unlock */
5350 net_set_todo(dev);
5351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352}
Eric Dumazet44a08732009-10-27 07:03:04 +00005353EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
5355/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005356 * unregister_netdevice_many - unregister many devices
5357 * @head: list of devices
5358 *
5359 */
5360void unregister_netdevice_many(struct list_head *head)
5361{
5362 struct net_device *dev;
5363
5364 if (!list_empty(head)) {
5365 rollback_registered_many(head);
5366 list_for_each_entry(dev, head, unreg_list)
5367 net_set_todo(dev);
5368 }
5369}
Eric Dumazet63c80992009-10-27 07:06:49 +00005370EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005371
5372/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 * unregister_netdev - remove device from the kernel
5374 * @dev: device
5375 *
5376 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08005377 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 *
5379 * This is just a wrapper for unregister_netdevice that takes
5380 * the rtnl semaphore. In general you want to use this and not
5381 * unregister_netdevice.
5382 */
5383void unregister_netdev(struct net_device *dev)
5384{
5385 rtnl_lock();
5386 unregister_netdevice(dev);
5387 rtnl_unlock();
5388}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389EXPORT_SYMBOL(unregister_netdev);
5390
Eric W. Biedermance286d32007-09-12 13:53:49 +02005391/**
5392 * dev_change_net_namespace - move device to different nethost namespace
5393 * @dev: device
5394 * @net: network namespace
5395 * @pat: If not NULL name pattern to try if the current device name
5396 * is already taken in the destination network namespace.
5397 *
5398 * This function shuts down a device interface and moves it
5399 * to a new network namespace. On success 0 is returned, on
5400 * a failure a netagive errno code is returned.
5401 *
5402 * Callers must hold the rtnl semaphore.
5403 */
5404
5405int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
5406{
5407 char buf[IFNAMSIZ];
5408 const char *destname;
5409 int err;
5410
5411 ASSERT_RTNL();
5412
5413 /* Don't allow namespace local devices to be moved. */
5414 err = -EINVAL;
5415 if (dev->features & NETIF_F_NETNS_LOCAL)
5416 goto out;
5417
Eric W. Biederman38918452008-10-27 17:51:47 -07005418#ifdef CONFIG_SYSFS
5419 /* Don't allow real devices to be moved when sysfs
5420 * is enabled.
5421 */
5422 err = -EINVAL;
5423 if (dev->dev.parent)
5424 goto out;
5425#endif
5426
Eric W. Biedermance286d32007-09-12 13:53:49 +02005427 /* Ensure the device has been registrered */
5428 err = -EINVAL;
5429 if (dev->reg_state != NETREG_REGISTERED)
5430 goto out;
5431
5432 /* Get out if there is nothing todo */
5433 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09005434 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02005435 goto out;
5436
5437 /* Pick the destination device name, and ensure
5438 * we can use it in the destination network namespace.
5439 */
5440 err = -EEXIST;
5441 destname = dev->name;
5442 if (__dev_get_by_name(net, destname)) {
5443 /* We get here if we can't use the current device name */
5444 if (!pat)
5445 goto out;
5446 if (!dev_valid_name(pat))
5447 goto out;
5448 if (strchr(pat, '%')) {
5449 if (__dev_alloc_name(net, pat, buf) < 0)
5450 goto out;
5451 destname = buf;
5452 } else
5453 destname = pat;
5454 if (__dev_get_by_name(net, destname))
5455 goto out;
5456 }
5457
5458 /*
5459 * And now a mini version of register_netdevice unregister_netdevice.
5460 */
5461
5462 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07005463 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005464
5465 /* And unlink it from device chain */
5466 err = -ENODEV;
5467 unlist_netdevice(dev);
5468
5469 synchronize_net();
5470
5471 /* Shutdown queueing discipline. */
5472 dev_shutdown(dev);
5473
5474 /* Notify protocols, that we are about to destroy
5475 this device. They should clean all the things.
5476 */
5477 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5478
5479 /*
5480 * Flush the unicast and multicast chains
5481 */
Jiri Pirkoccffad22009-05-22 23:22:17 +00005482 dev_unicast_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005483 dev_addr_discard(dev);
5484
Eric W. Biederman38918452008-10-27 17:51:47 -07005485 netdev_unregister_kobject(dev);
5486
Eric W. Biedermance286d32007-09-12 13:53:49 +02005487 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005488 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005489
5490 /* Assign the new device name */
5491 if (destname != dev->name)
5492 strcpy(dev->name, destname);
5493
5494 /* If there is an ifindex conflict assign a new one */
5495 if (__dev_get_by_index(net, dev->ifindex)) {
5496 int iflink = (dev->iflink == dev->ifindex);
5497 dev->ifindex = dev_new_index(net);
5498 if (iflink)
5499 dev->iflink = dev->ifindex;
5500 }
5501
Eric W. Biederman8b41d182007-09-26 22:02:53 -07005502 /* Fixup kobjects */
Daniel Lezcanoaaf8cdc2008-05-02 17:00:58 -07005503 err = netdev_register_kobject(dev);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07005504 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005505
5506 /* Add the device back in the hashes */
5507 list_netdevice(dev);
5508
5509 /* Notify protocols, that a new device appeared. */
5510 call_netdevice_notifiers(NETDEV_REGISTER, dev);
5511
5512 synchronize_net();
5513 err = 0;
5514out:
5515 return err;
5516}
Johannes Berg463d0182009-07-14 00:33:35 +02005517EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005518
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519static int dev_cpu_callback(struct notifier_block *nfb,
5520 unsigned long action,
5521 void *ocpu)
5522{
5523 struct sk_buff **list_skb;
David S. Miller37437bb2008-07-16 02:15:04 -07005524 struct Qdisc **list_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 struct sk_buff *skb;
5526 unsigned int cpu, oldcpu = (unsigned long)ocpu;
5527 struct softnet_data *sd, *oldsd;
5528
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005529 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 return NOTIFY_OK;
5531
5532 local_irq_disable();
5533 cpu = smp_processor_id();
5534 sd = &per_cpu(softnet_data, cpu);
5535 oldsd = &per_cpu(softnet_data, oldcpu);
5536
5537 /* Find end of our completion_queue. */
5538 list_skb = &sd->completion_queue;
5539 while (*list_skb)
5540 list_skb = &(*list_skb)->next;
5541 /* Append completion queue from offline CPU. */
5542 *list_skb = oldsd->completion_queue;
5543 oldsd->completion_queue = NULL;
5544
5545 /* Find end of our output_queue. */
5546 list_net = &sd->output_queue;
5547 while (*list_net)
5548 list_net = &(*list_net)->next_sched;
5549 /* Append output queue from offline CPU. */
5550 *list_net = oldsd->output_queue;
5551 oldsd->output_queue = NULL;
5552
5553 raise_softirq_irqoff(NET_TX_SOFTIRQ);
5554 local_irq_enable();
5555
5556 /* Process offline CPU's input_pkt_queue */
5557 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
5558 netif_rx(skb);
5559
5560 return NOTIFY_OK;
5561}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562
5563
Herbert Xu7f353bf2007-08-10 15:47:58 -07005564/**
Herbert Xub63365a2008-10-23 01:11:29 -07005565 * netdev_increment_features - increment feature set by one
5566 * @all: current feature set
5567 * @one: new feature set
5568 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07005569 *
5570 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07005571 * @one to the master device with current feature set @all. Will not
5572 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07005573 */
Herbert Xub63365a2008-10-23 01:11:29 -07005574unsigned long netdev_increment_features(unsigned long all, unsigned long one,
5575 unsigned long mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07005576{
Herbert Xub63365a2008-10-23 01:11:29 -07005577 /* If device needs checksumming, downgrade to it. */
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005578 if (all & NETIF_F_NO_CSUM && !(one & NETIF_F_NO_CSUM))
Herbert Xub63365a2008-10-23 01:11:29 -07005579 all ^= NETIF_F_NO_CSUM | (one & NETIF_F_ALL_CSUM);
5580 else if (mask & NETIF_F_ALL_CSUM) {
5581 /* If one device supports v4/v6 checksumming, set for all. */
5582 if (one & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM) &&
5583 !(all & NETIF_F_GEN_CSUM)) {
5584 all &= ~NETIF_F_ALL_CSUM;
5585 all |= one & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
5586 }
Herbert Xu7f353bf2007-08-10 15:47:58 -07005587
Herbert Xub63365a2008-10-23 01:11:29 -07005588 /* If one device supports hw checksumming, set for all. */
5589 if (one & NETIF_F_GEN_CSUM && !(all & NETIF_F_GEN_CSUM)) {
5590 all &= ~NETIF_F_ALL_CSUM;
5591 all |= NETIF_F_HW_CSUM;
5592 }
5593 }
Herbert Xu7f353bf2007-08-10 15:47:58 -07005594
Herbert Xub63365a2008-10-23 01:11:29 -07005595 one |= NETIF_F_ALL_CSUM;
Herbert Xu7f353bf2007-08-10 15:47:58 -07005596
Herbert Xub63365a2008-10-23 01:11:29 -07005597 one |= all & NETIF_F_ONE_FOR_ALL;
Sridhar Samudralad9f59502009-10-07 12:24:25 +00005598 all &= one | NETIF_F_LLTX | NETIF_F_GSO | NETIF_F_UFO;
Herbert Xub63365a2008-10-23 01:11:29 -07005599 all |= one & mask & NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07005600
5601 return all;
5602}
Herbert Xub63365a2008-10-23 01:11:29 -07005603EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07005604
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07005605static struct hlist_head *netdev_create_hash(void)
5606{
5607 int i;
5608 struct hlist_head *hash;
5609
5610 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
5611 if (hash != NULL)
5612 for (i = 0; i < NETDEV_HASHENTRIES; i++)
5613 INIT_HLIST_HEAD(&hash[i]);
5614
5615 return hash;
5616}
5617
Eric W. Biederman881d9662007-09-17 11:56:21 -07005618/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07005619static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07005620{
Eric W. Biederman881d9662007-09-17 11:56:21 -07005621 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07005622
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07005623 net->dev_name_head = netdev_create_hash();
5624 if (net->dev_name_head == NULL)
5625 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005626
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07005627 net->dev_index_head = netdev_create_hash();
5628 if (net->dev_index_head == NULL)
5629 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005630
5631 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07005632
5633err_idx:
5634 kfree(net->dev_name_head);
5635err_name:
5636 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005637}
5638
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005639/**
5640 * netdev_drivername - network driver for the device
5641 * @dev: network device
5642 * @buffer: buffer for resulting name
5643 * @len: size of buffer
5644 *
5645 * Determine network driver for device.
5646 */
Stephen Hemmingercf04a4c2008-09-30 02:22:14 -07005647char *netdev_drivername(const struct net_device *dev, char *buffer, int len)
Arjan van de Ven6579e572008-07-21 13:31:48 -07005648{
Stephen Hemmingercf04a4c2008-09-30 02:22:14 -07005649 const struct device_driver *driver;
5650 const struct device *parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07005651
5652 if (len <= 0 || !buffer)
5653 return buffer;
5654 buffer[0] = 0;
5655
5656 parent = dev->dev.parent;
5657
5658 if (!parent)
5659 return buffer;
5660
5661 driver = parent->driver;
5662 if (driver && driver->name)
5663 strlcpy(buffer, driver->name, len);
5664 return buffer;
5665}
5666
Pavel Emelyanov46650792007-10-08 20:38:39 -07005667static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07005668{
5669 kfree(net->dev_name_head);
5670 kfree(net->dev_index_head);
5671}
5672
Denis V. Lunev022cbae2007-11-13 03:23:50 -08005673static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07005674 .init = netdev_init,
5675 .exit = netdev_exit,
5676};
5677
Pavel Emelyanov46650792007-10-08 20:38:39 -07005678static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02005679{
Eric W. Biederman8eb79862008-12-29 18:21:48 -08005680 struct net_device *dev;
Eric W. Biedermance286d32007-09-12 13:53:49 +02005681 /*
5682 * Push all migratable of the network devices back to the
5683 * initial network namespace
5684 */
5685 rtnl_lock();
Eric W. Biederman8eb79862008-12-29 18:21:48 -08005686restart:
5687 for_each_netdev(net, dev) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02005688 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07005689 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02005690
5691 /* Ignore unmoveable devices (i.e. loopback) */
5692 if (dev->features & NETIF_F_NETNS_LOCAL)
5693 continue;
5694
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08005695 /* Delete virtual devices */
5696 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink) {
Eric Dumazet23289a32009-10-27 07:06:36 +00005697 dev->rtnl_link_ops->dellink(dev, NULL);
Eric W. Biederman8eb79862008-12-29 18:21:48 -08005698 goto restart;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08005699 }
5700
Eric W. Biedermance286d32007-09-12 13:53:49 +02005701 /* Push remaing network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07005702 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
5703 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02005704 if (err) {
Pavel Emelyanovaca51392008-05-08 01:24:25 -07005705 printk(KERN_EMERG "%s: failed to move %s to init_net: %d\n",
Eric W. Biedermance286d32007-09-12 13:53:49 +02005706 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07005707 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02005708 }
Eric W. Biederman8eb79862008-12-29 18:21:48 -08005709 goto restart;
Eric W. Biedermance286d32007-09-12 13:53:49 +02005710 }
5711 rtnl_unlock();
5712}
5713
Denis V. Lunev022cbae2007-11-13 03:23:50 -08005714static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02005715 .exit = default_device_exit,
5716};
5717
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718/*
5719 * Initialize the DEV module. At boot time this walks the device list and
5720 * unhooks any devices that fail to initialise (normally hardware not
5721 * present) and leaves us with a valid list of present and active devices.
5722 *
5723 */
5724
5725/*
5726 * This is called single threaded during boot, so no need
5727 * to take the rtnl semaphore.
5728 */
5729static int __init net_dev_init(void)
5730{
5731 int i, rc = -ENOMEM;
5732
5733 BUG_ON(!dev_boot_phase);
5734
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735 if (dev_proc_init())
5736 goto out;
5737
Eric W. Biederman8b41d182007-09-26 22:02:53 -07005738 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 goto out;
5740
5741 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a862007-11-26 20:12:58 +08005742 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743 INIT_LIST_HEAD(&ptype_base[i]);
5744
Eric W. Biederman881d9662007-09-17 11:56:21 -07005745 if (register_pernet_subsys(&netdev_net_ops))
5746 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747
5748 /*
5749 * Initialise the packet receive queues.
5750 */
5751
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07005752 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 struct softnet_data *queue;
5754
5755 queue = &per_cpu(softnet_data, i);
5756 skb_queue_head_init(&queue->input_pkt_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 queue->completion_queue = NULL;
5758 INIT_LIST_HEAD(&queue->poll_list);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005759
5760 queue->backlog.poll = process_backlog;
5761 queue->backlog.weight = weight_p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005762 queue->backlog.gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00005763 queue->backlog.gro_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 }
5765
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766 dev_boot_phase = 0;
5767
Eric W. Biederman505d4f72008-11-07 22:54:20 -08005768 /* The loopback device is special if any other network devices
5769 * is present in a network namespace the loopback device must
5770 * be present. Since we now dynamically allocate and free the
5771 * loopback device ensure this invariant is maintained by
5772 * keeping the loopback device as the first device on the
5773 * list of network devices. Ensuring the loopback devices
5774 * is the first device that appears and the last network device
5775 * that disappears.
5776 */
5777 if (register_pernet_device(&loopback_net_ops))
5778 goto out;
5779
5780 if (register_pernet_device(&default_device_ops))
5781 goto out;
5782
Carlos R. Mafra962cf362008-05-15 11:15:37 -03005783 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
5784 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785
5786 hotcpu_notifier(dev_cpu_callback, 0);
5787 dst_init();
5788 dev_mcast_init();
5789 rc = 0;
5790out:
5791 return rc;
5792}
5793
5794subsys_initcall(net_dev_init);
5795
Krishna Kumare88721f2009-02-18 17:55:02 -08005796static int __init initialize_hashrnd(void)
5797{
5798 get_random_bytes(&skb_tx_hashrnd, sizeof(skb_tx_hashrnd));
5799 return 0;
5800}
5801
5802late_initcall_sync(initialize_hashrnd);
5803