blob: 080d32c4034fc6eb05f21baa9e7a9c214b225815 [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
252#ifdef CONFIG_SYSFS
253extern int netdev_sysfs_init(void);
254extern int netdev_register_sysfs(struct net_device *);
255extern void netdev_unregister_sysfs(struct net_device *);
256#else
257#define netdev_sysfs_init() (0)
258#define netdev_register_sysfs(dev) (0)
259#define netdev_unregister_sysfs(dev) do { } while(0)
260#endif
261
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700262#ifdef CONFIG_DEBUG_LOCK_ALLOC
263/*
264 * register_netdevice() inits dev->_xmit_lock and sets lockdep class
265 * according to dev->type
266 */
267static const unsigned short netdev_lock_type[] =
268 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
269 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
270 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
271 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
272 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
273 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
274 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
275 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
276 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
277 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
278 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
279 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
280 ARPHRD_FCFABRIC, ARPHRD_IEEE802_TR, ARPHRD_IEEE80211,
281 ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP, ARPHRD_VOID,
282 ARPHRD_NONE};
283
284static const char *netdev_lock_name[] =
285 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
286 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
287 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
288 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
289 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
290 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
291 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
292 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
293 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
294 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
295 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
296 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
297 "_xmit_FCFABRIC", "_xmit_IEEE802_TR", "_xmit_IEEE80211",
298 "_xmit_IEEE80211_PRISM", "_xmit_IEEE80211_RADIOTAP", "_xmit_VOID",
299 "_xmit_NONE"};
300
301static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
302
303static inline unsigned short netdev_lock_pos(unsigned short dev_type)
304{
305 int i;
306
307 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
308 if (netdev_lock_type[i] == dev_type)
309 return i;
310 /* the last key is used by default */
311 return ARRAY_SIZE(netdev_lock_type) - 1;
312}
313
314static inline void netdev_set_lockdep_class(spinlock_t *lock,
315 unsigned short dev_type)
316{
317 int i;
318
319 i = netdev_lock_pos(dev_type);
320 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
321 netdev_lock_name[i]);
322}
323#else
324static inline void netdev_set_lockdep_class(spinlock_t *lock,
325 unsigned short dev_type)
326{
327}
328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330/*******************************************************************************
331
332 Protocol management and registration routines
333
334*******************************************************************************/
335
336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * Add a protocol ID to the list. Now that the input handler is
338 * smarter we can dispense with all the messy stuff that used to be
339 * here.
340 *
341 * BEWARE!!! Protocol handlers, mangling input packets,
342 * MUST BE last in hash buckets and checking protocol handlers
343 * MUST start from promiscuous ptype_all chain in net_bh.
344 * It is true now, do not change it.
345 * Explanation follows: if protocol handler, mangling packet, will
346 * be the first on list, it is not able to sense, that packet
347 * is cloned and should be copied-on-write, so that it will
348 * change it and subsequent readers will get broken packet.
349 * --ANK (980803)
350 */
351
352/**
353 * dev_add_pack - add packet handler
354 * @pt: packet type declaration
355 *
356 * Add a protocol handler to the networking stack. The passed &packet_type
357 * is linked into kernel lists and may not be freed until it has been
358 * removed from the kernel lists.
359 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900360 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * guarantee all CPU's that are in middle of receiving packets
362 * will see the new packet type (until the next received packet).
363 */
364
365void dev_add_pack(struct packet_type *pt)
366{
367 int hash;
368
369 spin_lock_bh(&ptype_lock);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700370 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 list_add_rcu(&pt->list, &ptype_all);
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700372 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 hash = ntohs(pt->type) & 15;
374 list_add_rcu(&pt->list, &ptype_base[hash]);
375 }
376 spin_unlock_bh(&ptype_lock);
377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/**
380 * __dev_remove_pack - remove packet handler
381 * @pt: packet type declaration
382 *
383 * Remove a protocol handler that was previously added to the kernel
384 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
385 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900386 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
388 * The packet type might still be in use by receivers
389 * and must not be freed until after all the CPU's have gone
390 * through a quiescent state.
391 */
392void __dev_remove_pack(struct packet_type *pt)
393{
394 struct list_head *head;
395 struct packet_type *pt1;
396
397 spin_lock_bh(&ptype_lock);
398
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700399 if (pt->type == htons(ETH_P_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 head = &ptype_all;
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -0700401 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 head = &ptype_base[ntohs(pt->type) & 15];
403
404 list_for_each_entry(pt1, head, list) {
405 if (pt == pt1) {
406 list_del_rcu(&pt->list);
407 goto out;
408 }
409 }
410
411 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
412out:
413 spin_unlock_bh(&ptype_lock);
414}
415/**
416 * dev_remove_pack - remove packet handler
417 * @pt: packet type declaration
418 *
419 * Remove a protocol handler that was previously added to the kernel
420 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
421 * from the kernel lists and can be freed or reused once this function
422 * returns.
423 *
424 * This call sleeps to guarantee that no CPU is looking at the packet
425 * type after return.
426 */
427void dev_remove_pack(struct packet_type *pt)
428{
429 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 synchronize_net();
432}
433
434/******************************************************************************
435
436 Device Boot-time Settings Routines
437
438*******************************************************************************/
439
440/* Boot time configuration table */
441static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
442
443/**
444 * netdev_boot_setup_add - add new setup entry
445 * @name: name of the device
446 * @map: configured settings for the device
447 *
448 * Adds new setup entry to the dev_boot_setup list. The function
449 * returns 0 on error and 1 on success. This is a generic routine to
450 * all netdevices.
451 */
452static int netdev_boot_setup_add(char *name, struct ifmap *map)
453{
454 struct netdev_boot_setup *s;
455 int i;
456
457 s = dev_boot_setup;
458 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
459 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
460 memset(s[i].name, 0, sizeof(s[i].name));
461 strcpy(s[i].name, name);
462 memcpy(&s[i].map, map, sizeof(s[i].map));
463 break;
464 }
465 }
466
467 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
468}
469
470/**
471 * netdev_boot_setup_check - check boot time settings
472 * @dev: the netdevice
473 *
474 * Check boot time settings for the device.
475 * The found settings are set for the device to be used
476 * later in the device probing.
477 * Returns 0 if no settings found, 1 if they are.
478 */
479int netdev_boot_setup_check(struct net_device *dev)
480{
481 struct netdev_boot_setup *s = dev_boot_setup;
482 int i;
483
484 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
485 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
486 !strncmp(dev->name, s[i].name, strlen(s[i].name))) {
487 dev->irq = s[i].map.irq;
488 dev->base_addr = s[i].map.base_addr;
489 dev->mem_start = s[i].map.mem_start;
490 dev->mem_end = s[i].map.mem_end;
491 return 1;
492 }
493 }
494 return 0;
495}
496
497
498/**
499 * netdev_boot_base - get address from boot time settings
500 * @prefix: prefix for network device
501 * @unit: id for network device
502 *
503 * Check boot time settings for the base address of device.
504 * The found settings are set for the device to be used
505 * later in the device probing.
506 * Returns 0 if no settings found.
507 */
508unsigned long netdev_boot_base(const char *prefix, int unit)
509{
510 const struct netdev_boot_setup *s = dev_boot_setup;
511 char name[IFNAMSIZ];
512 int i;
513
514 sprintf(name, "%s%d", prefix, unit);
515
516 /*
517 * If device already registered then return base of 1
518 * to indicate not to probe for this interface
519 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700520 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 1;
522
523 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
524 if (!strcmp(name, s[i].name))
525 return s[i].map.base_addr;
526 return 0;
527}
528
529/*
530 * Saves at boot time configured settings for any netdevice.
531 */
532int __init netdev_boot_setup(char *str)
533{
534 int ints[5];
535 struct ifmap map;
536
537 str = get_options(str, ARRAY_SIZE(ints), ints);
538 if (!str || !*str)
539 return 0;
540
541 /* Save settings */
542 memset(&map, 0, sizeof(map));
543 if (ints[0] > 0)
544 map.irq = ints[1];
545 if (ints[0] > 1)
546 map.base_addr = ints[2];
547 if (ints[0] > 2)
548 map.mem_start = ints[3];
549 if (ints[0] > 3)
550 map.mem_end = ints[4];
551
552 /* Add new entry to the list */
553 return netdev_boot_setup_add(str, &map);
554}
555
556__setup("netdev=", netdev_boot_setup);
557
558/*******************************************************************************
559
560 Device Interface Subroutines
561
562*******************************************************************************/
563
564/**
565 * __dev_get_by_name - find a device by its name
566 * @name: name to find
567 *
568 * Find an interface by name. Must be called under RTNL semaphore
569 * or @dev_base_lock. If the name is found a pointer to the device
570 * is returned. If the name is not found then %NULL is returned. The
571 * reference counters are not incremented so the caller must be
572 * careful with locks.
573 */
574
Eric W. Biederman881d9662007-09-17 11:56:21 -0700575struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 struct hlist_node *p;
578
Eric W. Biederman881d9662007-09-17 11:56:21 -0700579 hlist_for_each(p, dev_name_hash(net, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct net_device *dev
581 = hlist_entry(p, struct net_device, name_hlist);
582 if (!strncmp(dev->name, name, IFNAMSIZ))
583 return dev;
584 }
585 return NULL;
586}
587
588/**
589 * dev_get_by_name - find a device by its name
590 * @name: name to find
591 *
592 * Find an interface by name. This can be called from any
593 * context and does its own locking. The returned handle has
594 * the usage count incremented and the caller must use dev_put() to
595 * release it when it is no longer needed. %NULL is returned if no
596 * matching device is found.
597 */
598
Eric W. Biederman881d9662007-09-17 11:56:21 -0700599struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 struct net_device *dev;
602
603 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700604 dev = __dev_get_by_name(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (dev)
606 dev_hold(dev);
607 read_unlock(&dev_base_lock);
608 return dev;
609}
610
611/**
612 * __dev_get_by_index - find a device by its ifindex
613 * @ifindex: index of device
614 *
615 * Search for an interface by index. Returns %NULL if the device
616 * is not found or a pointer to the device. The device has not
617 * had its reference counter increased so the caller must be careful
618 * about locking. The caller must hold either the RTNL semaphore
619 * or @dev_base_lock.
620 */
621
Eric W. Biederman881d9662007-09-17 11:56:21 -0700622struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 struct hlist_node *p;
625
Eric W. Biederman881d9662007-09-17 11:56:21 -0700626 hlist_for_each(p, dev_index_hash(net, ifindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 struct net_device *dev
628 = hlist_entry(p, struct net_device, index_hlist);
629 if (dev->ifindex == ifindex)
630 return dev;
631 }
632 return NULL;
633}
634
635
636/**
637 * dev_get_by_index - find a device by its ifindex
638 * @ifindex: index of device
639 *
640 * Search for an interface by index. Returns NULL if the device
641 * is not found or a pointer to the device. The device returned has
642 * had a reference added and the pointer is safe until the user calls
643 * dev_put to indicate they have finished with it.
644 */
645
Eric W. Biederman881d9662007-09-17 11:56:21 -0700646struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 struct net_device *dev;
649
650 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700651 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (dev)
653 dev_hold(dev);
654 read_unlock(&dev_base_lock);
655 return dev;
656}
657
658/**
659 * dev_getbyhwaddr - find a device by its hardware address
660 * @type: media type of device
661 * @ha: hardware address
662 *
663 * Search for an interface by MAC address. Returns NULL if the device
664 * is not found or a pointer to the device. The caller must hold the
665 * rtnl semaphore. The returned device has not had its ref count increased
666 * and the caller must therefore be careful about locking
667 *
668 * BUGS:
669 * If the API was consistent this would be __dev_get_by_hwaddr
670 */
671
Eric W. Biederman881d9662007-09-17 11:56:21 -0700672struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct net_device *dev;
675
676 ASSERT_RTNL();
677
Eric W. Biederman881d9662007-09-17 11:56:21 -0700678 for_each_netdev(&init_net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (dev->type == type &&
680 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700681 return dev;
682
683 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300686EXPORT_SYMBOL(dev_getbyhwaddr);
687
Eric W. Biederman881d9662007-09-17 11:56:21 -0700688struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700689{
690 struct net_device *dev;
691
692 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700693 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700694 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700695 return dev;
696
697 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700698}
699
700EXPORT_SYMBOL(__dev_getfirstbyhwtype);
701
Eric W. Biederman881d9662007-09-17 11:56:21 -0700702struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct net_device *dev;
705
706 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700707 dev = __dev_getfirstbyhwtype(net, type);
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700708 if (dev)
709 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 rtnl_unlock();
711 return dev;
712}
713
714EXPORT_SYMBOL(dev_getfirstbyhwtype);
715
716/**
717 * dev_get_by_flags - find any device with given flags
718 * @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;
789 long *inuse;
790 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 */
803 inuse = (long *) get_zeroed_page(GFP_ATOMIC);
804 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
957 * @name: name of interface
958 *
959 * If a network interface is not present and the process has suitable
960 * privileges this function loads the module. If module loading is not
961 * available in this kernel then it becomes a nop.
962 */
963
Eric W. Biederman881d9662007-09-17 11:56:21 -0700964void dev_load(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900966 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700969 dev = __dev_get_by_name(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 read_unlock(&dev_base_lock);
971
972 if (!dev && capable(CAP_SYS_MODULE))
973 request_module("%s", name);
974}
975
976static int default_rebuild_header(struct sk_buff *skb)
977{
978 printk(KERN_DEBUG "%s: default_rebuild_header called -- BUG!\n",
979 skb->dev ? skb->dev->name : "NULL!!!");
980 kfree_skb(skb);
981 return 1;
982}
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984/**
985 * dev_open - prepare an interface for use.
986 * @dev: device to open
987 *
988 * Takes a device from down to up state. The device's private open
989 * function is invoked and then the multicast lists are loaded. Finally
990 * the device is moved into the up state and a %NETDEV_UP message is
991 * sent to the netdev notifier chain.
992 *
993 * Calling this function on an active interface is a nop. On a failure
994 * a negative errno code is returned.
995 */
996int dev_open(struct net_device *dev)
997{
998 int ret = 0;
999
1000 /*
1001 * Is it already up?
1002 */
1003
1004 if (dev->flags & IFF_UP)
1005 return 0;
1006
1007 /*
1008 * Is it even present?
1009 */
1010 if (!netif_device_present(dev))
1011 return -ENODEV;
1012
1013 /*
1014 * Call device private open method
1015 */
1016 set_bit(__LINK_STATE_START, &dev->state);
1017 if (dev->open) {
1018 ret = dev->open(dev);
1019 if (ret)
1020 clear_bit(__LINK_STATE_START, &dev->state);
1021 }
1022
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001023 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 * If it went open OK then:
1025 */
1026
1027 if (!ret) {
1028 /*
1029 * Set the flags.
1030 */
1031 dev->flags |= IFF_UP;
1032
1033 /*
1034 * Initialize multicasting status
1035 */
Patrick McHardy4417da62007-06-27 01:28:10 -07001036 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 /*
1039 * Wakeup transmit queue engine
1040 */
1041 dev_activate(dev);
1042
1043 /*
1044 * ... and announce new interface.
1045 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001046 call_netdevice_notifiers(NETDEV_UP, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048 return ret;
1049}
1050
1051/**
1052 * dev_close - shutdown an interface.
1053 * @dev: device to shutdown
1054 *
1055 * This function moves an active device into down state. A
1056 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1057 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1058 * chain.
1059 */
1060int dev_close(struct net_device *dev)
1061{
David S. Miller9d5010d2007-09-12 14:33:25 +02001062 might_sleep();
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (!(dev->flags & IFF_UP))
1065 return 0;
1066
1067 /*
1068 * Tell people we are going down, so that they can
1069 * prepare to death, when device is still operating.
1070 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001071 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 dev_deactivate(dev);
1074
1075 clear_bit(__LINK_STATE_START, &dev->state);
1076
1077 /* Synchronize to scheduled poll. We cannot touch poll list,
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001078 * it can be even on different cpu. So just clear netif_running().
1079 *
1080 * dev->stop() will invoke napi_disable() on all of it's
1081 * napi_struct instances on this device.
1082 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 smp_mb__after_clear_bit(); /* Commit netif_running(). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 /*
1086 * Call the device specific close. This cannot fail.
1087 * Only if device is UP
1088 *
1089 * We allow it to be called even after a DETACH hot-plug
1090 * event.
1091 */
1092 if (dev->stop)
1093 dev->stop(dev);
1094
1095 /*
1096 * Device is now down.
1097 */
1098
1099 dev->flags &= ~IFF_UP;
1100
1101 /*
1102 * Tell people we are down
1103 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001104 call_netdevice_notifiers(NETDEV_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 return 0;
1107}
1108
1109
Eric W. Biederman881d9662007-09-17 11:56:21 -07001110static int dev_boot_phase = 1;
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112/*
1113 * Device change register/unregister. These are not inline or static
1114 * as we export them to the world.
1115 */
1116
1117/**
1118 * register_netdevice_notifier - register a network notifier block
1119 * @nb: notifier
1120 *
1121 * Register a notifier to be called when network device events occur.
1122 * The notifier passed is linked into the kernel structures and must
1123 * not be reused until it has been unregistered. A negative errno code
1124 * is returned on a failure.
1125 *
1126 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001127 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 * view of the network device list.
1129 */
1130
1131int register_netdevice_notifier(struct notifier_block *nb)
1132{
1133 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001134 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001135 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int err;
1137
1138 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001139 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001140 if (err)
1141 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001142 if (dev_boot_phase)
1143 goto unlock;
1144 for_each_net(net) {
1145 for_each_netdev(net, dev) {
1146 err = nb->notifier_call(nb, NETDEV_REGISTER, dev);
1147 err = notifier_to_errno(err);
1148 if (err)
1149 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Eric W. Biederman881d9662007-09-17 11:56:21 -07001151 if (!(dev->flags & IFF_UP))
1152 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001153
Eric W. Biederman881d9662007-09-17 11:56:21 -07001154 nb->notifier_call(nb, NETDEV_UP, dev);
1155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001157
1158unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 rtnl_unlock();
1160 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001161
1162rollback:
1163 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001164 for_each_net(net) {
1165 for_each_netdev(net, dev) {
1166 if (dev == last)
1167 break;
Herbert Xufcc5a032007-07-30 17:03:38 -07001168
Eric W. Biederman881d9662007-09-17 11:56:21 -07001169 if (dev->flags & IFF_UP) {
1170 nb->notifier_call(nb, NETDEV_GOING_DOWN, dev);
1171 nb->notifier_call(nb, NETDEV_DOWN, dev);
1172 }
1173 nb->notifier_call(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001174 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001175 }
1176 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
1179/**
1180 * unregister_netdevice_notifier - unregister a network notifier block
1181 * @nb: notifier
1182 *
1183 * Unregister a notifier previously registered by
1184 * register_netdevice_notifier(). The notifier is unlinked into the
1185 * kernel structures and may then be reused. A negative errno code
1186 * is returned on a failure.
1187 */
1188
1189int unregister_netdevice_notifier(struct notifier_block *nb)
1190{
Herbert Xu9f514952006-03-25 01:24:25 -08001191 int err;
1192
1193 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001194 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xu9f514952006-03-25 01:24:25 -08001195 rtnl_unlock();
1196 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199/**
1200 * call_netdevice_notifiers - call all network notifier blocks
1201 * @val: value passed unmodified to notifier function
1202 * @v: pointer passed unmodified to notifier function
1203 *
1204 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001205 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 */
1207
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001208int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001210 return raw_notifier_call_chain(&netdev_chain, val, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213/* When > 0 there are consumers of rx skb time stamps */
1214static atomic_t netstamp_needed = ATOMIC_INIT(0);
1215
1216void net_enable_timestamp(void)
1217{
1218 atomic_inc(&netstamp_needed);
1219}
1220
1221void net_disable_timestamp(void)
1222{
1223 atomic_dec(&netstamp_needed);
1224}
1225
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001226static inline void net_timestamp(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
1228 if (atomic_read(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001229 __net_timestamp(skb);
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001230 else
1231 skb->tstamp.tv64 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234/*
1235 * Support routine. Sends outgoing frames to any network
1236 * taps currently in use.
1237 */
1238
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001239static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 struct packet_type *ptype;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001242
1243 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 rcu_read_lock();
1246 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1247 /* Never send packets back to the socket
1248 * they originated from - MvS (miquels@drinkel.ow.org)
1249 */
1250 if ((ptype->dev == dev || !ptype->dev) &&
1251 (ptype->af_packet_priv == NULL ||
1252 (struct sock *)ptype->af_packet_priv != skb->sk)) {
1253 struct sk_buff *skb2= skb_clone(skb, GFP_ATOMIC);
1254 if (!skb2)
1255 break;
1256
1257 /* skb->nh should be correctly
1258 set by sender, so that the second statement is
1259 just protection against buggy protocols.
1260 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001261 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001263 if (skb_network_header(skb2) < skb2->data ||
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001264 skb2->network_header > skb2->tail) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (net_ratelimit())
1266 printk(KERN_CRIT "protocol %04x is "
1267 "buggy, dev %s\n",
1268 skb2->protocol, dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001269 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001272 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 skb2->pkt_type = PACKET_OUTGOING;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001274 ptype->func(skb2, skb->dev, ptype, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276 }
1277 rcu_read_unlock();
1278}
1279
Denis Vlasenko56079432006-03-29 15:57:29 -08001280
1281void __netif_schedule(struct net_device *dev)
1282{
1283 if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
1284 unsigned long flags;
1285 struct softnet_data *sd;
1286
1287 local_irq_save(flags);
1288 sd = &__get_cpu_var(softnet_data);
1289 dev->next_sched = sd->output_queue;
1290 sd->output_queue = dev;
1291 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1292 local_irq_restore(flags);
1293 }
1294}
1295EXPORT_SYMBOL(__netif_schedule);
1296
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001297void dev_kfree_skb_irq(struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08001298{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001299 if (atomic_dec_and_test(&skb->users)) {
1300 struct softnet_data *sd;
1301 unsigned long flags;
Denis Vlasenko56079432006-03-29 15:57:29 -08001302
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001303 local_irq_save(flags);
1304 sd = &__get_cpu_var(softnet_data);
1305 skb->next = sd->completion_queue;
1306 sd->completion_queue = skb;
1307 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1308 local_irq_restore(flags);
1309 }
Denis Vlasenko56079432006-03-29 15:57:29 -08001310}
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001311EXPORT_SYMBOL(dev_kfree_skb_irq);
Denis Vlasenko56079432006-03-29 15:57:29 -08001312
1313void dev_kfree_skb_any(struct sk_buff *skb)
1314{
1315 if (in_irq() || irqs_disabled())
1316 dev_kfree_skb_irq(skb);
1317 else
1318 dev_kfree_skb(skb);
1319}
1320EXPORT_SYMBOL(dev_kfree_skb_any);
1321
1322
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001323/**
1324 * netif_device_detach - mark device as removed
1325 * @dev: network device
1326 *
1327 * Mark device as removed from system and therefore no longer available.
1328 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001329void netif_device_detach(struct net_device *dev)
1330{
1331 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1332 netif_running(dev)) {
1333 netif_stop_queue(dev);
1334 }
1335}
1336EXPORT_SYMBOL(netif_device_detach);
1337
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001338/**
1339 * netif_device_attach - mark device as attached
1340 * @dev: network device
1341 *
1342 * Mark device as attached from system and restart if needed.
1343 */
Denis Vlasenko56079432006-03-29 15:57:29 -08001344void netif_device_attach(struct net_device *dev)
1345{
1346 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1347 netif_running(dev)) {
1348 netif_wake_queue(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001349 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08001350 }
1351}
1352EXPORT_SYMBOL(netif_device_attach);
1353
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355/*
1356 * Invalidate hardware checksum when packet is to be mangled, and
1357 * complete checksum manually on outgoing path.
1358 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07001359int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Al Virod3bc23e2006-11-14 21:24:49 -08001361 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07001362 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Patrick McHardy84fa7932006-08-29 16:44:56 -07001364 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07001365 goto out_set_summed;
1366
1367 if (unlikely(skb_shinfo(skb)->gso_size)) {
Herbert Xua430a432006-07-08 13:34:56 -07001368 /* Let GSO fix up the checksum. */
1369 goto out_set_summed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
1372 if (skb_cloned(skb)) {
1373 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1374 if (ret)
1375 goto out;
1376 }
1377
Herbert Xu663ead32007-04-09 11:59:07 -07001378 offset = skb->csum_start - skb_headroom(skb);
Kris Katterjohn09a62662006-01-08 22:24:28 -08001379 BUG_ON(offset > (int)skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 csum = skb_checksum(skb, offset, skb->len-offset, 0);
1381
Herbert Xu663ead32007-04-09 11:59:07 -07001382 offset = skb_headlen(skb) - offset;
Kris Katterjohn09a62662006-01-08 22:24:28 -08001383 BUG_ON(offset <= 0);
Al Viroff1dcad2006-11-20 18:07:29 -08001384 BUG_ON(skb->csum_offset + 2 > offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Herbert Xu663ead32007-04-09 11:59:07 -07001386 *(__sum16 *)(skb->head + skb->csum_start + skb->csum_offset) =
1387 csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07001388out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001390out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return ret;
1392}
1393
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001394/**
1395 * skb_gso_segment - Perform segmentation on skb.
1396 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07001397 * @features: features for the output path (see dev->features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001398 *
1399 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07001400 *
1401 * It may return NULL if the skb requires no segmentation. This is
1402 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001403 */
Herbert Xu576a30e2006-06-27 13:22:38 -07001404struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001405{
1406 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1407 struct packet_type *ptype;
Al Viro252e33462006-11-14 20:48:11 -08001408 __be16 type = skb->protocol;
Herbert Xua430a432006-07-08 13:34:56 -07001409 int err;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001410
1411 BUG_ON(skb_shinfo(skb)->frag_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001412
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001413 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001414 skb->mac_len = skb->network_header - skb->mac_header;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001415 __skb_pull(skb, skb->mac_len);
1416
Herbert Xuf9d106a2007-04-23 22:36:13 -07001417 if (WARN_ON(skb->ip_summed != CHECKSUM_PARTIAL)) {
Herbert Xua430a432006-07-08 13:34:56 -07001418 if (skb_header_cloned(skb) &&
1419 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1420 return ERR_PTR(err);
1421 }
1422
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001423 rcu_read_lock();
1424 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type) & 15], list) {
1425 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
Patrick McHardy84fa7932006-08-29 16:44:56 -07001426 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
Herbert Xua430a432006-07-08 13:34:56 -07001427 err = ptype->gso_send_check(skb);
1428 segs = ERR_PTR(err);
1429 if (err || skb_gso_ok(skb, features))
1430 break;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001431 __skb_push(skb, (skb->data -
1432 skb_network_header(skb)));
Herbert Xua430a432006-07-08 13:34:56 -07001433 }
Herbert Xu576a30e2006-06-27 13:22:38 -07001434 segs = ptype->gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001435 break;
1436 }
1437 }
1438 rcu_read_unlock();
1439
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001440 __skb_push(skb, skb->data - skb_mac_header(skb));
Herbert Xu576a30e2006-06-27 13:22:38 -07001441
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001442 return segs;
1443}
1444
1445EXPORT_SYMBOL(skb_gso_segment);
1446
Herbert Xufb286bb2005-11-10 13:01:24 -08001447/* Take action when hardware reception checksum errors are detected. */
1448#ifdef CONFIG_BUG
1449void netdev_rx_csum_fault(struct net_device *dev)
1450{
1451 if (net_ratelimit()) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001452 printk(KERN_ERR "%s: hw csum failure.\n",
Stephen Hemminger246a4212005-12-08 15:21:39 -08001453 dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08001454 dump_stack();
1455 }
1456}
1457EXPORT_SYMBOL(netdev_rx_csum_fault);
1458#endif
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460/* Actually, we should eliminate this check as soon as we know, that:
1461 * 1. IOMMU is present and allows to map all the memory.
1462 * 2. No high memory really exists on this machine.
1463 */
1464
1465static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1466{
Herbert Xu3d3a8532006-06-27 13:33:10 -07001467#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 int i;
1469
1470 if (dev->features & NETIF_F_HIGHDMA)
1471 return 0;
1472
1473 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1474 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1475 return 1;
1476
Herbert Xu3d3a8532006-06-27 13:33:10 -07001477#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return 0;
1479}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001481struct dev_gso_cb {
1482 void (*destructor)(struct sk_buff *skb);
1483};
1484
1485#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1486
1487static void dev_gso_skb_destructor(struct sk_buff *skb)
1488{
1489 struct dev_gso_cb *cb;
1490
1491 do {
1492 struct sk_buff *nskb = skb->next;
1493
1494 skb->next = nskb->next;
1495 nskb->next = NULL;
1496 kfree_skb(nskb);
1497 } while (skb->next);
1498
1499 cb = DEV_GSO_CB(skb);
1500 if (cb->destructor)
1501 cb->destructor(skb);
1502}
1503
1504/**
1505 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1506 * @skb: buffer to segment
1507 *
1508 * This function segments the given skb and stores the list of segments
1509 * in skb->next.
1510 */
1511static int dev_gso_segment(struct sk_buff *skb)
1512{
1513 struct net_device *dev = skb->dev;
1514 struct sk_buff *segs;
Herbert Xu576a30e2006-06-27 13:22:38 -07001515 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1516 NETIF_F_SG : 0);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001517
Herbert Xu576a30e2006-06-27 13:22:38 -07001518 segs = skb_gso_segment(skb, features);
1519
1520 /* Verifying header integrity only. */
1521 if (!segs)
1522 return 0;
1523
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001524 if (unlikely(IS_ERR(segs)))
1525 return PTR_ERR(segs);
1526
1527 skb->next = segs;
1528 DEV_GSO_CB(skb)->destructor = skb->destructor;
1529 skb->destructor = dev_gso_skb_destructor;
1530
1531 return 0;
1532}
1533
1534int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1535{
1536 if (likely(!skb->next)) {
Stephen Hemminger9be9a6b2007-04-20 17:02:45 -07001537 if (!list_empty(&ptype_all))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001538 dev_queue_xmit_nit(skb, dev);
1539
Herbert Xu576a30e2006-06-27 13:22:38 -07001540 if (netif_needs_gso(dev, skb)) {
1541 if (unlikely(dev_gso_segment(skb)))
1542 goto out_kfree_skb;
1543 if (skb->next)
1544 goto gso;
1545 }
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001546
Herbert Xu576a30e2006-06-27 13:22:38 -07001547 return dev->hard_start_xmit(skb, dev);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001548 }
1549
Herbert Xu576a30e2006-06-27 13:22:38 -07001550gso:
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001551 do {
1552 struct sk_buff *nskb = skb->next;
1553 int rc;
1554
1555 skb->next = nskb->next;
1556 nskb->next = NULL;
1557 rc = dev->hard_start_xmit(nskb, dev);
1558 if (unlikely(rc)) {
Michael Chanf54d9e82006-06-25 23:57:04 -07001559 nskb->next = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001560 skb->next = nskb;
1561 return rc;
1562 }
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07001563 if (unlikely((netif_queue_stopped(dev) ||
1564 netif_subqueue_stopped(dev, skb->queue_mapping)) &&
1565 skb->next))
Michael Chanf54d9e82006-06-25 23:57:04 -07001566 return NETDEV_TX_BUSY;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001567 } while (skb->next);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001568
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001569 skb->destructor = DEV_GSO_CB(skb)->destructor;
1570
1571out_kfree_skb:
1572 kfree_skb(skb);
1573 return 0;
1574}
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576/**
1577 * dev_queue_xmit - transmit a buffer
1578 * @skb: buffer to transmit
1579 *
1580 * Queue a buffer for transmission to a network device. The caller must
1581 * have set the device and priority and built the buffer before calling
1582 * this function. The function can be called from an interrupt.
1583 *
1584 * A negative errno code is returned on a failure. A success does not
1585 * guarantee the frame will be transmitted as it may be dropped due
1586 * to congestion or traffic shaping.
Ben Greearaf191362005-04-24 20:12:36 -07001587 *
1588 * -----------------------------------------------------------------------------------
1589 * I notice this method can also return errors from the queue disciplines,
1590 * including NET_XMIT_DROP, which is a positive value. So, errors can also
1591 * be positive.
1592 *
1593 * Regardless of the return value, the skb is consumed, so it is currently
1594 * difficult to retry a send to this method. (You can bump the ref count
1595 * before sending to hold a reference for retry if you are careful.)
1596 *
1597 * When calling this method, interrupts MUST be enabled. This is because
1598 * the BH enable code must have IRQs enabled so that it will not deadlock.
1599 * --BLG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 */
1601
1602int dev_queue_xmit(struct sk_buff *skb)
1603{
1604 struct net_device *dev = skb->dev;
1605 struct Qdisc *q;
1606 int rc = -ENOMEM;
1607
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001608 /* GSO will handle the following emulations directly. */
1609 if (netif_needs_gso(dev, skb))
1610 goto gso;
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (skb_shinfo(skb)->frag_list &&
1613 !(dev->features & NETIF_F_FRAGLIST) &&
Herbert Xu364c6ba2006-06-09 16:10:40 -07001614 __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 goto out_kfree_skb;
1616
1617 /* Fragmented skb is linearized if device does not support SG,
1618 * or if at least one of fragments is in highmem and device
1619 * does not support DMA from it.
1620 */
1621 if (skb_shinfo(skb)->nr_frags &&
1622 (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
Herbert Xu364c6ba2006-06-09 16:10:40 -07001623 __skb_linearize(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 goto out_kfree_skb;
1625
1626 /* If packet is not checksummed and device does not support
1627 * checksumming for this protocol, complete checksumming here.
1628 */
Herbert Xu663ead32007-04-09 11:59:07 -07001629 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1630 skb_set_transport_header(skb, skb->csum_start -
1631 skb_headroom(skb));
1632
Herbert Xua2988302007-06-28 13:44:37 -07001633 if (!(dev->features & NETIF_F_GEN_CSUM) &&
1634 !((dev->features & NETIF_F_IP_CSUM) &&
1635 skb->protocol == htons(ETH_P_IP)) &&
1636 !((dev->features & NETIF_F_IPV6_CSUM) &&
1637 skb->protocol == htons(ETH_P_IPV6)))
Herbert Xu663ead32007-04-09 11:59:07 -07001638 if (skb_checksum_help(skb))
1639 goto out_kfree_skb;
1640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001642gso:
Eric Dumazet2d7ceec2005-09-27 15:22:58 -07001643 spin_lock_prefetch(&dev->queue_lock);
1644
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001645 /* Disable soft irqs for various locks below. Also
1646 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001648 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001650 /* Updates of qdisc are serialized by queue_lock.
1651 * The struct Qdisc which is pointed to by qdisc is now a
1652 * rcu structure - it may be accessed without acquiring
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * a lock (but the structure may be stale.) The freeing of the
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001654 * qdisc will be deferred until it's known that there are no
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 * more references to it.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001656 *
1657 * If the qdisc has an enqueue function, we still need to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * hold the queue_lock before calling it, since queue_lock
1659 * also serializes access to the device queue.
1660 */
1661
1662 q = rcu_dereference(dev->qdisc);
1663#ifdef CONFIG_NET_CLS_ACT
1664 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_EGRESS);
1665#endif
1666 if (q->enqueue) {
1667 /* Grab device queue */
1668 spin_lock(&dev->queue_lock);
Patrick McHardy85670cc2006-09-27 16:45:45 -07001669 q = dev->qdisc;
1670 if (q->enqueue) {
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07001671 /* reset queue_mapping to zero */
1672 skb->queue_mapping = 0;
Patrick McHardy85670cc2006-09-27 16:45:45 -07001673 rc = q->enqueue(skb, q);
1674 qdisc_run(dev);
1675 spin_unlock(&dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Patrick McHardy85670cc2006-09-27 16:45:45 -07001677 rc = rc == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : rc;
1678 goto out;
1679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 spin_unlock(&dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
1683 /* The device has no queue. Common case for software devices:
1684 loopback, all the sorts of tunnels...
1685
Herbert Xu932ff272006-06-09 12:20:56 -07001686 Really, it is unlikely that netif_tx_lock protection is necessary
1687 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 counters.)
1689 However, it is possible, that they rely on protection
1690 made by us here.
1691
1692 Check this and shot the lock. It is not prone from deadlocks.
1693 Either shot noqueue qdisc, it is even simpler 8)
1694 */
1695 if (dev->flags & IFF_UP) {
1696 int cpu = smp_processor_id(); /* ok because BHs are off */
1697
1698 if (dev->xmit_lock_owner != cpu) {
1699
1700 HARD_TX_LOCK(dev, cpu);
1701
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07001702 if (!netif_queue_stopped(dev) &&
1703 !netif_subqueue_stopped(dev, skb->queue_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 rc = 0;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001705 if (!dev_hard_start_xmit(skb, dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 HARD_TX_UNLOCK(dev);
1707 goto out;
1708 }
1709 }
1710 HARD_TX_UNLOCK(dev);
1711 if (net_ratelimit())
1712 printk(KERN_CRIT "Virtual device %s asks to "
1713 "queue packet!\n", dev->name);
1714 } else {
1715 /* Recursion is detected! It is possible,
1716 * unfortunately */
1717 if (net_ratelimit())
1718 printk(KERN_CRIT "Dead loop on virtual device "
1719 "%s, fix it urgently!\n", dev->name);
1720 }
1721 }
1722
1723 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07001724 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726out_kfree_skb:
1727 kfree_skb(skb);
1728 return rc;
1729out:
Herbert Xud4828d82006-06-22 02:28:18 -07001730 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 return rc;
1732}
1733
1734
1735/*=======================================================================
1736 Receiver routines
1737 =======================================================================*/
1738
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07001739int netdev_max_backlog __read_mostly = 1000;
1740int netdev_budget __read_mostly = 300;
1741int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1744
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746/**
1747 * netif_rx - post buffer to the network code
1748 * @skb: buffer to post
1749 *
1750 * This function receives a packet from a device driver and queues it for
1751 * the upper (protocol) levels to process. It always succeeds. The buffer
1752 * may be dropped during processing for congestion control or by the
1753 * protocol layers.
1754 *
1755 * return values:
1756 * NET_RX_SUCCESS (no congestion)
1757 * NET_RX_CN_LOW (low congestion)
1758 * NET_RX_CN_MOD (moderate congestion)
1759 * NET_RX_CN_HIGH (high congestion)
1760 * NET_RX_DROP (packet was dropped)
1761 *
1762 */
1763
1764int netif_rx(struct sk_buff *skb)
1765{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 struct softnet_data *queue;
1767 unsigned long flags;
1768
1769 /* if netpoll wants it, pretend we never saw it */
1770 if (netpoll_rx(skb))
1771 return NET_RX_DROP;
1772
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001773 if (!skb->tstamp.tv64)
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001774 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 /*
1777 * The code is rearranged so that the path is the most
1778 * short when CPU is congested, but is still operating.
1779 */
1780 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 queue = &__get_cpu_var(softnet_data);
1782
1783 __get_cpu_var(netdev_rx_stat).total++;
1784 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
1785 if (queue->input_pkt_queue.qlen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786enqueue:
1787 dev_hold(skb->dev);
1788 __skb_queue_tail(&queue->input_pkt_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 local_irq_restore(flags);
Stephen Hemminger34008d82005-06-23 20:10:00 -07001790 return NET_RX_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001793 napi_schedule(&queue->backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 goto enqueue;
1795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 __get_cpu_var(netdev_rx_stat).dropped++;
1798 local_irq_restore(flags);
1799
1800 kfree_skb(skb);
1801 return NET_RX_DROP;
1802}
1803
1804int netif_rx_ni(struct sk_buff *skb)
1805{
1806 int err;
1807
1808 preempt_disable();
1809 err = netif_rx(skb);
1810 if (local_softirq_pending())
1811 do_softirq();
1812 preempt_enable();
1813
1814 return err;
1815}
1816
1817EXPORT_SYMBOL(netif_rx_ni);
1818
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001819static inline struct net_device *skb_bond(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 struct net_device *dev = skb->dev;
1822
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001823 if (dev->master) {
David S. Miller7ea49ed2006-08-14 17:08:36 -07001824 if (skb_bond_should_drop(skb)) {
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001825 kfree_skb(skb);
1826 return NULL;
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 skb->dev = dev->master;
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001829 }
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001830
1831 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835static void net_tx_action(struct softirq_action *h)
1836{
1837 struct softnet_data *sd = &__get_cpu_var(softnet_data);
1838
1839 if (sd->completion_queue) {
1840 struct sk_buff *clist;
1841
1842 local_irq_disable();
1843 clist = sd->completion_queue;
1844 sd->completion_queue = NULL;
1845 local_irq_enable();
1846
1847 while (clist) {
1848 struct sk_buff *skb = clist;
1849 clist = clist->next;
1850
1851 BUG_TRAP(!atomic_read(&skb->users));
1852 __kfree_skb(skb);
1853 }
1854 }
1855
1856 if (sd->output_queue) {
1857 struct net_device *head;
1858
1859 local_irq_disable();
1860 head = sd->output_queue;
1861 sd->output_queue = NULL;
1862 local_irq_enable();
1863
1864 while (head) {
1865 struct net_device *dev = head;
1866 head = head->next_sched;
1867
1868 smp_mb__before_clear_bit();
1869 clear_bit(__LINK_STATE_SCHED, &dev->state);
1870
1871 if (spin_trylock(&dev->queue_lock)) {
1872 qdisc_run(dev);
1873 spin_unlock(&dev->queue_lock);
1874 } else {
1875 netif_schedule(dev);
1876 }
1877 }
1878 }
1879}
1880
Stephen Hemminger6f05f622007-03-08 20:46:03 -08001881static inline int deliver_skb(struct sk_buff *skb,
1882 struct packet_type *pt_prev,
1883 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 atomic_inc(&skb->users);
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001886 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
1889#if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
Stephen Hemminger6229e362007-03-21 13:38:47 -07001890/* These hooks defined here for ATM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891struct net_bridge;
1892struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
1893 unsigned char *addr);
Stephen Hemminger6229e362007-03-21 13:38:47 -07001894void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent) __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Stephen Hemminger6229e362007-03-21 13:38:47 -07001896/*
1897 * If bridge module is loaded call bridging hook.
1898 * returns NULL if packet was consumed.
1899 */
1900struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p,
1901 struct sk_buff *skb) __read_mostly;
1902static inline struct sk_buff *handle_bridge(struct sk_buff *skb,
1903 struct packet_type **pt_prev, int *ret,
1904 struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
1906 struct net_bridge_port *port;
1907
Stephen Hemminger6229e362007-03-21 13:38:47 -07001908 if (skb->pkt_type == PACKET_LOOPBACK ||
1909 (port = rcu_dereference(skb->dev->br_port)) == NULL)
1910 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 if (*pt_prev) {
Stephen Hemminger6229e362007-03-21 13:38:47 -07001913 *ret = deliver_skb(skb, *pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 *pt_prev = NULL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001915 }
1916
Stephen Hemminger6229e362007-03-21 13:38:47 -07001917 return br_handle_frame_hook(port, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919#else
Stephen Hemminger6229e362007-03-21 13:38:47 -07001920#define handle_bridge(skb, pt_prev, ret, orig_dev) (skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921#endif
1922
Patrick McHardyb863ceb2007-07-14 18:55:06 -07001923#if defined(CONFIG_MACVLAN) || defined(CONFIG_MACVLAN_MODULE)
1924struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *skb) __read_mostly;
1925EXPORT_SYMBOL_GPL(macvlan_handle_frame_hook);
1926
1927static inline struct sk_buff *handle_macvlan(struct sk_buff *skb,
1928 struct packet_type **pt_prev,
1929 int *ret,
1930 struct net_device *orig_dev)
1931{
1932 if (skb->dev->macvlan_port == NULL)
1933 return skb;
1934
1935 if (*pt_prev) {
1936 *ret = deliver_skb(skb, *pt_prev, orig_dev);
1937 *pt_prev = NULL;
1938 }
1939 return macvlan_handle_frame_hook(skb);
1940}
1941#else
1942#define handle_macvlan(skb, pt_prev, ret, orig_dev) (skb)
1943#endif
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945#ifdef CONFIG_NET_CLS_ACT
1946/* TODO: Maybe we should just force sch_ingress to be compiled in
1947 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
1948 * a compare and 2 stores extra right now if we dont have it on
1949 * but have CONFIG_NET_CLS_ACT
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001950 * NOTE: This doesnt stop any functionality; if you dont have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * the ingress scheduler, you just cant add policies on ingress.
1952 *
1953 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001954static int ing_filter(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 struct Qdisc *q;
1957 struct net_device *dev = skb->dev;
1958 int result = TC_ACT_OK;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 if (dev->qdisc_ingress) {
1961 __u32 ttl = (__u32) G_TC_RTTL(skb->tc_verd);
1962 if (MAX_RED_LOOP < ttl++) {
Patrick McHardyc01003c2007-03-29 11:46:52 -07001963 printk(KERN_WARNING "Redir loop detected Dropping packet (%d->%d)\n",
1964 skb->iif, skb->dev->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return TC_ACT_SHOT;
1966 }
1967
1968 skb->tc_verd = SET_TC_RTTL(skb->tc_verd,ttl);
1969
1970 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_INGRESS);
David S. Miller86e65da2005-08-09 19:36:29 -07001971
Patrick McHardyfd44de72007-04-16 17:07:08 -07001972 spin_lock(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if ((q = dev->qdisc_ingress) != NULL)
1974 result = q->enqueue(skb, q);
Patrick McHardyfd44de72007-04-16 17:07:08 -07001975 spin_unlock(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 }
1978
1979 return result;
1980}
1981#endif
1982
1983int netif_receive_skb(struct sk_buff *skb)
1984{
1985 struct packet_type *ptype, *pt_prev;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07001986 struct net_device *orig_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08001988 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 /* if we've gotten here through NAPI, check netpoll */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001991 if (netpoll_receive_skb(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return NET_RX_DROP;
1993
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001994 if (!skb->tstamp.tv64)
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001995 net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Patrick McHardyc01003c2007-03-29 11:46:52 -07001997 if (!skb->iif)
1998 skb->iif = skb->dev->ifindex;
David S. Miller86e65da2005-08-09 19:36:29 -07001999
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002000 orig_dev = skb_bond(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002002 if (!orig_dev)
2003 return NET_RX_DROP;
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 __get_cpu_var(netdev_rx_stat).total++;
2006
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07002007 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002008 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002009 skb->mac_len = skb->network_header - skb->mac_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 pt_prev = NULL;
2012
2013 rcu_read_lock();
2014
2015#ifdef CONFIG_NET_CLS_ACT
2016 if (skb->tc_verd & TC_NCLS) {
2017 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
2018 goto ncls;
2019 }
2020#endif
2021
2022 list_for_each_entry_rcu(ptype, &ptype_all, list) {
2023 if (!ptype->dev || ptype->dev == skb->dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002024 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002025 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 pt_prev = ptype;
2027 }
2028 }
2029
2030#ifdef CONFIG_NET_CLS_ACT
2031 if (pt_prev) {
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002032 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 pt_prev = NULL; /* noone else should process this after*/
2034 } else {
2035 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
2036 }
2037
2038 ret = ing_filter(skb);
2039
2040 if (ret == TC_ACT_SHOT || (ret == TC_ACT_STOLEN)) {
2041 kfree_skb(skb);
2042 goto out;
2043 }
2044
2045 skb->tc_verd = 0;
2046ncls:
2047#endif
2048
Stephen Hemminger6229e362007-03-21 13:38:47 -07002049 skb = handle_bridge(skb, &pt_prev, &ret, orig_dev);
2050 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 goto out;
Patrick McHardyb863ceb2007-07-14 18:55:06 -07002052 skb = handle_macvlan(skb, &pt_prev, &ret, orig_dev);
2053 if (!skb)
2054 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 type = skb->protocol;
2057 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type)&15], list) {
2058 if (ptype->type == type &&
2059 (!ptype->dev || ptype->dev == skb->dev)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002060 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002061 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 pt_prev = ptype;
2063 }
2064 }
2065
2066 if (pt_prev) {
David S. Millerf2ccd8f2005-08-09 19:34:12 -07002067 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 } else {
2069 kfree_skb(skb);
2070 /* Jamal, now you will not able to escape explaining
2071 * me how you were going to use this. :-)
2072 */
2073 ret = NET_RX_DROP;
2074 }
2075
2076out:
2077 rcu_read_unlock();
2078 return ret;
2079}
2080
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002081static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct softnet_data *queue = &__get_cpu_var(softnet_data);
2085 unsigned long start_time = jiffies;
2086
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002087 napi->weight = weight_p;
2088 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 struct sk_buff *skb;
2090 struct net_device *dev;
2091
2092 local_irq_disable();
2093 skb = __skb_dequeue(&queue->input_pkt_queue);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002094 if (!skb) {
2095 __napi_complete(napi);
2096 local_irq_enable();
2097 break;
2098 }
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 local_irq_enable();
2101
2102 dev = skb->dev;
2103
2104 netif_receive_skb(skb);
2105
2106 dev_put(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002107 } while (++work < quota && jiffies == start_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002109 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002112/**
2113 * __napi_schedule - schedule for receive
2114 * @napi: entry to schedule
2115 *
2116 * The entry's receive function will be scheduled to run
2117 */
2118void fastcall __napi_schedule(struct napi_struct *n)
2119{
2120 unsigned long flags;
2121
2122 local_irq_save(flags);
2123 list_add_tail(&n->poll_list, &__get_cpu_var(softnet_data).poll_list);
2124 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2125 local_irq_restore(flags);
2126}
2127EXPORT_SYMBOL(__napi_schedule);
2128
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130static void net_rx_action(struct softirq_action *h)
2131{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002132 struct list_head *list = &__get_cpu_var(softnet_data).poll_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 unsigned long start_time = jiffies;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07002134 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07002135 void *have;
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 local_irq_disable();
2138
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002139 while (!list_empty(list)) {
2140 struct napi_struct *n;
2141 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002143 /* If softirq window is exhuasted then punt.
2144 *
2145 * Note that this is a slight policy change from the
2146 * previous NAPI code, which would allow up to 2
2147 * jiffies to pass before breaking out. The test
2148 * used to be "jiffies - start_time > 1".
2149 */
2150 if (unlikely(budget <= 0 || jiffies != start_time))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 goto softnet_break;
2152
2153 local_irq_enable();
2154
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002155 /* Even though interrupts have been re-enabled, this
2156 * access is safe because interrupts can only add new
2157 * entries to the tail of this list, and only ->poll()
2158 * calls can remove this head entry from the list.
2159 */
2160 n = list_entry(list->next, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002162 have = netpoll_poll_lock(n);
2163
2164 weight = n->weight;
2165
2166 work = n->poll(n, weight);
2167
2168 WARN_ON_ONCE(work > weight);
2169
2170 budget -= work;
2171
2172 local_irq_disable();
2173
2174 /* Drivers must not modify the NAPI state if they
2175 * consume the entire weight. In such cases this code
2176 * still "owns" the NAPI instance and therefore can
2177 * move the instance around on the list at-will.
2178 */
2179 if (unlikely(work == weight))
2180 list_move_tail(&n->poll_list, list);
2181
2182 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184out:
Shannon Nelson515e06c2007-06-23 23:09:23 -07002185 local_irq_enable();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002186
Chris Leechdb217332006-06-17 21:24:58 -07002187#ifdef CONFIG_NET_DMA
2188 /*
2189 * There may not be any more sk_buffs coming right now, so push
2190 * any pending DMA copies to hardware
2191 */
Dan Williamsd379b012007-07-09 11:56:42 -07002192 if (!cpus_empty(net_dma.channel_mask)) {
2193 int chan_idx;
2194 for_each_cpu_mask(chan_idx, net_dma.channel_mask) {
2195 struct dma_chan *chan = net_dma.channels[chan_idx];
2196 if (chan)
2197 dma_async_memcpy_issue_pending(chan);
2198 }
Chris Leechdb217332006-06-17 21:24:58 -07002199 }
2200#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return;
2203
2204softnet_break:
2205 __get_cpu_var(netdev_rx_stat).time_squeeze++;
2206 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2207 goto out;
2208}
2209
2210static gifconf_func_t * gifconf_list [NPROTO];
2211
2212/**
2213 * register_gifconf - register a SIOCGIF handler
2214 * @family: Address family
2215 * @gifconf: Function handler
2216 *
2217 * Register protocol dependent address dumping routines. The handler
2218 * that is passed must not be freed or reused until it has been replaced
2219 * by another handler.
2220 */
2221int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
2222{
2223 if (family >= NPROTO)
2224 return -EINVAL;
2225 gifconf_list[family] = gifconf;
2226 return 0;
2227}
2228
2229
2230/*
2231 * Map an interface index to its name (SIOCGIFNAME)
2232 */
2233
2234/*
2235 * We need this ioctl for efficient implementation of the
2236 * if_indextoname() function required by the IPv6 API. Without
2237 * it, we would have to search all the interfaces to find a
2238 * match. --pb
2239 */
2240
Eric W. Biederman881d9662007-09-17 11:56:21 -07002241static int dev_ifname(struct net *net, struct ifreq __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242{
2243 struct net_device *dev;
2244 struct ifreq ifr;
2245
2246 /*
2247 * Fetch the caller's info block.
2248 */
2249
2250 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2251 return -EFAULT;
2252
2253 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -07002254 dev = __dev_get_by_index(net, ifr.ifr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (!dev) {
2256 read_unlock(&dev_base_lock);
2257 return -ENODEV;
2258 }
2259
2260 strcpy(ifr.ifr_name, dev->name);
2261 read_unlock(&dev_base_lock);
2262
2263 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
2264 return -EFAULT;
2265 return 0;
2266}
2267
2268/*
2269 * Perform a SIOCGIFCONF call. This structure will change
2270 * size eventually, and there is nothing I can do about it.
2271 * Thus we will need a 'compatibility mode'.
2272 */
2273
Eric W. Biederman881d9662007-09-17 11:56:21 -07002274static int dev_ifconf(struct net *net, char __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
2276 struct ifconf ifc;
2277 struct net_device *dev;
2278 char __user *pos;
2279 int len;
2280 int total;
2281 int i;
2282
2283 /*
2284 * Fetch the caller's info block.
2285 */
2286
2287 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
2288 return -EFAULT;
2289
2290 pos = ifc.ifc_buf;
2291 len = ifc.ifc_len;
2292
2293 /*
2294 * Loop over the interfaces, and write an info block for each.
2295 */
2296
2297 total = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002298 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 for (i = 0; i < NPROTO; i++) {
2300 if (gifconf_list[i]) {
2301 int done;
2302 if (!pos)
2303 done = gifconf_list[i](dev, NULL, 0);
2304 else
2305 done = gifconf_list[i](dev, pos + total,
2306 len - total);
2307 if (done < 0)
2308 return -EFAULT;
2309 total += done;
2310 }
2311 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 /*
2315 * All done. Write the updated control block back to the caller.
2316 */
2317 ifc.ifc_len = total;
2318
2319 /*
2320 * Both BSD and Solaris return 0 here, so we do too.
2321 */
2322 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
2323}
2324
2325#ifdef CONFIG_PROC_FS
2326/*
2327 * This is invoked by the /proc filesystem handler to display a device
2328 * in detail.
2329 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330void *dev_seq_start(struct seq_file *seq, loff_t *pos)
2331{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002332 struct net *net = seq->private;
Pavel Emelianov7562f872007-05-03 15:13:45 -07002333 loff_t off;
2334 struct net_device *dev;
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -07002337 if (!*pos)
2338 return SEQ_START_TOKEN;
2339
2340 off = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002341 for_each_netdev(net, dev)
Pavel Emelianov7562f872007-05-03 15:13:45 -07002342 if (off++ == *pos)
2343 return dev;
2344
2345 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346}
2347
2348void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2349{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002350 struct net *net = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 ++*pos;
Pavel Emelianov7562f872007-05-03 15:13:45 -07002352 return v == SEQ_START_TOKEN ?
Eric W. Biederman881d9662007-09-17 11:56:21 -07002353 first_net_device(net) : next_net_device((struct net_device *)v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
2356void dev_seq_stop(struct seq_file *seq, void *v)
2357{
2358 read_unlock(&dev_base_lock);
2359}
2360
2361static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
2362{
Rusty Russellc45d2862007-03-28 14:29:08 -07002363 struct net_device_stats *stats = dev->get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Rusty Russell5a1b5892007-04-28 21:04:03 -07002365 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
2366 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
2367 dev->name, stats->rx_bytes, stats->rx_packets,
2368 stats->rx_errors,
2369 stats->rx_dropped + stats->rx_missed_errors,
2370 stats->rx_fifo_errors,
2371 stats->rx_length_errors + stats->rx_over_errors +
2372 stats->rx_crc_errors + stats->rx_frame_errors,
2373 stats->rx_compressed, stats->multicast,
2374 stats->tx_bytes, stats->tx_packets,
2375 stats->tx_errors, stats->tx_dropped,
2376 stats->tx_fifo_errors, stats->collisions,
2377 stats->tx_carrier_errors +
2378 stats->tx_aborted_errors +
2379 stats->tx_window_errors +
2380 stats->tx_heartbeat_errors,
2381 stats->tx_compressed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
2383
2384/*
2385 * Called from the PROCfs module. This now uses the new arbitrary sized
2386 * /proc/net interface to create /proc/net/dev
2387 */
2388static int dev_seq_show(struct seq_file *seq, void *v)
2389{
2390 if (v == SEQ_START_TOKEN)
2391 seq_puts(seq, "Inter-| Receive "
2392 " | Transmit\n"
2393 " face |bytes packets errs drop fifo frame "
2394 "compressed multicast|bytes packets errs "
2395 "drop fifo colls carrier compressed\n");
2396 else
2397 dev_seq_printf_stats(seq, v);
2398 return 0;
2399}
2400
2401static struct netif_rx_stats *softnet_get_online(loff_t *pos)
2402{
2403 struct netif_rx_stats *rc = NULL;
2404
2405 while (*pos < NR_CPUS)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002406 if (cpu_online(*pos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 rc = &per_cpu(netdev_rx_stat, *pos);
2408 break;
2409 } else
2410 ++*pos;
2411 return rc;
2412}
2413
2414static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
2415{
2416 return softnet_get_online(pos);
2417}
2418
2419static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2420{
2421 ++*pos;
2422 return softnet_get_online(pos);
2423}
2424
2425static void softnet_seq_stop(struct seq_file *seq, void *v)
2426{
2427}
2428
2429static int softnet_seq_show(struct seq_file *seq, void *v)
2430{
2431 struct netif_rx_stats *s = v;
2432
2433 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
Stephen Hemminger31aa02c2005-06-23 20:12:48 -07002434 s->total, s->dropped, s->time_squeeze, 0,
Stephen Hemmingerc1ebcdb2005-06-23 20:08:59 -07002435 0, 0, 0, 0, /* was fastroute */
2436 s->cpu_collision );
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 return 0;
2438}
2439
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002440static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 .start = dev_seq_start,
2442 .next = dev_seq_next,
2443 .stop = dev_seq_stop,
2444 .show = dev_seq_show,
2445};
2446
2447static int dev_seq_open(struct inode *inode, struct file *file)
2448{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002449 struct seq_file *seq;
2450 int res;
2451 res = seq_open(file, &dev_seq_ops);
2452 if (!res) {
2453 seq = file->private_data;
Eric W. Biederman077130c2007-09-13 09:18:57 +02002454 seq->private = get_proc_net(inode);
2455 if (!seq->private) {
2456 seq_release(inode, file);
2457 res = -ENXIO;
2458 }
Eric W. Biederman881d9662007-09-17 11:56:21 -07002459 }
2460 return res;
2461}
2462
2463static int dev_seq_release(struct inode *inode, struct file *file)
2464{
2465 struct seq_file *seq = file->private_data;
2466 struct net *net = seq->private;
2467 put_net(net);
2468 return seq_release(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
Arjan van de Ven9a321442007-02-12 00:55:35 -08002471static const struct file_operations dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 .owner = THIS_MODULE,
2473 .open = dev_seq_open,
2474 .read = seq_read,
2475 .llseek = seq_lseek,
Eric W. Biederman881d9662007-09-17 11:56:21 -07002476 .release = dev_seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477};
2478
Stephen Hemmingerf6908082007-03-12 14:34:29 -07002479static const struct seq_operations softnet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 .start = softnet_seq_start,
2481 .next = softnet_seq_next,
2482 .stop = softnet_seq_stop,
2483 .show = softnet_seq_show,
2484};
2485
2486static int softnet_seq_open(struct inode *inode, struct file *file)
2487{
2488 return seq_open(file, &softnet_seq_ops);
2489}
2490
Arjan van de Ven9a321442007-02-12 00:55:35 -08002491static const struct file_operations softnet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 .owner = THIS_MODULE,
2493 .open = softnet_seq_open,
2494 .read = seq_read,
2495 .llseek = seq_lseek,
2496 .release = seq_release,
2497};
2498
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07002499static void *ptype_get_idx(loff_t pos)
2500{
2501 struct packet_type *pt = NULL;
2502 loff_t i = 0;
2503 int t;
2504
2505 list_for_each_entry_rcu(pt, &ptype_all, list) {
2506 if (i == pos)
2507 return pt;
2508 ++i;
2509 }
2510
2511 for (t = 0; t < 16; t++) {
2512 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
2513 if (i == pos)
2514 return pt;
2515 ++i;
2516 }
2517 }
2518 return NULL;
2519}
2520
2521static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
2522{
2523 rcu_read_lock();
2524 return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
2525}
2526
2527static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2528{
2529 struct packet_type *pt;
2530 struct list_head *nxt;
2531 int hash;
2532
2533 ++*pos;
2534 if (v == SEQ_START_TOKEN)
2535 return ptype_get_idx(0);
2536
2537 pt = v;
2538 nxt = pt->list.next;
2539 if (pt->type == htons(ETH_P_ALL)) {
2540 if (nxt != &ptype_all)
2541 goto found;
2542 hash = 0;
2543 nxt = ptype_base[0].next;
2544 } else
2545 hash = ntohs(pt->type) & 15;
2546
2547 while (nxt == &ptype_base[hash]) {
2548 if (++hash >= 16)
2549 return NULL;
2550 nxt = ptype_base[hash].next;
2551 }
2552found:
2553 return list_entry(nxt, struct packet_type, list);
2554}
2555
2556static void ptype_seq_stop(struct seq_file *seq, void *v)
2557{
2558 rcu_read_unlock();
2559}
2560
2561static void ptype_seq_decode(struct seq_file *seq, void *sym)
2562{
2563#ifdef CONFIG_KALLSYMS
2564 unsigned long offset = 0, symsize;
2565 const char *symname;
2566 char *modname;
2567 char namebuf[128];
2568
2569 symname = kallsyms_lookup((unsigned long)sym, &symsize, &offset,
2570 &modname, namebuf);
2571
2572 if (symname) {
2573 char *delim = ":";
2574
2575 if (!modname)
2576 modname = delim = "";
2577 seq_printf(seq, "%s%s%s%s+0x%lx", delim, modname, delim,
2578 symname, offset);
2579 return;
2580 }
2581#endif
2582
2583 seq_printf(seq, "[%p]", sym);
2584}
2585
2586static int ptype_seq_show(struct seq_file *seq, void *v)
2587{
2588 struct packet_type *pt = v;
2589
2590 if (v == SEQ_START_TOKEN)
2591 seq_puts(seq, "Type Device Function\n");
2592 else {
2593 if (pt->type == htons(ETH_P_ALL))
2594 seq_puts(seq, "ALL ");
2595 else
2596 seq_printf(seq, "%04x", ntohs(pt->type));
2597
2598 seq_printf(seq, " %-8s ",
2599 pt->dev ? pt->dev->name : "");
2600 ptype_seq_decode(seq, pt->func);
2601 seq_putc(seq, '\n');
2602 }
2603
2604 return 0;
2605}
2606
2607static const struct seq_operations ptype_seq_ops = {
2608 .start = ptype_seq_start,
2609 .next = ptype_seq_next,
2610 .stop = ptype_seq_stop,
2611 .show = ptype_seq_show,
2612};
2613
2614static int ptype_seq_open(struct inode *inode, struct file *file)
2615{
2616 return seq_open(file, &ptype_seq_ops);
2617}
2618
2619static const struct file_operations ptype_seq_fops = {
2620 .owner = THIS_MODULE,
2621 .open = ptype_seq_open,
2622 .read = seq_read,
2623 .llseek = seq_lseek,
2624 .release = seq_release,
2625};
2626
2627
Eric W. Biederman881d9662007-09-17 11:56:21 -07002628static int dev_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
2630 int rc = -ENOMEM;
2631
Eric W. Biederman881d9662007-09-17 11:56:21 -07002632 if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 goto out;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002634 if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 goto out_dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07002636 if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002637 goto out_softnet;
Stephen Hemminger0e1256f2007-03-12 14:35:37 -07002638
Eric W. Biederman881d9662007-09-17 11:56:21 -07002639 if (wext_proc_init(net))
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002640 goto out_ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 rc = 0;
2642out:
2643 return rc;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02002644out_ptype:
Eric W. Biederman881d9662007-09-17 11:56:21 -07002645 proc_net_remove(net, "ptype");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646out_softnet:
Eric W. Biederman881d9662007-09-17 11:56:21 -07002647 proc_net_remove(net, "softnet_stat");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648out_dev:
Eric W. Biederman881d9662007-09-17 11:56:21 -07002649 proc_net_remove(net, "dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 goto out;
2651}
Eric W. Biederman881d9662007-09-17 11:56:21 -07002652
2653static void dev_proc_net_exit(struct net *net)
2654{
2655 wext_proc_exit(net);
2656
2657 proc_net_remove(net, "ptype");
2658 proc_net_remove(net, "softnet_stat");
2659 proc_net_remove(net, "dev");
2660}
2661
2662static struct pernet_operations dev_proc_ops = {
2663 .init = dev_proc_net_init,
2664 .exit = dev_proc_net_exit,
2665};
2666
2667static int __init dev_proc_init(void)
2668{
2669 return register_pernet_subsys(&dev_proc_ops);
2670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671#else
2672#define dev_proc_init() 0
2673#endif /* CONFIG_PROC_FS */
2674
2675
2676/**
2677 * netdev_set_master - set up master/slave pair
2678 * @slave: slave device
2679 * @master: new master device
2680 *
2681 * Changes the master device of the slave. Pass %NULL to break the
2682 * bonding. The caller must hold the RTNL semaphore. On a failure
2683 * a negative errno code is returned. On success the reference counts
2684 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
2685 * function returns zero.
2686 */
2687int netdev_set_master(struct net_device *slave, struct net_device *master)
2688{
2689 struct net_device *old = slave->master;
2690
2691 ASSERT_RTNL();
2692
2693 if (master) {
2694 if (old)
2695 return -EBUSY;
2696 dev_hold(master);
2697 }
2698
2699 slave->master = master;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 synchronize_net();
2702
2703 if (old)
2704 dev_put(old);
2705
2706 if (master)
2707 slave->flags |= IFF_SLAVE;
2708 else
2709 slave->flags &= ~IFF_SLAVE;
2710
2711 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
2712 return 0;
2713}
2714
Patrick McHardy4417da62007-06-27 01:28:10 -07002715static void __dev_set_promiscuity(struct net_device *dev, int inc)
2716{
2717 unsigned short old_flags = dev->flags;
2718
Patrick McHardy24023452007-07-14 18:51:31 -07002719 ASSERT_RTNL();
2720
Patrick McHardy4417da62007-06-27 01:28:10 -07002721 if ((dev->promiscuity += inc) == 0)
2722 dev->flags &= ~IFF_PROMISC;
2723 else
2724 dev->flags |= IFF_PROMISC;
2725 if (dev->flags != old_flags) {
2726 printk(KERN_INFO "device %s %s promiscuous mode\n",
2727 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
2728 "left");
2729 audit_log(current->audit_context, GFP_ATOMIC,
2730 AUDIT_ANOM_PROMISCUOUS,
2731 "dev=%s prom=%d old_prom=%d auid=%u",
2732 dev->name, (dev->flags & IFF_PROMISC),
2733 (old_flags & IFF_PROMISC),
2734 audit_get_loginuid(current->audit_context));
Patrick McHardy24023452007-07-14 18:51:31 -07002735
2736 if (dev->change_rx_flags)
2737 dev->change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07002738 }
2739}
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741/**
2742 * dev_set_promiscuity - update promiscuity count on a device
2743 * @dev: device
2744 * @inc: modifier
2745 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07002746 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 * remains above zero the interface remains promiscuous. Once it hits zero
2748 * the device reverts back to normal filtering operation. A negative inc
2749 * value is used to drop promiscuity on the device.
2750 */
2751void dev_set_promiscuity(struct net_device *dev, int inc)
2752{
2753 unsigned short old_flags = dev->flags;
2754
Patrick McHardy4417da62007-06-27 01:28:10 -07002755 __dev_set_promiscuity(dev, inc);
2756 if (dev->flags != old_flags)
2757 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
2760/**
2761 * dev_set_allmulti - update allmulti count on a device
2762 * @dev: device
2763 * @inc: modifier
2764 *
2765 * Add or remove reception of all multicast frames to a device. While the
2766 * count in the device remains above zero the interface remains listening
2767 * to all interfaces. Once it hits zero the device reverts back to normal
2768 * filtering operation. A negative @inc value is used to drop the counter
2769 * when releasing a resource needing all multicasts.
2770 */
2771
2772void dev_set_allmulti(struct net_device *dev, int inc)
2773{
2774 unsigned short old_flags = dev->flags;
2775
Patrick McHardy24023452007-07-14 18:51:31 -07002776 ASSERT_RTNL();
2777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 dev->flags |= IFF_ALLMULTI;
2779 if ((dev->allmulti += inc) == 0)
2780 dev->flags &= ~IFF_ALLMULTI;
Patrick McHardy24023452007-07-14 18:51:31 -07002781 if (dev->flags ^ old_flags) {
2782 if (dev->change_rx_flags)
2783 dev->change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07002784 dev_set_rx_mode(dev);
Patrick McHardy24023452007-07-14 18:51:31 -07002785 }
Patrick McHardy4417da62007-06-27 01:28:10 -07002786}
2787
2788/*
2789 * Upload unicast and multicast address lists to device and
2790 * configure RX filtering. When the device doesn't support unicast
2791 * filtering it is put in promiscous mode while unicast addresses
2792 * are present.
2793 */
2794void __dev_set_rx_mode(struct net_device *dev)
2795{
2796 /* dev_open will call this function so the list will stay sane. */
2797 if (!(dev->flags&IFF_UP))
2798 return;
2799
2800 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09002801 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07002802
2803 if (dev->set_rx_mode)
2804 dev->set_rx_mode(dev);
2805 else {
2806 /* Unicast addresses changes may only happen under the rtnl,
2807 * therefore calling __dev_set_promiscuity here is safe.
2808 */
2809 if (dev->uc_count > 0 && !dev->uc_promisc) {
2810 __dev_set_promiscuity(dev, 1);
2811 dev->uc_promisc = 1;
2812 } else if (dev->uc_count == 0 && dev->uc_promisc) {
2813 __dev_set_promiscuity(dev, -1);
2814 dev->uc_promisc = 0;
2815 }
2816
2817 if (dev->set_multicast_list)
2818 dev->set_multicast_list(dev);
2819 }
2820}
2821
2822void dev_set_rx_mode(struct net_device *dev)
2823{
2824 netif_tx_lock_bh(dev);
2825 __dev_set_rx_mode(dev);
2826 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002829int __dev_addr_delete(struct dev_addr_list **list, int *count,
2830 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07002831{
2832 struct dev_addr_list *da;
2833
2834 for (; (da = *list) != NULL; list = &da->next) {
2835 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
2836 alen == da->da_addrlen) {
2837 if (glbl) {
2838 int old_glbl = da->da_gusers;
2839 da->da_gusers = 0;
2840 if (old_glbl == 0)
2841 break;
2842 }
2843 if (--da->da_users)
2844 return 0;
2845
2846 *list = da->next;
2847 kfree(da);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002848 (*count)--;
Patrick McHardybf742482007-06-27 01:26:19 -07002849 return 0;
2850 }
2851 }
2852 return -ENOENT;
2853}
2854
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002855int __dev_addr_add(struct dev_addr_list **list, int *count,
2856 void *addr, int alen, int glbl)
Patrick McHardybf742482007-06-27 01:26:19 -07002857{
2858 struct dev_addr_list *da;
2859
2860 for (da = *list; da != NULL; da = da->next) {
2861 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
2862 da->da_addrlen == alen) {
2863 if (glbl) {
2864 int old_glbl = da->da_gusers;
2865 da->da_gusers = 1;
2866 if (old_glbl)
2867 return 0;
2868 }
2869 da->da_users++;
2870 return 0;
2871 }
2872 }
2873
2874 da = kmalloc(sizeof(*da), GFP_ATOMIC);
2875 if (da == NULL)
2876 return -ENOMEM;
2877 memcpy(da->da_addr, addr, alen);
2878 da->da_addrlen = alen;
2879 da->da_users = 1;
2880 da->da_gusers = glbl ? 1 : 0;
2881 da->next = *list;
2882 *list = da;
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002883 (*count)++;
Patrick McHardybf742482007-06-27 01:26:19 -07002884 return 0;
2885}
2886
Patrick McHardy4417da62007-06-27 01:28:10 -07002887/**
2888 * dev_unicast_delete - Release secondary unicast address.
2889 * @dev: device
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07002890 * @addr: address to delete
2891 * @alen: length of @addr
Patrick McHardy4417da62007-06-27 01:28:10 -07002892 *
2893 * Release reference to a secondary unicast address and remove it
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07002894 * from the device if the reference count drops to zero.
Patrick McHardy4417da62007-06-27 01:28:10 -07002895 *
2896 * The caller must hold the rtnl_mutex.
2897 */
2898int dev_unicast_delete(struct net_device *dev, void *addr, int alen)
2899{
2900 int err;
2901
2902 ASSERT_RTNL();
2903
2904 netif_tx_lock_bh(dev);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002905 err = __dev_addr_delete(&dev->uc_list, &dev->uc_count, addr, alen, 0);
2906 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07002907 __dev_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07002908 netif_tx_unlock_bh(dev);
2909 return err;
2910}
2911EXPORT_SYMBOL(dev_unicast_delete);
2912
2913/**
2914 * dev_unicast_add - add a secondary unicast address
2915 * @dev: device
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07002916 * @addr: address to delete
2917 * @alen: length of @addr
Patrick McHardy4417da62007-06-27 01:28:10 -07002918 *
2919 * Add a secondary unicast address to the device or increase
2920 * the reference count if it already exists.
2921 *
2922 * The caller must hold the rtnl_mutex.
2923 */
2924int dev_unicast_add(struct net_device *dev, void *addr, int alen)
2925{
2926 int err;
2927
2928 ASSERT_RTNL();
2929
2930 netif_tx_lock_bh(dev);
Patrick McHardy61cbc2f2007-06-30 13:35:52 -07002931 err = __dev_addr_add(&dev->uc_list, &dev->uc_count, addr, alen, 0);
2932 if (!err)
Patrick McHardy4417da62007-06-27 01:28:10 -07002933 __dev_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07002934 netif_tx_unlock_bh(dev);
2935 return err;
2936}
2937EXPORT_SYMBOL(dev_unicast_add);
2938
Denis Cheng12972622007-07-18 02:12:56 -07002939static void __dev_addr_discard(struct dev_addr_list **list)
2940{
2941 struct dev_addr_list *tmp;
2942
2943 while (*list != NULL) {
2944 tmp = *list;
2945 *list = tmp->next;
2946 if (tmp->da_users > tmp->da_gusers)
2947 printk("__dev_addr_discard: address leakage! "
2948 "da_users=%d\n", tmp->da_users);
2949 kfree(tmp);
2950 }
2951}
2952
Denis Cheng26cc2522007-07-18 02:12:03 -07002953static void dev_addr_discard(struct net_device *dev)
Patrick McHardy4417da62007-06-27 01:28:10 -07002954{
2955 netif_tx_lock_bh(dev);
Denis Cheng26cc2522007-07-18 02:12:03 -07002956
Patrick McHardy4417da62007-06-27 01:28:10 -07002957 __dev_addr_discard(&dev->uc_list);
2958 dev->uc_count = 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07002959
Denis Cheng456ad752007-07-18 02:10:54 -07002960 __dev_addr_discard(&dev->mc_list);
2961 dev->mc_count = 0;
Denis Cheng26cc2522007-07-18 02:12:03 -07002962
Denis Cheng456ad752007-07-18 02:10:54 -07002963 netif_tx_unlock_bh(dev);
2964}
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966unsigned dev_get_flags(const struct net_device *dev)
2967{
2968 unsigned flags;
2969
2970 flags = (dev->flags & ~(IFF_PROMISC |
2971 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08002972 IFF_RUNNING |
2973 IFF_LOWER_UP |
2974 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 (dev->gflags & (IFF_PROMISC |
2976 IFF_ALLMULTI));
2977
Stefan Rompfb00055a2006-03-20 17:09:11 -08002978 if (netif_running(dev)) {
2979 if (netif_oper_up(dev))
2980 flags |= IFF_RUNNING;
2981 if (netif_carrier_ok(dev))
2982 flags |= IFF_LOWER_UP;
2983 if (netif_dormant(dev))
2984 flags |= IFF_DORMANT;
2985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987 return flags;
2988}
2989
2990int dev_change_flags(struct net_device *dev, unsigned flags)
2991{
Thomas Graf7c355f52007-06-05 16:03:03 -07002992 int ret, changes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 int old_flags = dev->flags;
2994
Patrick McHardy24023452007-07-14 18:51:31 -07002995 ASSERT_RTNL();
2996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 /*
2998 * Set the flags on our device.
2999 */
3000
3001 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
3002 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
3003 IFF_AUTOMEDIA)) |
3004 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
3005 IFF_ALLMULTI));
3006
3007 /*
3008 * Load in the correct multicast list now the flags have changed.
3009 */
3010
Patrick McHardy24023452007-07-14 18:51:31 -07003011 if (dev->change_rx_flags && (dev->flags ^ flags) & IFF_MULTICAST)
3012 dev->change_rx_flags(dev, IFF_MULTICAST);
3013
Patrick McHardy4417da62007-06-27 01:28:10 -07003014 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016 /*
3017 * Have we downed the interface. We handle IFF_UP ourselves
3018 * according to user attempts to set it, rather than blindly
3019 * setting it.
3020 */
3021
3022 ret = 0;
3023 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
3024 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
3025
3026 if (!ret)
Patrick McHardy4417da62007-06-27 01:28:10 -07003027 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 }
3029
3030 if (dev->flags & IFF_UP &&
3031 ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
3032 IFF_VOLATILE)))
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003033 call_netdevice_notifiers(NETDEV_CHANGE, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 if ((flags ^ dev->gflags) & IFF_PROMISC) {
3036 int inc = (flags & IFF_PROMISC) ? +1 : -1;
3037 dev->gflags ^= IFF_PROMISC;
3038 dev_set_promiscuity(dev, inc);
3039 }
3040
3041 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
3042 is important. Some (broken) drivers set IFF_PROMISC, when
3043 IFF_ALLMULTI is requested not asking us and not reporting.
3044 */
3045 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
3046 int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
3047 dev->gflags ^= IFF_ALLMULTI;
3048 dev_set_allmulti(dev, inc);
3049 }
3050
Thomas Graf7c355f52007-06-05 16:03:03 -07003051 /* Exclude state transition flags, already notified */
3052 changes = (old_flags ^ dev->flags) & ~(IFF_UP | IFF_RUNNING);
3053 if (changes)
3054 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056 return ret;
3057}
3058
3059int dev_set_mtu(struct net_device *dev, int new_mtu)
3060{
3061 int err;
3062
3063 if (new_mtu == dev->mtu)
3064 return 0;
3065
3066 /* MTU must be positive. */
3067 if (new_mtu < 0)
3068 return -EINVAL;
3069
3070 if (!netif_device_present(dev))
3071 return -ENODEV;
3072
3073 err = 0;
3074 if (dev->change_mtu)
3075 err = dev->change_mtu(dev, new_mtu);
3076 else
3077 dev->mtu = new_mtu;
3078 if (!err && dev->flags & IFF_UP)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003079 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return err;
3081}
3082
3083int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
3084{
3085 int err;
3086
3087 if (!dev->set_mac_address)
3088 return -EOPNOTSUPP;
3089 if (sa->sa_family != dev->type)
3090 return -EINVAL;
3091 if (!netif_device_present(dev))
3092 return -ENODEV;
3093 err = dev->set_mac_address(dev, sa);
3094 if (!err)
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003095 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 return err;
3097}
3098
3099/*
3100 * Perform the SIOCxIFxxx calls.
3101 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07003102static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
3104 int err;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003105 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107 if (!dev)
3108 return -ENODEV;
3109
3110 switch (cmd) {
3111 case SIOCGIFFLAGS: /* Get interface flags */
3112 ifr->ifr_flags = dev_get_flags(dev);
3113 return 0;
3114
3115 case SIOCSIFFLAGS: /* Set interface flags */
3116 return dev_change_flags(dev, ifr->ifr_flags);
3117
3118 case SIOCGIFMETRIC: /* Get the metric on the interface
3119 (currently unused) */
3120 ifr->ifr_metric = 0;
3121 return 0;
3122
3123 case SIOCSIFMETRIC: /* Set the metric on the interface
3124 (currently unused) */
3125 return -EOPNOTSUPP;
3126
3127 case SIOCGIFMTU: /* Get the MTU of a device */
3128 ifr->ifr_mtu = dev->mtu;
3129 return 0;
3130
3131 case SIOCSIFMTU: /* Set the MTU of a device */
3132 return dev_set_mtu(dev, ifr->ifr_mtu);
3133
3134 case SIOCGIFHWADDR:
3135 if (!dev->addr_len)
3136 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
3137 else
3138 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
3139 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
3140 ifr->ifr_hwaddr.sa_family = dev->type;
3141 return 0;
3142
3143 case SIOCSIFHWADDR:
3144 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
3145
3146 case SIOCSIFHWBROADCAST:
3147 if (ifr->ifr_hwaddr.sa_family != dev->type)
3148 return -EINVAL;
3149 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
3150 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003151 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 return 0;
3153
3154 case SIOCGIFMAP:
3155 ifr->ifr_map.mem_start = dev->mem_start;
3156 ifr->ifr_map.mem_end = dev->mem_end;
3157 ifr->ifr_map.base_addr = dev->base_addr;
3158 ifr->ifr_map.irq = dev->irq;
3159 ifr->ifr_map.dma = dev->dma;
3160 ifr->ifr_map.port = dev->if_port;
3161 return 0;
3162
3163 case SIOCSIFMAP:
3164 if (dev->set_config) {
3165 if (!netif_device_present(dev))
3166 return -ENODEV;
3167 return dev->set_config(dev, &ifr->ifr_map);
3168 }
3169 return -EOPNOTSUPP;
3170
3171 case SIOCADDMULTI:
3172 if (!dev->set_multicast_list ||
3173 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
3174 return -EINVAL;
3175 if (!netif_device_present(dev))
3176 return -ENODEV;
3177 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
3178 dev->addr_len, 1);
3179
3180 case SIOCDELMULTI:
3181 if (!dev->set_multicast_list ||
3182 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
3183 return -EINVAL;
3184 if (!netif_device_present(dev))
3185 return -ENODEV;
3186 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
3187 dev->addr_len, 1);
3188
3189 case SIOCGIFINDEX:
3190 ifr->ifr_ifindex = dev->ifindex;
3191 return 0;
3192
3193 case SIOCGIFTXQLEN:
3194 ifr->ifr_qlen = dev->tx_queue_len;
3195 return 0;
3196
3197 case SIOCSIFTXQLEN:
3198 if (ifr->ifr_qlen < 0)
3199 return -EINVAL;
3200 dev->tx_queue_len = ifr->ifr_qlen;
3201 return 0;
3202
3203 case SIOCSIFNAME:
3204 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
3205 return dev_change_name(dev, ifr->ifr_newname);
3206
3207 /*
3208 * Unknown or private ioctl
3209 */
3210
3211 default:
3212 if ((cmd >= SIOCDEVPRIVATE &&
3213 cmd <= SIOCDEVPRIVATE + 15) ||
3214 cmd == SIOCBONDENSLAVE ||
3215 cmd == SIOCBONDRELEASE ||
3216 cmd == SIOCBONDSETHWADDR ||
3217 cmd == SIOCBONDSLAVEINFOQUERY ||
3218 cmd == SIOCBONDINFOQUERY ||
3219 cmd == SIOCBONDCHANGEACTIVE ||
3220 cmd == SIOCGMIIPHY ||
3221 cmd == SIOCGMIIREG ||
3222 cmd == SIOCSMIIREG ||
3223 cmd == SIOCBRADDIF ||
3224 cmd == SIOCBRDELIF ||
3225 cmd == SIOCWANDEV) {
3226 err = -EOPNOTSUPP;
3227 if (dev->do_ioctl) {
3228 if (netif_device_present(dev))
3229 err = dev->do_ioctl(dev, ifr,
3230 cmd);
3231 else
3232 err = -ENODEV;
3233 }
3234 } else
3235 err = -EINVAL;
3236
3237 }
3238 return err;
3239}
3240
3241/*
3242 * This function handles all "interface"-type I/O control requests. The actual
3243 * 'doing' part of this is dev_ifsioc above.
3244 */
3245
3246/**
3247 * dev_ioctl - network device ioctl
3248 * @cmd: command to issue
3249 * @arg: pointer to a struct ifreq in user space
3250 *
3251 * Issue ioctl functions to devices. This is normally called by the
3252 * user space syscall interfaces but can sometimes be useful for
3253 * other purposes. The return value is the return from the syscall if
3254 * positive or a negative errno code on error.
3255 */
3256
Eric W. Biederman881d9662007-09-17 11:56:21 -07003257int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
3259 struct ifreq ifr;
3260 int ret;
3261 char *colon;
3262
3263 /* One special case: SIOCGIFCONF takes ifconf argument
3264 and requires shared lock, because it sleeps writing
3265 to user space.
3266 */
3267
3268 if (cmd == SIOCGIFCONF) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003269 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003270 ret = dev_ifconf(net, (char __user *) arg);
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003271 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 return ret;
3273 }
3274 if (cmd == SIOCGIFNAME)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003275 return dev_ifname(net, (struct ifreq __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
3277 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
3278 return -EFAULT;
3279
3280 ifr.ifr_name[IFNAMSIZ-1] = 0;
3281
3282 colon = strchr(ifr.ifr_name, ':');
3283 if (colon)
3284 *colon = 0;
3285
3286 /*
3287 * See which interface the caller is talking about.
3288 */
3289
3290 switch (cmd) {
3291 /*
3292 * These ioctl calls:
3293 * - can be done by all.
3294 * - atomic and do not require locking.
3295 * - return a value
3296 */
3297 case SIOCGIFFLAGS:
3298 case SIOCGIFMETRIC:
3299 case SIOCGIFMTU:
3300 case SIOCGIFHWADDR:
3301 case SIOCGIFSLAVE:
3302 case SIOCGIFMAP:
3303 case SIOCGIFINDEX:
3304 case SIOCGIFTXQLEN:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003305 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -07003307 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 read_unlock(&dev_base_lock);
3309 if (!ret) {
3310 if (colon)
3311 *colon = ':';
3312 if (copy_to_user(arg, &ifr,
3313 sizeof(struct ifreq)))
3314 ret = -EFAULT;
3315 }
3316 return ret;
3317
3318 case SIOCETHTOOL:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003319 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003321 ret = dev_ethtool(net, &ifr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 rtnl_unlock();
3323 if (!ret) {
3324 if (colon)
3325 *colon = ':';
3326 if (copy_to_user(arg, &ifr,
3327 sizeof(struct ifreq)))
3328 ret = -EFAULT;
3329 }
3330 return ret;
3331
3332 /*
3333 * These ioctl calls:
3334 * - require superuser power.
3335 * - require strict serialization.
3336 * - return a value
3337 */
3338 case SIOCGMIIPHY:
3339 case SIOCGMIIREG:
3340 case SIOCSIFNAME:
3341 if (!capable(CAP_NET_ADMIN))
3342 return -EPERM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003343 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003345 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 rtnl_unlock();
3347 if (!ret) {
3348 if (colon)
3349 *colon = ':';
3350 if (copy_to_user(arg, &ifr,
3351 sizeof(struct ifreq)))
3352 ret = -EFAULT;
3353 }
3354 return ret;
3355
3356 /*
3357 * These ioctl calls:
3358 * - require superuser power.
3359 * - require strict serialization.
3360 * - do not return a value
3361 */
3362 case SIOCSIFFLAGS:
3363 case SIOCSIFMETRIC:
3364 case SIOCSIFMTU:
3365 case SIOCSIFMAP:
3366 case SIOCSIFHWADDR:
3367 case SIOCSIFSLAVE:
3368 case SIOCADDMULTI:
3369 case SIOCDELMULTI:
3370 case SIOCSIFHWBROADCAST:
3371 case SIOCSIFTXQLEN:
3372 case SIOCSMIIREG:
3373 case SIOCBONDENSLAVE:
3374 case SIOCBONDRELEASE:
3375 case SIOCBONDSETHWADDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 case SIOCBONDCHANGEACTIVE:
3377 case SIOCBRADDIF:
3378 case SIOCBRDELIF:
3379 if (!capable(CAP_NET_ADMIN))
3380 return -EPERM;
Thomas Grafcabcac02006-01-24 12:46:33 -08003381 /* fall through */
3382 case SIOCBONDSLAVEINFOQUERY:
3383 case SIOCBONDINFOQUERY:
Eric W. Biederman881d9662007-09-17 11:56:21 -07003384 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003386 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 rtnl_unlock();
3388 return ret;
3389
3390 case SIOCGIFMEM:
3391 /* Get the per device memory space. We can add this but
3392 * currently do not support it */
3393 case SIOCSIFMEM:
3394 /* Set the per device memory buffer space.
3395 * Not applicable in our case */
3396 case SIOCSIFLINK:
3397 return -EINVAL;
3398
3399 /*
3400 * Unknown or private ioctl.
3401 */
3402 default:
3403 if (cmd == SIOCWANDEV ||
3404 (cmd >= SIOCDEVPRIVATE &&
3405 cmd <= SIOCDEVPRIVATE + 15)) {
Eric W. Biederman881d9662007-09-17 11:56:21 -07003406 dev_load(net, ifr.ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07003408 ret = dev_ifsioc(net, &ifr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 rtnl_unlock();
3410 if (!ret && copy_to_user(arg, &ifr,
3411 sizeof(struct ifreq)))
3412 ret = -EFAULT;
3413 return ret;
3414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 /* Take care of Wireless Extensions */
Johannes Berg295f4a12007-04-26 20:43:56 -07003416 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST)
Eric W. Biederman881d9662007-09-17 11:56:21 -07003417 return wext_handle_ioctl(net, &ifr, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 return -EINVAL;
3419 }
3420}
3421
3422
3423/**
3424 * dev_new_index - allocate an ifindex
3425 *
3426 * Returns a suitable unique value for a new device interface
3427 * number. The caller must hold the rtnl semaphore or the
3428 * dev_base_lock to be sure it remains unique.
3429 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07003430static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431{
3432 static int ifindex;
3433 for (;;) {
3434 if (++ifindex <= 0)
3435 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003436 if (!__dev_get_by_index(net, ifindex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 return ifindex;
3438 }
3439}
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441/* Delayed registration/unregisteration */
3442static DEFINE_SPINLOCK(net_todo_list_lock);
3443static struct list_head net_todo_list = LIST_HEAD_INIT(net_todo_list);
3444
Stephen Hemminger6f05f622007-03-08 20:46:03 -08003445static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
3447 spin_lock(&net_todo_list_lock);
3448 list_add_tail(&dev->todo_list, &net_todo_list);
3449 spin_unlock(&net_todo_list_lock);
3450}
3451
3452/**
3453 * register_netdevice - register a network device
3454 * @dev: device to register
3455 *
3456 * Take a completed network device structure and add it to the kernel
3457 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3458 * chain. 0 is returned on success. A negative errno code is returned
3459 * on a failure to set up the device, or if the name is a duplicate.
3460 *
3461 * Callers must hold the rtnl semaphore. You may want
3462 * register_netdev() instead of this.
3463 *
3464 * BUGS:
3465 * The locking appears insufficient to guarantee two parallel registers
3466 * will not get the same name.
3467 */
3468
3469int register_netdevice(struct net_device *dev)
3470{
3471 struct hlist_head *head;
3472 struct hlist_node *p;
3473 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07003474 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
3476 BUG_ON(dev_boot_phase);
3477 ASSERT_RTNL();
3478
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003479 might_sleep();
3480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 /* When net_device's are persistent, this will be fatal. */
3482 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Eric W. Biederman881d9662007-09-17 11:56:21 -07003483 BUG_ON(!dev->nd_net);
3484 net = dev->nd_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
3486 spin_lock_init(&dev->queue_lock);
Herbert Xu932ff272006-06-09 12:20:56 -07003487 spin_lock_init(&dev->_xmit_lock);
Jarek Poplawski723e98b2007-05-15 22:46:18 -07003488 netdev_set_lockdep_class(&dev->_xmit_lock, dev->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 dev->xmit_lock_owner = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 spin_lock_init(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 dev->iflink = -1;
3493
3494 /* Init, if this function is available */
3495 if (dev->init) {
3496 ret = dev->init(dev);
3497 if (ret) {
3498 if (ret > 0)
3499 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08003500 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 }
3502 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003503
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 if (!dev_valid_name(dev->name)) {
3505 ret = -EINVAL;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003506 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 }
3508
Eric W. Biederman881d9662007-09-17 11:56:21 -07003509 dev->ifindex = dev_new_index(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 if (dev->iflink == -1)
3511 dev->iflink = dev->ifindex;
3512
3513 /* Check for existence of name */
Eric W. Biederman881d9662007-09-17 11:56:21 -07003514 head = dev_name_hash(net, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 hlist_for_each(p, head) {
3516 struct net_device *d
3517 = hlist_entry(p, struct net_device, name_hlist);
3518 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
3519 ret = -EEXIST;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003520 goto err_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Stephen Hemmingerd212f872007-06-27 00:47:37 -07003524 /* Fix illegal checksum combinations */
3525 if ((dev->features & NETIF_F_HW_CSUM) &&
3526 (dev->features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
3527 printk(KERN_NOTICE "%s: mixed HW and IP checksum settings.\n",
3528 dev->name);
3529 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
3530 }
3531
3532 if ((dev->features & NETIF_F_NO_CSUM) &&
3533 (dev->features & (NETIF_F_HW_CSUM|NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
3534 printk(KERN_NOTICE "%s: mixed no checksumming and other settings.\n",
3535 dev->name);
3536 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM|NETIF_F_HW_CSUM);
3537 }
3538
3539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 /* Fix illegal SG+CSUM combinations. */
3541 if ((dev->features & NETIF_F_SG) &&
Herbert Xu8648b302006-06-17 22:06:05 -07003542 !(dev->features & NETIF_F_ALL_CSUM)) {
Stephen Hemminger5a8da022006-07-07 16:54:05 -07003543 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 dev->name);
3545 dev->features &= ~NETIF_F_SG;
3546 }
3547
3548 /* TSO requires that SG is present as well. */
3549 if ((dev->features & NETIF_F_TSO) &&
3550 !(dev->features & NETIF_F_SG)) {
Stephen Hemminger5a8da022006-07-07 16:54:05 -07003551 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no SG feature.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 dev->name);
3553 dev->features &= ~NETIF_F_TSO;
3554 }
Ananda Rajue89e9cf2005-10-18 15:46:41 -07003555 if (dev->features & NETIF_F_UFO) {
3556 if (!(dev->features & NETIF_F_HW_CSUM)) {
3557 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
3558 "NETIF_F_HW_CSUM feature.\n",
3559 dev->name);
3560 dev->features &= ~NETIF_F_UFO;
3561 }
3562 if (!(dev->features & NETIF_F_SG)) {
3563 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
3564 "NETIF_F_SG feature.\n",
3565 dev->name);
3566 dev->features &= ~NETIF_F_UFO;
3567 }
3568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
3570 /*
3571 * nil rebuild_header routine,
3572 * that should be never called and used as just bug trap.
3573 */
3574
3575 if (!dev->rebuild_header)
3576 dev->rebuild_header = default_rebuild_header;
3577
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003578 ret = netdev_register_sysfs(dev);
3579 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003580 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003581 dev->reg_state = NETREG_REGISTERED;
3582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 /*
3584 * Default initial state at registry is that the
3585 * device is present.
3586 */
3587
3588 set_bit(__LINK_STATE_PRESENT, &dev->state);
3589
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02003592 list_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
3594 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003595 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07003596 ret = notifier_to_errno(ret);
3597 if (ret)
3598 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600out:
3601 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07003602
3603err_uninit:
3604 if (dev->uninit)
3605 dev->uninit(dev);
3606 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607}
3608
3609/**
3610 * register_netdev - register a network device
3611 * @dev: device to register
3612 *
3613 * Take a completed network device structure and add it to the kernel
3614 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3615 * chain. 0 is returned on success. A negative errno code is returned
3616 * on a failure to set up the device, or if the name is a duplicate.
3617 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07003618 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 * and expands the device name if you passed a format string to
3620 * alloc_netdev.
3621 */
3622int register_netdev(struct net_device *dev)
3623{
3624 int err;
3625
3626 rtnl_lock();
3627
3628 /*
3629 * If the name is a format string the caller wants us to do a
3630 * name allocation.
3631 */
3632 if (strchr(dev->name, '%')) {
3633 err = dev_alloc_name(dev, dev->name);
3634 if (err < 0)
3635 goto out;
3636 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 err = register_netdevice(dev);
3639out:
3640 rtnl_unlock();
3641 return err;
3642}
3643EXPORT_SYMBOL(register_netdev);
3644
3645/*
3646 * netdev_wait_allrefs - wait until all references are gone.
3647 *
3648 * This is called when unregistering network devices.
3649 *
3650 * Any protocol or device that holds a reference should register
3651 * for netdevice notification, and cleanup and put back the
3652 * reference if they receive an UNREGISTER event.
3653 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003654 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 */
3656static void netdev_wait_allrefs(struct net_device *dev)
3657{
3658 unsigned long rebroadcast_time, warning_time;
3659
3660 rebroadcast_time = warning_time = jiffies;
3661 while (atomic_read(&dev->refcnt) != 0) {
3662 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003663 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
3665 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003666 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
3668 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
3669 &dev->state)) {
3670 /* We must not have linkwatch events
3671 * pending on unregister. If this
3672 * happens, we simply run the queue
3673 * unscheduled, resulting in a noop
3674 * for this device.
3675 */
3676 linkwatch_run_queue();
3677 }
3678
Stephen Hemminger6756ae42006-03-20 22:23:58 -08003679 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
3681 rebroadcast_time = jiffies;
3682 }
3683
3684 msleep(250);
3685
3686 if (time_after(jiffies, warning_time + 10 * HZ)) {
3687 printk(KERN_EMERG "unregister_netdevice: "
3688 "waiting for %s to become free. Usage "
3689 "count = %d\n",
3690 dev->name, atomic_read(&dev->refcnt));
3691 warning_time = jiffies;
3692 }
3693 }
3694}
3695
3696/* The sequence is:
3697 *
3698 * rtnl_lock();
3699 * ...
3700 * register_netdevice(x1);
3701 * register_netdevice(x2);
3702 * ...
3703 * unregister_netdevice(y1);
3704 * unregister_netdevice(y2);
3705 * ...
3706 * rtnl_unlock();
3707 * free_netdev(y1);
3708 * free_netdev(y2);
3709 *
3710 * We are invoked by rtnl_unlock() after it drops the semaphore.
3711 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003712 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 * without deadlocking with linkwatch via keventd.
3714 * 2) Since we run with the RTNL semaphore not held, we can sleep
3715 * safely in order to wait for the netdev refcnt to drop to zero.
3716 */
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08003717static DEFINE_MUTEX(net_todo_run_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718void netdev_run_todo(void)
3719{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003720 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
3722 /* Need to guard against multiple cpu's getting out of order. */
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08003723 mutex_lock(&net_todo_run_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
3725 /* Not safe to do outside the semaphore. We must not return
3726 * until all unregister events invoked by the local processor
3727 * have been completed (either by this todo run, or one on
3728 * another cpu).
3729 */
3730 if (list_empty(&net_todo_list))
3731 goto out;
3732
3733 /* Snapshot list, allow later requests */
3734 spin_lock(&net_todo_list_lock);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003735 list_replace_init(&net_todo_list, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 spin_unlock(&net_todo_list_lock);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003737
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 while (!list_empty(&list)) {
3739 struct net_device *dev
3740 = list_entry(list.next, struct net_device, todo_list);
3741 list_del(&dev->todo_list);
3742
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003743 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 printk(KERN_ERR "network todo '%s' but state %d\n",
3745 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003746 dump_stack();
3747 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003749
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003750 dev->reg_state = NETREG_UNREGISTERED;
3751
3752 netdev_wait_allrefs(dev);
3753
3754 /* paranoia */
3755 BUG_ON(atomic_read(&dev->refcnt));
3756 BUG_TRAP(!dev->ip_ptr);
3757 BUG_TRAP(!dev->ip6_ptr);
3758 BUG_TRAP(!dev->dn_ptr);
3759
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07003760 if (dev->destructor)
3761 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07003762
3763 /* Free network device */
3764 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 }
3766
3767out:
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08003768 mutex_unlock(&net_todo_run_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769}
3770
Rusty Russell5a1b5892007-04-28 21:04:03 -07003771static struct net_device_stats *internal_stats(struct net_device *dev)
Rusty Russellc45d2862007-03-28 14:29:08 -07003772{
Rusty Russell5a1b5892007-04-28 21:04:03 -07003773 return &dev->stats;
Rusty Russellc45d2862007-03-28 14:29:08 -07003774}
3775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776/**
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003777 * alloc_netdev_mq - allocate network device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 * @sizeof_priv: size of private data to allocate space for
3779 * @name: device name format string
3780 * @setup: callback to initialize device
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003781 * @queue_count: the number of subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 *
3783 * Allocates a struct net_device with private data area for driver use
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003784 * and performs basic initialization. Also allocates subquue structs
3785 * for each queue on the device at the end of the netdevice.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 */
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003787struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
3788 void (*setup)(struct net_device *), unsigned int queue_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789{
3790 void *p;
3791 struct net_device *dev;
3792 int alloc_size;
3793
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07003794 BUG_ON(strlen(name) >= sizeof(dev->name));
3795
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 /* ensure 32-byte alignment of both the device and private area */
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003797 alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST +
Patrick McHardy31ce72a2007-07-20 19:45:45 -07003798 (sizeof(struct net_device_subqueue) * (queue_count - 1))) &
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003799 ~NETDEV_ALIGN_CONST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 alloc_size += sizeof_priv + NETDEV_ALIGN_CONST;
3801
Paolo 'Blaisorblade' Giarrusso31380de2006-04-06 22:38:28 -07003802 p = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 if (!p) {
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07003804 printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 return NULL;
3806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
3808 dev = (struct net_device *)
3809 (((long)p + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
3810 dev->padded = (char *)dev - (char *)p;
Eric W. Biederman6d34b1c2007-09-12 12:57:33 +02003811 dev->nd_net = &init_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003813 if (sizeof_priv) {
3814 dev->priv = ((char *)dev +
3815 ((sizeof(struct net_device) +
3816 (sizeof(struct net_device_subqueue) *
Patrick McHardy31ce72a2007-07-20 19:45:45 -07003817 (queue_count - 1)) + NETDEV_ALIGN_CONST)
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003818 & ~NETDEV_ALIGN_CONST));
3819 }
3820
3821 dev->egress_subqueue_count = queue_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Rusty Russell5a1b5892007-04-28 21:04:03 -07003823 dev->get_stats = internal_stats;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003824 netpoll_netdev_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 setup(dev);
3826 strcpy(dev->name, name);
3827 return dev;
3828}
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003829EXPORT_SYMBOL(alloc_netdev_mq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
3831/**
3832 * free_netdev - free network device
3833 * @dev: device
3834 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003835 * This function does the last stage of destroying an allocated device
3836 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 * If this is the last reference then it will be freed.
3838 */
3839void free_netdev(struct net_device *dev)
3840{
3841#ifdef CONFIG_SYSFS
Stephen Hemminger3041a062006-05-26 13:25:24 -07003842 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 if (dev->reg_state == NETREG_UNINITIALIZED) {
3844 kfree((char *)dev - dev->padded);
3845 return;
3846 }
3847
3848 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
3849 dev->reg_state = NETREG_RELEASED;
3850
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07003851 /* will free via device release */
3852 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853#else
3854 kfree((char *)dev - dev->padded);
3855#endif
3856}
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003857
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858/* Synchronize with packet receive processing. */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003859void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860{
3861 might_sleep();
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003862 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863}
3864
3865/**
3866 * unregister_netdevice - remove device from the kernel
3867 * @dev: device
3868 *
3869 * This function shuts down a device interface and removes it
3870 * from the kernel tables. On success 0 is returned, on a failure
3871 * a negative errno code is returned.
3872 *
3873 * Callers must hold the rtnl semaphore. You may want
3874 * unregister_netdev() instead of this.
3875 */
3876
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08003877void unregister_netdevice(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 BUG_ON(dev_boot_phase);
3880 ASSERT_RTNL();
3881
3882 /* Some devices call without registering for initialization unwind. */
3883 if (dev->reg_state == NETREG_UNINITIALIZED) {
3884 printk(KERN_DEBUG "unregister_netdevice: device %s/%p never "
3885 "was registered\n", dev->name, dev);
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08003886
3887 WARN_ON(1);
3888 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 }
3890
3891 BUG_ON(dev->reg_state != NETREG_REGISTERED);
3892
3893 /* If device is running, close it first. */
3894 if (dev->flags & IFF_UP)
3895 dev_close(dev);
3896
3897 /* And unlink it from device chain. */
Eric W. Biedermance286d32007-09-12 13:53:49 +02003898 unlist_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
3900 dev->reg_state = NETREG_UNREGISTERING;
3901
3902 synchronize_net();
3903
3904 /* Shutdown queueing discipline. */
3905 dev_shutdown(dev);
3906
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003907
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 /* Notify protocols, that we are about to destroy
3909 this device. They should clean all the things.
3910 */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07003911 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003912
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 /*
Patrick McHardy4417da62007-06-27 01:28:10 -07003914 * Flush the unicast and multicast chains
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 */
Denis Cheng26cc2522007-07-18 02:12:03 -07003916 dev_addr_discard(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
3918 if (dev->uninit)
3919 dev->uninit(dev);
3920
3921 /* Notifier chain MUST detach us from master device. */
3922 BUG_TRAP(!dev->master);
3923
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07003924 /* Remove entries from sysfs */
3925 netdev_unregister_sysfs(dev);
3926
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 /* Finish processing unregister after unlock */
3928 net_set_todo(dev);
3929
3930 synchronize_net();
3931
3932 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933}
3934
3935/**
3936 * unregister_netdev - remove device from the kernel
3937 * @dev: device
3938 *
3939 * This function shuts down a device interface and removes it
3940 * from the kernel tables. On success 0 is returned, on a failure
3941 * a negative errno code is returned.
3942 *
3943 * This is just a wrapper for unregister_netdevice that takes
3944 * the rtnl semaphore. In general you want to use this and not
3945 * unregister_netdevice.
3946 */
3947void unregister_netdev(struct net_device *dev)
3948{
3949 rtnl_lock();
3950 unregister_netdevice(dev);
3951 rtnl_unlock();
3952}
3953
3954EXPORT_SYMBOL(unregister_netdev);
3955
Eric W. Biedermance286d32007-09-12 13:53:49 +02003956/**
3957 * dev_change_net_namespace - move device to different nethost namespace
3958 * @dev: device
3959 * @net: network namespace
3960 * @pat: If not NULL name pattern to try if the current device name
3961 * is already taken in the destination network namespace.
3962 *
3963 * This function shuts down a device interface and moves it
3964 * to a new network namespace. On success 0 is returned, on
3965 * a failure a netagive errno code is returned.
3966 *
3967 * Callers must hold the rtnl semaphore.
3968 */
3969
3970int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
3971{
3972 char buf[IFNAMSIZ];
3973 const char *destname;
3974 int err;
3975
3976 ASSERT_RTNL();
3977
3978 /* Don't allow namespace local devices to be moved. */
3979 err = -EINVAL;
3980 if (dev->features & NETIF_F_NETNS_LOCAL)
3981 goto out;
3982
3983 /* Ensure the device has been registrered */
3984 err = -EINVAL;
3985 if (dev->reg_state != NETREG_REGISTERED)
3986 goto out;
3987
3988 /* Get out if there is nothing todo */
3989 err = 0;
3990 if (dev->nd_net == net)
3991 goto out;
3992
3993 /* Pick the destination device name, and ensure
3994 * we can use it in the destination network namespace.
3995 */
3996 err = -EEXIST;
3997 destname = dev->name;
3998 if (__dev_get_by_name(net, destname)) {
3999 /* We get here if we can't use the current device name */
4000 if (!pat)
4001 goto out;
4002 if (!dev_valid_name(pat))
4003 goto out;
4004 if (strchr(pat, '%')) {
4005 if (__dev_alloc_name(net, pat, buf) < 0)
4006 goto out;
4007 destname = buf;
4008 } else
4009 destname = pat;
4010 if (__dev_get_by_name(net, destname))
4011 goto out;
4012 }
4013
4014 /*
4015 * And now a mini version of register_netdevice unregister_netdevice.
4016 */
4017
4018 /* If device is running close it first. */
4019 if (dev->flags & IFF_UP)
4020 dev_close(dev);
4021
4022 /* And unlink it from device chain */
4023 err = -ENODEV;
4024 unlist_netdevice(dev);
4025
4026 synchronize_net();
4027
4028 /* Shutdown queueing discipline. */
4029 dev_shutdown(dev);
4030
4031 /* Notify protocols, that we are about to destroy
4032 this device. They should clean all the things.
4033 */
4034 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
4035
4036 /*
4037 * Flush the unicast and multicast chains
4038 */
4039 dev_addr_discard(dev);
4040
4041 /* Actually switch the network namespace */
4042 dev->nd_net = net;
4043
4044 /* Assign the new device name */
4045 if (destname != dev->name)
4046 strcpy(dev->name, destname);
4047
4048 /* If there is an ifindex conflict assign a new one */
4049 if (__dev_get_by_index(net, dev->ifindex)) {
4050 int iflink = (dev->iflink == dev->ifindex);
4051 dev->ifindex = dev_new_index(net);
4052 if (iflink)
4053 dev->iflink = dev->ifindex;
4054 }
4055
4056 /* Fixup sysfs */
4057 err = device_rename(&dev->dev, dev->name);
4058 BUG_ON(err);
4059
4060 /* Add the device back in the hashes */
4061 list_netdevice(dev);
4062
4063 /* Notify protocols, that a new device appeared. */
4064 call_netdevice_notifiers(NETDEV_REGISTER, dev);
4065
4066 synchronize_net();
4067 err = 0;
4068out:
4069 return err;
4070}
4071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072static int dev_cpu_callback(struct notifier_block *nfb,
4073 unsigned long action,
4074 void *ocpu)
4075{
4076 struct sk_buff **list_skb;
4077 struct net_device **list_net;
4078 struct sk_buff *skb;
4079 unsigned int cpu, oldcpu = (unsigned long)ocpu;
4080 struct softnet_data *sd, *oldsd;
4081
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07004082 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 return NOTIFY_OK;
4084
4085 local_irq_disable();
4086 cpu = smp_processor_id();
4087 sd = &per_cpu(softnet_data, cpu);
4088 oldsd = &per_cpu(softnet_data, oldcpu);
4089
4090 /* Find end of our completion_queue. */
4091 list_skb = &sd->completion_queue;
4092 while (*list_skb)
4093 list_skb = &(*list_skb)->next;
4094 /* Append completion queue from offline CPU. */
4095 *list_skb = oldsd->completion_queue;
4096 oldsd->completion_queue = NULL;
4097
4098 /* Find end of our output_queue. */
4099 list_net = &sd->output_queue;
4100 while (*list_net)
4101 list_net = &(*list_net)->next_sched;
4102 /* Append output queue from offline CPU. */
4103 *list_net = oldsd->output_queue;
4104 oldsd->output_queue = NULL;
4105
4106 raise_softirq_irqoff(NET_TX_SOFTIRQ);
4107 local_irq_enable();
4108
4109 /* Process offline CPU's input_pkt_queue */
4110 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
4111 netif_rx(skb);
4112
4113 return NOTIFY_OK;
4114}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Chris Leechdb217332006-06-17 21:24:58 -07004116#ifdef CONFIG_NET_DMA
4117/**
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07004118 * net_dma_rebalance - try to maintain one DMA channel per CPU
4119 * @net_dma: DMA client and associated data (lock, channels, channel_mask)
4120 *
4121 * This is called when the number of channels allocated to the net_dma client
4122 * changes. The net_dma client tries to have one DMA channel per CPU.
Chris Leechdb217332006-06-17 21:24:58 -07004123 */
Dan Williamsd379b012007-07-09 11:56:42 -07004124
4125static void net_dma_rebalance(struct net_dma *net_dma)
Chris Leechdb217332006-06-17 21:24:58 -07004126{
Dan Williamsd379b012007-07-09 11:56:42 -07004127 unsigned int cpu, i, n, chan_idx;
Chris Leechdb217332006-06-17 21:24:58 -07004128 struct dma_chan *chan;
4129
Dan Williamsd379b012007-07-09 11:56:42 -07004130 if (cpus_empty(net_dma->channel_mask)) {
Chris Leechdb217332006-06-17 21:24:58 -07004131 for_each_online_cpu(cpu)
Alexey Dobriyan29bbd722006-08-02 15:02:31 -07004132 rcu_assign_pointer(per_cpu(softnet_data, cpu).net_dma, NULL);
Chris Leechdb217332006-06-17 21:24:58 -07004133 return;
4134 }
4135
4136 i = 0;
4137 cpu = first_cpu(cpu_online_map);
4138
Dan Williamsd379b012007-07-09 11:56:42 -07004139 for_each_cpu_mask(chan_idx, net_dma->channel_mask) {
4140 chan = net_dma->channels[chan_idx];
4141
4142 n = ((num_online_cpus() / cpus_weight(net_dma->channel_mask))
4143 + (i < (num_online_cpus() %
4144 cpus_weight(net_dma->channel_mask)) ? 1 : 0));
Chris Leechdb217332006-06-17 21:24:58 -07004145
4146 while(n) {
Alexey Dobriyan29bbd722006-08-02 15:02:31 -07004147 per_cpu(softnet_data, cpu).net_dma = chan;
Chris Leechdb217332006-06-17 21:24:58 -07004148 cpu = next_cpu(cpu, cpu_online_map);
4149 n--;
4150 }
4151 i++;
4152 }
Chris Leechdb217332006-06-17 21:24:58 -07004153}
4154
4155/**
4156 * netdev_dma_event - event callback for the net_dma_client
4157 * @client: should always be net_dma_client
Randy Dunlapf4b8ea72006-06-22 16:00:11 -07004158 * @chan: DMA channel for the event
Randy Dunlap0ed72ec2007-07-26 00:03:29 -07004159 * @state: DMA state to be handled
Chris Leechdb217332006-06-17 21:24:58 -07004160 */
Dan Williamsd379b012007-07-09 11:56:42 -07004161static enum dma_state_client
4162netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
4163 enum dma_state state)
Chris Leechdb217332006-06-17 21:24:58 -07004164{
Dan Williamsd379b012007-07-09 11:56:42 -07004165 int i, found = 0, pos = -1;
4166 struct net_dma *net_dma =
4167 container_of(client, struct net_dma, client);
4168 enum dma_state_client ack = DMA_DUP; /* default: take no action */
4169
4170 spin_lock(&net_dma->lock);
4171 switch (state) {
4172 case DMA_RESOURCE_AVAILABLE:
4173 for (i = 0; i < NR_CPUS; i++)
4174 if (net_dma->channels[i] == chan) {
4175 found = 1;
4176 break;
4177 } else if (net_dma->channels[i] == NULL && pos < 0)
4178 pos = i;
4179
4180 if (!found && pos >= 0) {
4181 ack = DMA_ACK;
4182 net_dma->channels[pos] = chan;
4183 cpu_set(pos, net_dma->channel_mask);
4184 net_dma_rebalance(net_dma);
4185 }
Chris Leechdb217332006-06-17 21:24:58 -07004186 break;
4187 case DMA_RESOURCE_REMOVED:
Dan Williamsd379b012007-07-09 11:56:42 -07004188 for (i = 0; i < NR_CPUS; i++)
4189 if (net_dma->channels[i] == chan) {
4190 found = 1;
4191 pos = i;
4192 break;
4193 }
4194
4195 if (found) {
4196 ack = DMA_ACK;
4197 cpu_clear(pos, net_dma->channel_mask);
4198 net_dma->channels[i] = NULL;
4199 net_dma_rebalance(net_dma);
4200 }
Chris Leechdb217332006-06-17 21:24:58 -07004201 break;
4202 default:
4203 break;
4204 }
Dan Williamsd379b012007-07-09 11:56:42 -07004205 spin_unlock(&net_dma->lock);
4206
4207 return ack;
Chris Leechdb217332006-06-17 21:24:58 -07004208}
4209
4210/**
4211 * netdev_dma_regiser - register the networking subsystem as a DMA client
4212 */
4213static int __init netdev_dma_register(void)
4214{
Dan Williamsd379b012007-07-09 11:56:42 -07004215 spin_lock_init(&net_dma.lock);
4216 dma_cap_set(DMA_MEMCPY, net_dma.client.cap_mask);
4217 dma_async_client_register(&net_dma.client);
4218 dma_async_client_chan_request(&net_dma.client);
Chris Leechdb217332006-06-17 21:24:58 -07004219 return 0;
4220}
4221
4222#else
4223static int __init netdev_dma_register(void) { return -ENODEV; }
4224#endif /* CONFIG_NET_DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
Herbert Xu7f353bf2007-08-10 15:47:58 -07004226/**
4227 * netdev_compute_feature - compute conjunction of two feature sets
4228 * @all: first feature set
4229 * @one: second feature set
4230 *
4231 * Computes a new feature set after adding a device with feature set
4232 * @one to the master device with current feature set @all. Returns
4233 * the new feature set.
4234 */
4235int netdev_compute_features(unsigned long all, unsigned long one)
4236{
4237 /* if device needs checksumming, downgrade to hw checksumming */
4238 if (all & NETIF_F_NO_CSUM && !(one & NETIF_F_NO_CSUM))
4239 all ^= NETIF_F_NO_CSUM | NETIF_F_HW_CSUM;
4240
4241 /* if device can't do all checksum, downgrade to ipv4/ipv6 */
4242 if (all & NETIF_F_HW_CSUM && !(one & NETIF_F_HW_CSUM))
4243 all ^= NETIF_F_HW_CSUM
4244 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
4245
4246 if (one & NETIF_F_GSO)
4247 one |= NETIF_F_GSO_SOFTWARE;
4248 one |= NETIF_F_GSO;
4249
4250 /* If even one device supports robust GSO, enable it for all. */
4251 if (one & NETIF_F_GSO_ROBUST)
4252 all |= NETIF_F_GSO_ROBUST;
4253
4254 all &= one | NETIF_F_LLTX;
4255
4256 if (!(all & NETIF_F_ALL_CSUM))
4257 all &= ~NETIF_F_SG;
4258 if (!(all & NETIF_F_SG))
4259 all &= ~NETIF_F_GSO_MASK;
4260
4261 return all;
4262}
4263EXPORT_SYMBOL(netdev_compute_features);
4264
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004265static struct hlist_head *netdev_create_hash(void)
4266{
4267 int i;
4268 struct hlist_head *hash;
4269
4270 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
4271 if (hash != NULL)
4272 for (i = 0; i < NETDEV_HASHENTRIES; i++)
4273 INIT_HLIST_HEAD(&hash[i]);
4274
4275 return hash;
4276}
4277
Eric W. Biederman881d9662007-09-17 11:56:21 -07004278/* Initialize per network namespace state */
4279static int netdev_init(struct net *net)
4280{
Eric W. Biederman881d9662007-09-17 11:56:21 -07004281 INIT_LIST_HEAD(&net->dev_base_head);
4282 rwlock_init(&dev_base_lock);
4283
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004284 net->dev_name_head = netdev_create_hash();
4285 if (net->dev_name_head == NULL)
4286 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004287
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004288 net->dev_index_head = netdev_create_hash();
4289 if (net->dev_index_head == NULL)
4290 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004291
4292 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07004293
4294err_idx:
4295 kfree(net->dev_name_head);
4296err_name:
4297 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07004298}
4299
4300static void netdev_exit(struct net *net)
4301{
4302 kfree(net->dev_name_head);
4303 kfree(net->dev_index_head);
4304}
4305
4306static struct pernet_operations netdev_net_ops = {
4307 .init = netdev_init,
4308 .exit = netdev_exit,
4309};
4310
Eric W. Biedermance286d32007-09-12 13:53:49 +02004311static void default_device_exit(struct net *net)
4312{
4313 struct net_device *dev, *next;
4314 /*
4315 * Push all migratable of the network devices back to the
4316 * initial network namespace
4317 */
4318 rtnl_lock();
4319 for_each_netdev_safe(net, dev, next) {
4320 int err;
4321
4322 /* Ignore unmoveable devices (i.e. loopback) */
4323 if (dev->features & NETIF_F_NETNS_LOCAL)
4324 continue;
4325
4326 /* Push remaing network devices to init_net */
4327 err = dev_change_net_namespace(dev, &init_net, "dev%d");
4328 if (err) {
4329 printk(KERN_WARNING "%s: failed to move %s to init_net: %d\n",
4330 __func__, dev->name, err);
4331 unregister_netdevice(dev);
4332 }
4333 }
4334 rtnl_unlock();
4335}
4336
4337static struct pernet_operations default_device_ops = {
4338 .exit = default_device_exit,
4339};
4340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341/*
4342 * Initialize the DEV module. At boot time this walks the device list and
4343 * unhooks any devices that fail to initialise (normally hardware not
4344 * present) and leaves us with a valid list of present and active devices.
4345 *
4346 */
4347
4348/*
4349 * This is called single threaded during boot, so no need
4350 * to take the rtnl semaphore.
4351 */
4352static int __init net_dev_init(void)
4353{
4354 int i, rc = -ENOMEM;
4355
4356 BUG_ON(!dev_boot_phase);
4357
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 if (dev_proc_init())
4359 goto out;
4360
4361 if (netdev_sysfs_init())
4362 goto out;
4363
4364 INIT_LIST_HEAD(&ptype_all);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004365 for (i = 0; i < 16; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 INIT_LIST_HEAD(&ptype_base[i]);
4367
Eric W. Biederman881d9662007-09-17 11:56:21 -07004368 if (register_pernet_subsys(&netdev_net_ops))
4369 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
Eric W. Biedermance286d32007-09-12 13:53:49 +02004371 if (register_pernet_device(&default_device_ops))
4372 goto out;
4373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 /*
4375 * Initialise the packet receive queues.
4376 */
4377
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07004378 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 struct softnet_data *queue;
4380
4381 queue = &per_cpu(softnet_data, i);
4382 skb_queue_head_init(&queue->input_pkt_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 queue->completion_queue = NULL;
4384 INIT_LIST_HEAD(&queue->poll_list);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004385
4386 queue->backlog.poll = process_backlog;
4387 queue->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 }
4389
Chris Leechdb217332006-06-17 21:24:58 -07004390 netdev_dma_register();
4391
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 dev_boot_phase = 0;
4393
4394 open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
4395 open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
4396
4397 hotcpu_notifier(dev_cpu_callback, 0);
4398 dst_init();
4399 dev_mcast_init();
4400 rc = 0;
4401out:
4402 return rc;
4403}
4404
4405subsys_initcall(net_dev_init);
4406
4407EXPORT_SYMBOL(__dev_get_by_index);
4408EXPORT_SYMBOL(__dev_get_by_name);
4409EXPORT_SYMBOL(__dev_remove_pack);
Mitch Williamsc2373ee2005-11-09 10:34:45 -08004410EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411EXPORT_SYMBOL(dev_add_pack);
4412EXPORT_SYMBOL(dev_alloc_name);
4413EXPORT_SYMBOL(dev_close);
4414EXPORT_SYMBOL(dev_get_by_flags);
4415EXPORT_SYMBOL(dev_get_by_index);
4416EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417EXPORT_SYMBOL(dev_open);
4418EXPORT_SYMBOL(dev_queue_xmit);
4419EXPORT_SYMBOL(dev_remove_pack);
4420EXPORT_SYMBOL(dev_set_allmulti);
4421EXPORT_SYMBOL(dev_set_promiscuity);
4422EXPORT_SYMBOL(dev_change_flags);
4423EXPORT_SYMBOL(dev_set_mtu);
4424EXPORT_SYMBOL(dev_set_mac_address);
4425EXPORT_SYMBOL(free_netdev);
4426EXPORT_SYMBOL(netdev_boot_setup_check);
4427EXPORT_SYMBOL(netdev_set_master);
4428EXPORT_SYMBOL(netdev_state_change);
4429EXPORT_SYMBOL(netif_receive_skb);
4430EXPORT_SYMBOL(netif_rx);
4431EXPORT_SYMBOL(register_gifconf);
4432EXPORT_SYMBOL(register_netdevice);
4433EXPORT_SYMBOL(register_netdevice_notifier);
4434EXPORT_SYMBOL(skb_checksum_help);
4435EXPORT_SYMBOL(synchronize_net);
4436EXPORT_SYMBOL(unregister_netdevice);
4437EXPORT_SYMBOL(unregister_netdevice_notifier);
4438EXPORT_SYMBOL(net_enable_timestamp);
4439EXPORT_SYMBOL(net_disable_timestamp);
4440EXPORT_SYMBOL(dev_get_flags);
4441
4442#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
4443EXPORT_SYMBOL(br_handle_frame_hook);
4444EXPORT_SYMBOL(br_fdb_get_hook);
4445EXPORT_SYMBOL(br_fdb_put_hook);
4446#endif
4447
4448#ifdef CONFIG_KMOD
4449EXPORT_SYMBOL(dev_load);
4450#endif
4451
4452EXPORT_PER_CPU_SYMBOL(softnet_data);