blob: 1672cc134853b0384761580851e7da6e326636cc [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>
82#include <linux/sched.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080083#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <linux/string.h>
85#include <linux/mm.h>
86#include <linux/socket.h>
87#include <linux/sockios.h>
88#include <linux/errno.h>
89#include <linux/interrupt.h>
90#include <linux/if_ether.h>
91#include <linux/netdevice.h>
92#include <linux/etherdevice.h>
93#include <linux/notifier.h>
94#include <linux/skbuff.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020095#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <net/sock.h>
97#include <linux/rtnetlink.h>
98#include <linux/proc_fs.h>
99#include <linux/seq_file.h>
100#include <linux/stat.h>
101#include <linux/if_bridge.h>
Patrick McHardyb863ceb2007-07-14 18:55:06 -0700102#include <linux/if_macvlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <net/dst.h>
104#include <net/pkt_sched.h>
105#include <net/checksum.h>
106#include <linux/highmem.h>
107#include <linux/init.h>
108#include <linux/kmod.h>
109#include <linux/module.h>
110#include <linux/kallsyms.h>
111#include <linux/netpoll.h>
112#include <linux/rcupdate.h>
113#include <linux/delay.h>
Johannes Berg295f4a12007-04-26 20:43:56 -0700114#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500117#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700118#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700119#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700120#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700121#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * The list of packet types we will receive (as opposed to discard)
125 * and the routines to invoke.
126 *
127 * Why 16. Because with 16 the only overlap we get on a hash of the
128 * low nibble of the protocol value is RARP/SNAP/X.25.
129 *
130 * NOTE: That is no longer true with the addition of VLAN tags. Not
131 * sure which should go first, but I bet it won't make much
132 * difference if we are running VLANs. The good news is that
133 * this protocol won't be in the list unless compiled in, so
Stephen Hemminger3041a062006-05-26 13:25:24 -0700134 * the average user (w/out VLANs) will not be adversely affected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * --BLG
136 *
137 * 0800 IP
138 * 8100 802.1Q VLAN
139 * 0001 802.3
140 * 0002 AX.25
141 * 0004 802.2
142 * 8035 RARP
143 * 0005 SNAP
144 * 0805 X.25
145 * 0806 ARP
146 * 8137 IPX
147 * 0009 Localtalk
148 * 86DD IPv6
149 */
150
151static DEFINE_SPINLOCK(ptype_lock);
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -0700152static struct list_head ptype_base[16] __read_mostly; /* 16 way hashed list */
153static struct list_head ptype_all __read_mostly; /* Taps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Chris Leechdb217332006-06-17 21:24:58 -0700155#ifdef CONFIG_NET_DMA
Dan Williamsd379b012007-07-09 11:56:42 -0700156struct net_dma {
157 struct dma_client client;
158 spinlock_t lock;
159 cpumask_t channel_mask;
160 struct dma_chan *channels[NR_CPUS];
161};
162
163static enum dma_state_client
164netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
165 enum dma_state state);
166
167static struct net_dma net_dma = {
168 .client = {
169 .event_callback = netdev_dma_event,
170 },
171};
Chris Leechdb217332006-06-17 21:24:58 -0700172#endif
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700175 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * semaphore.
177 *
178 * Pure readers hold dev_base_lock for reading.
179 *
180 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700181 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * actual updates. This allows pure readers to access the list even
183 * while a writer is preparing to update it.
184 *
185 * To put it another way, dev_base_lock is held for writing only to
186 * protect against pure readers; the rtnl semaphore provides the
187 * protection against other writers.
188 *
189 * See, for example usages, register_netdevice() and
190 * unregister_netdevice(), which must be called with the rtnl
191 * semaphore held.
192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193DEFINE_RWLOCK(dev_base_lock);
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195EXPORT_SYMBOL(dev_base_lock);
196
197#define NETDEV_HASHBITS 8
Eric W. Biederman881d9662007-09-17 11:56:21 -0700198#define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Eric W. Biederman881d9662007-09-17 11:56:21 -0700200static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
Eric W. Biederman881d9662007-09-17 11:56:21 -0700203 return &net->dev_name_head[hash & ((1 << NETDEV_HASHBITS) - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Eric W. Biederman881d9662007-09-17 11:56:21 -0700206static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700208 return &net->dev_index_head[ifindex & ((1 << NETDEV_HASHBITS) - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Eric W. Biedermance286d32007-09-12 13:53:49 +0200211/* Device list insertion */
212static int list_netdevice(struct net_device *dev)
213{
214 struct net *net = dev->nd_net;
215
216 ASSERT_RTNL();
217
218 write_lock_bh(&dev_base_lock);
219 list_add_tail(&dev->dev_list, &net->dev_base_head);
220 hlist_add_head(&dev->name_hlist, dev_name_hash(net, dev->name));
221 hlist_add_head(&dev->index_hlist, dev_index_hash(net, dev->ifindex));
222 write_unlock_bh(&dev_base_lock);
223 return 0;
224}
225
226/* Device list removal */
227static 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);
233 list_del(&dev->dev_list);
234 hlist_del(&dev->name_hlist);
235 hlist_del(&dev->index_hlist);
236 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Eric W. Biederman8b41d182007-09-26 22:02:53 -0700252extern int netdev_kobject_init(void);
253extern int netdev_register_kobject(struct net_device *);
254extern void netdev_unregister_kobject(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700256#ifdef CONFIG_DEBUG_LOCK_ALLOC
257/*
258 * register_netdevice() inits dev->_xmit_lock and sets lockdep class
259 * according to dev->type
260 */
261static const unsigned short netdev_lock_type[] =
262 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
263 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
264 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
265 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
266 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
267 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
268 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
269 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
270 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
271 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
272 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
273 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
274 ARPHRD_FCFABRIC, ARPHRD_IEEE802_TR, ARPHRD_IEEE80211,
275 ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP, ARPHRD_VOID,
276 ARPHRD_NONE};
277
278static const char *netdev_lock_name[] =
279 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
280 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
281 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
282 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
283 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
284 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
285 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
286 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
287 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
288 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
289 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
290 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
291 "_xmit_FCFABRIC", "_xmit_IEEE802_TR", "_xmit_IEEE80211",
292 "_xmit_IEEE80211_PRISM", "_xmit_IEEE80211_RADIOTAP", "_xmit_VOID",
293 "_xmit_NONE"};
294
295static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
296
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
308static inline void netdev_set_lockdep_class(spinlock_t *lock,
309 unsigned short dev_type)
310{
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}
317#else
318static inline void netdev_set_lockdep_class(spinlock_t *lock,
319 unsigned short dev_type)
320{
321}
322#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324/*******************************************************************************
325
326 Protocol management and registration routines
327
328*******************************************************************************/
329
330/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * Add a protocol ID to the list. Now that the input handler is
332 * smarter we can dispense with all the messy stuff that used to be
333 * here.
334 *
335 * BEWARE!!! Protocol handlers, mangling input packets,
336 * MUST BE last in hash buckets and checking protocol handlers
337 * MUST start from promiscuous ptype_all chain in net_bh.
338 * It is true now, do not change it.
339 * Explanation follows: if protocol handler, mangling packet, will
340 * be the first on list, it is not able to sense, that packet
341 * is cloned and should be copied-on-write, so that it will
342 * change it and subsequent readers will get broken packet.
343 * --ANK (980803)
344 */
345
346/**
347 * dev_add_pack - add packet handler
348 * @pt: packet type declaration
349 *
350 * Add a protocol handler to the networking stack. The passed &packet_type
351 * is linked into kernel lists and may not be freed until it has been
352 * removed from the kernel lists.
353 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900354 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * guarantee all CPU's that are in middle of receiving packets
356 * will see the new packet type (until the next received packet).
357 */
358
359void dev_add_pack(struct packet_type *pt)
360{
361 int hash;
362
363 spin_lock_bh(&ptype_lock);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700364 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 list_add_rcu(&pt->list, &ptype_all);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700366 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 hash = ntohs(pt->type) & 15;
368 list_add_rcu(&pt->list, &ptype_base[hash]);
369 }
370 spin_unlock_bh(&ptype_lock);
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/**
374 * __dev_remove_pack - remove packet handler
375 * @pt: packet type declaration
376 *
377 * Remove a protocol handler that was previously added to the kernel
378 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
379 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900380 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 *
382 * The packet type might still be in use by receivers
383 * and must not be freed until after all the CPU's have gone
384 * through a quiescent state.
385 */
386void __dev_remove_pack(struct packet_type *pt)
387{
388 struct list_head *head;
389 struct packet_type *pt1;
390
391 spin_lock_bh(&ptype_lock);
392
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700393 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 head = &ptype_all;
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700395 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 head = &ptype_base[ntohs(pt->type) & 15];
397
398 list_for_each_entry(pt1, head, list) {
399 if (pt == pt1) {
400 list_del_rcu(&pt->list);
401 goto out;
402 }
403 }
404
405 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
406out:
407 spin_unlock_bh(&ptype_lock);
408}
409/**
410 * dev_remove_pack - remove packet handler
411 * @pt: packet type declaration
412 *
413 * Remove a protocol handler that was previously added to the kernel
414 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
415 * from the kernel lists and can be freed or reused once this function
416 * returns.
417 *
418 * This call sleeps to guarantee that no CPU is looking at the packet
419 * type after return.
420 */
421void dev_remove_pack(struct packet_type *pt)
422{
423 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 synchronize_net();
426}
427
428/******************************************************************************
429
430 Device Boot-time Settings Routines
431
432*******************************************************************************/
433
434/* Boot time configuration table */
435static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
436
437/**
438 * netdev_boot_setup_add - add new setup entry
439 * @name: name of the device
440 * @map: configured settings for the device
441 *
442 * Adds new setup entry to the dev_boot_setup list. The function
443 * returns 0 on error and 1 on success. This is a generic routine to
444 * all netdevices.
445 */
446static int netdev_boot_setup_add(char *name, struct ifmap *map)
447{
448 struct netdev_boot_setup *s;
449 int i;
450
451 s = dev_boot_setup;
452 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
453 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
454 memset(s[i].name, 0, sizeof(s[i].name));
455 strcpy(s[i].name, name);
456 memcpy(&s[i].map, map, sizeof(s[i].map));
457 break;
458 }
459 }
460
461 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
462}
463
464/**
465 * netdev_boot_setup_check - check boot time settings
466 * @dev: the netdevice
467 *
468 * Check boot time settings for the device.
469 * The found settings are set for the device to be used
470 * later in the device probing.
471 * Returns 0 if no settings found, 1 if they are.
472 */
473int netdev_boot_setup_check(struct net_device *dev)
474{
475 struct netdev_boot_setup *s = dev_boot_setup;
476 int i;
477
478 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
479 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
480 !strncmp(dev->name, s[i].name, strlen(s[i].name))) {
481 dev->irq = s[i].map.irq;
482 dev->base_addr = s[i].map.base_addr;
483 dev->mem_start = s[i].map.mem_start;
484 dev->mem_end = s[i].map.mem_end;
485 return 1;
486 }
487 }
488 return 0;
489}
490
491
492/**
493 * netdev_boot_base - get address from boot time settings
494 * @prefix: prefix for network device
495 * @unit: id for network device
496 *
497 * Check boot time settings for the base address of device.
498 * The found settings are set for the device to be used
499 * later in the device probing.
500 * Returns 0 if no settings found.
501 */
502unsigned long netdev_boot_base(const char *prefix, int unit)
503{
504 const struct netdev_boot_setup *s = dev_boot_setup;
505 char name[IFNAMSIZ];
506 int i;
507
508 sprintf(name, "%s%d", prefix, unit);
509
510 /*
511 * If device already registered then return base of 1
512 * to indicate not to probe for this interface
513 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700514 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 1;
516
517 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
518 if (!strcmp(name, s[i].name))
519 return s[i].map.base_addr;
520 return 0;
521}
522
523/*
524 * Saves at boot time configured settings for any netdevice.
525 */
526int __init netdev_boot_setup(char *str)
527{
528 int ints[5];
529 struct ifmap map;
530
531 str = get_options(str, ARRAY_SIZE(ints), ints);
532 if (!str || !*str)
533 return 0;
534
535 /* Save settings */
536 memset(&map, 0, sizeof(map));
537 if (ints[0] > 0)
538 map.irq = ints[1];
539 if (ints[0] > 1)
540 map.base_addr = ints[2];
541 if (ints[0] > 2)
542 map.mem_start = ints[3];
543 if (ints[0] > 3)
544 map.mem_end = ints[4];
545
546 /* Add new entry to the list */
547 return netdev_boot_setup_add(str, &map);
548}
549
550__setup("netdev=", netdev_boot_setup);
551
552/*******************************************************************************
553
554 Device Interface Subroutines
555
556*******************************************************************************/
557
558/**
559 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700560 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * @name: name to find
562 *
563 * Find an interface by name. Must be called under RTNL semaphore
564 * or @dev_base_lock. If the name is found a pointer to the device
565 * is returned. If the name is not found then %NULL is returned. The
566 * reference counters are not incremented so the caller must be
567 * careful with locks.
568 */
569
Eric W. Biederman881d9662007-09-17 11:56:21 -0700570struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 struct hlist_node *p;
573
Eric W. Biederman881d9662007-09-17 11:56:21 -0700574 hlist_for_each(p, dev_name_hash(net, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 struct net_device *dev
576 = hlist_entry(p, struct net_device, name_hlist);
577 if (!strncmp(dev->name, name, IFNAMSIZ))
578 return dev;
579 }
580 return NULL;
581}
582
583/**
584 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700585 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * @name: name to find
587 *
588 * Find an interface by name. This can be called from any
589 * context and does its own locking. The returned handle has
590 * the usage count incremented and the caller must use dev_put() to
591 * release it when it is no longer needed. %NULL is returned if no
592 * matching device is found.
593 */
594
Eric W. Biederman881d9662007-09-17 11:56:21 -0700595struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 struct net_device *dev;
598
599 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700600 dev = __dev_get_by_name(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (dev)
602 dev_hold(dev);
603 read_unlock(&dev_base_lock);
604 return dev;
605}
606
607/**
608 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700609 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 * @ifindex: index of device
611 *
612 * Search for an interface by index. Returns %NULL if the device
613 * is not found or a pointer to the device. The device has not
614 * had its reference counter increased so the caller must be careful
615 * about locking. The caller must hold either the RTNL semaphore
616 * or @dev_base_lock.
617 */
618
Eric W. Biederman881d9662007-09-17 11:56:21 -0700619struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 struct hlist_node *p;
622
Eric W. Biederman881d9662007-09-17 11:56:21 -0700623 hlist_for_each(p, dev_index_hash(net, ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct net_device *dev
625 = hlist_entry(p, struct net_device, index_hlist);
626 if (dev->ifindex == ifindex)
627 return dev;
628 }
629 return NULL;
630}
631
632
633/**
634 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700635 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * @ifindex: index of device
637 *
638 * Search for an interface by index. Returns NULL if the device
639 * is not found or a pointer to the device. The device returned has
640 * had a reference added and the pointer is safe until the user calls
641 * dev_put to indicate they have finished with it.
642 */
643
Eric W. Biederman881d9662007-09-17 11:56:21 -0700644struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 struct net_device *dev;
647
648 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700649 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (dev)
651 dev_hold(dev);
652 read_unlock(&dev_base_lock);
653 return dev;
654}
655
656/**
657 * dev_getbyhwaddr - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700658 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 * @type: media type of device
660 * @ha: hardware address
661 *
662 * Search for an interface by MAC address. Returns NULL if the device
663 * is not found or a pointer to the device. The caller must hold the
664 * rtnl semaphore. The returned device has not had its ref count increased
665 * and the caller must therefore be careful about locking
666 *
667 * BUGS:
668 * If the API was consistent this would be __dev_get_by_hwaddr
669 */
670
Eric W. Biederman881d9662007-09-17 11:56:21 -0700671struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 struct net_device *dev;
674
675 ASSERT_RTNL();
676
Eric W. Biederman881d9662007-09-17 11:56:21 -0700677 for_each_netdev(&init_net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (dev->type == type &&
679 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700680 return dev;
681
682 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300685EXPORT_SYMBOL(dev_getbyhwaddr);
686
Eric W. Biederman881d9662007-09-17 11:56:21 -0700687struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700688{
689 struct net_device *dev;
690
691 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700692 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700693 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700694 return dev;
695
696 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700697}
698
699EXPORT_SYMBOL(__dev_getfirstbyhwtype);
700
Eric W. Biederman881d9662007-09-17 11:56:21 -0700701struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct net_device *dev;
704
705 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700706 dev = __dev_getfirstbyhwtype(net, type);
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700707 if (dev)
708 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 rtnl_unlock();
710 return dev;
711}
712
713EXPORT_SYMBOL(dev_getfirstbyhwtype);
714
715/**
716 * dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700717 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * @if_flags: IFF_* values
719 * @mask: bitmask of bits in if_flags to check
720 *
721 * Search for any interface with the given flags. Returns NULL if a device
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900722 * is not found or a pointer to the device. The device returned has
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 * had a reference added and the pointer is safe until the user calls
724 * dev_put to indicate they have finished with it.
725 */
726
Eric W. Biederman881d9662007-09-17 11:56:21 -0700727struct net_device * dev_get_by_flags(struct net *net, unsigned short if_flags, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700729 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Pavel Emelianov7562f872007-05-03 15:13:45 -0700731 ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700733 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (((dev->flags ^ if_flags) & mask) == 0) {
735 dev_hold(dev);
Pavel Emelianov7562f872007-05-03 15:13:45 -0700736 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 break;
738 }
739 }
740 read_unlock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -0700741 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744/**
745 * dev_valid_name - check if name is okay for network device
746 * @name: name string
747 *
748 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700749 * to allow sysfs to work. We also disallow any kind of
750 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 */
Mitch Williamsc2373ee2005-11-09 10:34:45 -0800752int dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700754 if (*name == '\0')
755 return 0;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700756 if (strlen(name) >= IFNAMSIZ)
757 return 0;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700758 if (!strcmp(name, ".") || !strcmp(name, ".."))
759 return 0;
760
761 while (*name) {
762 if (*name == '/' || isspace(*name))
763 return 0;
764 name++;
765 }
766 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200770 * __dev_alloc_name - allocate a name for a device
771 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200773 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 *
775 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -0700776 * id. It scans list of devices to build up a free map, then chooses
777 * the first empty slot. The caller must hold the dev_base or rtnl lock
778 * while allocating the name and adding the device in order to avoid
779 * duplicates.
780 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
781 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 */
783
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200784static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 const char *p;
788 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700789 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct net_device *d;
791
792 p = strnchr(name, IFNAMSIZ-1, '%');
793 if (p) {
794 /*
795 * Verify the string as this thing may have come from
796 * the user. There must be either one "%d" and no other "%"
797 * characters.
798 */
799 if (p[1] != 'd' || strchr(p + 2, '%'))
800 return -EINVAL;
801
802 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700803 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!inuse)
805 return -ENOMEM;
806
Eric W. Biederman881d9662007-09-17 11:56:21 -0700807 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (!sscanf(d->name, name, &i))
809 continue;
810 if (i < 0 || i >= max_netdevices)
811 continue;
812
813 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200814 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (!strncmp(buf, d->name, IFNAMSIZ))
816 set_bit(i, inuse);
817 }
818
819 i = find_first_zero_bit(inuse, max_netdevices);
820 free_page((unsigned long) inuse);
821 }
822
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200823 snprintf(buf, IFNAMSIZ, name, i);
824 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* It is possible to run out of possible slots
828 * when the name is long and there isn't enough space left
829 * for the digits, or if all bits are used.
830 */
831 return -ENFILE;
832}
833
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200834/**
835 * dev_alloc_name - allocate a name for a device
836 * @dev: device
837 * @name: name format string
838 *
839 * Passed a format string - eg "lt%d" it will try and find a suitable
840 * id. It scans list of devices to build up a free map, then chooses
841 * the first empty slot. The caller must hold the dev_base or rtnl lock
842 * while allocating the name and adding the device in order to avoid
843 * duplicates.
844 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
845 * Returns the number of the unit assigned or a negative errno code.
846 */
847
848int dev_alloc_name(struct net_device *dev, const char *name)
849{
850 char buf[IFNAMSIZ];
851 struct net *net;
852 int ret;
853
854 BUG_ON(!dev->nd_net);
855 net = dev->nd_net;
856 ret = __dev_alloc_name(net, name, buf);
857 if (ret >= 0)
858 strlcpy(dev->name, buf, IFNAMSIZ);
859 return ret;
860}
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863/**
864 * dev_change_name - change name of a device
865 * @dev: device
866 * @newname: name (or format string) must be at least IFNAMSIZ
867 *
868 * Change name of a device, can pass format strings "eth%d".
869 * for wildcarding.
870 */
871int dev_change_name(struct net_device *dev, char *newname)
872{
Herbert Xufcc5a032007-07-30 17:03:38 -0700873 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -0700875 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700876 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700879 BUG_ON(!dev->nd_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Eric W. Biederman881d9662007-09-17 11:56:21 -0700881 net = dev->nd_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (dev->flags & IFF_UP)
883 return -EBUSY;
884
885 if (!dev_valid_name(newname))
886 return -EINVAL;
887
Herbert Xufcc5a032007-07-30 17:03:38 -0700888 memcpy(oldname, dev->name, IFNAMSIZ);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (strchr(newname, '%')) {
891 err = dev_alloc_name(dev, newname);
892 if (err < 0)
893 return err;
894 strcpy(newname, dev->name);
895 }
Eric W. Biederman881d9662007-09-17 11:56:21 -0700896 else if (__dev_get_by_name(net, newname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return -EEXIST;
898 else
899 strlcpy(dev->name, newname, IFNAMSIZ);
900
Herbert Xufcc5a032007-07-30 17:03:38 -0700901rollback:
Eric W. Biederman92749822007-04-03 00:07:30 -0600902 device_rename(&dev->dev, dev->name);
Herbert Xu7f988ea2007-07-30 16:35:46 -0700903
904 write_lock_bh(&dev_base_lock);
Eric W. Biederman92749822007-04-03 00:07:30 -0600905 hlist_del(&dev->name_hlist);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700906 hlist_add_head(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -0700907 write_unlock_bh(&dev_base_lock);
908
Pavel Emelyanov056925a2007-09-16 15:42:43 -0700909 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -0700910 ret = notifier_to_errno(ret);
911
912 if (ret) {
913 if (err) {
914 printk(KERN_ERR
915 "%s: name change rollback failed: %d.\n",
916 dev->name, ret);
917 } else {
918 err = ret;
919 memcpy(dev->name, oldname, IFNAMSIZ);
920 goto rollback;
921 }
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 return err;
925}
926
927/**
Stephen Hemminger3041a062006-05-26 13:25:24 -0700928 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -0700929 * @dev: device to cause notification
930 *
931 * Called to indicate a device has changed features.
932 */
933void netdev_features_change(struct net_device *dev)
934{
Pavel Emelyanov056925a2007-09-16 15:42:43 -0700935 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -0700936}
937EXPORT_SYMBOL(netdev_features_change);
938
939/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * netdev_state_change - device changes state
941 * @dev: device to cause notification
942 *
943 * Called to indicate a device has changed state. This function calls
944 * the notifier chains for netdev_chain and sends a NEWLINK message
945 * to the routing socket.
946 */
947void netdev_state_change(struct net_device *dev)
948{
949 if (dev->flags & IFF_UP) {
Pavel Emelyanov056925a2007-09-16 15:42:43 -0700950 call_netdevice_notifiers(NETDEV_CHANGE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
952 }
953}
954
955/**
956 * dev_load - load a network module
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700957 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * @name: name of interface
959 *
960 * If a network interface is not present and the process has suitable
961 * privileges this function loads the module. If module loading is not
962 * available in this kernel then it becomes a nop.
963 */
964
Eric W. Biederman881d9662007-09-17 11:56:21 -0700965void dev_load(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900967 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700970 dev = __dev_get_by_name(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 read_unlock(&dev_base_lock);
972
973 if (!dev && capable(CAP_SYS_MODULE))
974 request_module("%s", name);
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/**
978 * dev_open - prepare an interface for use.
979 * @dev: device to open
980 *
981 * Takes a device from down to up state. The device's private open
982 * function is invoked and then the multicast lists are loaded. Finally
983 * the device is moved into the up state and a %NETDEV_UP message is
984 * sent to the netdev notifier chain.
985 *
986 * Calling this function on an active interface is a nop. On a failure
987 * a negative errno code is returned.
988 */
989int dev_open(struct net_device *dev)
990{
991 int ret = 0;
992
993 /*
994 * Is it already up?
995 */
996
997 if (dev->flags & IFF_UP)
998 return 0;
999
1000 /*
1001 * Is it even present?
1002 */
1003 if (!netif_device_present(dev))
1004 return -ENODEV;
1005
1006 /*
1007 * Call device private open method
1008 */
1009 set_bit(__LINK_STATE_START, &dev->state);
1010 if (dev->open) {
1011 ret = dev->open(dev);
1012 if (ret)
1013 clear_bit(__LINK_STATE_START, &dev->state);
1014 }
1015
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001016 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 * If it went open OK then:
1018 */
1019
1020 if (!ret) {
1021 /*
1022 * Set the flags.
1023 */
1024 dev->flags |= IFF_UP;
1025
1026 /*
1027 * Initialize multicasting status
1028 */
Patrick McHardy4417da62007-06-27 01:28:10 -07001029 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /*
1032 * Wakeup transmit queue engine
1033 */
1034 dev_activate(dev);
1035
1036 /*
1037 * ... and announce new interface.
1038 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001039 call_netdevice_notifiers(NETDEV_UP, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041 return ret;
1042}
1043
1044/**
1045 * dev_close - shutdown an interface.
1046 * @dev: device to shutdown
1047 *
1048 * This function moves an active device into down state. A
1049 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1050 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1051 * chain.
1052 */
1053int dev_close(struct net_device *dev)
1054{
David S. Miller9d5010d2007-09-12 14:33:25 +02001055 might_sleep();
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (!(dev->flags & IFF_UP))
1058 return 0;
1059
1060 /*
1061 * Tell people we are going down, so that they can
1062 * prepare to death, when device is still operating.
1063 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001064 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 dev_deactivate(dev);
1067
1068 clear_bit(__LINK_STATE_START, &dev->state);
1069
1070 /* Synchronize to scheduled poll. We cannot touch poll list,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001071 * it can be even on different cpu. So just clear netif_running().
1072 *
1073 * dev->stop() will invoke napi_disable() on all of it's
1074 * napi_struct instances on this device.
1075 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 smp_mb__after_clear_bit(); /* Commit netif_running(). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 /*
1079 * Call the device specific close. This cannot fail.
1080 * Only if device is UP
1081 *
1082 * We allow it to be called even after a DETACH hot-plug
1083 * event.
1084 */
1085 if (dev->stop)
1086 dev->stop(dev);
1087
1088 /*
1089 * Device is now down.
1090 */
1091
1092 dev->flags &= ~IFF_UP;
1093
1094 /*
1095 * Tell people we are down
1096 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001097 call_netdevice_notifiers(NETDEV_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 return 0;
1100}
1101
1102
Eric W. Biederman881d9662007-09-17 11:56:21 -07001103static int dev_boot_phase = 1;
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105/*
1106 * Device change register/unregister. These are not inline or static
1107 * as we export them to the world.
1108 */
1109
1110/**
1111 * register_netdevice_notifier - register a network notifier block
1112 * @nb: notifier
1113 *
1114 * Register a notifier to be called when network device events occur.
1115 * The notifier passed is linked into the kernel structures and must
1116 * not be reused until it has been unregistered. A negative errno code
1117 * is returned on a failure.
1118 *
1119 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001120 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 * view of the network device list.
1122 */
1123
1124int register_netdevice_notifier(struct notifier_block *nb)
1125{
1126 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001127 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001128 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 int err;
1130
1131 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001132 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001133 if (err)
1134 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001135 if (dev_boot_phase)
1136 goto unlock;
1137 for_each_net(net) {
1138 for_each_netdev(net, dev) {
1139 err = nb->notifier_call(nb, NETDEV_REGISTER, dev);
1140 err = notifier_to_errno(err);
1141 if (err)
1142 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Eric W. Biederman881d9662007-09-17 11:56:21 -07001144 if (!(dev->flags & IFF_UP))
1145 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001146
Eric W. Biederman881d9662007-09-17 11:56:21 -07001147 nb->notifier_call(nb, NETDEV_UP, dev);
1148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001150
1151unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 rtnl_unlock();
1153 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001154
1155rollback:
1156 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001157 for_each_net(net) {
1158 for_each_netdev(net, dev) {
1159 if (dev == last)
1160 break;
Herbert Xufcc5a032007-07-30 17:03:38 -07001161
Eric W. Biederman881d9662007-09-17 11:56:21 -07001162 if (dev->flags & IFF_UP) {
1163 nb->notifier_call(nb, NETDEV_GOING_DOWN, dev);
1164 nb->notifier_call(nb, NETDEV_DOWN, dev);
1165 }
1166 nb->notifier_call(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001167 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001168 }
1169 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
1172/**
1173 * unregister_netdevice_notifier - unregister a network notifier block
1174 * @nb: notifier
1175 *
1176 * Unregister a notifier previously registered by
1177 * register_netdevice_notifier(). The notifier is unlinked into the
1178 * kernel structures and may then be reused. A negative errno code
1179 * is returned on a failure.
1180 */
1181
1182int unregister_netdevice_notifier(struct notifier_block *nb)
1183{
Herbert Xu9f514952006-03-25 01:24:25 -08001184 int err;
1185
1186 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001187 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xu9f514952006-03-25 01:24:25 -08001188 rtnl_unlock();
1189 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192/**
1193 * call_netdevice_notifiers - call all network notifier blocks
1194 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001195 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 *
1197 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001198 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
1200
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001201int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001203 return raw_notifier_call_chain(&netdev_chain, val, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
1206/* When > 0 there are consumers of rx skb time stamps */
1207static atomic_t netstamp_needed = ATOMIC_INIT(0);
1208
1209void net_enable_timestamp(void)
1210{
1211 atomic_inc(&netstamp_needed);
1212}
1213
1214void net_disable_timestamp(void)
1215{
1216 atomic_dec(&netstamp_needed);
1217}
1218
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001219static inline void net_timestamp(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 if (atomic_read(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001222 __net_timestamp(skb);
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001223 else
1224 skb->tstamp.tv64 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227/*
1228 * Support routine. Sends outgoing frames to any network
1229 * taps currently in use.
1230 */
1231
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001232static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
1234 struct packet_type *ptype;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001235
1236 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 rcu_read_lock();
1239 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1240 /* Never send packets back to the socket
1241 * they originated from - MvS (miquels@drinkel.ow.org)
1242 */
1243 if ((ptype->dev == dev || !ptype->dev) &&
1244 (ptype->af_packet_priv == NULL ||
1245 (struct sock *)ptype->af_packet_priv != skb->sk)) {
1246 struct sk_buff *skb2= skb_clone(skb, GFP_ATOMIC);
1247 if (!skb2)
1248 break;
1249
1250 /* skb->nh should be correctly
1251 set by sender, so that the second statement is
1252 just protection against buggy protocols.
1253 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001254 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001256 if (skb_network_header(skb2) < skb2->data ||
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001257 skb2->network_header > skb2->tail) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (net_ratelimit())
1259 printk(KERN_CRIT "protocol %04x is "
1260 "buggy, dev %s\n",
1261 skb2->protocol, dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001262 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001265 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 skb2->pkt_type = PACKET_OUTGOING;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001267 ptype->func(skb2, skb->dev, ptype, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269 }
1270 rcu_read_unlock();
1271}
1272
Denis Vlasenko56079432006-03-29 15:57:29 -08001273
1274void __netif_schedule(struct net_device *dev)
1275{
1276 if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
1277 unsigned long flags;
1278 struct softnet_data *sd;
1279
1280 local_irq_save(flags);
1281 sd = &__get_cpu_var(softnet_data);
1282 dev->next_sched = sd->output_queue;
1283 sd->output_queue = dev;
1284 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1285 local_irq_restore(flags);
1286 }
1287}
1288EXPORT_SYMBOL(__netif_schedule);
1289
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001290void dev_kfree_skb_irq(struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08001291{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001292 if (atomic_dec_and_test(&skb->users)) {
1293 struct softnet_data *sd;
1294 unsigned long flags;
Denis Vlasenko56079432006-03-29 15:57:29 -08001295
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001296 local_irq_save(flags);
1297 sd = &__get_cpu_var(softnet_data);
1298 skb->next = sd->completion_queue;
1299 sd->completion_queue = skb;
1300 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1301 local_irq_restore(flags);
1302 }
Denis Vlasenko56079432006-03-29 15:57:29 -08001303}
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001304EXPORT_SYMBOL(dev_kfree_skb_irq);
Denis Vlasenko56079432006-03-29 15:57:29 -08001305
1306void dev_kfree_skb_any(struct sk_buff *skb)
1307{
1308 if (in_irq() || irqs_disabled())
1309 dev_kfree_skb_irq(skb);
1310 else
1311 dev_kfree_skb(skb);
1312}
1313EXPORT_SYMBOL(dev_kfree_skb_any);
1314
1315
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001316/**
1317 * netif_device_detach - mark device as removed
1318 * @dev: network device
1319 *
1320 * Mark device as removed from system and therefore no longer available.
1321 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001322void netif_device_detach(struct net_device *dev)
1323{
1324 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1325 netif_running(dev)) {
1326 netif_stop_queue(dev);
1327 }
1328}
1329EXPORT_SYMBOL(netif_device_detach);
1330
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001331/**
1332 * netif_device_attach - mark device as attached
1333 * @dev: network device
1334 *
1335 * Mark device as attached from system and restart if needed.
1336 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001337void netif_device_attach(struct net_device *dev)
1338{
1339 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1340 netif_running(dev)) {
1341 netif_wake_queue(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001342 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08001343 }
1344}
1345EXPORT_SYMBOL(netif_device_attach);
1346
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/*
1349 * Invalidate hardware checksum when packet is to be mangled, and
1350 * complete checksum manually on outgoing path.
1351 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07001352int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Al Virod3bc23e2006-11-14 21:24:49 -08001354 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07001355 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Patrick McHardy84fa7932006-08-29 16:44:56 -07001357 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07001358 goto out_set_summed;
1359
1360 if (unlikely(skb_shinfo(skb)->gso_size)) {
Herbert Xua430a432006-07-08 13:34:56 -07001361 /* Let GSO fix up the checksum. */
1362 goto out_set_summed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364
Herbert Xua0308472007-10-15 01:47:15 -07001365 offset = skb->csum_start - skb_headroom(skb);
1366 BUG_ON(offset >= skb_headlen(skb));
1367 csum = skb_checksum(skb, offset, skb->len - offset, 0);
1368
1369 offset += skb->csum_offset;
1370 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
1371
1372 if (skb_cloned(skb) &&
1373 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1375 if (ret)
1376 goto out;
1377 }
1378
Herbert Xua0308472007-10-15 01:47:15 -07001379 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07001380out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001382out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return ret;
1384}
1385
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001386/**
1387 * skb_gso_segment - Perform segmentation on skb.
1388 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07001389 * @features: features for the output path (see dev->features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001390 *
1391 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07001392 *
1393 * It may return NULL if the skb requires no segmentation. This is
1394 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001395 */
Herbert Xu576a30e2006-06-27 13:22:38 -07001396struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001397{
1398 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1399 struct packet_type *ptype;
Al Viro252e3342006-11-14 20:48:11 -08001400 __be16 type = skb->protocol;
Herbert Xua430a432006-07-08 13:34:56 -07001401 int err;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001402
1403 BUG_ON(skb_shinfo(skb)->frag_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001404
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001405 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001406 skb->mac_len = skb->network_header - skb->mac_header;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001407 __skb_pull(skb, skb->mac_len);
1408
Herbert Xuf9d106a2007-04-23 22:36:13 -07001409 if (WARN_ON(skb->ip_summed != CHECKSUM_PARTIAL)) {
Herbert Xua430a432006-07-08 13:34:56 -07001410 if (skb_header_cloned(skb) &&
1411 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1412 return ERR_PTR(err);
1413 }
1414
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001415 rcu_read_lock();
1416 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type) & 15], list) {
1417 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
Patrick McHardy84fa7932006-08-29 16:44:56 -07001418 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
Herbert Xua430a432006-07-08 13:34:56 -07001419 err = ptype->gso_send_check(skb);
1420 segs = ERR_PTR(err);
1421 if (err || skb_gso_ok(skb, features))
1422 break;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001423 __skb_push(skb, (skb->data -
1424 skb_network_header(skb)));
Herbert Xua430a432006-07-08 13:34:56 -07001425 }
Herbert Xu576a30e2006-06-27 13:22:38 -07001426 segs = ptype->gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001427 break;
1428 }
1429 }
1430 rcu_read_unlock();
1431
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001432 __skb_push(skb, skb->data - skb_mac_header(skb));
Herbert Xu576a30e2006-06-27 13:22:38 -07001433
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001434 return segs;
1435}
1436
1437EXPORT_SYMBOL(skb_gso_segment);
1438
Herbert Xufb286bb2005-11-10 13:01:24 -08001439/* Take action when hardware reception checksum errors are detected. */
1440#ifdef CONFIG_BUG
1441void netdev_rx_csum_fault(struct net_device *dev)
1442{
1443 if (net_ratelimit()) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001444 printk(KERN_ERR "%s: hw csum failure.\n",
Stephen Hemminger246a4212005-12-08 15:21:39 -08001445 dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08001446 dump_stack();
1447 }
1448}
1449EXPORT_SYMBOL(netdev_rx_csum_fault);
1450#endif
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452/* Actually, we should eliminate this check as soon as we know, that:
1453 * 1. IOMMU is present and allows to map all the memory.
1454 * 2. No high memory really exists on this machine.
1455 */
1456
1457static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1458{
Herbert Xu3d3a8532006-06-27 13:33:10 -07001459#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 int i;
1461
1462 if (dev->features & NETIF_F_HIGHDMA)
1463 return 0;
1464
1465 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1466 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1467 return 1;
1468
Herbert Xu3d3a8532006-06-27 13:33:10 -07001469#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return 0;
1471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001473struct dev_gso_cb {
1474 void (*destructor)(struct sk_buff *skb);
1475};
1476
1477#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1478
1479static void dev_gso_skb_destructor(struct sk_buff *skb)
1480{
1481 struct dev_gso_cb *cb;
1482
1483 do {
1484 struct sk_buff *nskb = skb->next;
1485
1486 skb->next = nskb->next;
1487 nskb->next = NULL;
1488 kfree_skb(nskb);
1489 } while (skb->next);
1490
1491 cb = DEV_GSO_CB(skb);
1492 if (cb->destructor)
1493 cb->destructor(skb);
1494}
1495
1496/**
1497 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1498 * @skb: buffer to segment
1499 *
1500 * This function segments the given skb and stores the list of segments
1501 * in skb->next.
1502 */
1503static int dev_gso_segment(struct sk_buff *skb)
1504{
1505 struct net_device *dev = skb->dev;
1506 struct sk_buff *segs;
Herbert Xu576a30e2006-06-27 13:22:38 -07001507 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1508 NETIF_F_SG : 0);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001509
Herbert Xu576a30e2006-06-27 13:22:38 -07001510 segs = skb_gso_segment(skb, features);
1511
1512 /* Verifying header integrity only. */
1513 if (!segs)
1514 return 0;
1515
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001516 if (unlikely(IS_ERR(segs)))
1517 return PTR_ERR(segs);
1518
1519 skb->next = segs;
1520 DEV_GSO_CB(skb)->destructor = skb->destructor;
1521 skb->destructor = dev_gso_skb_destructor;
1522
1523 return 0;
1524}
1525
1526int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1527{
1528 if (likely(!skb->next)) {
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -07001529 if (!list_empty(&ptype_all))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001530 dev_queue_xmit_nit(skb, dev);
1531
Herbert Xu576a30e2006-06-27 13:22:38 -07001532 if (netif_needs_gso(dev, skb)) {
1533 if (unlikely(dev_gso_segment(skb)))
1534 goto out_kfree_skb;
1535 if (skb->next)
1536 goto gso;
1537 }
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001538
Herbert Xu576a30e2006-06-27 13:22:38 -07001539 return dev->hard_start_xmit(skb, dev);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001540 }
1541
Herbert Xu576a30e2006-06-27 13:22:38 -07001542gso:
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001543 do {
1544 struct sk_buff *nskb = skb->next;
1545 int rc;
1546
1547 skb->next = nskb->next;
1548 nskb->next = NULL;
1549 rc = dev->hard_start_xmit(nskb, dev);
1550 if (unlikely(rc)) {
Michael Chanf54d9e82006-06-25 23:57:04 -07001551 nskb->next = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001552 skb->next = nskb;
1553 return rc;
1554 }
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07001555 if (unlikely((netif_queue_stopped(dev) ||
1556 netif_subqueue_stopped(dev, skb->queue_mapping)) &&
1557 skb->next))
Michael Chanf54d9e82006-06-25 23:57:04 -07001558 return NETDEV_TX_BUSY;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001559 } while (skb->next);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001560
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001561 skb->destructor = DEV_GSO_CB(skb)->destructor;
1562
1563out_kfree_skb:
1564 kfree_skb(skb);
1565 return 0;
1566}
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568/**
1569 * dev_queue_xmit - transmit a buffer
1570 * @skb: buffer to transmit
1571 *
1572 * Queue a buffer for transmission to a network device. The caller must
1573 * have set the device and priority and built the buffer before calling
1574 * this function. The function can be called from an interrupt.
1575 *
1576 * A negative errno code is returned on a failure. A success does not
1577 * guarantee the frame will be transmitted as it may be dropped due
1578 * to congestion or traffic shaping.
Ben Greearaf191362005-04-24 20:12:36 -07001579 *
1580 * -----------------------------------------------------------------------------------
1581 * I notice this method can also return errors from the queue disciplines,
1582 * including NET_XMIT_DROP, which is a positive value. So, errors can also
1583 * be positive.
1584 *
1585 * Regardless of the return value, the skb is consumed, so it is currently
1586 * difficult to retry a send to this method. (You can bump the ref count
1587 * before sending to hold a reference for retry if you are careful.)
1588 *
1589 * When calling this method, interrupts MUST be enabled. This is because
1590 * the BH enable code must have IRQs enabled so that it will not deadlock.
1591 * --BLG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 */
1593
1594int dev_queue_xmit(struct sk_buff *skb)
1595{
1596 struct net_device *dev = skb->dev;
1597 struct Qdisc *q;
1598 int rc = -ENOMEM;
1599
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001600 /* GSO will handle the following emulations directly. */
1601 if (netif_needs_gso(dev, skb))
1602 goto gso;
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (skb_shinfo(skb)->frag_list &&
1605 !(dev->features & NETIF_F_FRAGLIST) &&
Herbert Xu364c6ba2006-06-09 16:10:40 -07001606 __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 goto out_kfree_skb;
1608
1609 /* Fragmented skb is linearized if device does not support SG,
1610 * or if at least one of fragments is in highmem and device
1611 * does not support DMA from it.
1612 */
1613 if (skb_shinfo(skb)->nr_frags &&
1614 (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
Herbert Xu364c6ba2006-06-09 16:10:40 -07001615 __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 goto out_kfree_skb;
1617
1618 /* If packet is not checksummed and device does not support
1619 * checksumming for this protocol, complete checksumming here.
1620 */
Herbert Xu663ead32007-04-09 11:59:07 -07001621 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1622 skb_set_transport_header(skb, skb->csum_start -
1623 skb_headroom(skb));
1624
Herbert Xua2988302007-06-28 13:44:37 -07001625 if (!(dev->features & NETIF_F_GEN_CSUM) &&
1626 !((dev->features & NETIF_F_IP_CSUM) &&
1627 skb->protocol == htons(ETH_P_IP)) &&
1628 !((dev->features & NETIF_F_IPV6_CSUM) &&
1629 skb->protocol == htons(ETH_P_IPV6)))
Herbert Xu663ead32007-04-09 11:59:07 -07001630 if (skb_checksum_help(skb))
1631 goto out_kfree_skb;
1632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001634gso:
Eric Dumazet2d7ceec2005-09-27 15:22:58 -07001635 spin_lock_prefetch(&dev->queue_lock);
1636
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001637 /* Disable soft irqs for various locks below. Also
1638 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001640 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001642 /* Updates of qdisc are serialized by queue_lock.
1643 * The struct Qdisc which is pointed to by qdisc is now a
1644 * rcu structure - it may be accessed without acquiring
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 * a lock (but the structure may be stale.) The freeing of the
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001646 * qdisc will be deferred until it's known that there are no
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 * more references to it.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001648 *
1649 * If the qdisc has an enqueue function, we still need to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 * hold the queue_lock before calling it, since queue_lock
1651 * also serializes access to the device queue.
1652 */
1653
1654 q = rcu_dereference(dev->qdisc);
1655#ifdef CONFIG_NET_CLS_ACT
1656 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_EGRESS);
1657#endif
1658 if (q->enqueue) {
1659 /* Grab device queue */
1660 spin_lock(&dev->queue_lock);
Patrick McHardy85670cc2006-09-27 16:45:45 -07001661 q = dev->qdisc;
1662 if (q->enqueue) {
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07001663 /* reset queue_mapping to zero */
Pavel Emelyanovdfa40912007-10-21 16:57:55 -07001664 skb_set_queue_mapping(skb, 0);
Patrick McHardy85670cc2006-09-27 16:45:45 -07001665 rc = q->enqueue(skb, q);
1666 qdisc_run(dev);
1667 spin_unlock(&dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Patrick McHardy85670cc2006-09-27 16:45:45 -07001669 rc = rc == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : rc;
1670 goto out;
1671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 spin_unlock(&dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674
1675 /* The device has no queue. Common case for software devices:
1676 loopback, all the sorts of tunnels...
1677
Herbert Xu932ff272006-06-09 12:20:56 -07001678 Really, it is unlikely that netif_tx_lock protection is necessary
1679 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 counters.)
1681 However, it is possible, that they rely on protection
1682 made by us here.
1683
1684 Check this and shot the lock. It is not prone from deadlocks.
1685 Either shot noqueue qdisc, it is even simpler 8)
1686 */
1687 if (dev->flags & IFF_UP) {
1688 int cpu = smp_processor_id(); /* ok because BHs are off */
1689
1690 if (dev->xmit_lock_owner != cpu) {
1691
1692 HARD_TX_LOCK(dev, cpu);
1693
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07001694 if (!netif_queue_stopped(dev) &&
1695 !netif_subqueue_stopped(dev, skb->queue_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 rc = 0;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001697 if (!dev_hard_start_xmit(skb, dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 HARD_TX_UNLOCK(dev);
1699 goto out;
1700 }
1701 }
1702 HARD_TX_UNLOCK(dev);
1703 if (net_ratelimit())
1704 printk(KERN_CRIT "Virtual device %s asks to "
1705 "queue packet!\n", dev->name);
1706 } else {
1707 /* Recursion is detected! It is possible,
1708 * unfortunately */
1709 if (net_ratelimit())
1710 printk(KERN_CRIT "Dead loop on virtual device "
1711 "%s, fix it urgently!\n", dev->name);
1712 }
1713 }
1714
1715 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07001716 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718out_kfree_skb:
1719 kfree_skb(skb);
1720 return rc;
1721out:
Herbert Xud4828d82006-06-22 02:28:18 -07001722 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return rc;
1724}
1725
1726
1727/*=======================================================================
1728 Receiver routines
1729 =======================================================================*/
1730
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07001731int netdev_max_backlog __read_mostly = 1000;
1732int netdev_budget __read_mostly = 300;
1733int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1736
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738/**
1739 * netif_rx - post buffer to the network code
1740 * @skb: buffer to post
1741 *
1742 * This function receives a packet from a device driver and queues it for
1743 * the upper (protocol) levels to process. It always succeeds. The buffer
1744 * may be dropped during processing for congestion control or by the
1745 * protocol layers.
1746 *
1747 * return values:
1748 * NET_RX_SUCCESS (no congestion)
1749 * NET_RX_CN_LOW (low congestion)
1750 * NET_RX_CN_MOD (moderate congestion)
1751 * NET_RX_CN_HIGH (high congestion)
1752 * NET_RX_DROP (packet was dropped)
1753 *
1754 */
1755
1756int netif_rx(struct sk_buff *skb)
1757{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 struct softnet_data *queue;
1759 unsigned long flags;
1760
1761 /* if netpoll wants it, pretend we never saw it */
1762 if (netpoll_rx(skb))
1763 return NET_RX_DROP;
1764
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001765 if (!skb->tstamp.tv64)
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001766 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 /*
1769 * The code is rearranged so that the path is the most
1770 * short when CPU is congested, but is still operating.
1771 */
1772 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 queue = &__get_cpu_var(softnet_data);
1774
1775 __get_cpu_var(netdev_rx_stat).total++;
1776 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
1777 if (queue->input_pkt_queue.qlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778enqueue:
1779 dev_hold(skb->dev);
1780 __skb_queue_tail(&queue->input_pkt_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 local_irq_restore(flags);
Stephen Hemminger34008d82005-06-23 20:10:00 -07001782 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001785 napi_schedule(&queue->backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 goto enqueue;
1787 }
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 __get_cpu_var(netdev_rx_stat).dropped++;
1790 local_irq_restore(flags);
1791
1792 kfree_skb(skb);
1793 return NET_RX_DROP;
1794}
1795
1796int netif_rx_ni(struct sk_buff *skb)
1797{
1798 int err;
1799
1800 preempt_disable();
1801 err = netif_rx(skb);
1802 if (local_softirq_pending())
1803 do_softirq();
1804 preempt_enable();
1805
1806 return err;
1807}
1808
1809EXPORT_SYMBOL(netif_rx_ni);
1810
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001811static inline struct net_device *skb_bond(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 struct net_device *dev = skb->dev;
1814
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001815 if (dev->master) {
David S. Miller7ea49ed2006-08-14 17:08:36 -07001816 if (skb_bond_should_drop(skb)) {
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001817 kfree_skb(skb);
1818 return NULL;
1819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 skb->dev = dev->master;
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001821 }
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001822
1823 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827static void net_tx_action(struct softirq_action *h)
1828{
1829 struct softnet_data *sd = &__get_cpu_var(softnet_data);
1830
1831 if (sd->completion_queue) {
1832 struct sk_buff *clist;
1833
1834 local_irq_disable();
1835 clist = sd->completion_queue;
1836 sd->completion_queue = NULL;
1837 local_irq_enable();
1838
1839 while (clist) {
1840 struct sk_buff *skb = clist;
1841 clist = clist->next;
1842
1843 BUG_TRAP(!atomic_read(&skb->users));
1844 __kfree_skb(skb);
1845 }
1846 }
1847
1848 if (sd->output_queue) {
1849 struct net_device *head;
1850
1851 local_irq_disable();
1852 head = sd->output_queue;
1853 sd->output_queue = NULL;
1854 local_irq_enable();
1855
1856 while (head) {
1857 struct net_device *dev = head;
1858 head = head->next_sched;
1859
1860 smp_mb__before_clear_bit();
1861 clear_bit(__LINK_STATE_SCHED, &dev->state);
1862
1863 if (spin_trylock(&dev->queue_lock)) {
1864 qdisc_run(dev);
1865 spin_unlock(&dev->queue_lock);
1866 } else {
1867 netif_schedule(dev);
1868 }
1869 }
1870 }
1871}
1872
Stephen Hemminger6f05f622007-03-08 20:46:03 -08001873static inline int deliver_skb(struct sk_buff *skb,
1874 struct packet_type *pt_prev,
1875 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 atomic_inc(&skb->users);
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001878 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
1881#if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
Stephen Hemminger6229e362007-03-21 13:38:47 -07001882/* These hooks defined here for ATM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883struct net_bridge;
1884struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
1885 unsigned char *addr);
Stephen Hemminger6229e362007-03-21 13:38:47 -07001886void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent) __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Stephen Hemminger6229e362007-03-21 13:38:47 -07001888/*
1889 * If bridge module is loaded call bridging hook.
1890 * returns NULL if packet was consumed.
1891 */
1892struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p,
1893 struct sk_buff *skb) __read_mostly;
1894static inline struct sk_buff *handle_bridge(struct sk_buff *skb,
1895 struct packet_type **pt_prev, int *ret,
1896 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 struct net_bridge_port *port;
1899
Stephen Hemminger6229e362007-03-21 13:38:47 -07001900 if (skb->pkt_type == PACKET_LOOPBACK ||
1901 (port = rcu_dereference(skb->dev->br_port)) == NULL)
1902 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 if (*pt_prev) {
Stephen Hemminger6229e362007-03-21 13:38:47 -07001905 *ret = deliver_skb(skb, *pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 *pt_prev = NULL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001907 }
1908
Stephen Hemminger6229e362007-03-21 13:38:47 -07001909 return br_handle_frame_hook(port, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911#else
Stephen Hemminger6229e362007-03-21 13:38:47 -07001912#define handle_bridge(skb, pt_prev, ret, orig_dev) (skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913#endif
1914
Patrick McHardyb863ceb2007-07-14 18:55:06 -07001915#if defined(CONFIG_MACVLAN) || defined(CONFIG_MACVLAN_MODULE)
1916struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *skb) __read_mostly;
1917EXPORT_SYMBOL_GPL(macvlan_handle_frame_hook);
1918
1919static inline struct sk_buff *handle_macvlan(struct sk_buff *skb,
1920 struct packet_type **pt_prev,
1921 int *ret,
1922 struct net_device *orig_dev)
1923{
1924 if (skb->dev->macvlan_port == NULL)
1925 return skb;
1926
1927 if (*pt_prev) {
1928 *ret = deliver_skb(skb, *pt_prev, orig_dev);
1929 *pt_prev = NULL;
1930 }
1931 return macvlan_handle_frame_hook(skb);
1932}
1933#else
1934#define handle_macvlan(skb, pt_prev, ret, orig_dev) (skb)
1935#endif
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937#ifdef CONFIG_NET_CLS_ACT
1938/* TODO: Maybe we should just force sch_ingress to be compiled in
1939 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
1940 * a compare and 2 stores extra right now if we dont have it on
1941 * but have CONFIG_NET_CLS_ACT
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001942 * NOTE: This doesnt stop any functionality; if you dont have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 * the ingress scheduler, you just cant add policies on ingress.
1944 *
1945 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001946static int ing_filter(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 struct Qdisc *q;
1949 struct net_device *dev = skb->dev;
1950 int result = TC_ACT_OK;
Herbert Xuf697c3e2007-10-14 00:38:47 -07001951 u32 ttl = G_TC_RTTL(skb->tc_verd);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001952
Herbert Xuf697c3e2007-10-14 00:38:47 -07001953 if (MAX_RED_LOOP < ttl++) {
1954 printk(KERN_WARNING
1955 "Redir loop detected Dropping packet (%d->%d)\n",
1956 skb->iif, dev->ifindex);
1957 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959
Herbert Xuf697c3e2007-10-14 00:38:47 -07001960 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
1961 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
1962
1963 spin_lock(&dev->ingress_lock);
1964 if ((q = dev->qdisc_ingress) != NULL)
1965 result = q->enqueue(skb, q);
1966 spin_unlock(&dev->ingress_lock);
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return result;
1969}
Herbert Xuf697c3e2007-10-14 00:38:47 -07001970
1971static inline struct sk_buff *handle_ing(struct sk_buff *skb,
1972 struct packet_type **pt_prev,
1973 int *ret, struct net_device *orig_dev)
1974{
1975 if (!skb->dev->qdisc_ingress)
1976 goto out;
1977
1978 if (*pt_prev) {
1979 *ret = deliver_skb(skb, *pt_prev, orig_dev);
1980 *pt_prev = NULL;
1981 } else {
1982 /* Huh? Why does turning on AF_PACKET affect this? */
1983 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
1984 }
1985
1986 switch (ing_filter(skb)) {
1987 case TC_ACT_SHOT:
1988 case TC_ACT_STOLEN:
1989 kfree_skb(skb);
1990 return NULL;
1991 }
1992
1993out:
1994 skb->tc_verd = 0;
1995 return skb;
1996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997#endif
1998
1999int netif_receive_skb(struct sk_buff *skb)
2000{
2001 struct packet_type *ptype, *pt_prev;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002002 struct net_device *orig_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08002004 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 /* if we've gotten here through NAPI, check netpoll */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002007 if (netpoll_receive_skb(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 return NET_RX_DROP;
2009
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07002010 if (!skb->tstamp.tv64)
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002011 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Patrick McHardyc01003c2007-03-29 11:46:52 -07002013 if (!skb->iif)
2014 skb->iif = skb->dev->ifindex;
David S. Miller86e65da2005-08-09 19:36:29 -07002015
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002016 orig_dev = skb_bond(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002018 if (!orig_dev)
2019 return NET_RX_DROP;
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 __get_cpu_var(netdev_rx_stat).total++;
2022
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07002023 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002024 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002025 skb->mac_len = skb->network_header - skb->mac_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 pt_prev = NULL;
2028
2029 rcu_read_lock();
2030
2031#ifdef CONFIG_NET_CLS_ACT
2032 if (skb->tc_verd & TC_NCLS) {
2033 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
2034 goto ncls;
2035 }
2036#endif
2037
2038 list_for_each_entry_rcu(ptype, &ptype_all, list) {
2039 if (!ptype->dev || ptype->dev == skb->dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002040 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002041 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 pt_prev = ptype;
2043 }
2044 }
2045
2046#ifdef CONFIG_NET_CLS_ACT
Herbert Xuf697c3e2007-10-14 00:38:47 -07002047 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
2048 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050ncls:
2051#endif
2052
Stephen Hemminger6229e362007-03-21 13:38:47 -07002053 skb = handle_bridge(skb, &pt_prev, &ret, orig_dev);
2054 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 goto out;
Patrick McHardyb863ceb2007-07-14 18:55:06 -07002056 skb = handle_macvlan(skb, &pt_prev, &ret, orig_dev);
2057 if (!skb)
2058 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 type = skb->protocol;
2061 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type)&15], list) {
2062 if (ptype->type == type &&
2063 (!ptype->dev || ptype->dev == skb->dev)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002064 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002065 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 pt_prev = ptype;
2067 }
2068 }
2069
2070 if (pt_prev) {
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002071 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 } else {
2073 kfree_skb(skb);
2074 /* Jamal, now you will not able to escape explaining
2075 * me how you were going to use this. :-)
2076 */
2077 ret = NET_RX_DROP;
2078 }
2079
2080out:
2081 rcu_read_unlock();
2082 return ret;
2083}
2084
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002085static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 struct softnet_data *queue = &__get_cpu_var(softnet_data);
2089 unsigned long start_time = jiffies;
2090
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002091 napi->weight = weight_p;
2092 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 struct sk_buff *skb;
2094 struct net_device *dev;
2095
2096 local_irq_disable();
2097 skb = __skb_dequeue(&queue->input_pkt_queue);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002098 if (!skb) {
2099 __napi_complete(napi);
2100 local_irq_enable();
2101 break;
2102 }
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 local_irq_enable();
2105
2106 dev = skb->dev;
2107
2108 netif_receive_skb(skb);
2109
2110 dev_put(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002111 } while (++work < quota && jiffies == start_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002113 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002116/**
2117 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002118 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002119 *
2120 * The entry's receive function will be scheduled to run
2121 */
2122void fastcall __napi_schedule(struct napi_struct *n)
2123{
2124 unsigned long flags;
2125
2126 local_irq_save(flags);
2127 list_add_tail(&n->poll_list, &__get_cpu_var(softnet_data).poll_list);
2128 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2129 local_irq_restore(flags);
2130}
2131EXPORT_SYMBOL(__napi_schedule);
2132
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134static void net_rx_action(struct softirq_action *h)
2135{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002136 struct list_head *list = &__get_cpu_var(softnet_data).poll_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 unsigned long start_time = jiffies;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07002138 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07002139 void *have;
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 local_irq_disable();
2142
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002143 while (!list_empty(list)) {
2144 struct napi_struct *n;
2145 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002147 /* If softirq window is exhuasted then punt.
2148 *
2149 * Note that this is a slight policy change from the
2150 * previous NAPI code, which would allow up to 2
2151 * jiffies to pass before breaking out. The test
2152 * used to be "jiffies - start_time > 1".
2153 */
2154 if (unlikely(budget <= 0 || jiffies != start_time))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 goto softnet_break;
2156
2157 local_irq_enable();
2158
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002159 /* Even though interrupts have been re-enabled, this
2160 * access is safe because interrupts can only add new
2161 * entries to the tail of this list, and only ->poll()
2162 * calls can remove this head entry from the list.
2163 */
2164 n = list_entry(list->next, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002166 have = netpoll_poll_lock(n);
2167
2168 weight = n->weight;
2169
2170 work = n->poll(n, weight);
2171
2172 WARN_ON_ONCE(work > weight);
2173
2174 budget -= work;
2175
2176 local_irq_disable();
2177
2178 /* Drivers must not modify the NAPI state if they
2179 * consume the entire weight. In such cases this code
2180 * still "owns" the NAPI instance and therefore can
2181 * move the instance around on the list at-will.
2182 */
2183 if (unlikely(work == weight))
2184 list_move_tail(&n->poll_list, list);
2185
2186 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
2188out:
Shannon Nelson515e06c2007-06-23 23:09:23 -07002189 local_irq_enable();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002190
Chris Leechdb217332006-06-17 21:24:58 -07002191#ifdef CONFIG_NET_DMA
2192 /*
2193 * There may not be any more sk_buffs coming right now, so push
2194 * any pending DMA copies to hardware
2195 */
Dan Williamsd379b012007-07-09 11:56:42 -07002196 if (!cpus_empty(net_dma.channel_mask)) {
2197 int chan_idx;
2198 for_each_cpu_mask(chan_idx, net_dma.channel_mask) {
2199 struct dma_chan *chan = net_dma.channels[chan_idx];
2200 if (chan)
2201 dma_async_memcpy_issue_pending(chan);
2202 }
Chris Leechdb217332006-06-17 21:24:58 -07002203 }
2204#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return;
2207
2208softnet_break:
2209 __get_cpu_var(netdev_rx_stat).time_squeeze++;
2210 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2211 goto out;
2212}
2213
2214static gifconf_func_t * gifconf_list [NPROTO];
2215
2216/**
2217 * register_gifconf - register a SIOCGIF handler
2218 * @family: Address family
2219 * @gifconf: Function handler
2220 *
2221 * Register protocol dependent address dumping routines. The handler
2222 * that is passed must not be freed or reused until it has been replaced
2223 * by another handler.
2224 */
2225int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
2226{
2227 if (family >= NPROTO)
2228 return -EINVAL;
2229 gifconf_list[family] = gifconf;
2230 return 0;
2231}
2232
2233
2234/*
2235 * Map an interface index to its name (SIOCGIFNAME)
2236 */
2237
2238/*
2239 * We need this ioctl for efficient implementation of the
2240 * if_indextoname() function required by the IPv6 API. Without
2241 * it, we would have to search all the interfaces to find a
2242 * match. --pb
2243 */
2244
Eric W. Biederman881d9662007-09-17 11:56:21 -07002245static int dev_ifname(struct net *net, struct ifreq __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
2247 struct net_device *dev;
2248 struct ifreq ifr;
2249
2250 /*
2251 * Fetch the caller's info block.
2252 */
2253
2254 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2255 return -EFAULT;
2256
2257 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -07002258 dev = __dev_get_by_index(net, ifr.ifr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (!dev) {
2260 read_unlock(&dev_base_lock);
2261 return -ENODEV;
2262 }
2263
2264 strcpy(ifr.ifr_name, dev->name);
2265 read_unlock(&dev_base_lock);
2266
2267 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
2268 return -EFAULT;
2269 return 0;
2270}
2271
2272/*
2273 * Perform a SIOCGIFCONF call. This structure will change
2274 * size eventually, and there is nothing I can do about it.
2275 * Thus we will need a 'compatibility mode'.
2276 */
2277
Eric W. Biederman881d9662007-09-17 11:56:21 -07002278static int dev_ifconf(struct net *net, char __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
2280 struct ifconf ifc;
2281 struct net_device *dev;
2282 char __user *pos;
2283 int len;
2284 int total;
2285 int i;
2286
2287 /*
2288 * Fetch the caller's info block.
2289 */
2290
2291 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
2292 return -EFAULT;
2293
2294 pos = ifc.ifc_buf;
2295 len = ifc.ifc_len;
2296
2297 /*
2298 * Loop over the interfaces, and write an info block for each.
2299 */
2300
2301 total = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002302 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 for (i = 0; i < NPROTO; i++) {
2304 if (gifconf_list[i]) {
2305 int done;
2306 if (!pos)
2307 done = gifconf_list[i](dev, NULL, 0);
2308 else
2309 done = gifconf_list[i](dev, pos + total,
2310 len - total);
2311 if (done < 0)
2312 return -EFAULT;
2313 total += done;
2314 }
2315 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 /*
2319 * All done. Write the updated control block back to the caller.
2320 */
2321 ifc.ifc_len = total;
2322
2323 /*
2324 * Both BSD and Solaris return 0 here, so we do too.
2325 */
2326 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
2327}
2328
2329#ifdef CONFIG_PROC_FS
2330/*
2331 * This is invoked by the /proc filesystem handler to display a device
2332 * in detail.
2333 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334void *dev_seq_start(struct seq_file *seq, loff_t *pos)
2335{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002336 struct net *net = seq->private;
Pavel Emelianov7562f872007-05-03 15:13:45 -07002337 loff_t off;
2338 struct net_device *dev;
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -07002341 if (!*pos)
2342 return SEQ_START_TOKEN;
2343
2344 off = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002345 for_each_netdev(net, dev)
Pavel Emelianov7562f872007-05-03 15:13:45 -07002346 if (off++ == *pos)
2347 return dev;
2348
2349 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2353{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002354 struct net *net = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 ++*pos;
Pavel Emelianov7562f872007-05-03 15:13:45 -07002356 return v == SEQ_START_TOKEN ?
Eric W. Biederman881d9662007-09-17 11:56:21 -07002357 first_net_device(net) : next_net_device((struct net_device *)v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
2360void dev_seq_stop(struct seq_file *seq, void *v)
2361{
2362 read_unlock(&dev_base_lock);
2363}
2364
2365static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
2366{
Rusty Russellc45d2862007-03-28 14:29:08 -07002367 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Rusty Russell5a1b5892007-04-28 21:04:03 -07002369 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
2370 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
2371 dev->name, stats->rx_bytes, stats->rx_packets,
2372 stats->rx_errors,
2373 stats->rx_dropped + stats->rx_missed_errors,
2374 stats->rx_fifo_errors,
2375 stats->rx_length_errors + stats->rx_over_errors +
2376 stats->rx_crc_errors + stats->rx_frame_errors,
2377 stats->rx_compressed, stats->multicast,
2378 stats->tx_bytes, stats->tx_packets,
2379 stats->tx_errors, stats->tx_dropped,
2380 stats->tx_fifo_errors, stats->collisions,
2381 stats->tx_carrier_errors +
2382 stats->tx_aborted_errors +
2383 stats->tx_window_errors +
2384 stats->tx_heartbeat_errors,
2385 stats->tx_compressed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
2388/*
2389 * Called from the PROCfs module. This now uses the new arbitrary sized
2390 * /proc/net interface to create /proc/net/dev
2391 */
2392static int dev_seq_show(struct seq_file *seq, void *v)
2393{
2394 if (v == SEQ_START_TOKEN)
2395 seq_puts(seq, "Inter-| Receive "
2396 " | Transmit\n"
2397 " face |bytes packets errs drop fifo frame "
2398 "compressed multicast|bytes packets errs "
2399 "drop fifo colls carrier compressed\n");
2400 else
2401 dev_seq_printf_stats(seq, v);
2402 return 0;
2403}
2404
2405static struct netif_rx_stats *softnet_get_online(loff_t *pos)
2406{
2407 struct netif_rx_stats *rc = NULL;
2408
2409 while (*pos < NR_CPUS)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002410 if (cpu_online(*pos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 rc = &per_cpu(netdev_rx_stat, *pos);
2412 break;
2413 } else
2414 ++*pos;
2415 return rc;
2416}
2417
2418static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
2419{
2420 return softnet_get_online(pos);
2421}
2422
2423static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2424{
2425 ++*pos;
2426 return softnet_get_online(pos);
2427}
2428
2429static void softnet_seq_stop(struct seq_file *seq, void *v)
2430{
2431}
2432
2433static int softnet_seq_show(struct seq_file *seq, void *v)
2434{
2435 struct netif_rx_stats *s = v;
2436
2437 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
Stephen Hemminger31aa02c2005-06-23 20:12:48 -07002438 s->total, s->dropped, s->time_squeeze, 0,
Stephen Hemmingerc1ebcdb2005-06-23 20:08:59 -07002439 0, 0, 0, 0, /* was fastroute */
2440 s->cpu_collision );
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 return 0;
2442}
2443
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002444static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 .start = dev_seq_start,
2446 .next = dev_seq_next,
2447 .stop = dev_seq_stop,
2448 .show = dev_seq_show,
2449};
2450
2451static int dev_seq_open(struct inode *inode, struct file *file)
2452{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002453 struct seq_file *seq;
2454 int res;
2455 res = seq_open(file, &dev_seq_ops);
2456 if (!res) {
2457 seq = file->private_data;
Eric W. Biederman077130c2007-09-13 09:18:57 +02002458 seq->private = get_proc_net(inode);
2459 if (!seq->private) {
2460 seq_release(inode, file);
2461 res = -ENXIO;
2462 }
Eric W. Biederman881d9662007-09-17 11:56:21 -07002463 }
2464 return res;
2465}
2466
2467static int dev_seq_release(struct inode *inode, struct file *file)
2468{
2469 struct seq_file *seq = file->private_data;
2470 struct net *net = seq->private;
2471 put_net(net);
2472 return seq_release(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
2474
Arjan van de Ven9a321442007-02-12 00:55:35 -08002475static const struct file_operations dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 .owner = THIS_MODULE,
2477 .open = dev_seq_open,
2478 .read = seq_read,
2479 .llseek = seq_lseek,
Eric W. Biederman881d9662007-09-17 11:56:21 -07002480 .release = dev_seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481};
2482
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002483static const struct seq_operations softnet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 .start = softnet_seq_start,
2485 .next = softnet_seq_next,
2486 .stop = softnet_seq_stop,
2487 .show = softnet_seq_show,
2488};
2489
2490static int softnet_seq_open(struct inode *inode, struct file *file)
2491{
2492 return seq_open(file, &softnet_seq_ops);
2493}
2494
Arjan van de Ven9a321442007-02-12 00:55:35 -08002495static const struct file_operations softnet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 .owner = THIS_MODULE,
2497 .open = softnet_seq_open,
2498 .read = seq_read,
2499 .llseek = seq_lseek,
2500 .release = seq_release,
2501};
2502
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07002503static void *ptype_get_idx(loff_t pos)
2504{
2505 struct packet_type *pt = NULL;
2506 loff_t i = 0;
2507 int t;
2508
2509 list_for_each_entry_rcu(pt, &ptype_all, list) {
2510 if (i == pos)
2511 return pt;
2512 ++i;
2513 }
2514
2515 for (t = 0; t < 16; t++) {
2516 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
2517 if (i == pos)
2518 return pt;
2519 ++i;
2520 }
2521 }
2522 return NULL;
2523}
2524
2525static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
2526{
2527 rcu_read_lock();
2528 return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
2529}
2530
2531static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2532{
2533 struct packet_type *pt;
2534 struct list_head *nxt;
2535 int hash;
2536
2537 ++*pos;
2538 if (v == SEQ_START_TOKEN)
2539 return ptype_get_idx(0);
2540
2541 pt = v;
2542 nxt = pt->list.next;
2543 if (pt->type == htons(ETH_P_ALL)) {
2544 if (nxt != &ptype_all)
2545 goto found;
2546 hash = 0;
2547 nxt = ptype_base[0].next;
2548 } else
2549 hash = ntohs(pt->type) & 15;
2550
2551 while (nxt == &ptype_base[hash]) {
2552 if (++hash >= 16)
2553 return NULL;
2554 nxt = ptype_base[hash].next;
2555 }
2556found:
2557 return list_entry(nxt, struct packet_type, list);
2558}
2559
2560static void ptype_seq_stop(struct seq_file *seq, void *v)
2561{
2562 rcu_read_unlock();
2563}
2564
2565static void ptype_seq_decode(struct seq_file *seq, void *sym)
2566{
2567#ifdef CONFIG_KALLSYMS
2568 unsigned long offset = 0, symsize;
2569 const char *symname;
2570 char *modname;
2571 char namebuf[128];
2572
2573 symname = kallsyms_lookup((unsigned long)sym, &symsize, &offset,
2574 &modname, namebuf);
2575
2576 if (symname) {
2577 char *delim = ":";
2578
2579 if (!modname)
2580 modname = delim = "";
2581 seq_printf(seq, "%s%s%s%s+0x%lx", delim, modname, delim,
2582 symname, offset);
2583 return;
2584 }
2585#endif
2586
2587 seq_printf(seq, "[%p]", sym);
2588}
2589
2590static int ptype_seq_show(struct seq_file *seq, void *v)
2591{
2592 struct packet_type *pt = v;
2593
2594 if (v == SEQ_START_TOKEN)
2595 seq_puts(seq, "Type Device Function\n");
2596 else {
2597 if (pt->type == htons(ETH_P_ALL))
2598 seq_puts(seq, "ALL ");
2599 else
2600 seq_printf(seq, "%04x", ntohs(pt->type));
2601
2602 seq_printf(seq, " %-8s ",
2603 pt->dev ? pt->dev->name : "");
2604 ptype_seq_decode(seq, pt->func);
2605 seq_putc(seq, '\n');
2606 }
2607
2608 return 0;
2609}
2610
2611static const struct seq_operations ptype_seq_ops = {
2612 .start = ptype_seq_start,
2613 .next = ptype_seq_next,
2614 .stop = ptype_seq_stop,
2615 .show = ptype_seq_show,
2616};
2617
2618static int ptype_seq_open(struct inode *inode, struct file *file)
2619{
2620 return seq_open(file, &ptype_seq_ops);
2621}
2622
2623static const struct file_operations ptype_seq_fops = {
2624 .owner = THIS_MODULE,
2625 .open = ptype_seq_open,
2626 .read = seq_read,
2627 .llseek = seq_lseek,
2628 .release = seq_release,
2629};
2630
2631
Pavel Emelyanov46650792007-10-08 20:38:39 -07002632static int __net_init dev_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
2634 int rc = -ENOMEM;
2635
Eric W. Biederman881d9662007-09-17 11:56:21 -07002636 if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 goto out;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002638 if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 goto out_dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002640 if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002641 goto out_softnet;
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07002642
Eric W. Biederman881d9662007-09-17 11:56:21 -07002643 if (wext_proc_init(net))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002644 goto out_ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 rc = 0;
2646out:
2647 return rc;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002648out_ptype:
Eric W. Biederman881d9662007-09-17 11:56:21 -07002649 proc_net_remove(net, "ptype");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650out_softnet:
Eric W. Biederman881d9662007-09-17 11:56:21 -07002651 proc_net_remove(net, "softnet_stat");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652out_dev:
Eric W. Biederman881d9662007-09-17 11:56:21 -07002653 proc_net_remove(net, "dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 goto out;
2655}
Eric W. Biederman881d9662007-09-17 11:56:21 -07002656
Pavel Emelyanov46650792007-10-08 20:38:39 -07002657static void __net_exit dev_proc_net_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07002658{
2659 wext_proc_exit(net);
2660
2661 proc_net_remove(net, "ptype");
2662 proc_net_remove(net, "softnet_stat");
2663 proc_net_remove(net, "dev");
2664}
2665
Pavel Emelyanov46650792007-10-08 20:38:39 -07002666static struct pernet_operations __net_initdata dev_proc_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07002667 .init = dev_proc_net_init,
2668 .exit = dev_proc_net_exit,
2669};
2670
2671static int __init dev_proc_init(void)
2672{
2673 return register_pernet_subsys(&dev_proc_ops);
2674}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675#else
2676#define dev_proc_init() 0
2677#endif /* CONFIG_PROC_FS */
2678
2679
2680/**
2681 * netdev_set_master - set up master/slave pair
2682 * @slave: slave device
2683 * @master: new master device
2684 *
2685 * Changes the master device of the slave. Pass %NULL to break the
2686 * bonding. The caller must hold the RTNL semaphore. On a failure
2687 * a negative errno code is returned. On success the reference counts
2688 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
2689 * function returns zero.
2690 */
2691int netdev_set_master(struct net_device *slave, struct net_device *master)
2692{
2693 struct net_device *old = slave->master;
2694
2695 ASSERT_RTNL();
2696
2697 if (master) {
2698 if (old)
2699 return -EBUSY;
2700 dev_hold(master);
2701 }
2702
2703 slave->master = master;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 synchronize_net();
2706
2707 if (old)
2708 dev_put(old);
2709
2710 if (master)
2711 slave->flags |= IFF_SLAVE;
2712 else
2713 slave->flags &= ~IFF_SLAVE;
2714
2715 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
2716 return 0;
2717}
2718
Patrick McHardy4417da62007-06-27 01:28:10 -07002719static void __dev_set_promiscuity(struct net_device *dev, int inc)
2720{
2721 unsigned short old_flags = dev->flags;
2722
Patrick McHardy24023452007-07-14 18:51:31 -07002723 ASSERT_RTNL();
2724
Patrick McHardy4417da62007-06-27 01:28:10 -07002725 if ((dev->promiscuity += inc) == 0)
2726 dev->flags &= ~IFF_PROMISC;
2727 else
2728 dev->flags |= IFF_PROMISC;
2729 if (dev->flags != old_flags) {
2730 printk(KERN_INFO "device %s %s promiscuous mode\n",
2731 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
2732 "left");
2733 audit_log(current->audit_context, GFP_ATOMIC,
2734 AUDIT_ANOM_PROMISCUOUS,
2735 "dev=%s prom=%d old_prom=%d auid=%u",
2736 dev->name, (dev->flags & IFF_PROMISC),
2737 (old_flags & IFF_PROMISC),
2738 audit_get_loginuid(current->audit_context));
Patrick McHardy24023452007-07-14 18:51:31 -07002739
2740 if (dev->change_rx_flags)
2741 dev->change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07002742 }
2743}
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745/**
2746 * dev_set_promiscuity - update promiscuity count on a device
2747 * @dev: device
2748 * @inc: modifier
2749 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07002750 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 * remains above zero the interface remains promiscuous. Once it hits zero
2752 * the device reverts back to normal filtering operation. A negative inc
2753 * value is used to drop promiscuity on the device.
2754 */
2755void dev_set_promiscuity(struct net_device *dev, int inc)
2756{
2757 unsigned short old_flags = dev->flags;
2758
Patrick McHardy4417da62007-06-27 01:28:10 -07002759 __dev_set_promiscuity(dev, inc);
2760 if (dev->flags != old_flags)
2761 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
2764/**
2765 * dev_set_allmulti - update allmulti count on a device
2766 * @dev: device
2767 * @inc: modifier
2768 *
2769 * Add or remove reception of all multicast frames to a device. While the
2770 * count in the device remains above zero the interface remains listening
2771 * to all interfaces. Once it hits zero the device reverts back to normal
2772 * filtering operation. A negative @inc value is used to drop the counter
2773 * when releasing a resource needing all multicasts.
2774 */
2775
2776void dev_set_allmulti(struct net_device *dev, int inc)
2777{
2778 unsigned short old_flags = dev->flags;
2779
Patrick McHardy24023452007-07-14 18:51:31 -07002780 ASSERT_RTNL();
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 dev->flags |= IFF_ALLMULTI;
2783 if ((dev->allmulti += inc) == 0)
2784 dev->flags &= ~IFF_ALLMULTI;
Patrick McHardy24023452007-07-14 18:51:31 -07002785 if (dev->flags ^ old_flags) {
2786 if (dev->change_rx_flags)
2787 dev->change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07002788 dev_set_rx_mode(dev);
Patrick McHardy24023452007-07-14 18:51:31 -07002789 }
Patrick McHardy4417da62007-06-27 01:28:10 -07002790}
2791
2792/*
2793 * Upload unicast and multicast address lists to device and
2794 * configure RX filtering. When the device doesn't support unicast
2795 * filtering it is put in promiscous mode while unicast addresses
2796 * are present.
2797 */
2798void __dev_set_rx_mode(struct net_device *dev)
2799{
2800 /* dev_open will call this function so the list will stay sane. */
2801 if (!(dev->flags&IFF_UP))
2802 return;
2803
2804 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09002805 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07002806
2807 if (dev->set_rx_mode)
2808 dev->set_rx_mode(dev);
2809 else {
2810 /* Unicast addresses changes may only happen under the rtnl,
2811 * therefore calling __dev_set_promiscuity here is safe.
2812 */
2813 if (dev->uc_count > 0 && !dev->uc_promisc) {
2814 __dev_set_promiscuity(dev, 1);
2815 dev->uc_promisc = 1;
2816 } else if (dev->uc_count == 0 && dev->uc_promisc) {
2817 __dev_set_promiscuity(dev, -1);
2818 dev->uc_promisc = 0;
2819 }
2820
2821 if (dev->set_multicast_list)
2822 dev->set_multicast_list(dev);
2823 }
2824}
2825
2826void dev_set_rx_mode(struct net_device *dev)
2827{
2828 netif_tx_lock_bh(dev);
2829 __dev_set_rx_mode(dev);
2830 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831}
2832
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002833int __dev_addr_delete(struct dev_addr_list **list, int *count,
2834 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07002835{
2836 struct dev_addr_list *da;
2837
2838 for (; (da = *list) != NULL; list = &da->next) {
2839 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
2840 alen == da->da_addrlen) {
2841 if (glbl) {
2842 int old_glbl = da->da_gusers;
2843 da->da_gusers = 0;
2844 if (old_glbl == 0)
2845 break;
2846 }
2847 if (--da->da_users)
2848 return 0;
2849
2850 *list = da->next;
2851 kfree(da);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002852 (*count)--;
Patrick McHardybf742482007-06-27 01:26:19 -07002853 return 0;
2854 }
2855 }
2856 return -ENOENT;
2857}
2858
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002859int __dev_addr_add(struct dev_addr_list **list, int *count,
2860 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07002861{
2862 struct dev_addr_list *da;
2863
2864 for (da = *list; da != NULL; da = da->next) {
2865 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
2866 da->da_addrlen == alen) {
2867 if (glbl) {
2868 int old_glbl = da->da_gusers;
2869 da->da_gusers = 1;
2870 if (old_glbl)
2871 return 0;
2872 }
2873 da->da_users++;
2874 return 0;
2875 }
2876 }
2877
2878 da = kmalloc(sizeof(*da), GFP_ATOMIC);
2879 if (da == NULL)
2880 return -ENOMEM;
2881 memcpy(da->da_addr, addr, alen);
2882 da->da_addrlen = alen;
2883 da->da_users = 1;
2884 da->da_gusers = glbl ? 1 : 0;
2885 da->next = *list;
2886 *list = da;
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002887 (*count)++;
Patrick McHardybf742482007-06-27 01:26:19 -07002888 return 0;
2889}
2890
Patrick McHardy4417da62007-06-27 01:28:10 -07002891/**
2892 * dev_unicast_delete - Release secondary unicast address.
2893 * @dev: device
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07002894 * @addr: address to delete
2895 * @alen: length of @addr
Patrick McHardy4417da62007-06-27 01:28:10 -07002896 *
2897 * Release reference to a secondary unicast address and remove it
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07002898 * from the device if the reference count drops to zero.
Patrick McHardy4417da62007-06-27 01:28:10 -07002899 *
2900 * The caller must hold the rtnl_mutex.
2901 */
2902int dev_unicast_delete(struct net_device *dev, void *addr, int alen)
2903{
2904 int err;
2905
2906 ASSERT_RTNL();
2907
2908 netif_tx_lock_bh(dev);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002909 err = __dev_addr_delete(&dev->uc_list, &dev->uc_count, addr, alen, 0);
2910 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07002911 __dev_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07002912 netif_tx_unlock_bh(dev);
2913 return err;
2914}
2915EXPORT_SYMBOL(dev_unicast_delete);
2916
2917/**
2918 * dev_unicast_add - add a secondary unicast address
2919 * @dev: device
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07002920 * @addr: address to delete
2921 * @alen: length of @addr
Patrick McHardy4417da62007-06-27 01:28:10 -07002922 *
2923 * Add a secondary unicast address to the device or increase
2924 * the reference count if it already exists.
2925 *
2926 * The caller must hold the rtnl_mutex.
2927 */
2928int dev_unicast_add(struct net_device *dev, void *addr, int alen)
2929{
2930 int err;
2931
2932 ASSERT_RTNL();
2933
2934 netif_tx_lock_bh(dev);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002935 err = __dev_addr_add(&dev->uc_list, &dev->uc_count, addr, alen, 0);
2936 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07002937 __dev_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07002938 netif_tx_unlock_bh(dev);
2939 return err;
2940}
2941EXPORT_SYMBOL(dev_unicast_add);
2942
Denis Cheng12972622007-07-18 02:12:56 -07002943static void __dev_addr_discard(struct dev_addr_list **list)
2944{
2945 struct dev_addr_list *tmp;
2946
2947 while (*list != NULL) {
2948 tmp = *list;
2949 *list = tmp->next;
2950 if (tmp->da_users > tmp->da_gusers)
2951 printk("__dev_addr_discard: address leakage! "
2952 "da_users=%d\n", tmp->da_users);
2953 kfree(tmp);
2954 }
2955}
2956
Denis Cheng26cc2522007-07-18 02:12:03 -07002957static void dev_addr_discard(struct net_device *dev)
Patrick McHardy4417da62007-06-27 01:28:10 -07002958{
2959 netif_tx_lock_bh(dev);
Denis Cheng26cc2522007-07-18 02:12:03 -07002960
Patrick McHardy4417da62007-06-27 01:28:10 -07002961 __dev_addr_discard(&dev->uc_list);
2962 dev->uc_count = 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07002963
Denis Cheng456ad752007-07-18 02:10:54 -07002964 __dev_addr_discard(&dev->mc_list);
2965 dev->mc_count = 0;
Denis Cheng26cc2522007-07-18 02:12:03 -07002966
Denis Cheng456ad752007-07-18 02:10:54 -07002967 netif_tx_unlock_bh(dev);
2968}
2969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970unsigned dev_get_flags(const struct net_device *dev)
2971{
2972 unsigned flags;
2973
2974 flags = (dev->flags & ~(IFF_PROMISC |
2975 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08002976 IFF_RUNNING |
2977 IFF_LOWER_UP |
2978 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 (dev->gflags & (IFF_PROMISC |
2980 IFF_ALLMULTI));
2981
Stefan Rompfb00055a2006-03-20 17:09:11 -08002982 if (netif_running(dev)) {
2983 if (netif_oper_up(dev))
2984 flags |= IFF_RUNNING;
2985 if (netif_carrier_ok(dev))
2986 flags |= IFF_LOWER_UP;
2987 if (netif_dormant(dev))
2988 flags |= IFF_DORMANT;
2989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 return flags;
2992}
2993
2994int dev_change_flags(struct net_device *dev, unsigned flags)
2995{
Thomas Graf7c355f52007-06-05 16:03:03 -07002996 int ret, changes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 int old_flags = dev->flags;
2998
Patrick McHardy24023452007-07-14 18:51:31 -07002999 ASSERT_RTNL();
3000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 /*
3002 * Set the flags on our device.
3003 */
3004
3005 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
3006 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
3007 IFF_AUTOMEDIA)) |
3008 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
3009 IFF_ALLMULTI));
3010
3011 /*
3012 * Load in the correct multicast list now the flags have changed.
3013 */
3014
Patrick McHardy24023452007-07-14 18:51:31 -07003015 if (dev->change_rx_flags && (dev->flags ^ flags) & IFF_MULTICAST)
3016 dev->change_rx_flags(dev, IFF_MULTICAST);
3017
Patrick McHardy4417da62007-06-27 01:28:10 -07003018 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
3020 /*
3021 * Have we downed the interface. We handle IFF_UP ourselves
3022 * according to user attempts to set it, rather than blindly
3023 * setting it.
3024 */
3025
3026 ret = 0;
3027 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
3028 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
3029
3030 if (!ret)
Patrick McHardy4417da62007-06-27 01:28:10 -07003031 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 }
3033
3034 if (dev->flags & IFF_UP &&
3035 ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
3036 IFF_VOLATILE)))
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003037 call_netdevice_notifiers(NETDEV_CHANGE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
3039 if ((flags ^ dev->gflags) & IFF_PROMISC) {
3040 int inc = (flags & IFF_PROMISC) ? +1 : -1;
3041 dev->gflags ^= IFF_PROMISC;
3042 dev_set_promiscuity(dev, inc);
3043 }
3044
3045 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
3046 is important. Some (broken) drivers set IFF_PROMISC, when
3047 IFF_ALLMULTI is requested not asking us and not reporting.
3048 */
3049 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
3050 int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
3051 dev->gflags ^= IFF_ALLMULTI;
3052 dev_set_allmulti(dev, inc);
3053 }
3054
Thomas Graf7c355f52007-06-05 16:03:03 -07003055 /* Exclude state transition flags, already notified */
3056 changes = (old_flags ^ dev->flags) & ~(IFF_UP | IFF_RUNNING);
3057 if (changes)
3058 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 return ret;
3061}
3062
3063int dev_set_mtu(struct net_device *dev, int new_mtu)
3064{
3065 int err;
3066
3067 if (new_mtu == dev->mtu)
3068 return 0;
3069
3070 /* MTU must be positive. */
3071 if (new_mtu < 0)
3072 return -EINVAL;
3073
3074 if (!netif_device_present(dev))
3075 return -ENODEV;
3076
3077 err = 0;
3078 if (dev->change_mtu)
3079 err = dev->change_mtu(dev, new_mtu);
3080 else
3081 dev->mtu = new_mtu;
3082 if (!err && dev->flags & IFF_UP)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003083 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 return err;
3085}
3086
3087int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
3088{
3089 int err;
3090
3091 if (!dev->set_mac_address)
3092 return -EOPNOTSUPP;
3093 if (sa->sa_family != dev->type)
3094 return -EINVAL;
3095 if (!netif_device_present(dev))
3096 return -ENODEV;
3097 err = dev->set_mac_address(dev, sa);
3098 if (!err)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003099 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 return err;
3101}
3102
3103/*
Jeff Garzik14e3e072007-10-08 00:06:32 -07003104 * Perform the SIOCxIFxxx calls, inside read_lock(dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 */
Jeff Garzik14e3e072007-10-08 00:06:32 -07003106static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107{
3108 int err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003109 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
3111 if (!dev)
3112 return -ENODEV;
3113
3114 switch (cmd) {
3115 case SIOCGIFFLAGS: /* Get interface flags */
3116 ifr->ifr_flags = dev_get_flags(dev);
3117 return 0;
3118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 case SIOCGIFMETRIC: /* Get the metric on the interface
3120 (currently unused) */
3121 ifr->ifr_metric = 0;
3122 return 0;
3123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 case SIOCGIFMTU: /* Get the MTU of a device */
3125 ifr->ifr_mtu = dev->mtu;
3126 return 0;
3127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 case SIOCGIFHWADDR:
3129 if (!dev->addr_len)
3130 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
3131 else
3132 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
3133 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
3134 ifr->ifr_hwaddr.sa_family = dev->type;
3135 return 0;
3136
Jeff Garzik14e3e072007-10-08 00:06:32 -07003137 case SIOCGIFSLAVE:
3138 err = -EINVAL;
3139 break;
3140
3141 case SIOCGIFMAP:
3142 ifr->ifr_map.mem_start = dev->mem_start;
3143 ifr->ifr_map.mem_end = dev->mem_end;
3144 ifr->ifr_map.base_addr = dev->base_addr;
3145 ifr->ifr_map.irq = dev->irq;
3146 ifr->ifr_map.dma = dev->dma;
3147 ifr->ifr_map.port = dev->if_port;
3148 return 0;
3149
3150 case SIOCGIFINDEX:
3151 ifr->ifr_ifindex = dev->ifindex;
3152 return 0;
3153
3154 case SIOCGIFTXQLEN:
3155 ifr->ifr_qlen = dev->tx_queue_len;
3156 return 0;
3157
3158 default:
3159 /* dev_ioctl() should ensure this case
3160 * is never reached
3161 */
3162 WARN_ON(1);
3163 err = -EINVAL;
3164 break;
3165
3166 }
3167 return err;
3168}
3169
3170/*
3171 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
3172 */
3173static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd)
3174{
3175 int err;
3176 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
3177
3178 if (!dev)
3179 return -ENODEV;
3180
3181 switch (cmd) {
3182 case SIOCSIFFLAGS: /* Set interface flags */
3183 return dev_change_flags(dev, ifr->ifr_flags);
3184
3185 case SIOCSIFMETRIC: /* Set the metric on the interface
3186 (currently unused) */
3187 return -EOPNOTSUPP;
3188
3189 case SIOCSIFMTU: /* Set the MTU of a device */
3190 return dev_set_mtu(dev, ifr->ifr_mtu);
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 case SIOCSIFHWADDR:
3193 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
3194
3195 case SIOCSIFHWBROADCAST:
3196 if (ifr->ifr_hwaddr.sa_family != dev->type)
3197 return -EINVAL;
3198 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
3199 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003200 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 return 0;
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 case SIOCSIFMAP:
3204 if (dev->set_config) {
3205 if (!netif_device_present(dev))
3206 return -ENODEV;
3207 return dev->set_config(dev, &ifr->ifr_map);
3208 }
3209 return -EOPNOTSUPP;
3210
3211 case SIOCADDMULTI:
3212 if (!dev->set_multicast_list ||
3213 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
3214 return -EINVAL;
3215 if (!netif_device_present(dev))
3216 return -ENODEV;
3217 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
3218 dev->addr_len, 1);
3219
3220 case SIOCDELMULTI:
3221 if (!dev->set_multicast_list ||
3222 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
3223 return -EINVAL;
3224 if (!netif_device_present(dev))
3225 return -ENODEV;
3226 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
3227 dev->addr_len, 1);
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 case SIOCSIFTXQLEN:
3230 if (ifr->ifr_qlen < 0)
3231 return -EINVAL;
3232 dev->tx_queue_len = ifr->ifr_qlen;
3233 return 0;
3234
3235 case SIOCSIFNAME:
3236 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
3237 return dev_change_name(dev, ifr->ifr_newname);
3238
3239 /*
3240 * Unknown or private ioctl
3241 */
3242
3243 default:
3244 if ((cmd >= SIOCDEVPRIVATE &&
3245 cmd <= SIOCDEVPRIVATE + 15) ||
3246 cmd == SIOCBONDENSLAVE ||
3247 cmd == SIOCBONDRELEASE ||
3248 cmd == SIOCBONDSETHWADDR ||
3249 cmd == SIOCBONDSLAVEINFOQUERY ||
3250 cmd == SIOCBONDINFOQUERY ||
3251 cmd == SIOCBONDCHANGEACTIVE ||
3252 cmd == SIOCGMIIPHY ||
3253 cmd == SIOCGMIIREG ||
3254 cmd == SIOCSMIIREG ||
3255 cmd == SIOCBRADDIF ||
3256 cmd == SIOCBRDELIF ||
3257 cmd == SIOCWANDEV) {
3258 err = -EOPNOTSUPP;
3259 if (dev->do_ioctl) {
3260 if (netif_device_present(dev))
3261 err = dev->do_ioctl(dev, ifr,
3262 cmd);
3263 else
3264 err = -ENODEV;
3265 }
3266 } else
3267 err = -EINVAL;
3268
3269 }
3270 return err;
3271}
3272
3273/*
3274 * This function handles all "interface"-type I/O control requests. The actual
3275 * 'doing' part of this is dev_ifsioc above.
3276 */
3277
3278/**
3279 * dev_ioctl - network device ioctl
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07003280 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 * @cmd: command to issue
3282 * @arg: pointer to a struct ifreq in user space
3283 *
3284 * Issue ioctl functions to devices. This is normally called by the
3285 * user space syscall interfaces but can sometimes be useful for
3286 * other purposes. The return value is the return from the syscall if
3287 * positive or a negative errno code on error.
3288 */
3289
Eric W. Biederman881d9662007-09-17 11:56:21 -07003290int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291{
3292 struct ifreq ifr;
3293 int ret;
3294 char *colon;
3295
3296 /* One special case: SIOCGIFCONF takes ifconf argument
3297 and requires shared lock, because it sleeps writing
3298 to user space.
3299 */
3300
3301 if (cmd == SIOCGIFCONF) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003302 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003303 ret = dev_ifconf(net, (char __user *) arg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003304 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 return ret;
3306 }
3307 if (cmd == SIOCGIFNAME)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003308 return dev_ifname(net, (struct ifreq __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
3311 return -EFAULT;
3312
3313 ifr.ifr_name[IFNAMSIZ-1] = 0;
3314
3315 colon = strchr(ifr.ifr_name, ':');
3316 if (colon)
3317 *colon = 0;
3318
3319 /*
3320 * See which interface the caller is talking about.
3321 */
3322
3323 switch (cmd) {
3324 /*
3325 * These ioctl calls:
3326 * - can be done by all.
3327 * - atomic and do not require locking.
3328 * - return a value
3329 */
3330 case SIOCGIFFLAGS:
3331 case SIOCGIFMETRIC:
3332 case SIOCGIFMTU:
3333 case SIOCGIFHWADDR:
3334 case SIOCGIFSLAVE:
3335 case SIOCGIFMAP:
3336 case SIOCGIFINDEX:
3337 case SIOCGIFTXQLEN:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003338 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 read_lock(&dev_base_lock);
Jeff Garzik14e3e072007-10-08 00:06:32 -07003340 ret = dev_ifsioc_locked(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 read_unlock(&dev_base_lock);
3342 if (!ret) {
3343 if (colon)
3344 *colon = ':';
3345 if (copy_to_user(arg, &ifr,
3346 sizeof(struct ifreq)))
3347 ret = -EFAULT;
3348 }
3349 return ret;
3350
3351 case SIOCETHTOOL:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003352 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003354 ret = dev_ethtool(net, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 rtnl_unlock();
3356 if (!ret) {
3357 if (colon)
3358 *colon = ':';
3359 if (copy_to_user(arg, &ifr,
3360 sizeof(struct ifreq)))
3361 ret = -EFAULT;
3362 }
3363 return ret;
3364
3365 /*
3366 * These ioctl calls:
3367 * - require superuser power.
3368 * - require strict serialization.
3369 * - return a value
3370 */
3371 case SIOCGMIIPHY:
3372 case SIOCGMIIREG:
3373 case SIOCSIFNAME:
3374 if (!capable(CAP_NET_ADMIN))
3375 return -EPERM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003376 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003378 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 rtnl_unlock();
3380 if (!ret) {
3381 if (colon)
3382 *colon = ':';
3383 if (copy_to_user(arg, &ifr,
3384 sizeof(struct ifreq)))
3385 ret = -EFAULT;
3386 }
3387 return ret;
3388
3389 /*
3390 * These ioctl calls:
3391 * - require superuser power.
3392 * - require strict serialization.
3393 * - do not return a value
3394 */
3395 case SIOCSIFFLAGS:
3396 case SIOCSIFMETRIC:
3397 case SIOCSIFMTU:
3398 case SIOCSIFMAP:
3399 case SIOCSIFHWADDR:
3400 case SIOCSIFSLAVE:
3401 case SIOCADDMULTI:
3402 case SIOCDELMULTI:
3403 case SIOCSIFHWBROADCAST:
3404 case SIOCSIFTXQLEN:
3405 case SIOCSMIIREG:
3406 case SIOCBONDENSLAVE:
3407 case SIOCBONDRELEASE:
3408 case SIOCBONDSETHWADDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 case SIOCBONDCHANGEACTIVE:
3410 case SIOCBRADDIF:
3411 case SIOCBRDELIF:
3412 if (!capable(CAP_NET_ADMIN))
3413 return -EPERM;
Thomas Grafcabcac02006-01-24 12:46:33 -08003414 /* fall through */
3415 case SIOCBONDSLAVEINFOQUERY:
3416 case SIOCBONDINFOQUERY:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003417 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003419 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 rtnl_unlock();
3421 return ret;
3422
3423 case SIOCGIFMEM:
3424 /* Get the per device memory space. We can add this but
3425 * currently do not support it */
3426 case SIOCSIFMEM:
3427 /* Set the per device memory buffer space.
3428 * Not applicable in our case */
3429 case SIOCSIFLINK:
3430 return -EINVAL;
3431
3432 /*
3433 * Unknown or private ioctl.
3434 */
3435 default:
3436 if (cmd == SIOCWANDEV ||
3437 (cmd >= SIOCDEVPRIVATE &&
3438 cmd <= SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07003439 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003441 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 rtnl_unlock();
3443 if (!ret && copy_to_user(arg, &ifr,
3444 sizeof(struct ifreq)))
3445 ret = -EFAULT;
3446 return ret;
3447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 /* Take care of Wireless Extensions */
Johannes Berg295f4a12007-04-26 20:43:56 -07003449 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003450 return wext_handle_ioctl(net, &ifr, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return -EINVAL;
3452 }
3453}
3454
3455
3456/**
3457 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07003458 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 *
3460 * Returns a suitable unique value for a new device interface
3461 * number. The caller must hold the rtnl semaphore or the
3462 * dev_base_lock to be sure it remains unique.
3463 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07003464static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465{
3466 static int ifindex;
3467 for (;;) {
3468 if (++ifindex <= 0)
3469 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003470 if (!__dev_get_by_index(net, ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 return ifindex;
3472 }
3473}
3474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475/* Delayed registration/unregisteration */
3476static DEFINE_SPINLOCK(net_todo_list_lock);
3477static struct list_head net_todo_list = LIST_HEAD_INIT(net_todo_list);
3478
Stephen Hemminger6f05f622007-03-08 20:46:03 -08003479static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480{
3481 spin_lock(&net_todo_list_lock);
3482 list_add_tail(&dev->todo_list, &net_todo_list);
3483 spin_unlock(&net_todo_list_lock);
3484}
3485
3486/**
3487 * register_netdevice - register a network device
3488 * @dev: device to register
3489 *
3490 * Take a completed network device structure and add it to the kernel
3491 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3492 * chain. 0 is returned on success. A negative errno code is returned
3493 * on a failure to set up the device, or if the name is a duplicate.
3494 *
3495 * Callers must hold the rtnl semaphore. You may want
3496 * register_netdev() instead of this.
3497 *
3498 * BUGS:
3499 * The locking appears insufficient to guarantee two parallel registers
3500 * will not get the same name.
3501 */
3502
3503int register_netdevice(struct net_device *dev)
3504{
3505 struct hlist_head *head;
3506 struct hlist_node *p;
3507 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003508 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
3510 BUG_ON(dev_boot_phase);
3511 ASSERT_RTNL();
3512
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003513 might_sleep();
3514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 /* When net_device's are persistent, this will be fatal. */
3516 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Eric W. Biederman881d9662007-09-17 11:56:21 -07003517 BUG_ON(!dev->nd_net);
3518 net = dev->nd_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
3520 spin_lock_init(&dev->queue_lock);
Herbert Xu932ff272006-06-09 12:20:56 -07003521 spin_lock_init(&dev->_xmit_lock);
Jarek Poplawski723e98b2007-05-15 22:46:18 -07003522 netdev_set_lockdep_class(&dev->_xmit_lock, dev->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 dev->xmit_lock_owner = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 spin_lock_init(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 dev->iflink = -1;
3527
3528 /* Init, if this function is available */
3529 if (dev->init) {
3530 ret = dev->init(dev);
3531 if (ret) {
3532 if (ret > 0)
3533 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08003534 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 }
3536 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 if (!dev_valid_name(dev->name)) {
3539 ret = -EINVAL;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003540 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 }
3542
Eric W. Biederman881d9662007-09-17 11:56:21 -07003543 dev->ifindex = dev_new_index(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 if (dev->iflink == -1)
3545 dev->iflink = dev->ifindex;
3546
3547 /* Check for existence of name */
Eric W. Biederman881d9662007-09-17 11:56:21 -07003548 head = dev_name_hash(net, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 hlist_for_each(p, head) {
3550 struct net_device *d
3551 = hlist_entry(p, struct net_device, name_hlist);
3552 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
3553 ret = -EEXIST;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003554 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Stephen Hemmingerd212f872007-06-27 00:47:37 -07003558 /* Fix illegal checksum combinations */
3559 if ((dev->features & NETIF_F_HW_CSUM) &&
3560 (dev->features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
3561 printk(KERN_NOTICE "%s: mixed HW and IP checksum settings.\n",
3562 dev->name);
3563 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
3564 }
3565
3566 if ((dev->features & NETIF_F_NO_CSUM) &&
3567 (dev->features & (NETIF_F_HW_CSUM|NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
3568 printk(KERN_NOTICE "%s: mixed no checksumming and other settings.\n",
3569 dev->name);
3570 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM|NETIF_F_HW_CSUM);
3571 }
3572
3573
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 /* Fix illegal SG+CSUM combinations. */
3575 if ((dev->features & NETIF_F_SG) &&
Herbert Xu8648b302006-06-17 22:06:05 -07003576 !(dev->features & NETIF_F_ALL_CSUM)) {
Stephen Hemminger5a8da022006-07-07 16:54:05 -07003577 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 dev->name);
3579 dev->features &= ~NETIF_F_SG;
3580 }
3581
3582 /* TSO requires that SG is present as well. */
3583 if ((dev->features & NETIF_F_TSO) &&
3584 !(dev->features & NETIF_F_SG)) {
Stephen Hemminger5a8da022006-07-07 16:54:05 -07003585 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no SG feature.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 dev->name);
3587 dev->features &= ~NETIF_F_TSO;
3588 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07003589 if (dev->features & NETIF_F_UFO) {
3590 if (!(dev->features & NETIF_F_HW_CSUM)) {
3591 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
3592 "NETIF_F_HW_CSUM feature.\n",
3593 dev->name);
3594 dev->features &= ~NETIF_F_UFO;
3595 }
3596 if (!(dev->features & NETIF_F_SG)) {
3597 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
3598 "NETIF_F_SG feature.\n",
3599 dev->name);
3600 dev->features &= ~NETIF_F_UFO;
3601 }
3602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Eric W. Biederman8b41d182007-09-26 22:02:53 -07003604 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003605 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003606 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003607 dev->reg_state = NETREG_REGISTERED;
3608
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 /*
3610 * Default initial state at registry is that the
3611 * device is present.
3612 */
3613
3614 set_bit(__LINK_STATE_PRESENT, &dev->state);
3615
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02003618 list_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
3620 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003621 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07003622 ret = notifier_to_errno(ret);
3623 if (ret)
3624 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
3626out:
3627 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003628
3629err_uninit:
3630 if (dev->uninit)
3631 dev->uninit(dev);
3632 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633}
3634
3635/**
3636 * register_netdev - register a network device
3637 * @dev: device to register
3638 *
3639 * Take a completed network device structure and add it to the kernel
3640 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3641 * chain. 0 is returned on success. A negative errno code is returned
3642 * on a failure to set up the device, or if the name is a duplicate.
3643 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07003644 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 * and expands the device name if you passed a format string to
3646 * alloc_netdev.
3647 */
3648int register_netdev(struct net_device *dev)
3649{
3650 int err;
3651
3652 rtnl_lock();
3653
3654 /*
3655 * If the name is a format string the caller wants us to do a
3656 * name allocation.
3657 */
3658 if (strchr(dev->name, '%')) {
3659 err = dev_alloc_name(dev, dev->name);
3660 if (err < 0)
3661 goto out;
3662 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 err = register_netdevice(dev);
3665out:
3666 rtnl_unlock();
3667 return err;
3668}
3669EXPORT_SYMBOL(register_netdev);
3670
3671/*
3672 * netdev_wait_allrefs - wait until all references are gone.
3673 *
3674 * This is called when unregistering network devices.
3675 *
3676 * Any protocol or device that holds a reference should register
3677 * for netdevice notification, and cleanup and put back the
3678 * reference if they receive an UNREGISTER event.
3679 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003680 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 */
3682static void netdev_wait_allrefs(struct net_device *dev)
3683{
3684 unsigned long rebroadcast_time, warning_time;
3685
3686 rebroadcast_time = warning_time = jiffies;
3687 while (atomic_read(&dev->refcnt) != 0) {
3688 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003689 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003692 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
3694 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
3695 &dev->state)) {
3696 /* We must not have linkwatch events
3697 * pending on unregister. If this
3698 * happens, we simply run the queue
3699 * unscheduled, resulting in a noop
3700 * for this device.
3701 */
3702 linkwatch_run_queue();
3703 }
3704
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003705 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
3707 rebroadcast_time = jiffies;
3708 }
3709
3710 msleep(250);
3711
3712 if (time_after(jiffies, warning_time + 10 * HZ)) {
3713 printk(KERN_EMERG "unregister_netdevice: "
3714 "waiting for %s to become free. Usage "
3715 "count = %d\n",
3716 dev->name, atomic_read(&dev->refcnt));
3717 warning_time = jiffies;
3718 }
3719 }
3720}
3721
3722/* The sequence is:
3723 *
3724 * rtnl_lock();
3725 * ...
3726 * register_netdevice(x1);
3727 * register_netdevice(x2);
3728 * ...
3729 * unregister_netdevice(y1);
3730 * unregister_netdevice(y2);
3731 * ...
3732 * rtnl_unlock();
3733 * free_netdev(y1);
3734 * free_netdev(y2);
3735 *
3736 * We are invoked by rtnl_unlock() after it drops the semaphore.
3737 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003738 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 * without deadlocking with linkwatch via keventd.
3740 * 2) Since we run with the RTNL semaphore not held, we can sleep
3741 * safely in order to wait for the netdev refcnt to drop to zero.
3742 */
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08003743static DEFINE_MUTEX(net_todo_run_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744void netdev_run_todo(void)
3745{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003746 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
3748 /* Need to guard against multiple cpu's getting out of order. */
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08003749 mutex_lock(&net_todo_run_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750
3751 /* Not safe to do outside the semaphore. We must not return
3752 * until all unregister events invoked by the local processor
3753 * have been completed (either by this todo run, or one on
3754 * another cpu).
3755 */
3756 if (list_empty(&net_todo_list))
3757 goto out;
3758
3759 /* Snapshot list, allow later requests */
3760 spin_lock(&net_todo_list_lock);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003761 list_replace_init(&net_todo_list, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 spin_unlock(&net_todo_list_lock);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003763
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 while (!list_empty(&list)) {
3765 struct net_device *dev
3766 = list_entry(list.next, struct net_device, todo_list);
3767 list_del(&dev->todo_list);
3768
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003769 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 printk(KERN_ERR "network todo '%s' but state %d\n",
3771 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003772 dump_stack();
3773 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003775
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003776 dev->reg_state = NETREG_UNREGISTERED;
3777
3778 netdev_wait_allrefs(dev);
3779
3780 /* paranoia */
3781 BUG_ON(atomic_read(&dev->refcnt));
3782 BUG_TRAP(!dev->ip_ptr);
3783 BUG_TRAP(!dev->ip6_ptr);
3784 BUG_TRAP(!dev->dn_ptr);
3785
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003786 if (dev->destructor)
3787 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07003788
3789 /* Free network device */
3790 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 }
3792
3793out:
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08003794 mutex_unlock(&net_todo_run_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795}
3796
Rusty Russell5a1b5892007-04-28 21:04:03 -07003797static struct net_device_stats *internal_stats(struct net_device *dev)
Rusty Russellc45d2862007-03-28 14:29:08 -07003798{
Rusty Russell5a1b5892007-04-28 21:04:03 -07003799 return &dev->stats;
Rusty Russellc45d2862007-03-28 14:29:08 -07003800}
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802/**
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003803 * alloc_netdev_mq - allocate network device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 * @sizeof_priv: size of private data to allocate space for
3805 * @name: device name format string
3806 * @setup: callback to initialize device
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003807 * @queue_count: the number of subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 *
3809 * Allocates a struct net_device with private data area for driver use
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003810 * and performs basic initialization. Also allocates subquue structs
3811 * for each queue on the device at the end of the netdevice.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 */
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003813struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
3814 void (*setup)(struct net_device *), unsigned int queue_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815{
3816 void *p;
3817 struct net_device *dev;
3818 int alloc_size;
3819
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07003820 BUG_ON(strlen(name) >= sizeof(dev->name));
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 /* ensure 32-byte alignment of both the device and private area */
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003823 alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST +
Patrick McHardy31ce72a2007-07-20 19:45:45 -07003824 (sizeof(struct net_device_subqueue) * (queue_count - 1))) &
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003825 ~NETDEV_ALIGN_CONST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 alloc_size += sizeof_priv + NETDEV_ALIGN_CONST;
3827
Paolo 'Blaisorblade' Giarrusso31380de2006-04-06 22:38:28 -07003828 p = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 if (!p) {
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07003830 printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 return NULL;
3832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
3834 dev = (struct net_device *)
3835 (((long)p + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
3836 dev->padded = (char *)dev - (char *)p;
Eric W. Biederman6d34b1c2007-09-12 12:57:33 +02003837 dev->nd_net = &init_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003839 if (sizeof_priv) {
3840 dev->priv = ((char *)dev +
3841 ((sizeof(struct net_device) +
3842 (sizeof(struct net_device_subqueue) *
Patrick McHardy31ce72a2007-07-20 19:45:45 -07003843 (queue_count - 1)) + NETDEV_ALIGN_CONST)
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003844 & ~NETDEV_ALIGN_CONST));
3845 }
3846
3847 dev->egress_subqueue_count = queue_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
Rusty Russell5a1b5892007-04-28 21:04:03 -07003849 dev->get_stats = internal_stats;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003850 netpoll_netdev_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 setup(dev);
3852 strcpy(dev->name, name);
3853 return dev;
3854}
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003855EXPORT_SYMBOL(alloc_netdev_mq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
3857/**
3858 * free_netdev - free network device
3859 * @dev: device
3860 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003861 * This function does the last stage of destroying an allocated device
3862 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 * If this is the last reference then it will be freed.
3864 */
3865void free_netdev(struct net_device *dev)
3866{
Stephen Hemminger3041a062006-05-26 13:25:24 -07003867 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 if (dev->reg_state == NETREG_UNINITIALIZED) {
3869 kfree((char *)dev - dev->padded);
3870 return;
3871 }
3872
3873 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
3874 dev->reg_state = NETREG_RELEASED;
3875
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07003876 /* will free via device release */
3877 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878}
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003879
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880/* Synchronize with packet receive processing. */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003881void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882{
3883 might_sleep();
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003884 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885}
3886
3887/**
3888 * unregister_netdevice - remove device from the kernel
3889 * @dev: device
3890 *
3891 * This function shuts down a device interface and removes it
3892 * from the kernel tables. On success 0 is returned, on a failure
3893 * a negative errno code is returned.
3894 *
3895 * Callers must hold the rtnl semaphore. You may want
3896 * unregister_netdev() instead of this.
3897 */
3898
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08003899void unregister_netdevice(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 BUG_ON(dev_boot_phase);
3902 ASSERT_RTNL();
3903
3904 /* Some devices call without registering for initialization unwind. */
3905 if (dev->reg_state == NETREG_UNINITIALIZED) {
3906 printk(KERN_DEBUG "unregister_netdevice: device %s/%p never "
3907 "was registered\n", dev->name, dev);
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08003908
3909 WARN_ON(1);
3910 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 }
3912
3913 BUG_ON(dev->reg_state != NETREG_REGISTERED);
3914
3915 /* If device is running, close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07003916 dev_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
3918 /* And unlink it from device chain. */
Eric W. Biedermance286d32007-09-12 13:53:49 +02003919 unlist_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
3921 dev->reg_state = NETREG_UNREGISTERING;
3922
3923 synchronize_net();
3924
3925 /* Shutdown queueing discipline. */
3926 dev_shutdown(dev);
3927
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 /* Notify protocols, that we are about to destroy
3930 this device. They should clean all the things.
3931 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003932 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003933
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 /*
Patrick McHardy4417da62007-06-27 01:28:10 -07003935 * Flush the unicast and multicast chains
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 */
Denis Cheng26cc2522007-07-18 02:12:03 -07003937 dev_addr_discard(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
3939 if (dev->uninit)
3940 dev->uninit(dev);
3941
3942 /* Notifier chain MUST detach us from master device. */
3943 BUG_TRAP(!dev->master);
3944
Eric W. Biederman8b41d182007-09-26 22:02:53 -07003945 /* Remove entries from kobject tree */
3946 netdev_unregister_kobject(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07003947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 /* Finish processing unregister after unlock */
3949 net_set_todo(dev);
3950
3951 synchronize_net();
3952
3953 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954}
3955
3956/**
3957 * unregister_netdev - remove device from the kernel
3958 * @dev: device
3959 *
3960 * This function shuts down a device interface and removes it
3961 * from the kernel tables. On success 0 is returned, on a failure
3962 * a negative errno code is returned.
3963 *
3964 * This is just a wrapper for unregister_netdevice that takes
3965 * the rtnl semaphore. In general you want to use this and not
3966 * unregister_netdevice.
3967 */
3968void unregister_netdev(struct net_device *dev)
3969{
3970 rtnl_lock();
3971 unregister_netdevice(dev);
3972 rtnl_unlock();
3973}
3974
3975EXPORT_SYMBOL(unregister_netdev);
3976
Eric W. Biedermance286d32007-09-12 13:53:49 +02003977/**
3978 * dev_change_net_namespace - move device to different nethost namespace
3979 * @dev: device
3980 * @net: network namespace
3981 * @pat: If not NULL name pattern to try if the current device name
3982 * is already taken in the destination network namespace.
3983 *
3984 * This function shuts down a device interface and moves it
3985 * to a new network namespace. On success 0 is returned, on
3986 * a failure a netagive errno code is returned.
3987 *
3988 * Callers must hold the rtnl semaphore.
3989 */
3990
3991int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
3992{
3993 char buf[IFNAMSIZ];
3994 const char *destname;
3995 int err;
3996
3997 ASSERT_RTNL();
3998
3999 /* Don't allow namespace local devices to be moved. */
4000 err = -EINVAL;
4001 if (dev->features & NETIF_F_NETNS_LOCAL)
4002 goto out;
4003
4004 /* Ensure the device has been registrered */
4005 err = -EINVAL;
4006 if (dev->reg_state != NETREG_REGISTERED)
4007 goto out;
4008
4009 /* Get out if there is nothing todo */
4010 err = 0;
4011 if (dev->nd_net == net)
4012 goto out;
4013
4014 /* Pick the destination device name, and ensure
4015 * we can use it in the destination network namespace.
4016 */
4017 err = -EEXIST;
4018 destname = dev->name;
4019 if (__dev_get_by_name(net, destname)) {
4020 /* We get here if we can't use the current device name */
4021 if (!pat)
4022 goto out;
4023 if (!dev_valid_name(pat))
4024 goto out;
4025 if (strchr(pat, '%')) {
4026 if (__dev_alloc_name(net, pat, buf) < 0)
4027 goto out;
4028 destname = buf;
4029 } else
4030 destname = pat;
4031 if (__dev_get_by_name(net, destname))
4032 goto out;
4033 }
4034
4035 /*
4036 * And now a mini version of register_netdevice unregister_netdevice.
4037 */
4038
4039 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07004040 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02004041
4042 /* And unlink it from device chain */
4043 err = -ENODEV;
4044 unlist_netdevice(dev);
4045
4046 synchronize_net();
4047
4048 /* Shutdown queueing discipline. */
4049 dev_shutdown(dev);
4050
4051 /* Notify protocols, that we are about to destroy
4052 this device. They should clean all the things.
4053 */
4054 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
4055
4056 /*
4057 * Flush the unicast and multicast chains
4058 */
4059 dev_addr_discard(dev);
4060
4061 /* Actually switch the network namespace */
4062 dev->nd_net = net;
4063
4064 /* Assign the new device name */
4065 if (destname != dev->name)
4066 strcpy(dev->name, destname);
4067
4068 /* If there is an ifindex conflict assign a new one */
4069 if (__dev_get_by_index(net, dev->ifindex)) {
4070 int iflink = (dev->iflink == dev->ifindex);
4071 dev->ifindex = dev_new_index(net);
4072 if (iflink)
4073 dev->iflink = dev->ifindex;
4074 }
4075
Eric W. Biederman8b41d182007-09-26 22:02:53 -07004076 /* Fixup kobjects */
Eric W. Biedermance286d32007-09-12 13:53:49 +02004077 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07004078 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02004079
4080 /* Add the device back in the hashes */
4081 list_netdevice(dev);
4082
4083 /* Notify protocols, that a new device appeared. */
4084 call_netdevice_notifiers(NETDEV_REGISTER, dev);
4085
4086 synchronize_net();
4087 err = 0;
4088out:
4089 return err;
4090}
4091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092static int dev_cpu_callback(struct notifier_block *nfb,
4093 unsigned long action,
4094 void *ocpu)
4095{
4096 struct sk_buff **list_skb;
4097 struct net_device **list_net;
4098 struct sk_buff *skb;
4099 unsigned int cpu, oldcpu = (unsigned long)ocpu;
4100 struct softnet_data *sd, *oldsd;
4101
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07004102 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 return NOTIFY_OK;
4104
4105 local_irq_disable();
4106 cpu = smp_processor_id();
4107 sd = &per_cpu(softnet_data, cpu);
4108 oldsd = &per_cpu(softnet_data, oldcpu);
4109
4110 /* Find end of our completion_queue. */
4111 list_skb = &sd->completion_queue;
4112 while (*list_skb)
4113 list_skb = &(*list_skb)->next;
4114 /* Append completion queue from offline CPU. */
4115 *list_skb = oldsd->completion_queue;
4116 oldsd->completion_queue = NULL;
4117
4118 /* Find end of our output_queue. */
4119 list_net = &sd->output_queue;
4120 while (*list_net)
4121 list_net = &(*list_net)->next_sched;
4122 /* Append output queue from offline CPU. */
4123 *list_net = oldsd->output_queue;
4124 oldsd->output_queue = NULL;
4125
4126 raise_softirq_irqoff(NET_TX_SOFTIRQ);
4127 local_irq_enable();
4128
4129 /* Process offline CPU's input_pkt_queue */
4130 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
4131 netif_rx(skb);
4132
4133 return NOTIFY_OK;
4134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Chris Leechdb217332006-06-17 21:24:58 -07004136#ifdef CONFIG_NET_DMA
4137/**
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07004138 * net_dma_rebalance - try to maintain one DMA channel per CPU
4139 * @net_dma: DMA client and associated data (lock, channels, channel_mask)
4140 *
4141 * This is called when the number of channels allocated to the net_dma client
4142 * changes. The net_dma client tries to have one DMA channel per CPU.
Chris Leechdb217332006-06-17 21:24:58 -07004143 */
Dan Williamsd379b012007-07-09 11:56:42 -07004144
4145static void net_dma_rebalance(struct net_dma *net_dma)
Chris Leechdb217332006-06-17 21:24:58 -07004146{
Dan Williamsd379b012007-07-09 11:56:42 -07004147 unsigned int cpu, i, n, chan_idx;
Chris Leechdb217332006-06-17 21:24:58 -07004148 struct dma_chan *chan;
4149
Dan Williamsd379b012007-07-09 11:56:42 -07004150 if (cpus_empty(net_dma->channel_mask)) {
Chris Leechdb217332006-06-17 21:24:58 -07004151 for_each_online_cpu(cpu)
Alexey Dobriyan29bbd722006-08-02 15:02:31 -07004152 rcu_assign_pointer(per_cpu(softnet_data, cpu).net_dma, NULL);
Chris Leechdb217332006-06-17 21:24:58 -07004153 return;
4154 }
4155
4156 i = 0;
4157 cpu = first_cpu(cpu_online_map);
4158
Dan Williamsd379b012007-07-09 11:56:42 -07004159 for_each_cpu_mask(chan_idx, net_dma->channel_mask) {
4160 chan = net_dma->channels[chan_idx];
4161
4162 n = ((num_online_cpus() / cpus_weight(net_dma->channel_mask))
4163 + (i < (num_online_cpus() %
4164 cpus_weight(net_dma->channel_mask)) ? 1 : 0));
Chris Leechdb217332006-06-17 21:24:58 -07004165
4166 while(n) {
Alexey Dobriyan29bbd722006-08-02 15:02:31 -07004167 per_cpu(softnet_data, cpu).net_dma = chan;
Chris Leechdb217332006-06-17 21:24:58 -07004168 cpu = next_cpu(cpu, cpu_online_map);
4169 n--;
4170 }
4171 i++;
4172 }
Chris Leechdb217332006-06-17 21:24:58 -07004173}
4174
4175/**
4176 * netdev_dma_event - event callback for the net_dma_client
4177 * @client: should always be net_dma_client
Randy Dunlapf4b8ea72006-06-22 16:00:11 -07004178 * @chan: DMA channel for the event
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07004179 * @state: DMA state to be handled
Chris Leechdb217332006-06-17 21:24:58 -07004180 */
Dan Williamsd379b012007-07-09 11:56:42 -07004181static enum dma_state_client
4182netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
4183 enum dma_state state)
Chris Leechdb217332006-06-17 21:24:58 -07004184{
Dan Williamsd379b012007-07-09 11:56:42 -07004185 int i, found = 0, pos = -1;
4186 struct net_dma *net_dma =
4187 container_of(client, struct net_dma, client);
4188 enum dma_state_client ack = DMA_DUP; /* default: take no action */
4189
4190 spin_lock(&net_dma->lock);
4191 switch (state) {
4192 case DMA_RESOURCE_AVAILABLE:
4193 for (i = 0; i < NR_CPUS; i++)
4194 if (net_dma->channels[i] == chan) {
4195 found = 1;
4196 break;
4197 } else if (net_dma->channels[i] == NULL && pos < 0)
4198 pos = i;
4199
4200 if (!found && pos >= 0) {
4201 ack = DMA_ACK;
4202 net_dma->channels[pos] = chan;
4203 cpu_set(pos, net_dma->channel_mask);
4204 net_dma_rebalance(net_dma);
4205 }
Chris Leechdb217332006-06-17 21:24:58 -07004206 break;
4207 case DMA_RESOURCE_REMOVED:
Dan Williamsd379b012007-07-09 11:56:42 -07004208 for (i = 0; i < NR_CPUS; i++)
4209 if (net_dma->channels[i] == chan) {
4210 found = 1;
4211 pos = i;
4212 break;
4213 }
4214
4215 if (found) {
4216 ack = DMA_ACK;
4217 cpu_clear(pos, net_dma->channel_mask);
4218 net_dma->channels[i] = NULL;
4219 net_dma_rebalance(net_dma);
4220 }
Chris Leechdb217332006-06-17 21:24:58 -07004221 break;
4222 default:
4223 break;
4224 }
Dan Williamsd379b012007-07-09 11:56:42 -07004225 spin_unlock(&net_dma->lock);
4226
4227 return ack;
Chris Leechdb217332006-06-17 21:24:58 -07004228}
4229
4230/**
4231 * netdev_dma_regiser - register the networking subsystem as a DMA client
4232 */
4233static int __init netdev_dma_register(void)
4234{
Dan Williamsd379b012007-07-09 11:56:42 -07004235 spin_lock_init(&net_dma.lock);
4236 dma_cap_set(DMA_MEMCPY, net_dma.client.cap_mask);
4237 dma_async_client_register(&net_dma.client);
4238 dma_async_client_chan_request(&net_dma.client);
Chris Leechdb217332006-06-17 21:24:58 -07004239 return 0;
4240}
4241
4242#else
4243static int __init netdev_dma_register(void) { return -ENODEV; }
4244#endif /* CONFIG_NET_DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Herbert Xu7f353bf2007-08-10 15:47:58 -07004246/**
4247 * netdev_compute_feature - compute conjunction of two feature sets
4248 * @all: first feature set
4249 * @one: second feature set
4250 *
4251 * Computes a new feature set after adding a device with feature set
4252 * @one to the master device with current feature set @all. Returns
4253 * the new feature set.
4254 */
4255int netdev_compute_features(unsigned long all, unsigned long one)
4256{
4257 /* if device needs checksumming, downgrade to hw checksumming */
4258 if (all & NETIF_F_NO_CSUM && !(one & NETIF_F_NO_CSUM))
4259 all ^= NETIF_F_NO_CSUM | NETIF_F_HW_CSUM;
4260
4261 /* if device can't do all checksum, downgrade to ipv4/ipv6 */
4262 if (all & NETIF_F_HW_CSUM && !(one & NETIF_F_HW_CSUM))
4263 all ^= NETIF_F_HW_CSUM
4264 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
4265
4266 if (one & NETIF_F_GSO)
4267 one |= NETIF_F_GSO_SOFTWARE;
4268 one |= NETIF_F_GSO;
4269
4270 /* If even one device supports robust GSO, enable it for all. */
4271 if (one & NETIF_F_GSO_ROBUST)
4272 all |= NETIF_F_GSO_ROBUST;
4273
4274 all &= one | NETIF_F_LLTX;
4275
4276 if (!(all & NETIF_F_ALL_CSUM))
4277 all &= ~NETIF_F_SG;
4278 if (!(all & NETIF_F_SG))
4279 all &= ~NETIF_F_GSO_MASK;
4280
4281 return all;
4282}
4283EXPORT_SYMBOL(netdev_compute_features);
4284
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004285static struct hlist_head *netdev_create_hash(void)
4286{
4287 int i;
4288 struct hlist_head *hash;
4289
4290 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
4291 if (hash != NULL)
4292 for (i = 0; i < NETDEV_HASHENTRIES; i++)
4293 INIT_HLIST_HEAD(&hash[i]);
4294
4295 return hash;
4296}
4297
Eric W. Biederman881d9662007-09-17 11:56:21 -07004298/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07004299static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07004300{
Eric W. Biederman881d9662007-09-17 11:56:21 -07004301 INIT_LIST_HEAD(&net->dev_base_head);
4302 rwlock_init(&dev_base_lock);
4303
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004304 net->dev_name_head = netdev_create_hash();
4305 if (net->dev_name_head == NULL)
4306 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004307
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004308 net->dev_index_head = netdev_create_hash();
4309 if (net->dev_index_head == NULL)
4310 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004311
4312 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004313
4314err_idx:
4315 kfree(net->dev_name_head);
4316err_name:
4317 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004318}
4319
Pavel Emelyanov46650792007-10-08 20:38:39 -07004320static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07004321{
4322 kfree(net->dev_name_head);
4323 kfree(net->dev_index_head);
4324}
4325
Pavel Emelyanov46650792007-10-08 20:38:39 -07004326static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07004327 .init = netdev_init,
4328 .exit = netdev_exit,
4329};
4330
Pavel Emelyanov46650792007-10-08 20:38:39 -07004331static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02004332{
4333 struct net_device *dev, *next;
4334 /*
4335 * Push all migratable of the network devices back to the
4336 * initial network namespace
4337 */
4338 rtnl_lock();
4339 for_each_netdev_safe(net, dev, next) {
4340 int err;
4341
4342 /* Ignore unmoveable devices (i.e. loopback) */
4343 if (dev->features & NETIF_F_NETNS_LOCAL)
4344 continue;
4345
4346 /* Push remaing network devices to init_net */
4347 err = dev_change_net_namespace(dev, &init_net, "dev%d");
4348 if (err) {
4349 printk(KERN_WARNING "%s: failed to move %s to init_net: %d\n",
4350 __func__, dev->name, err);
4351 unregister_netdevice(dev);
4352 }
4353 }
4354 rtnl_unlock();
4355}
4356
Pavel Emelyanov46650792007-10-08 20:38:39 -07004357static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02004358 .exit = default_device_exit,
4359};
4360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361/*
4362 * Initialize the DEV module. At boot time this walks the device list and
4363 * unhooks any devices that fail to initialise (normally hardware not
4364 * present) and leaves us with a valid list of present and active devices.
4365 *
4366 */
4367
4368/*
4369 * This is called single threaded during boot, so no need
4370 * to take the rtnl semaphore.
4371 */
4372static int __init net_dev_init(void)
4373{
4374 int i, rc = -ENOMEM;
4375
4376 BUG_ON(!dev_boot_phase);
4377
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 if (dev_proc_init())
4379 goto out;
4380
Eric W. Biederman8b41d182007-09-26 22:02:53 -07004381 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 goto out;
4383
4384 INIT_LIST_HEAD(&ptype_all);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004385 for (i = 0; i < 16; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 INIT_LIST_HEAD(&ptype_base[i]);
4387
Eric W. Biederman881d9662007-09-17 11:56:21 -07004388 if (register_pernet_subsys(&netdev_net_ops))
4389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
Eric W. Biedermance286d32007-09-12 13:53:49 +02004391 if (register_pernet_device(&default_device_ops))
4392 goto out;
4393
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 /*
4395 * Initialise the packet receive queues.
4396 */
4397
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07004398 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 struct softnet_data *queue;
4400
4401 queue = &per_cpu(softnet_data, i);
4402 skb_queue_head_init(&queue->input_pkt_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 queue->completion_queue = NULL;
4404 INIT_LIST_HEAD(&queue->poll_list);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004405
4406 queue->backlog.poll = process_backlog;
4407 queue->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 }
4409
Chris Leechdb217332006-06-17 21:24:58 -07004410 netdev_dma_register();
4411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 dev_boot_phase = 0;
4413
4414 open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
4415 open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
4416
4417 hotcpu_notifier(dev_cpu_callback, 0);
4418 dst_init();
4419 dev_mcast_init();
4420 rc = 0;
4421out:
4422 return rc;
4423}
4424
4425subsys_initcall(net_dev_init);
4426
4427EXPORT_SYMBOL(__dev_get_by_index);
4428EXPORT_SYMBOL(__dev_get_by_name);
4429EXPORT_SYMBOL(__dev_remove_pack);
Mitch Williamsc2373ee2005-11-09 10:34:45 -08004430EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431EXPORT_SYMBOL(dev_add_pack);
4432EXPORT_SYMBOL(dev_alloc_name);
4433EXPORT_SYMBOL(dev_close);
4434EXPORT_SYMBOL(dev_get_by_flags);
4435EXPORT_SYMBOL(dev_get_by_index);
4436EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437EXPORT_SYMBOL(dev_open);
4438EXPORT_SYMBOL(dev_queue_xmit);
4439EXPORT_SYMBOL(dev_remove_pack);
4440EXPORT_SYMBOL(dev_set_allmulti);
4441EXPORT_SYMBOL(dev_set_promiscuity);
4442EXPORT_SYMBOL(dev_change_flags);
4443EXPORT_SYMBOL(dev_set_mtu);
4444EXPORT_SYMBOL(dev_set_mac_address);
4445EXPORT_SYMBOL(free_netdev);
4446EXPORT_SYMBOL(netdev_boot_setup_check);
4447EXPORT_SYMBOL(netdev_set_master);
4448EXPORT_SYMBOL(netdev_state_change);
4449EXPORT_SYMBOL(netif_receive_skb);
4450EXPORT_SYMBOL(netif_rx);
4451EXPORT_SYMBOL(register_gifconf);
4452EXPORT_SYMBOL(register_netdevice);
4453EXPORT_SYMBOL(register_netdevice_notifier);
4454EXPORT_SYMBOL(skb_checksum_help);
4455EXPORT_SYMBOL(synchronize_net);
4456EXPORT_SYMBOL(unregister_netdevice);
4457EXPORT_SYMBOL(unregister_netdevice_notifier);
4458EXPORT_SYMBOL(net_enable_timestamp);
4459EXPORT_SYMBOL(net_disable_timestamp);
4460EXPORT_SYMBOL(dev_get_flags);
4461
4462#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
4463EXPORT_SYMBOL(br_handle_frame_hook);
4464EXPORT_SYMBOL(br_fdb_get_hook);
4465EXPORT_SYMBOL(br_fdb_put_hook);
4466#endif
4467
4468#ifdef CONFIG_KMOD
4469EXPORT_SYMBOL(dev_load);
4470#endif
4471
4472EXPORT_PER_CPU_SYMBOL(softnet_data);