2 * NET3 Protocol independent device support routines.
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.
9 * Derived from the non IP parts of dev.c 1.0.19
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
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>
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
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
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
51 * Rudi Cilibrasi : Pass the right thing to
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
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
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
75 #include <asm/uaccess.h>
76 #include <asm/system.h>
77 #include <linux/bitops.h>
78 #include <linux/capability.h>
79 #include <linux/cpu.h>
80 #include <linux/types.h>
81 #include <linux/kernel.h>
82 #include <linux/sched.h>
83 #include <linux/mutex.h>
84 #include <linux/string.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>
96 #include <linux/rtnetlink.h>
97 #include <linux/proc_fs.h>
98 #include <linux/seq_file.h>
99 #include <linux/stat.h>
100 #include <linux/if_bridge.h>
101 #include <linux/divert.h>
103 #include <net/pkt_sched.h>
104 #include <net/checksum.h>
105 #include <linux/highmem.h>
106 #include <linux/init.h>
107 #include <linux/kmod.h>
108 #include <linux/module.h>
109 #include <linux/kallsyms.h>
110 #include <linux/netpoll.h>
111 #include <linux/rcupdate.h>
112 #include <linux/delay.h>
113 #include <linux/wireless.h>
114 #include <net/iw_handler.h>
115 #include <asm/current.h>
116 #include <linux/audit.h>
117 #include <linux/dmaengine.h>
118 #include <linux/err.h>
121 * The list of packet types we will receive (as opposed to discard)
122 * and the routines to invoke.
124 * Why 16. Because with 16 the only overlap we get on a hash of the
125 * low nibble of the protocol value is RARP/SNAP/X.25.
127 * NOTE: That is no longer true with the addition of VLAN tags. Not
128 * sure which should go first, but I bet it won't make much
129 * difference if we are running VLANs. The good news is that
130 * this protocol won't be in the list unless compiled in, so
131 * the average user (w/out VLANs) will not be adversely affected.
148 static DEFINE_SPINLOCK(ptype_lock);
149 static struct list_head ptype_base[16]; /* 16 way hashed list */
150 static struct list_head ptype_all; /* Taps */
152 #ifdef CONFIG_NET_DMA
153 static struct dma_client *net_dma_client;
154 static unsigned int net_dma_count;
155 static spinlock_t net_dma_event_lock;
159 * The @dev_base list is protected by @dev_base_lock and the rtnl
162 * Pure readers hold dev_base_lock for reading.
164 * Writers must hold the rtnl semaphore while they loop through the
165 * dev_base list, and hold dev_base_lock for writing when they do the
166 * actual updates. This allows pure readers to access the list even
167 * while a writer is preparing to update it.
169 * To put it another way, dev_base_lock is held for writing only to
170 * protect against pure readers; the rtnl semaphore provides the
171 * protection against other writers.
173 * See, for example usages, register_netdevice() and
174 * unregister_netdevice(), which must be called with the rtnl
177 struct net_device *dev_base;
178 static struct net_device **dev_tail = &dev_base;
179 DEFINE_RWLOCK(dev_base_lock);
181 EXPORT_SYMBOL(dev_base);
182 EXPORT_SYMBOL(dev_base_lock);
184 #define NETDEV_HASHBITS 8
185 static struct hlist_head dev_name_head[1<<NETDEV_HASHBITS];
186 static struct hlist_head dev_index_head[1<<NETDEV_HASHBITS];
188 static inline struct hlist_head *dev_name_hash(const char *name)
190 unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
191 return &dev_name_head[hash & ((1<<NETDEV_HASHBITS)-1)];
194 static inline struct hlist_head *dev_index_hash(int ifindex)
196 return &dev_index_head[ifindex & ((1<<NETDEV_HASHBITS)-1)];
203 static RAW_NOTIFIER_HEAD(netdev_chain);
206 * Device drivers call our routines to queue packets here. We empty the
207 * queue in the local softnet handler.
209 DEFINE_PER_CPU(struct softnet_data, softnet_data) = { NULL };
212 extern int netdev_sysfs_init(void);
213 extern int netdev_register_sysfs(struct net_device *);
214 extern void netdev_unregister_sysfs(struct net_device *);
216 #define netdev_sysfs_init() (0)
217 #define netdev_register_sysfs(dev) (0)
218 #define netdev_unregister_sysfs(dev) do { } while(0)
222 /*******************************************************************************
224 Protocol management and registration routines
226 *******************************************************************************/
232 static int netdev_nit;
235 * Add a protocol ID to the list. Now that the input handler is
236 * smarter we can dispense with all the messy stuff that used to be
239 * BEWARE!!! Protocol handlers, mangling input packets,
240 * MUST BE last in hash buckets and checking protocol handlers
241 * MUST start from promiscuous ptype_all chain in net_bh.
242 * It is true now, do not change it.
243 * Explanation follows: if protocol handler, mangling packet, will
244 * be the first on list, it is not able to sense, that packet
245 * is cloned and should be copied-on-write, so that it will
246 * change it and subsequent readers will get broken packet.
251 * dev_add_pack - add packet handler
252 * @pt: packet type declaration
254 * Add a protocol handler to the networking stack. The passed &packet_type
255 * is linked into kernel lists and may not be freed until it has been
256 * removed from the kernel lists.
258 * This call does not sleep therefore it can not
259 * guarantee all CPU's that are in middle of receiving packets
260 * will see the new packet type (until the next received packet).
263 void dev_add_pack(struct packet_type *pt)
267 spin_lock_bh(&ptype_lock);
268 if (pt->type == htons(ETH_P_ALL)) {
270 list_add_rcu(&pt->list, &ptype_all);
272 hash = ntohs(pt->type) & 15;
273 list_add_rcu(&pt->list, &ptype_base[hash]);
275 spin_unlock_bh(&ptype_lock);
279 * __dev_remove_pack - remove packet handler
280 * @pt: packet type declaration
282 * Remove a protocol handler that was previously added to the kernel
283 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
284 * from the kernel lists and can be freed or reused once this function
287 * The packet type might still be in use by receivers
288 * and must not be freed until after all the CPU's have gone
289 * through a quiescent state.
291 void __dev_remove_pack(struct packet_type *pt)
293 struct list_head *head;
294 struct packet_type *pt1;
296 spin_lock_bh(&ptype_lock);
298 if (pt->type == htons(ETH_P_ALL)) {
302 head = &ptype_base[ntohs(pt->type) & 15];
304 list_for_each_entry(pt1, head, list) {
306 list_del_rcu(&pt->list);
311 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
313 spin_unlock_bh(&ptype_lock);
316 * dev_remove_pack - remove packet handler
317 * @pt: packet type declaration
319 * Remove a protocol handler that was previously added to the kernel
320 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
321 * from the kernel lists and can be freed or reused once this function
324 * This call sleeps to guarantee that no CPU is looking at the packet
327 void dev_remove_pack(struct packet_type *pt)
329 __dev_remove_pack(pt);
334 /******************************************************************************
336 Device Boot-time Settings Routines
338 *******************************************************************************/
340 /* Boot time configuration table */
341 static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
344 * netdev_boot_setup_add - add new setup entry
345 * @name: name of the device
346 * @map: configured settings for the device
348 * Adds new setup entry to the dev_boot_setup list. The function
349 * returns 0 on error and 1 on success. This is a generic routine to
352 static int netdev_boot_setup_add(char *name, struct ifmap *map)
354 struct netdev_boot_setup *s;
358 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
359 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
360 memset(s[i].name, 0, sizeof(s[i].name));
361 strcpy(s[i].name, name);
362 memcpy(&s[i].map, map, sizeof(s[i].map));
367 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
371 * netdev_boot_setup_check - check boot time settings
372 * @dev: the netdevice
374 * Check boot time settings for the device.
375 * The found settings are set for the device to be used
376 * later in the device probing.
377 * Returns 0 if no settings found, 1 if they are.
379 int netdev_boot_setup_check(struct net_device *dev)
381 struct netdev_boot_setup *s = dev_boot_setup;
384 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
385 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
386 !strncmp(dev->name, s[i].name, strlen(s[i].name))) {
387 dev->irq = s[i].map.irq;
388 dev->base_addr = s[i].map.base_addr;
389 dev->mem_start = s[i].map.mem_start;
390 dev->mem_end = s[i].map.mem_end;
399 * netdev_boot_base - get address from boot time settings
400 * @prefix: prefix for network device
401 * @unit: id for network device
403 * Check boot time settings for the base address of device.
404 * The found settings are set for the device to be used
405 * later in the device probing.
406 * Returns 0 if no settings found.
408 unsigned long netdev_boot_base(const char *prefix, int unit)
410 const struct netdev_boot_setup *s = dev_boot_setup;
414 sprintf(name, "%s%d", prefix, unit);
417 * If device already registered then return base of 1
418 * to indicate not to probe for this interface
420 if (__dev_get_by_name(name))
423 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
424 if (!strcmp(name, s[i].name))
425 return s[i].map.base_addr;
430 * Saves at boot time configured settings for any netdevice.
432 int __init netdev_boot_setup(char *str)
437 str = get_options(str, ARRAY_SIZE(ints), ints);
442 memset(&map, 0, sizeof(map));
446 map.base_addr = ints[2];
448 map.mem_start = ints[3];
450 map.mem_end = ints[4];
452 /* Add new entry to the list */
453 return netdev_boot_setup_add(str, &map);
456 __setup("netdev=", netdev_boot_setup);
458 /*******************************************************************************
460 Device Interface Subroutines
462 *******************************************************************************/
465 * __dev_get_by_name - find a device by its name
466 * @name: name to find
468 * Find an interface by name. Must be called under RTNL semaphore
469 * or @dev_base_lock. If the name is found a pointer to the device
470 * is returned. If the name is not found then %NULL is returned. The
471 * reference counters are not incremented so the caller must be
472 * careful with locks.
475 struct net_device *__dev_get_by_name(const char *name)
477 struct hlist_node *p;
479 hlist_for_each(p, dev_name_hash(name)) {
480 struct net_device *dev
481 = hlist_entry(p, struct net_device, name_hlist);
482 if (!strncmp(dev->name, name, IFNAMSIZ))
489 * dev_get_by_name - find a device by its name
490 * @name: name to find
492 * Find an interface by name. This can be called from any
493 * context and does its own locking. The returned handle has
494 * the usage count incremented and the caller must use dev_put() to
495 * release it when it is no longer needed. %NULL is returned if no
496 * matching device is found.
499 struct net_device *dev_get_by_name(const char *name)
501 struct net_device *dev;
503 read_lock(&dev_base_lock);
504 dev = __dev_get_by_name(name);
507 read_unlock(&dev_base_lock);
512 * __dev_get_by_index - find a device by its ifindex
513 * @ifindex: index of device
515 * Search for an interface by index. Returns %NULL if the device
516 * is not found or a pointer to the device. The device has not
517 * had its reference counter increased so the caller must be careful
518 * about locking. The caller must hold either the RTNL semaphore
522 struct net_device *__dev_get_by_index(int ifindex)
524 struct hlist_node *p;
526 hlist_for_each(p, dev_index_hash(ifindex)) {
527 struct net_device *dev
528 = hlist_entry(p, struct net_device, index_hlist);
529 if (dev->ifindex == ifindex)
537 * dev_get_by_index - find a device by its ifindex
538 * @ifindex: index of device
540 * Search for an interface by index. Returns NULL if the device
541 * is not found or a pointer to the device. The device returned has
542 * had a reference added and the pointer is safe until the user calls
543 * dev_put to indicate they have finished with it.
546 struct net_device *dev_get_by_index(int ifindex)
548 struct net_device *dev;
550 read_lock(&dev_base_lock);
551 dev = __dev_get_by_index(ifindex);
554 read_unlock(&dev_base_lock);
559 * dev_getbyhwaddr - find a device by its hardware address
560 * @type: media type of device
561 * @ha: hardware address
563 * Search for an interface by MAC address. Returns NULL if the device
564 * is not found or a pointer to the device. The caller must hold the
565 * rtnl semaphore. The returned device has not had its ref count increased
566 * and the caller must therefore be careful about locking
569 * If the API was consistent this would be __dev_get_by_hwaddr
572 struct net_device *dev_getbyhwaddr(unsigned short type, char *ha)
574 struct net_device *dev;
578 for (dev = dev_base; dev; dev = dev->next)
579 if (dev->type == type &&
580 !memcmp(dev->dev_addr, ha, dev->addr_len))
585 EXPORT_SYMBOL(dev_getbyhwaddr);
587 struct net_device *dev_getfirstbyhwtype(unsigned short type)
589 struct net_device *dev;
592 for (dev = dev_base; dev; dev = dev->next) {
593 if (dev->type == type) {
602 EXPORT_SYMBOL(dev_getfirstbyhwtype);
605 * dev_get_by_flags - find any device with given flags
606 * @if_flags: IFF_* values
607 * @mask: bitmask of bits in if_flags to check
609 * Search for any interface with the given flags. Returns NULL if a device
610 * is not found or a pointer to the device. The device returned has
611 * had a reference added and the pointer is safe until the user calls
612 * dev_put to indicate they have finished with it.
615 struct net_device * dev_get_by_flags(unsigned short if_flags, unsigned short mask)
617 struct net_device *dev;
619 read_lock(&dev_base_lock);
620 for (dev = dev_base; dev != NULL; dev = dev->next) {
621 if (((dev->flags ^ if_flags) & mask) == 0) {
626 read_unlock(&dev_base_lock);
631 * dev_valid_name - check if name is okay for network device
634 * Network device names need to be valid file names to
635 * to allow sysfs to work
637 int dev_valid_name(const char *name)
639 return !(*name == '\0'
640 || !strcmp(name, ".")
641 || !strcmp(name, "..")
642 || strchr(name, '/'));
646 * dev_alloc_name - allocate a name for a device
648 * @name: name format string
650 * Passed a format string - eg "lt%d" it will try and find a suitable
651 * id. It scans list of devices to build up a free map, then chooses
652 * the first empty slot. The caller must hold the dev_base or rtnl lock
653 * while allocating the name and adding the device in order to avoid
655 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
656 * Returns the number of the unit assigned or a negative errno code.
659 int dev_alloc_name(struct net_device *dev, const char *name)
664 const int max_netdevices = 8*PAGE_SIZE;
666 struct net_device *d;
668 p = strnchr(name, IFNAMSIZ-1, '%');
671 * Verify the string as this thing may have come from
672 * the user. There must be either one "%d" and no other "%"
675 if (p[1] != 'd' || strchr(p + 2, '%'))
678 /* Use one page as a bit array of possible slots */
679 inuse = (long *) get_zeroed_page(GFP_ATOMIC);
683 for (d = dev_base; d; d = d->next) {
684 if (!sscanf(d->name, name, &i))
686 if (i < 0 || i >= max_netdevices)
689 /* avoid cases where sscanf is not exact inverse of printf */
690 snprintf(buf, sizeof(buf), name, i);
691 if (!strncmp(buf, d->name, IFNAMSIZ))
695 i = find_first_zero_bit(inuse, max_netdevices);
696 free_page((unsigned long) inuse);
699 snprintf(buf, sizeof(buf), name, i);
700 if (!__dev_get_by_name(buf)) {
701 strlcpy(dev->name, buf, IFNAMSIZ);
705 /* It is possible to run out of possible slots
706 * when the name is long and there isn't enough space left
707 * for the digits, or if all bits are used.
714 * dev_change_name - change name of a device
716 * @newname: name (or format string) must be at least IFNAMSIZ
718 * Change name of a device, can pass format strings "eth%d".
721 int dev_change_name(struct net_device *dev, char *newname)
727 if (dev->flags & IFF_UP)
730 if (!dev_valid_name(newname))
733 if (strchr(newname, '%')) {
734 err = dev_alloc_name(dev, newname);
737 strcpy(newname, dev->name);
739 else if (__dev_get_by_name(newname))
742 strlcpy(dev->name, newname, IFNAMSIZ);
744 err = class_device_rename(&dev->class_dev, dev->name);
746 hlist_del(&dev->name_hlist);
747 hlist_add_head(&dev->name_hlist, dev_name_hash(dev->name));
748 raw_notifier_call_chain(&netdev_chain,
749 NETDEV_CHANGENAME, dev);
756 * netdev_features_change - device changes features
757 * @dev: device to cause notification
759 * Called to indicate a device has changed features.
761 void netdev_features_change(struct net_device *dev)
763 raw_notifier_call_chain(&netdev_chain, NETDEV_FEAT_CHANGE, dev);
765 EXPORT_SYMBOL(netdev_features_change);
768 * netdev_state_change - device changes state
769 * @dev: device to cause notification
771 * Called to indicate a device has changed state. This function calls
772 * the notifier chains for netdev_chain and sends a NEWLINK message
773 * to the routing socket.
775 void netdev_state_change(struct net_device *dev)
777 if (dev->flags & IFF_UP) {
778 raw_notifier_call_chain(&netdev_chain,
780 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
785 * dev_load - load a network module
786 * @name: name of interface
788 * If a network interface is not present and the process has suitable
789 * privileges this function loads the module. If module loading is not
790 * available in this kernel then it becomes a nop.
793 void dev_load(const char *name)
795 struct net_device *dev;
797 read_lock(&dev_base_lock);
798 dev = __dev_get_by_name(name);
799 read_unlock(&dev_base_lock);
801 if (!dev && capable(CAP_SYS_MODULE))
802 request_module("%s", name);
805 static int default_rebuild_header(struct sk_buff *skb)
807 printk(KERN_DEBUG "%s: default_rebuild_header called -- BUG!\n",
808 skb->dev ? skb->dev->name : "NULL!!!");
815 * dev_open - prepare an interface for use.
816 * @dev: device to open
818 * Takes a device from down to up state. The device's private open
819 * function is invoked and then the multicast lists are loaded. Finally
820 * the device is moved into the up state and a %NETDEV_UP message is
821 * sent to the netdev notifier chain.
823 * Calling this function on an active interface is a nop. On a failure
824 * a negative errno code is returned.
826 int dev_open(struct net_device *dev)
834 if (dev->flags & IFF_UP)
838 * Is it even present?
840 if (!netif_device_present(dev))
844 * Call device private open method
846 set_bit(__LINK_STATE_START, &dev->state);
848 ret = dev->open(dev);
850 clear_bit(__LINK_STATE_START, &dev->state);
854 * If it went open OK then:
861 dev->flags |= IFF_UP;
864 * Initialize multicasting status
869 * Wakeup transmit queue engine
874 * ... and announce new interface.
876 raw_notifier_call_chain(&netdev_chain, NETDEV_UP, dev);
882 * dev_close - shutdown an interface.
883 * @dev: device to shutdown
885 * This function moves an active device into down state. A
886 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
887 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
890 int dev_close(struct net_device *dev)
892 if (!(dev->flags & IFF_UP))
896 * Tell people we are going down, so that they can
897 * prepare to death, when device is still operating.
899 raw_notifier_call_chain(&netdev_chain, NETDEV_GOING_DOWN, dev);
903 clear_bit(__LINK_STATE_START, &dev->state);
905 /* Synchronize to scheduled poll. We cannot touch poll list,
906 * it can be even on different cpu. So just clear netif_running(),
907 * and wait when poll really will happen. Actually, the best place
908 * for this is inside dev->stop() after device stopped its irq
909 * engine, but this requires more changes in devices. */
911 smp_mb__after_clear_bit(); /* Commit netif_running(). */
912 while (test_bit(__LINK_STATE_RX_SCHED, &dev->state)) {
918 * Call the device specific close. This cannot fail.
919 * Only if device is UP
921 * We allow it to be called even after a DETACH hot-plug
928 * Device is now down.
931 dev->flags &= ~IFF_UP;
934 * Tell people we are down
936 raw_notifier_call_chain(&netdev_chain, NETDEV_DOWN, dev);
943 * Device change register/unregister. These are not inline or static
944 * as we export them to the world.
948 * register_netdevice_notifier - register a network notifier block
951 * Register a notifier to be called when network device events occur.
952 * The notifier passed is linked into the kernel structures and must
953 * not be reused until it has been unregistered. A negative errno code
954 * is returned on a failure.
956 * When registered all registration and up events are replayed
957 * to the new notifier to allow device to have a race free
958 * view of the network device list.
961 int register_netdevice_notifier(struct notifier_block *nb)
963 struct net_device *dev;
967 err = raw_notifier_chain_register(&netdev_chain, nb);
969 for (dev = dev_base; dev; dev = dev->next) {
970 nb->notifier_call(nb, NETDEV_REGISTER, dev);
972 if (dev->flags & IFF_UP)
973 nb->notifier_call(nb, NETDEV_UP, dev);
981 * unregister_netdevice_notifier - unregister a network notifier block
984 * Unregister a notifier previously registered by
985 * register_netdevice_notifier(). The notifier is unlinked into the
986 * kernel structures and may then be reused. A negative errno code
987 * is returned on a failure.
990 int unregister_netdevice_notifier(struct notifier_block *nb)
995 err = raw_notifier_chain_unregister(&netdev_chain, nb);
1001 * call_netdevice_notifiers - call all network notifier blocks
1002 * @val: value passed unmodified to notifier function
1003 * @v: pointer passed unmodified to notifier function
1005 * Call all network notifier blocks. Parameters and return value
1006 * are as for raw_notifier_call_chain().
1009 int call_netdevice_notifiers(unsigned long val, void *v)
1011 return raw_notifier_call_chain(&netdev_chain, val, v);
1014 /* When > 0 there are consumers of rx skb time stamps */
1015 static atomic_t netstamp_needed = ATOMIC_INIT(0);
1017 void net_enable_timestamp(void)
1019 atomic_inc(&netstamp_needed);
1022 void net_disable_timestamp(void)
1024 atomic_dec(&netstamp_needed);
1027 void __net_timestamp(struct sk_buff *skb)
1031 do_gettimeofday(&tv);
1032 skb_set_timestamp(skb, &tv);
1034 EXPORT_SYMBOL(__net_timestamp);
1036 static inline void net_timestamp(struct sk_buff *skb)
1038 if (atomic_read(&netstamp_needed))
1039 __net_timestamp(skb);
1041 skb->tstamp.off_sec = 0;
1042 skb->tstamp.off_usec = 0;
1047 * Support routine. Sends outgoing frames to any network
1048 * taps currently in use.
1051 static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1053 struct packet_type *ptype;
1058 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1059 /* Never send packets back to the socket
1060 * they originated from - MvS (miquels@drinkel.ow.org)
1062 if ((ptype->dev == dev || !ptype->dev) &&
1063 (ptype->af_packet_priv == NULL ||
1064 (struct sock *)ptype->af_packet_priv != skb->sk)) {
1065 struct sk_buff *skb2= skb_clone(skb, GFP_ATOMIC);
1069 /* skb->nh should be correctly
1070 set by sender, so that the second statement is
1071 just protection against buggy protocols.
1073 skb2->mac.raw = skb2->data;
1075 if (skb2->nh.raw < skb2->data ||
1076 skb2->nh.raw > skb2->tail) {
1077 if (net_ratelimit())
1078 printk(KERN_CRIT "protocol %04x is "
1080 skb2->protocol, dev->name);
1081 skb2->nh.raw = skb2->data;
1084 skb2->h.raw = skb2->nh.raw;
1085 skb2->pkt_type = PACKET_OUTGOING;
1086 ptype->func(skb2, skb->dev, ptype, skb->dev);
1093 void __netif_schedule(struct net_device *dev)
1095 if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
1096 unsigned long flags;
1097 struct softnet_data *sd;
1099 local_irq_save(flags);
1100 sd = &__get_cpu_var(softnet_data);
1101 dev->next_sched = sd->output_queue;
1102 sd->output_queue = dev;
1103 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1104 local_irq_restore(flags);
1107 EXPORT_SYMBOL(__netif_schedule);
1109 void __netif_rx_schedule(struct net_device *dev)
1111 unsigned long flags;
1113 local_irq_save(flags);
1115 list_add_tail(&dev->poll_list, &__get_cpu_var(softnet_data).poll_list);
1117 dev->quota += dev->weight;
1119 dev->quota = dev->weight;
1120 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
1121 local_irq_restore(flags);
1123 EXPORT_SYMBOL(__netif_rx_schedule);
1125 void dev_kfree_skb_any(struct sk_buff *skb)
1127 if (in_irq() || irqs_disabled())
1128 dev_kfree_skb_irq(skb);
1132 EXPORT_SYMBOL(dev_kfree_skb_any);
1136 void netif_device_detach(struct net_device *dev)
1138 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1139 netif_running(dev)) {
1140 netif_stop_queue(dev);
1143 EXPORT_SYMBOL(netif_device_detach);
1145 void netif_device_attach(struct net_device *dev)
1147 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1148 netif_running(dev)) {
1149 netif_wake_queue(dev);
1150 __netdev_watchdog_up(dev);
1153 EXPORT_SYMBOL(netif_device_attach);
1157 * Invalidate hardware checksum when packet is to be mangled, and
1158 * complete checksum manually on outgoing path.
1160 int skb_checksum_help(struct sk_buff *skb, int inward)
1163 int ret = 0, offset = skb->h.raw - skb->data;
1166 goto out_set_summed;
1168 if (unlikely(skb_shinfo(skb)->gso_size)) {
1169 /* Let GSO fix up the checksum. */
1170 goto out_set_summed;
1173 if (skb_cloned(skb)) {
1174 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1179 BUG_ON(offset > (int)skb->len);
1180 csum = skb_checksum(skb, offset, skb->len-offset, 0);
1182 offset = skb->tail - skb->h.raw;
1183 BUG_ON(offset <= 0);
1184 BUG_ON(skb->csum + 2 > offset);
1186 *(u16*)(skb->h.raw + skb->csum) = csum_fold(csum);
1189 skb->ip_summed = CHECKSUM_NONE;
1195 * skb_gso_segment - Perform segmentation on skb.
1196 * @skb: buffer to segment
1197 * @features: features for the output path (see dev->features)
1199 * This function segments the given skb and returns a list of segments.
1201 * It may return NULL if the skb requires no segmentation. This is
1202 * only possible when GSO is used for verifying header integrity.
1204 struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
1206 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1207 struct packet_type *ptype;
1208 int type = skb->protocol;
1211 BUG_ON(skb_shinfo(skb)->frag_list);
1213 skb->mac.raw = skb->data;
1214 skb->mac_len = skb->nh.raw - skb->data;
1215 __skb_pull(skb, skb->mac_len);
1217 if (unlikely(skb->ip_summed != CHECKSUM_HW)) {
1218 if (skb_header_cloned(skb) &&
1219 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1220 return ERR_PTR(err);
1224 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type) & 15], list) {
1225 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
1226 if (unlikely(skb->ip_summed != CHECKSUM_HW)) {
1227 err = ptype->gso_send_check(skb);
1228 segs = ERR_PTR(err);
1229 if (err || skb_gso_ok(skb, features))
1231 __skb_push(skb, skb->data - skb->nh.raw);
1233 segs = ptype->gso_segment(skb, features);
1239 __skb_push(skb, skb->data - skb->mac.raw);
1244 EXPORT_SYMBOL(skb_gso_segment);
1246 /* Take action when hardware reception checksum errors are detected. */
1248 void netdev_rx_csum_fault(struct net_device *dev)
1250 if (net_ratelimit()) {
1251 printk(KERN_ERR "%s: hw csum failure.\n",
1252 dev ? dev->name : "<unknown>");
1256 EXPORT_SYMBOL(netdev_rx_csum_fault);
1259 /* Actually, we should eliminate this check as soon as we know, that:
1260 * 1. IOMMU is present and allows to map all the memory.
1261 * 2. No high memory really exists on this machine.
1264 static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1266 #ifdef CONFIG_HIGHMEM
1269 if (dev->features & NETIF_F_HIGHDMA)
1272 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1273 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1281 void (*destructor)(struct sk_buff *skb);
1284 #define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1286 static void dev_gso_skb_destructor(struct sk_buff *skb)
1288 struct dev_gso_cb *cb;
1291 struct sk_buff *nskb = skb->next;
1293 skb->next = nskb->next;
1296 } while (skb->next);
1298 cb = DEV_GSO_CB(skb);
1300 cb->destructor(skb);
1304 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1305 * @skb: buffer to segment
1307 * This function segments the given skb and stores the list of segments
1310 static int dev_gso_segment(struct sk_buff *skb)
1312 struct net_device *dev = skb->dev;
1313 struct sk_buff *segs;
1314 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1317 segs = skb_gso_segment(skb, features);
1319 /* Verifying header integrity only. */
1323 if (unlikely(IS_ERR(segs)))
1324 return PTR_ERR(segs);
1327 DEV_GSO_CB(skb)->destructor = skb->destructor;
1328 skb->destructor = dev_gso_skb_destructor;
1333 int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1335 if (likely(!skb->next)) {
1337 dev_queue_xmit_nit(skb, dev);
1339 if (netif_needs_gso(dev, skb)) {
1340 if (unlikely(dev_gso_segment(skb)))
1346 return dev->hard_start_xmit(skb, dev);
1351 struct sk_buff *nskb = skb->next;
1354 skb->next = nskb->next;
1356 rc = dev->hard_start_xmit(nskb, dev);
1358 nskb->next = skb->next;
1362 if (unlikely(netif_queue_stopped(dev) && skb->next))
1363 return NETDEV_TX_BUSY;
1364 } while (skb->next);
1366 skb->destructor = DEV_GSO_CB(skb)->destructor;
1373 #define HARD_TX_LOCK(dev, cpu) { \
1374 if ((dev->features & NETIF_F_LLTX) == 0) { \
1375 netif_tx_lock(dev); \
1379 #define HARD_TX_UNLOCK(dev) { \
1380 if ((dev->features & NETIF_F_LLTX) == 0) { \
1381 netif_tx_unlock(dev); \
1386 * dev_queue_xmit - transmit a buffer
1387 * @skb: buffer to transmit
1389 * Queue a buffer for transmission to a network device. The caller must
1390 * have set the device and priority and built the buffer before calling
1391 * this function. The function can be called from an interrupt.
1393 * A negative errno code is returned on a failure. A success does not
1394 * guarantee the frame will be transmitted as it may be dropped due
1395 * to congestion or traffic shaping.
1397 * -----------------------------------------------------------------------------------
1398 * I notice this method can also return errors from the queue disciplines,
1399 * including NET_XMIT_DROP, which is a positive value. So, errors can also
1402 * Regardless of the return value, the skb is consumed, so it is currently
1403 * difficult to retry a send to this method. (You can bump the ref count
1404 * before sending to hold a reference for retry if you are careful.)
1406 * When calling this method, interrupts MUST be enabled. This is because
1407 * the BH enable code must have IRQs enabled so that it will not deadlock.
1411 int dev_queue_xmit(struct sk_buff *skb)
1413 struct net_device *dev = skb->dev;
1417 /* GSO will handle the following emulations directly. */
1418 if (netif_needs_gso(dev, skb))
1421 if (skb_shinfo(skb)->frag_list &&
1422 !(dev->features & NETIF_F_FRAGLIST) &&
1423 __skb_linearize(skb))
1426 /* Fragmented skb is linearized if device does not support SG,
1427 * or if at least one of fragments is in highmem and device
1428 * does not support DMA from it.
1430 if (skb_shinfo(skb)->nr_frags &&
1431 (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
1432 __skb_linearize(skb))
1435 /* If packet is not checksummed and device does not support
1436 * checksumming for this protocol, complete checksumming here.
1438 if (skb->ip_summed == CHECKSUM_HW &&
1439 (!(dev->features & NETIF_F_GEN_CSUM) &&
1440 (!(dev->features & NETIF_F_IP_CSUM) ||
1441 skb->protocol != htons(ETH_P_IP))))
1442 if (skb_checksum_help(skb, 0))
1446 spin_lock_prefetch(&dev->queue_lock);
1448 /* Disable soft irqs for various locks below. Also
1449 * stops preemption for RCU.
1453 /* Updates of qdisc are serialized by queue_lock.
1454 * The struct Qdisc which is pointed to by qdisc is now a
1455 * rcu structure - it may be accessed without acquiring
1456 * a lock (but the structure may be stale.) The freeing of the
1457 * qdisc will be deferred until it's known that there are no
1458 * more references to it.
1460 * If the qdisc has an enqueue function, we still need to
1461 * hold the queue_lock before calling it, since queue_lock
1462 * also serializes access to the device queue.
1465 q = rcu_dereference(dev->qdisc);
1466 #ifdef CONFIG_NET_CLS_ACT
1467 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_EGRESS);
1470 /* Grab device queue */
1471 spin_lock(&dev->queue_lock);
1473 rc = q->enqueue(skb, q);
1477 spin_unlock(&dev->queue_lock);
1478 rc = rc == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : rc;
1482 /* The device has no queue. Common case for software devices:
1483 loopback, all the sorts of tunnels...
1485 Really, it is unlikely that netif_tx_lock protection is necessary
1486 here. (f.e. loopback and IP tunnels are clean ignoring statistics
1488 However, it is possible, that they rely on protection
1491 Check this and shot the lock. It is not prone from deadlocks.
1492 Either shot noqueue qdisc, it is even simpler 8)
1494 if (dev->flags & IFF_UP) {
1495 int cpu = smp_processor_id(); /* ok because BHs are off */
1497 if (dev->xmit_lock_owner != cpu) {
1499 HARD_TX_LOCK(dev, cpu);
1501 if (!netif_queue_stopped(dev)) {
1503 if (!dev_hard_start_xmit(skb, dev)) {
1504 HARD_TX_UNLOCK(dev);
1508 HARD_TX_UNLOCK(dev);
1509 if (net_ratelimit())
1510 printk(KERN_CRIT "Virtual device %s asks to "
1511 "queue packet!\n", dev->name);
1513 /* Recursion is detected! It is possible,
1515 if (net_ratelimit())
1516 printk(KERN_CRIT "Dead loop on virtual device "
1517 "%s, fix it urgently!\n", dev->name);
1522 rcu_read_unlock_bh();
1528 rcu_read_unlock_bh();
1533 /*=======================================================================
1535 =======================================================================*/
1537 int netdev_max_backlog = 1000;
1538 int netdev_budget = 300;
1539 int weight_p = 64; /* old backlog weight */
1541 DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1545 * netif_rx - post buffer to the network code
1546 * @skb: buffer to post
1548 * This function receives a packet from a device driver and queues it for
1549 * the upper (protocol) levels to process. It always succeeds. The buffer
1550 * may be dropped during processing for congestion control or by the
1554 * NET_RX_SUCCESS (no congestion)
1555 * NET_RX_CN_LOW (low congestion)
1556 * NET_RX_CN_MOD (moderate congestion)
1557 * NET_RX_CN_HIGH (high congestion)
1558 * NET_RX_DROP (packet was dropped)
1562 int netif_rx(struct sk_buff *skb)
1564 struct softnet_data *queue;
1565 unsigned long flags;
1567 /* if netpoll wants it, pretend we never saw it */
1568 if (netpoll_rx(skb))
1571 if (!skb->tstamp.off_sec)
1575 * The code is rearranged so that the path is the most
1576 * short when CPU is congested, but is still operating.
1578 local_irq_save(flags);
1579 queue = &__get_cpu_var(softnet_data);
1581 __get_cpu_var(netdev_rx_stat).total++;
1582 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
1583 if (queue->input_pkt_queue.qlen) {
1586 __skb_queue_tail(&queue->input_pkt_queue, skb);
1587 local_irq_restore(flags);
1588 return NET_RX_SUCCESS;
1591 netif_rx_schedule(&queue->backlog_dev);
1595 __get_cpu_var(netdev_rx_stat).dropped++;
1596 local_irq_restore(flags);
1602 int netif_rx_ni(struct sk_buff *skb)
1607 err = netif_rx(skb);
1608 if (local_softirq_pending())
1615 EXPORT_SYMBOL(netif_rx_ni);
1617 static inline struct net_device *skb_bond(struct sk_buff *skb)
1619 struct net_device *dev = skb->dev;
1623 * On bonding slaves other than the currently active
1624 * slave, suppress duplicates except for 802.3ad
1625 * ETH_P_SLOW and alb non-mcast/bcast.
1627 if (dev->priv_flags & IFF_SLAVE_INACTIVE) {
1628 if (dev->master->priv_flags & IFF_MASTER_ALB) {
1629 if (skb->pkt_type != PACKET_BROADCAST &&
1630 skb->pkt_type != PACKET_MULTICAST)
1634 if (dev->master->priv_flags & IFF_MASTER_8023AD &&
1635 skb->protocol == __constant_htons(ETH_P_SLOW))
1642 skb->dev = dev->master;
1648 static void net_tx_action(struct softirq_action *h)
1650 struct softnet_data *sd = &__get_cpu_var(softnet_data);
1652 if (sd->completion_queue) {
1653 struct sk_buff *clist;
1655 local_irq_disable();
1656 clist = sd->completion_queue;
1657 sd->completion_queue = NULL;
1661 struct sk_buff *skb = clist;
1662 clist = clist->next;
1664 BUG_TRAP(!atomic_read(&skb->users));
1669 if (sd->output_queue) {
1670 struct net_device *head;
1672 local_irq_disable();
1673 head = sd->output_queue;
1674 sd->output_queue = NULL;
1678 struct net_device *dev = head;
1679 head = head->next_sched;
1681 smp_mb__before_clear_bit();
1682 clear_bit(__LINK_STATE_SCHED, &dev->state);
1684 if (spin_trylock(&dev->queue_lock)) {
1686 spin_unlock(&dev->queue_lock);
1688 netif_schedule(dev);
1694 static __inline__ int deliver_skb(struct sk_buff *skb,
1695 struct packet_type *pt_prev,
1696 struct net_device *orig_dev)
1698 atomic_inc(&skb->users);
1699 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1702 #if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
1703 int (*br_handle_frame_hook)(struct net_bridge_port *p, struct sk_buff **pskb);
1705 struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
1706 unsigned char *addr);
1707 void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent);
1709 static __inline__ int handle_bridge(struct sk_buff **pskb,
1710 struct packet_type **pt_prev, int *ret,
1711 struct net_device *orig_dev)
1713 struct net_bridge_port *port;
1715 if ((*pskb)->pkt_type == PACKET_LOOPBACK ||
1716 (port = rcu_dereference((*pskb)->dev->br_port)) == NULL)
1720 *ret = deliver_skb(*pskb, *pt_prev, orig_dev);
1724 return br_handle_frame_hook(port, pskb);
1727 #define handle_bridge(skb, pt_prev, ret, orig_dev) (0)
1730 #ifdef CONFIG_NET_CLS_ACT
1731 /* TODO: Maybe we should just force sch_ingress to be compiled in
1732 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
1733 * a compare and 2 stores extra right now if we dont have it on
1734 * but have CONFIG_NET_CLS_ACT
1735 * NOTE: This doesnt stop any functionality; if you dont have
1736 * the ingress scheduler, you just cant add policies on ingress.
1739 static int ing_filter(struct sk_buff *skb)
1742 struct net_device *dev = skb->dev;
1743 int result = TC_ACT_OK;
1745 if (dev->qdisc_ingress) {
1746 __u32 ttl = (__u32) G_TC_RTTL(skb->tc_verd);
1747 if (MAX_RED_LOOP < ttl++) {
1748 printk(KERN_WARNING "Redir loop detected Dropping packet (%s->%s)\n",
1749 skb->input_dev->name, skb->dev->name);
1753 skb->tc_verd = SET_TC_RTTL(skb->tc_verd,ttl);
1755 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_INGRESS);
1757 spin_lock(&dev->ingress_lock);
1758 if ((q = dev->qdisc_ingress) != NULL)
1759 result = q->enqueue(skb, q);
1760 spin_unlock(&dev->ingress_lock);
1768 int netif_receive_skb(struct sk_buff *skb)
1770 struct packet_type *ptype, *pt_prev;
1771 struct net_device *orig_dev;
1772 int ret = NET_RX_DROP;
1773 unsigned short type;
1775 /* if we've gotten here through NAPI, check netpoll */
1776 if (skb->dev->poll && netpoll_rx(skb))
1779 if (!skb->tstamp.off_sec)
1782 if (!skb->input_dev)
1783 skb->input_dev = skb->dev;
1785 orig_dev = skb_bond(skb);
1790 __get_cpu_var(netdev_rx_stat).total++;
1792 skb->h.raw = skb->nh.raw = skb->data;
1793 skb->mac_len = skb->nh.raw - skb->mac.raw;
1799 #ifdef CONFIG_NET_CLS_ACT
1800 if (skb->tc_verd & TC_NCLS) {
1801 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
1806 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1807 if (!ptype->dev || ptype->dev == skb->dev) {
1809 ret = deliver_skb(skb, pt_prev, orig_dev);
1814 #ifdef CONFIG_NET_CLS_ACT
1816 ret = deliver_skb(skb, pt_prev, orig_dev);
1817 pt_prev = NULL; /* noone else should process this after*/
1819 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
1822 ret = ing_filter(skb);
1824 if (ret == TC_ACT_SHOT || (ret == TC_ACT_STOLEN)) {
1833 handle_diverter(skb);
1835 if (handle_bridge(&skb, &pt_prev, &ret, orig_dev))
1838 type = skb->protocol;
1839 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type)&15], list) {
1840 if (ptype->type == type &&
1841 (!ptype->dev || ptype->dev == skb->dev)) {
1843 ret = deliver_skb(skb, pt_prev, orig_dev);
1849 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1852 /* Jamal, now you will not able to escape explaining
1853 * me how you were going to use this. :-)
1863 static int process_backlog(struct net_device *backlog_dev, int *budget)
1866 int quota = min(backlog_dev->quota, *budget);
1867 struct softnet_data *queue = &__get_cpu_var(softnet_data);
1868 unsigned long start_time = jiffies;
1870 backlog_dev->weight = weight_p;
1872 struct sk_buff *skb;
1873 struct net_device *dev;
1875 local_irq_disable();
1876 skb = __skb_dequeue(&queue->input_pkt_queue);
1883 netif_receive_skb(skb);
1889 if (work >= quota || jiffies - start_time > 1)
1894 backlog_dev->quota -= work;
1899 backlog_dev->quota -= work;
1902 list_del(&backlog_dev->poll_list);
1903 smp_mb__before_clear_bit();
1904 netif_poll_enable(backlog_dev);
1910 static void net_rx_action(struct softirq_action *h)
1912 struct softnet_data *queue = &__get_cpu_var(softnet_data);
1913 unsigned long start_time = jiffies;
1914 int budget = netdev_budget;
1917 local_irq_disable();
1919 while (!list_empty(&queue->poll_list)) {
1920 struct net_device *dev;
1922 if (budget <= 0 || jiffies - start_time > 1)
1927 dev = list_entry(queue->poll_list.next,
1928 struct net_device, poll_list);
1929 have = netpoll_poll_lock(dev);
1931 if (dev->quota <= 0 || dev->poll(dev, &budget)) {
1932 netpoll_poll_unlock(have);
1933 local_irq_disable();
1934 list_move_tail(&dev->poll_list, &queue->poll_list);
1936 dev->quota += dev->weight;
1938 dev->quota = dev->weight;
1940 netpoll_poll_unlock(have);
1942 local_irq_disable();
1946 #ifdef CONFIG_NET_DMA
1948 * There may not be any more sk_buffs coming right now, so push
1949 * any pending DMA copies to hardware
1951 if (net_dma_client) {
1952 struct dma_chan *chan;
1954 list_for_each_entry_rcu(chan, &net_dma_client->channels, client_node)
1955 dma_async_memcpy_issue_pending(chan);
1963 __get_cpu_var(netdev_rx_stat).time_squeeze++;
1964 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
1968 static gifconf_func_t * gifconf_list [NPROTO];
1971 * register_gifconf - register a SIOCGIF handler
1972 * @family: Address family
1973 * @gifconf: Function handler
1975 * Register protocol dependent address dumping routines. The handler
1976 * that is passed must not be freed or reused until it has been replaced
1977 * by another handler.
1979 int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
1981 if (family >= NPROTO)
1983 gifconf_list[family] = gifconf;
1989 * Map an interface index to its name (SIOCGIFNAME)
1993 * We need this ioctl for efficient implementation of the
1994 * if_indextoname() function required by the IPv6 API. Without
1995 * it, we would have to search all the interfaces to find a
1999 static int dev_ifname(struct ifreq __user *arg)
2001 struct net_device *dev;
2005 * Fetch the caller's info block.
2008 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2011 read_lock(&dev_base_lock);
2012 dev = __dev_get_by_index(ifr.ifr_ifindex);
2014 read_unlock(&dev_base_lock);
2018 strcpy(ifr.ifr_name, dev->name);
2019 read_unlock(&dev_base_lock);
2021 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
2027 * Perform a SIOCGIFCONF call. This structure will change
2028 * size eventually, and there is nothing I can do about it.
2029 * Thus we will need a 'compatibility mode'.
2032 static int dev_ifconf(char __user *arg)
2035 struct net_device *dev;
2042 * Fetch the caller's info block.
2045 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
2052 * Loop over the interfaces, and write an info block for each.
2056 for (dev = dev_base; dev; dev = dev->next) {
2057 for (i = 0; i < NPROTO; i++) {
2058 if (gifconf_list[i]) {
2061 done = gifconf_list[i](dev, NULL, 0);
2063 done = gifconf_list[i](dev, pos + total,
2073 * All done. Write the updated control block back to the caller.
2075 ifc.ifc_len = total;
2078 * Both BSD and Solaris return 0 here, so we do too.
2080 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
2083 #ifdef CONFIG_PROC_FS
2085 * This is invoked by the /proc filesystem handler to display a device
2088 static __inline__ struct net_device *dev_get_idx(loff_t pos)
2090 struct net_device *dev;
2093 for (i = 0, dev = dev_base; dev && i < pos; ++i, dev = dev->next);
2095 return i == pos ? dev : NULL;
2098 void *dev_seq_start(struct seq_file *seq, loff_t *pos)
2100 read_lock(&dev_base_lock);
2101 return *pos ? dev_get_idx(*pos - 1) : SEQ_START_TOKEN;
2104 void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2107 return v == SEQ_START_TOKEN ? dev_base : ((struct net_device *)v)->next;
2110 void dev_seq_stop(struct seq_file *seq, void *v)
2112 read_unlock(&dev_base_lock);
2115 static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
2117 if (dev->get_stats) {
2118 struct net_device_stats *stats = dev->get_stats(dev);
2120 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
2121 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
2122 dev->name, stats->rx_bytes, stats->rx_packets,
2124 stats->rx_dropped + stats->rx_missed_errors,
2125 stats->rx_fifo_errors,
2126 stats->rx_length_errors + stats->rx_over_errors +
2127 stats->rx_crc_errors + stats->rx_frame_errors,
2128 stats->rx_compressed, stats->multicast,
2129 stats->tx_bytes, stats->tx_packets,
2130 stats->tx_errors, stats->tx_dropped,
2131 stats->tx_fifo_errors, stats->collisions,
2132 stats->tx_carrier_errors +
2133 stats->tx_aborted_errors +
2134 stats->tx_window_errors +
2135 stats->tx_heartbeat_errors,
2136 stats->tx_compressed);
2138 seq_printf(seq, "%6s: No statistics available.\n", dev->name);
2142 * Called from the PROCfs module. This now uses the new arbitrary sized
2143 * /proc/net interface to create /proc/net/dev
2145 static int dev_seq_show(struct seq_file *seq, void *v)
2147 if (v == SEQ_START_TOKEN)
2148 seq_puts(seq, "Inter-| Receive "
2150 " face |bytes packets errs drop fifo frame "
2151 "compressed multicast|bytes packets errs "
2152 "drop fifo colls carrier compressed\n");
2154 dev_seq_printf_stats(seq, v);
2158 static struct netif_rx_stats *softnet_get_online(loff_t *pos)
2160 struct netif_rx_stats *rc = NULL;
2162 while (*pos < NR_CPUS)
2163 if (cpu_online(*pos)) {
2164 rc = &per_cpu(netdev_rx_stat, *pos);
2171 static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
2173 return softnet_get_online(pos);
2176 static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2179 return softnet_get_online(pos);
2182 static void softnet_seq_stop(struct seq_file *seq, void *v)
2186 static int softnet_seq_show(struct seq_file *seq, void *v)
2188 struct netif_rx_stats *s = v;
2190 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
2191 s->total, s->dropped, s->time_squeeze, 0,
2192 0, 0, 0, 0, /* was fastroute */
2197 static struct seq_operations dev_seq_ops = {
2198 .start = dev_seq_start,
2199 .next = dev_seq_next,
2200 .stop = dev_seq_stop,
2201 .show = dev_seq_show,
2204 static int dev_seq_open(struct inode *inode, struct file *file)
2206 return seq_open(file, &dev_seq_ops);
2209 static struct file_operations dev_seq_fops = {
2210 .owner = THIS_MODULE,
2211 .open = dev_seq_open,
2213 .llseek = seq_lseek,
2214 .release = seq_release,
2217 static struct seq_operations softnet_seq_ops = {
2218 .start = softnet_seq_start,
2219 .next = softnet_seq_next,
2220 .stop = softnet_seq_stop,
2221 .show = softnet_seq_show,
2224 static int softnet_seq_open(struct inode *inode, struct file *file)
2226 return seq_open(file, &softnet_seq_ops);
2229 static struct file_operations softnet_seq_fops = {
2230 .owner = THIS_MODULE,
2231 .open = softnet_seq_open,
2233 .llseek = seq_lseek,
2234 .release = seq_release,
2237 #ifdef CONFIG_WIRELESS_EXT
2238 extern int wireless_proc_init(void);
2240 #define wireless_proc_init() 0
2243 static int __init dev_proc_init(void)
2247 if (!proc_net_fops_create("dev", S_IRUGO, &dev_seq_fops))
2249 if (!proc_net_fops_create("softnet_stat", S_IRUGO, &softnet_seq_fops))
2251 if (wireless_proc_init())
2257 proc_net_remove("softnet_stat");
2259 proc_net_remove("dev");
2263 #define dev_proc_init() 0
2264 #endif /* CONFIG_PROC_FS */
2268 * netdev_set_master - set up master/slave pair
2269 * @slave: slave device
2270 * @master: new master device
2272 * Changes the master device of the slave. Pass %NULL to break the
2273 * bonding. The caller must hold the RTNL semaphore. On a failure
2274 * a negative errno code is returned. On success the reference counts
2275 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
2276 * function returns zero.
2278 int netdev_set_master(struct net_device *slave, struct net_device *master)
2280 struct net_device *old = slave->master;
2290 slave->master = master;
2298 slave->flags |= IFF_SLAVE;
2300 slave->flags &= ~IFF_SLAVE;
2302 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
2307 * dev_set_promiscuity - update promiscuity count on a device
2311 * Add or remove promiscuity from a device. While the count in the device
2312 * remains above zero the interface remains promiscuous. Once it hits zero
2313 * the device reverts back to normal filtering operation. A negative inc
2314 * value is used to drop promiscuity on the device.
2316 void dev_set_promiscuity(struct net_device *dev, int inc)
2318 unsigned short old_flags = dev->flags;
2320 if ((dev->promiscuity += inc) == 0)
2321 dev->flags &= ~IFF_PROMISC;
2323 dev->flags |= IFF_PROMISC;
2324 if (dev->flags != old_flags) {
2326 printk(KERN_INFO "device %s %s promiscuous mode\n",
2327 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
2329 audit_log(current->audit_context, GFP_ATOMIC,
2330 AUDIT_ANOM_PROMISCUOUS,
2331 "dev=%s prom=%d old_prom=%d auid=%u",
2332 dev->name, (dev->flags & IFF_PROMISC),
2333 (old_flags & IFF_PROMISC),
2334 audit_get_loginuid(current->audit_context));
2339 * dev_set_allmulti - update allmulti count on a device
2343 * Add or remove reception of all multicast frames to a device. While the
2344 * count in the device remains above zero the interface remains listening
2345 * to all interfaces. Once it hits zero the device reverts back to normal
2346 * filtering operation. A negative @inc value is used to drop the counter
2347 * when releasing a resource needing all multicasts.
2350 void dev_set_allmulti(struct net_device *dev, int inc)
2352 unsigned short old_flags = dev->flags;
2354 dev->flags |= IFF_ALLMULTI;
2355 if ((dev->allmulti += inc) == 0)
2356 dev->flags &= ~IFF_ALLMULTI;
2357 if (dev->flags ^ old_flags)
2361 unsigned dev_get_flags(const struct net_device *dev)
2365 flags = (dev->flags & ~(IFF_PROMISC |
2370 (dev->gflags & (IFF_PROMISC |
2373 if (netif_running(dev)) {
2374 if (netif_oper_up(dev))
2375 flags |= IFF_RUNNING;
2376 if (netif_carrier_ok(dev))
2377 flags |= IFF_LOWER_UP;
2378 if (netif_dormant(dev))
2379 flags |= IFF_DORMANT;
2385 int dev_change_flags(struct net_device *dev, unsigned flags)
2388 int old_flags = dev->flags;
2391 * Set the flags on our device.
2394 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
2395 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
2397 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
2401 * Load in the correct multicast list now the flags have changed.
2407 * Have we downed the interface. We handle IFF_UP ourselves
2408 * according to user attempts to set it, rather than blindly
2413 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
2414 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
2420 if (dev->flags & IFF_UP &&
2421 ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
2423 raw_notifier_call_chain(&netdev_chain,
2424 NETDEV_CHANGE, dev);
2426 if ((flags ^ dev->gflags) & IFF_PROMISC) {
2427 int inc = (flags & IFF_PROMISC) ? +1 : -1;
2428 dev->gflags ^= IFF_PROMISC;
2429 dev_set_promiscuity(dev, inc);
2432 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
2433 is important. Some (broken) drivers set IFF_PROMISC, when
2434 IFF_ALLMULTI is requested not asking us and not reporting.
2436 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
2437 int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
2438 dev->gflags ^= IFF_ALLMULTI;
2439 dev_set_allmulti(dev, inc);
2442 if (old_flags ^ dev->flags)
2443 rtmsg_ifinfo(RTM_NEWLINK, dev, old_flags ^ dev->flags);
2448 int dev_set_mtu(struct net_device *dev, int new_mtu)
2452 if (new_mtu == dev->mtu)
2455 /* MTU must be positive. */
2459 if (!netif_device_present(dev))
2463 if (dev->change_mtu)
2464 err = dev->change_mtu(dev, new_mtu);
2467 if (!err && dev->flags & IFF_UP)
2468 raw_notifier_call_chain(&netdev_chain,
2469 NETDEV_CHANGEMTU, dev);
2473 int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
2477 if (!dev->set_mac_address)
2479 if (sa->sa_family != dev->type)
2481 if (!netif_device_present(dev))
2483 err = dev->set_mac_address(dev, sa);
2485 raw_notifier_call_chain(&netdev_chain,
2486 NETDEV_CHANGEADDR, dev);
2491 * Perform the SIOCxIFxxx calls.
2493 static int dev_ifsioc(struct ifreq *ifr, unsigned int cmd)
2496 struct net_device *dev = __dev_get_by_name(ifr->ifr_name);
2502 case SIOCGIFFLAGS: /* Get interface flags */
2503 ifr->ifr_flags = dev_get_flags(dev);
2506 case SIOCSIFFLAGS: /* Set interface flags */
2507 return dev_change_flags(dev, ifr->ifr_flags);
2509 case SIOCGIFMETRIC: /* Get the metric on the interface
2510 (currently unused) */
2511 ifr->ifr_metric = 0;
2514 case SIOCSIFMETRIC: /* Set the metric on the interface
2515 (currently unused) */
2518 case SIOCGIFMTU: /* Get the MTU of a device */
2519 ifr->ifr_mtu = dev->mtu;
2522 case SIOCSIFMTU: /* Set the MTU of a device */
2523 return dev_set_mtu(dev, ifr->ifr_mtu);
2527 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
2529 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
2530 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
2531 ifr->ifr_hwaddr.sa_family = dev->type;
2535 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
2537 case SIOCSIFHWBROADCAST:
2538 if (ifr->ifr_hwaddr.sa_family != dev->type)
2540 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
2541 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
2542 raw_notifier_call_chain(&netdev_chain,
2543 NETDEV_CHANGEADDR, dev);
2547 ifr->ifr_map.mem_start = dev->mem_start;
2548 ifr->ifr_map.mem_end = dev->mem_end;
2549 ifr->ifr_map.base_addr = dev->base_addr;
2550 ifr->ifr_map.irq = dev->irq;
2551 ifr->ifr_map.dma = dev->dma;
2552 ifr->ifr_map.port = dev->if_port;
2556 if (dev->set_config) {
2557 if (!netif_device_present(dev))
2559 return dev->set_config(dev, &ifr->ifr_map);
2564 if (!dev->set_multicast_list ||
2565 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
2567 if (!netif_device_present(dev))
2569 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
2573 if (!dev->set_multicast_list ||
2574 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
2576 if (!netif_device_present(dev))
2578 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
2582 ifr->ifr_ifindex = dev->ifindex;
2586 ifr->ifr_qlen = dev->tx_queue_len;
2590 if (ifr->ifr_qlen < 0)
2592 dev->tx_queue_len = ifr->ifr_qlen;
2596 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
2597 return dev_change_name(dev, ifr->ifr_newname);
2600 * Unknown or private ioctl
2604 if ((cmd >= SIOCDEVPRIVATE &&
2605 cmd <= SIOCDEVPRIVATE + 15) ||
2606 cmd == SIOCBONDENSLAVE ||
2607 cmd == SIOCBONDRELEASE ||
2608 cmd == SIOCBONDSETHWADDR ||
2609 cmd == SIOCBONDSLAVEINFOQUERY ||
2610 cmd == SIOCBONDINFOQUERY ||
2611 cmd == SIOCBONDCHANGEACTIVE ||
2612 cmd == SIOCGMIIPHY ||
2613 cmd == SIOCGMIIREG ||
2614 cmd == SIOCSMIIREG ||
2615 cmd == SIOCBRADDIF ||
2616 cmd == SIOCBRDELIF ||
2617 cmd == SIOCWANDEV) {
2619 if (dev->do_ioctl) {
2620 if (netif_device_present(dev))
2621 err = dev->do_ioctl(dev, ifr,
2634 * This function handles all "interface"-type I/O control requests. The actual
2635 * 'doing' part of this is dev_ifsioc above.
2639 * dev_ioctl - network device ioctl
2640 * @cmd: command to issue
2641 * @arg: pointer to a struct ifreq in user space
2643 * Issue ioctl functions to devices. This is normally called by the
2644 * user space syscall interfaces but can sometimes be useful for
2645 * other purposes. The return value is the return from the syscall if
2646 * positive or a negative errno code on error.
2649 int dev_ioctl(unsigned int cmd, void __user *arg)
2655 /* One special case: SIOCGIFCONF takes ifconf argument
2656 and requires shared lock, because it sleeps writing
2660 if (cmd == SIOCGIFCONF) {
2662 ret = dev_ifconf((char __user *) arg);
2666 if (cmd == SIOCGIFNAME)
2667 return dev_ifname((struct ifreq __user *)arg);
2669 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2672 ifr.ifr_name[IFNAMSIZ-1] = 0;
2674 colon = strchr(ifr.ifr_name, ':');
2679 * See which interface the caller is talking about.
2684 * These ioctl calls:
2685 * - can be done by all.
2686 * - atomic and do not require locking.
2697 dev_load(ifr.ifr_name);
2698 read_lock(&dev_base_lock);
2699 ret = dev_ifsioc(&ifr, cmd);
2700 read_unlock(&dev_base_lock);
2704 if (copy_to_user(arg, &ifr,
2705 sizeof(struct ifreq)))
2711 dev_load(ifr.ifr_name);
2713 ret = dev_ethtool(&ifr);
2718 if (copy_to_user(arg, &ifr,
2719 sizeof(struct ifreq)))
2725 * These ioctl calls:
2726 * - require superuser power.
2727 * - require strict serialization.
2733 if (!capable(CAP_NET_ADMIN))
2735 dev_load(ifr.ifr_name);
2737 ret = dev_ifsioc(&ifr, cmd);
2742 if (copy_to_user(arg, &ifr,
2743 sizeof(struct ifreq)))
2749 * These ioctl calls:
2750 * - require superuser power.
2751 * - require strict serialization.
2752 * - do not return a value
2762 case SIOCSIFHWBROADCAST:
2765 case SIOCBONDENSLAVE:
2766 case SIOCBONDRELEASE:
2767 case SIOCBONDSETHWADDR:
2768 case SIOCBONDCHANGEACTIVE:
2771 if (!capable(CAP_NET_ADMIN))
2774 case SIOCBONDSLAVEINFOQUERY:
2775 case SIOCBONDINFOQUERY:
2776 dev_load(ifr.ifr_name);
2778 ret = dev_ifsioc(&ifr, cmd);
2783 /* Get the per device memory space. We can add this but
2784 * currently do not support it */
2786 /* Set the per device memory buffer space.
2787 * Not applicable in our case */
2792 * Unknown or private ioctl.
2795 if (cmd == SIOCWANDEV ||
2796 (cmd >= SIOCDEVPRIVATE &&
2797 cmd <= SIOCDEVPRIVATE + 15)) {
2798 dev_load(ifr.ifr_name);
2800 ret = dev_ifsioc(&ifr, cmd);
2802 if (!ret && copy_to_user(arg, &ifr,
2803 sizeof(struct ifreq)))
2807 #ifdef CONFIG_WIRELESS_EXT
2808 /* Take care of Wireless Extensions */
2809 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
2810 /* If command is `set a parameter', or
2811 * `get the encoding parameters', check if
2812 * the user has the right to do it */
2813 if (IW_IS_SET(cmd) || cmd == SIOCGIWENCODE
2814 || cmd == SIOCGIWENCODEEXT) {
2815 if (!capable(CAP_NET_ADMIN))
2818 dev_load(ifr.ifr_name);
2820 /* Follow me in net/core/wireless.c */
2821 ret = wireless_process_ioctl(&ifr, cmd);
2823 if (IW_IS_GET(cmd) &&
2824 copy_to_user(arg, &ifr,
2825 sizeof(struct ifreq)))
2829 #endif /* CONFIG_WIRELESS_EXT */
2836 * dev_new_index - allocate an ifindex
2838 * Returns a suitable unique value for a new device interface
2839 * number. The caller must hold the rtnl semaphore or the
2840 * dev_base_lock to be sure it remains unique.
2842 static int dev_new_index(void)
2848 if (!__dev_get_by_index(ifindex))
2853 static int dev_boot_phase = 1;
2855 /* Delayed registration/unregisteration */
2856 static DEFINE_SPINLOCK(net_todo_list_lock);
2857 static struct list_head net_todo_list = LIST_HEAD_INIT(net_todo_list);
2859 static inline void net_set_todo(struct net_device *dev)
2861 spin_lock(&net_todo_list_lock);
2862 list_add_tail(&dev->todo_list, &net_todo_list);
2863 spin_unlock(&net_todo_list_lock);
2867 * register_netdevice - register a network device
2868 * @dev: device to register
2870 * Take a completed network device structure and add it to the kernel
2871 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
2872 * chain. 0 is returned on success. A negative errno code is returned
2873 * on a failure to set up the device, or if the name is a duplicate.
2875 * Callers must hold the rtnl semaphore. You may want
2876 * register_netdev() instead of this.
2879 * The locking appears insufficient to guarantee two parallel registers
2880 * will not get the same name.
2883 int register_netdevice(struct net_device *dev)
2885 struct hlist_head *head;
2886 struct hlist_node *p;
2889 BUG_ON(dev_boot_phase);
2894 /* When net_device's are persistent, this will be fatal. */
2895 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
2897 spin_lock_init(&dev->queue_lock);
2898 spin_lock_init(&dev->_xmit_lock);
2899 dev->xmit_lock_owner = -1;
2900 #ifdef CONFIG_NET_CLS_ACT
2901 spin_lock_init(&dev->ingress_lock);
2904 ret = alloc_divert_blk(dev);
2910 /* Init, if this function is available */
2912 ret = dev->init(dev);
2920 if (!dev_valid_name(dev->name)) {
2925 dev->ifindex = dev_new_index();
2926 if (dev->iflink == -1)
2927 dev->iflink = dev->ifindex;
2929 /* Check for existence of name */
2930 head = dev_name_hash(dev->name);
2931 hlist_for_each(p, head) {
2932 struct net_device *d
2933 = hlist_entry(p, struct net_device, name_hlist);
2934 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
2940 /* Fix illegal SG+CSUM combinations. */
2941 if ((dev->features & NETIF_F_SG) &&
2942 !(dev->features & NETIF_F_ALL_CSUM)) {
2943 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
2945 dev->features &= ~NETIF_F_SG;
2948 /* TSO requires that SG is present as well. */
2949 if ((dev->features & NETIF_F_TSO) &&
2950 !(dev->features & NETIF_F_SG)) {
2951 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no SG feature.\n",
2953 dev->features &= ~NETIF_F_TSO;
2955 if (dev->features & NETIF_F_UFO) {
2956 if (!(dev->features & NETIF_F_HW_CSUM)) {
2957 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
2958 "NETIF_F_HW_CSUM feature.\n",
2960 dev->features &= ~NETIF_F_UFO;
2962 if (!(dev->features & NETIF_F_SG)) {
2963 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
2964 "NETIF_F_SG feature.\n",
2966 dev->features &= ~NETIF_F_UFO;
2971 * nil rebuild_header routine,
2972 * that should be never called and used as just bug trap.
2975 if (!dev->rebuild_header)
2976 dev->rebuild_header = default_rebuild_header;
2978 ret = netdev_register_sysfs(dev);
2981 dev->reg_state = NETREG_REGISTERED;
2984 * Default initial state at registry is that the
2985 * device is present.
2988 set_bit(__LINK_STATE_PRESENT, &dev->state);
2991 dev_init_scheduler(dev);
2992 write_lock_bh(&dev_base_lock);
2994 dev_tail = &dev->next;
2995 hlist_add_head(&dev->name_hlist, head);
2996 hlist_add_head(&dev->index_hlist, dev_index_hash(dev->ifindex));
2998 write_unlock_bh(&dev_base_lock);
3000 /* Notify protocols, that a new device appeared. */
3001 raw_notifier_call_chain(&netdev_chain, NETDEV_REGISTER, dev);
3008 free_divert_blk(dev);
3013 * register_netdev - register a network device
3014 * @dev: device to register
3016 * Take a completed network device structure and add it to the kernel
3017 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3018 * chain. 0 is returned on success. A negative errno code is returned
3019 * on a failure to set up the device, or if the name is a duplicate.
3021 * This is a wrapper around register_netdev that takes the rtnl semaphore
3022 * and expands the device name if you passed a format string to
3025 int register_netdev(struct net_device *dev)
3032 * If the name is a format string the caller wants us to do a
3035 if (strchr(dev->name, '%')) {
3036 err = dev_alloc_name(dev, dev->name);
3042 * Back compatibility hook. Kill this one in 2.5
3044 if (dev->name[0] == 0 || dev->name[0] == ' ') {
3045 err = dev_alloc_name(dev, "eth%d");
3050 err = register_netdevice(dev);
3055 EXPORT_SYMBOL(register_netdev);
3058 * netdev_wait_allrefs - wait until all references are gone.
3060 * This is called when unregistering network devices.
3062 * Any protocol or device that holds a reference should register
3063 * for netdevice notification, and cleanup and put back the
3064 * reference if they receive an UNREGISTER event.
3065 * We can get stuck here if buggy protocols don't correctly
3068 static void netdev_wait_allrefs(struct net_device *dev)
3070 unsigned long rebroadcast_time, warning_time;
3072 rebroadcast_time = warning_time = jiffies;
3073 while (atomic_read(&dev->refcnt) != 0) {
3074 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
3077 /* Rebroadcast unregister notification */
3078 raw_notifier_call_chain(&netdev_chain,
3079 NETDEV_UNREGISTER, dev);
3081 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
3083 /* We must not have linkwatch events
3084 * pending on unregister. If this
3085 * happens, we simply run the queue
3086 * unscheduled, resulting in a noop
3089 linkwatch_run_queue();
3094 rebroadcast_time = jiffies;
3099 if (time_after(jiffies, warning_time + 10 * HZ)) {
3100 printk(KERN_EMERG "unregister_netdevice: "
3101 "waiting for %s to become free. Usage "
3103 dev->name, atomic_read(&dev->refcnt));
3104 warning_time = jiffies;
3113 * register_netdevice(x1);
3114 * register_netdevice(x2);
3116 * unregister_netdevice(y1);
3117 * unregister_netdevice(y2);
3123 * We are invoked by rtnl_unlock() after it drops the semaphore.
3124 * This allows us to deal with problems:
3125 * 1) We can delete sysfs objects which invoke hotplug
3126 * without deadlocking with linkwatch via keventd.
3127 * 2) Since we run with the RTNL semaphore not held, we can sleep
3128 * safely in order to wait for the netdev refcnt to drop to zero.
3130 static DEFINE_MUTEX(net_todo_run_mutex);
3131 void netdev_run_todo(void)
3133 struct list_head list;
3135 /* Need to guard against multiple cpu's getting out of order. */
3136 mutex_lock(&net_todo_run_mutex);
3138 /* Not safe to do outside the semaphore. We must not return
3139 * until all unregister events invoked by the local processor
3140 * have been completed (either by this todo run, or one on
3143 if (list_empty(&net_todo_list))
3146 /* Snapshot list, allow later requests */
3147 spin_lock(&net_todo_list_lock);
3148 list_replace_init(&net_todo_list, &list);
3149 spin_unlock(&net_todo_list_lock);
3151 while (!list_empty(&list)) {
3152 struct net_device *dev
3153 = list_entry(list.next, struct net_device, todo_list);
3154 list_del(&dev->todo_list);
3156 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
3157 printk(KERN_ERR "network todo '%s' but state %d\n",
3158 dev->name, dev->reg_state);
3163 netdev_unregister_sysfs(dev);
3164 dev->reg_state = NETREG_UNREGISTERED;
3166 netdev_wait_allrefs(dev);
3169 BUG_ON(atomic_read(&dev->refcnt));
3170 BUG_TRAP(!dev->ip_ptr);
3171 BUG_TRAP(!dev->ip6_ptr);
3172 BUG_TRAP(!dev->dn_ptr);
3174 /* It must be the very last action,
3175 * after this 'dev' may point to freed up memory.
3177 if (dev->destructor)
3178 dev->destructor(dev);
3182 mutex_unlock(&net_todo_run_mutex);
3186 * alloc_netdev - allocate network device
3187 * @sizeof_priv: size of private data to allocate space for
3188 * @name: device name format string
3189 * @setup: callback to initialize device
3191 * Allocates a struct net_device with private data area for driver use
3192 * and performs basic initialization.
3194 struct net_device *alloc_netdev(int sizeof_priv, const char *name,
3195 void (*setup)(struct net_device *))
3198 struct net_device *dev;
3201 /* ensure 32-byte alignment of both the device and private area */
3202 alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST;
3203 alloc_size += sizeof_priv + NETDEV_ALIGN_CONST;
3205 p = kzalloc(alloc_size, GFP_KERNEL);
3207 printk(KERN_ERR "alloc_dev: Unable to allocate device.\n");
3211 dev = (struct net_device *)
3212 (((long)p + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
3213 dev->padded = (char *)dev - (char *)p;
3216 dev->priv = netdev_priv(dev);
3219 strcpy(dev->name, name);
3222 EXPORT_SYMBOL(alloc_netdev);
3225 * free_netdev - free network device
3228 * This function does the last stage of destroying an allocated device
3229 * interface. The reference to the device object is released.
3230 * If this is the last reference then it will be freed.
3232 void free_netdev(struct net_device *dev)
3235 /* Compatibility with error handling in drivers */
3236 if (dev->reg_state == NETREG_UNINITIALIZED) {
3237 kfree((char *)dev - dev->padded);
3241 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
3242 dev->reg_state = NETREG_RELEASED;
3244 /* will free via class release */
3245 class_device_put(&dev->class_dev);
3247 kfree((char *)dev - dev->padded);
3251 /* Synchronize with packet receive processing. */
3252 void synchronize_net(void)
3259 * unregister_netdevice - remove device from the kernel
3262 * This function shuts down a device interface and removes it
3263 * from the kernel tables. On success 0 is returned, on a failure
3264 * a negative errno code is returned.
3266 * Callers must hold the rtnl semaphore. You may want
3267 * unregister_netdev() instead of this.
3270 int unregister_netdevice(struct net_device *dev)
3272 struct net_device *d, **dp;
3274 BUG_ON(dev_boot_phase);
3277 /* Some devices call without registering for initialization unwind. */
3278 if (dev->reg_state == NETREG_UNINITIALIZED) {
3279 printk(KERN_DEBUG "unregister_netdevice: device %s/%p never "
3280 "was registered\n", dev->name, dev);
3284 BUG_ON(dev->reg_state != NETREG_REGISTERED);
3286 /* If device is running, close it first. */
3287 if (dev->flags & IFF_UP)
3290 /* And unlink it from device chain. */
3291 for (dp = &dev_base; (d = *dp) != NULL; dp = &d->next) {
3293 write_lock_bh(&dev_base_lock);
3294 hlist_del(&dev->name_hlist);
3295 hlist_del(&dev->index_hlist);
3296 if (dev_tail == &dev->next)
3299 write_unlock_bh(&dev_base_lock);
3304 printk(KERN_ERR "unregister net_device: '%s' not found\n",
3309 dev->reg_state = NETREG_UNREGISTERING;
3313 /* Shutdown queueing discipline. */
3317 /* Notify protocols, that we are about to destroy
3318 this device. They should clean all the things.
3320 raw_notifier_call_chain(&netdev_chain, NETDEV_UNREGISTER, dev);
3323 * Flush the multicast chain
3325 dev_mc_discard(dev);
3330 /* Notifier chain MUST detach us from master device. */
3331 BUG_TRAP(!dev->master);
3333 free_divert_blk(dev);
3335 /* Finish processing unregister after unlock */
3345 * unregister_netdev - remove device from the kernel
3348 * This function shuts down a device interface and removes it
3349 * from the kernel tables. On success 0 is returned, on a failure
3350 * a negative errno code is returned.
3352 * This is just a wrapper for unregister_netdevice that takes
3353 * the rtnl semaphore. In general you want to use this and not
3354 * unregister_netdevice.
3356 void unregister_netdev(struct net_device *dev)
3359 unregister_netdevice(dev);
3363 EXPORT_SYMBOL(unregister_netdev);
3365 #ifdef CONFIG_HOTPLUG_CPU
3366 static int dev_cpu_callback(struct notifier_block *nfb,
3367 unsigned long action,
3370 struct sk_buff **list_skb;
3371 struct net_device **list_net;
3372 struct sk_buff *skb;
3373 unsigned int cpu, oldcpu = (unsigned long)ocpu;
3374 struct softnet_data *sd, *oldsd;
3376 if (action != CPU_DEAD)
3379 local_irq_disable();
3380 cpu = smp_processor_id();
3381 sd = &per_cpu(softnet_data, cpu);
3382 oldsd = &per_cpu(softnet_data, oldcpu);
3384 /* Find end of our completion_queue. */
3385 list_skb = &sd->completion_queue;
3387 list_skb = &(*list_skb)->next;
3388 /* Append completion queue from offline CPU. */
3389 *list_skb = oldsd->completion_queue;
3390 oldsd->completion_queue = NULL;
3392 /* Find end of our output_queue. */
3393 list_net = &sd->output_queue;
3395 list_net = &(*list_net)->next_sched;
3396 /* Append output queue from offline CPU. */
3397 *list_net = oldsd->output_queue;
3398 oldsd->output_queue = NULL;
3400 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3403 /* Process offline CPU's input_pkt_queue */
3404 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
3409 #endif /* CONFIG_HOTPLUG_CPU */
3411 #ifdef CONFIG_NET_DMA
3413 * net_dma_rebalance -
3414 * This is called when the number of channels allocated to the net_dma_client
3415 * changes. The net_dma_client tries to have one DMA channel per CPU.
3417 static void net_dma_rebalance(void)
3419 unsigned int cpu, i, n;
3420 struct dma_chan *chan;
3422 if (net_dma_count == 0) {
3423 for_each_online_cpu(cpu)
3424 rcu_assign_pointer(per_cpu(softnet_data, cpu).net_dma, NULL);
3429 cpu = first_cpu(cpu_online_map);
3432 list_for_each_entry(chan, &net_dma_client->channels, client_node) {
3433 n = ((num_online_cpus() / net_dma_count)
3434 + (i < (num_online_cpus() % net_dma_count) ? 1 : 0));
3437 per_cpu(softnet_data, cpu).net_dma = chan;
3438 cpu = next_cpu(cpu, cpu_online_map);
3447 * netdev_dma_event - event callback for the net_dma_client
3448 * @client: should always be net_dma_client
3449 * @chan: DMA channel for the event
3450 * @event: event type
3452 static void netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
3453 enum dma_event event)
3455 spin_lock(&net_dma_event_lock);
3457 case DMA_RESOURCE_ADDED:
3459 net_dma_rebalance();
3461 case DMA_RESOURCE_REMOVED:
3463 net_dma_rebalance();
3468 spin_unlock(&net_dma_event_lock);
3472 * netdev_dma_regiser - register the networking subsystem as a DMA client
3474 static int __init netdev_dma_register(void)
3476 spin_lock_init(&net_dma_event_lock);
3477 net_dma_client = dma_async_client_register(netdev_dma_event);
3478 if (net_dma_client == NULL)
3481 dma_async_client_chan_request(net_dma_client, num_online_cpus());
3486 static int __init netdev_dma_register(void) { return -ENODEV; }
3487 #endif /* CONFIG_NET_DMA */
3490 * Initialize the DEV module. At boot time this walks the device list and
3491 * unhooks any devices that fail to initialise (normally hardware not
3492 * present) and leaves us with a valid list of present and active devices.
3497 * This is called single threaded during boot, so no need
3498 * to take the rtnl semaphore.
3500 static int __init net_dev_init(void)
3502 int i, rc = -ENOMEM;
3504 BUG_ON(!dev_boot_phase);
3508 if (dev_proc_init())
3511 if (netdev_sysfs_init())
3514 INIT_LIST_HEAD(&ptype_all);
3515 for (i = 0; i < 16; i++)
3516 INIT_LIST_HEAD(&ptype_base[i]);
3518 for (i = 0; i < ARRAY_SIZE(dev_name_head); i++)
3519 INIT_HLIST_HEAD(&dev_name_head[i]);
3521 for (i = 0; i < ARRAY_SIZE(dev_index_head); i++)
3522 INIT_HLIST_HEAD(&dev_index_head[i]);
3525 * Initialise the packet receive queues.
3528 for_each_possible_cpu(i) {
3529 struct softnet_data *queue;
3531 queue = &per_cpu(softnet_data, i);
3532 skb_queue_head_init(&queue->input_pkt_queue);
3533 queue->completion_queue = NULL;
3534 INIT_LIST_HEAD(&queue->poll_list);
3535 set_bit(__LINK_STATE_START, &queue->backlog_dev.state);
3536 queue->backlog_dev.weight = weight_p;
3537 queue->backlog_dev.poll = process_backlog;
3538 atomic_set(&queue->backlog_dev.refcnt, 1);
3541 netdev_dma_register();
3545 open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
3546 open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
3548 hotcpu_notifier(dev_cpu_callback, 0);
3556 subsys_initcall(net_dev_init);
3558 EXPORT_SYMBOL(__dev_get_by_index);
3559 EXPORT_SYMBOL(__dev_get_by_name);
3560 EXPORT_SYMBOL(__dev_remove_pack);
3561 EXPORT_SYMBOL(dev_valid_name);
3562 EXPORT_SYMBOL(dev_add_pack);
3563 EXPORT_SYMBOL(dev_alloc_name);
3564 EXPORT_SYMBOL(dev_close);
3565 EXPORT_SYMBOL(dev_get_by_flags);
3566 EXPORT_SYMBOL(dev_get_by_index);
3567 EXPORT_SYMBOL(dev_get_by_name);
3568 EXPORT_SYMBOL(dev_open);
3569 EXPORT_SYMBOL(dev_queue_xmit);
3570 EXPORT_SYMBOL(dev_remove_pack);
3571 EXPORT_SYMBOL(dev_set_allmulti);
3572 EXPORT_SYMBOL(dev_set_promiscuity);
3573 EXPORT_SYMBOL(dev_change_flags);
3574 EXPORT_SYMBOL(dev_set_mtu);
3575 EXPORT_SYMBOL(dev_set_mac_address);
3576 EXPORT_SYMBOL(free_netdev);
3577 EXPORT_SYMBOL(netdev_boot_setup_check);
3578 EXPORT_SYMBOL(netdev_set_master);
3579 EXPORT_SYMBOL(netdev_state_change);
3580 EXPORT_SYMBOL(netif_receive_skb);
3581 EXPORT_SYMBOL(netif_rx);
3582 EXPORT_SYMBOL(register_gifconf);
3583 EXPORT_SYMBOL(register_netdevice);
3584 EXPORT_SYMBOL(register_netdevice_notifier);
3585 EXPORT_SYMBOL(skb_checksum_help);
3586 EXPORT_SYMBOL(synchronize_net);
3587 EXPORT_SYMBOL(unregister_netdevice);
3588 EXPORT_SYMBOL(unregister_netdevice_notifier);
3589 EXPORT_SYMBOL(net_enable_timestamp);
3590 EXPORT_SYMBOL(net_disable_timestamp);
3591 EXPORT_SYMBOL(dev_get_flags);
3593 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
3594 EXPORT_SYMBOL(br_handle_frame_hook);
3595 EXPORT_SYMBOL(br_fdb_get_hook);
3596 EXPORT_SYMBOL(br_fdb_put_hook);
3600 EXPORT_SYMBOL(dev_load);
3603 EXPORT_PER_CPU_SYMBOL(softnet_data);