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>
119 #include <linux/ctype.h>
122 * The list of packet types we will receive (as opposed to discard)
123 * and the routines to invoke.
125 * Why 16. Because with 16 the only overlap we get on a hash of the
126 * low nibble of the protocol value is RARP/SNAP/X.25.
128 * NOTE: That is no longer true with the addition of VLAN tags. Not
129 * sure which should go first, but I bet it won't make much
130 * difference if we are running VLANs. The good news is that
131 * this protocol won't be in the list unless compiled in, so
132 * the average user (w/out VLANs) will not be adversely affected.
149 static DEFINE_SPINLOCK(ptype_lock);
150 static struct list_head ptype_base[16]; /* 16 way hashed list */
151 static struct list_head ptype_all; /* Taps */
153 #ifdef CONFIG_NET_DMA
154 static struct dma_client *net_dma_client;
155 static unsigned int net_dma_count;
156 static spinlock_t net_dma_event_lock;
160 * The @dev_base list is protected by @dev_base_lock and the rtnl
163 * Pure readers hold dev_base_lock for reading.
165 * Writers must hold the rtnl semaphore while they loop through the
166 * dev_base list, and hold dev_base_lock for writing when they do the
167 * actual updates. This allows pure readers to access the list even
168 * while a writer is preparing to update it.
170 * To put it another way, dev_base_lock is held for writing only to
171 * protect against pure readers; the rtnl semaphore provides the
172 * protection against other writers.
174 * See, for example usages, register_netdevice() and
175 * unregister_netdevice(), which must be called with the rtnl
178 struct net_device *dev_base;
179 static struct net_device **dev_tail = &dev_base;
180 DEFINE_RWLOCK(dev_base_lock);
182 EXPORT_SYMBOL(dev_base);
183 EXPORT_SYMBOL(dev_base_lock);
185 #define NETDEV_HASHBITS 8
186 static struct hlist_head dev_name_head[1<<NETDEV_HASHBITS];
187 static struct hlist_head dev_index_head[1<<NETDEV_HASHBITS];
189 static inline struct hlist_head *dev_name_hash(const char *name)
191 unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
192 return &dev_name_head[hash & ((1<<NETDEV_HASHBITS)-1)];
195 static inline struct hlist_head *dev_index_hash(int ifindex)
197 return &dev_index_head[ifindex & ((1<<NETDEV_HASHBITS)-1)];
204 static RAW_NOTIFIER_HEAD(netdev_chain);
207 * Device drivers call our routines to queue packets here. We empty the
208 * queue in the local softnet handler.
210 DEFINE_PER_CPU(struct softnet_data, softnet_data) = { NULL };
213 extern int netdev_sysfs_init(void);
214 extern int netdev_register_sysfs(struct net_device *);
215 extern void netdev_unregister_sysfs(struct net_device *);
217 #define netdev_sysfs_init() (0)
218 #define netdev_register_sysfs(dev) (0)
219 #define netdev_unregister_sysfs(dev) do { } while(0)
223 /*******************************************************************************
225 Protocol management and registration routines
227 *******************************************************************************/
233 static int netdev_nit;
236 * Add a protocol ID to the list. Now that the input handler is
237 * smarter we can dispense with all the messy stuff that used to be
240 * BEWARE!!! Protocol handlers, mangling input packets,
241 * MUST BE last in hash buckets and checking protocol handlers
242 * MUST start from promiscuous ptype_all chain in net_bh.
243 * It is true now, do not change it.
244 * Explanation follows: if protocol handler, mangling packet, will
245 * be the first on list, it is not able to sense, that packet
246 * is cloned and should be copied-on-write, so that it will
247 * change it and subsequent readers will get broken packet.
252 * dev_add_pack - add packet handler
253 * @pt: packet type declaration
255 * Add a protocol handler to the networking stack. The passed &packet_type
256 * is linked into kernel lists and may not be freed until it has been
257 * removed from the kernel lists.
259 * This call does not sleep therefore it can not
260 * guarantee all CPU's that are in middle of receiving packets
261 * will see the new packet type (until the next received packet).
264 void dev_add_pack(struct packet_type *pt)
268 spin_lock_bh(&ptype_lock);
269 if (pt->type == htons(ETH_P_ALL)) {
271 list_add_rcu(&pt->list, &ptype_all);
273 hash = ntohs(pt->type) & 15;
274 list_add_rcu(&pt->list, &ptype_base[hash]);
276 spin_unlock_bh(&ptype_lock);
280 * __dev_remove_pack - remove packet handler
281 * @pt: packet type declaration
283 * Remove a protocol handler that was previously added to the kernel
284 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
285 * from the kernel lists and can be freed or reused once this function
288 * The packet type might still be in use by receivers
289 * and must not be freed until after all the CPU's have gone
290 * through a quiescent state.
292 void __dev_remove_pack(struct packet_type *pt)
294 struct list_head *head;
295 struct packet_type *pt1;
297 spin_lock_bh(&ptype_lock);
299 if (pt->type == htons(ETH_P_ALL)) {
303 head = &ptype_base[ntohs(pt->type) & 15];
305 list_for_each_entry(pt1, head, list) {
307 list_del_rcu(&pt->list);
312 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
314 spin_unlock_bh(&ptype_lock);
317 * dev_remove_pack - remove packet handler
318 * @pt: packet type declaration
320 * Remove a protocol handler that was previously added to the kernel
321 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
322 * from the kernel lists and can be freed or reused once this function
325 * This call sleeps to guarantee that no CPU is looking at the packet
328 void dev_remove_pack(struct packet_type *pt)
330 __dev_remove_pack(pt);
335 /******************************************************************************
337 Device Boot-time Settings Routines
339 *******************************************************************************/
341 /* Boot time configuration table */
342 static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
345 * netdev_boot_setup_add - add new setup entry
346 * @name: name of the device
347 * @map: configured settings for the device
349 * Adds new setup entry to the dev_boot_setup list. The function
350 * returns 0 on error and 1 on success. This is a generic routine to
353 static int netdev_boot_setup_add(char *name, struct ifmap *map)
355 struct netdev_boot_setup *s;
359 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
360 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
361 memset(s[i].name, 0, sizeof(s[i].name));
362 strcpy(s[i].name, name);
363 memcpy(&s[i].map, map, sizeof(s[i].map));
368 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
372 * netdev_boot_setup_check - check boot time settings
373 * @dev: the netdevice
375 * Check boot time settings for the device.
376 * The found settings are set for the device to be used
377 * later in the device probing.
378 * Returns 0 if no settings found, 1 if they are.
380 int netdev_boot_setup_check(struct net_device *dev)
382 struct netdev_boot_setup *s = dev_boot_setup;
385 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
386 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
387 !strncmp(dev->name, s[i].name, strlen(s[i].name))) {
388 dev->irq = s[i].map.irq;
389 dev->base_addr = s[i].map.base_addr;
390 dev->mem_start = s[i].map.mem_start;
391 dev->mem_end = s[i].map.mem_end;
400 * netdev_boot_base - get address from boot time settings
401 * @prefix: prefix for network device
402 * @unit: id for network device
404 * Check boot time settings for the base address of device.
405 * The found settings are set for the device to be used
406 * later in the device probing.
407 * Returns 0 if no settings found.
409 unsigned long netdev_boot_base(const char *prefix, int unit)
411 const struct netdev_boot_setup *s = dev_boot_setup;
415 sprintf(name, "%s%d", prefix, unit);
418 * If device already registered then return base of 1
419 * to indicate not to probe for this interface
421 if (__dev_get_by_name(name))
424 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
425 if (!strcmp(name, s[i].name))
426 return s[i].map.base_addr;
431 * Saves at boot time configured settings for any netdevice.
433 int __init netdev_boot_setup(char *str)
438 str = get_options(str, ARRAY_SIZE(ints), ints);
443 memset(&map, 0, sizeof(map));
447 map.base_addr = ints[2];
449 map.mem_start = ints[3];
451 map.mem_end = ints[4];
453 /* Add new entry to the list */
454 return netdev_boot_setup_add(str, &map);
457 __setup("netdev=", netdev_boot_setup);
459 /*******************************************************************************
461 Device Interface Subroutines
463 *******************************************************************************/
466 * __dev_get_by_name - find a device by its name
467 * @name: name to find
469 * Find an interface by name. Must be called under RTNL semaphore
470 * or @dev_base_lock. If the name is found a pointer to the device
471 * is returned. If the name is not found then %NULL is returned. The
472 * reference counters are not incremented so the caller must be
473 * careful with locks.
476 struct net_device *__dev_get_by_name(const char *name)
478 struct hlist_node *p;
480 hlist_for_each(p, dev_name_hash(name)) {
481 struct net_device *dev
482 = hlist_entry(p, struct net_device, name_hlist);
483 if (!strncmp(dev->name, name, IFNAMSIZ))
490 * dev_get_by_name - find a device by its name
491 * @name: name to find
493 * Find an interface by name. This can be called from any
494 * context and does its own locking. The returned handle has
495 * the usage count incremented and the caller must use dev_put() to
496 * release it when it is no longer needed. %NULL is returned if no
497 * matching device is found.
500 struct net_device *dev_get_by_name(const char *name)
502 struct net_device *dev;
504 read_lock(&dev_base_lock);
505 dev = __dev_get_by_name(name);
508 read_unlock(&dev_base_lock);
513 * __dev_get_by_index - find a device by its ifindex
514 * @ifindex: index of device
516 * Search for an interface by index. Returns %NULL if the device
517 * is not found or a pointer to the device. The device has not
518 * had its reference counter increased so the caller must be careful
519 * about locking. The caller must hold either the RTNL semaphore
523 struct net_device *__dev_get_by_index(int ifindex)
525 struct hlist_node *p;
527 hlist_for_each(p, dev_index_hash(ifindex)) {
528 struct net_device *dev
529 = hlist_entry(p, struct net_device, index_hlist);
530 if (dev->ifindex == ifindex)
538 * dev_get_by_index - find a device by its ifindex
539 * @ifindex: index of device
541 * Search for an interface by index. Returns NULL if the device
542 * is not found or a pointer to the device. The device returned has
543 * had a reference added and the pointer is safe until the user calls
544 * dev_put to indicate they have finished with it.
547 struct net_device *dev_get_by_index(int ifindex)
549 struct net_device *dev;
551 read_lock(&dev_base_lock);
552 dev = __dev_get_by_index(ifindex);
555 read_unlock(&dev_base_lock);
560 * dev_getbyhwaddr - find a device by its hardware address
561 * @type: media type of device
562 * @ha: hardware address
564 * Search for an interface by MAC address. Returns NULL if the device
565 * is not found or a pointer to the device. The caller must hold the
566 * rtnl semaphore. The returned device has not had its ref count increased
567 * and the caller must therefore be careful about locking
570 * If the API was consistent this would be __dev_get_by_hwaddr
573 struct net_device *dev_getbyhwaddr(unsigned short type, char *ha)
575 struct net_device *dev;
579 for (dev = dev_base; dev; dev = dev->next)
580 if (dev->type == type &&
581 !memcmp(dev->dev_addr, ha, dev->addr_len))
586 EXPORT_SYMBOL(dev_getbyhwaddr);
588 struct net_device *dev_getfirstbyhwtype(unsigned short type)
590 struct net_device *dev;
593 for (dev = dev_base; dev; dev = dev->next) {
594 if (dev->type == type) {
603 EXPORT_SYMBOL(dev_getfirstbyhwtype);
606 * dev_get_by_flags - find any device with given flags
607 * @if_flags: IFF_* values
608 * @mask: bitmask of bits in if_flags to check
610 * Search for any interface with the given flags. Returns NULL if a device
611 * is not found or a pointer to the device. The device returned has
612 * had a reference added and the pointer is safe until the user calls
613 * dev_put to indicate they have finished with it.
616 struct net_device * dev_get_by_flags(unsigned short if_flags, unsigned short mask)
618 struct net_device *dev;
620 read_lock(&dev_base_lock);
621 for (dev = dev_base; dev != NULL; dev = dev->next) {
622 if (((dev->flags ^ if_flags) & mask) == 0) {
627 read_unlock(&dev_base_lock);
632 * dev_valid_name - check if name is okay for network device
635 * Network device names need to be valid file names to
636 * to allow sysfs to work. We also disallow any kind of
639 int dev_valid_name(const char *name)
643 if (strlen(name) >= IFNAMSIZ)
645 if (!strcmp(name, ".") || !strcmp(name, ".."))
649 if (*name == '/' || isspace(*name))
657 * dev_alloc_name - allocate a name for a device
659 * @name: name format string
661 * Passed a format string - eg "lt%d" it will try and find a suitable
662 * id. It scans list of devices to build up a free map, then chooses
663 * the first empty slot. The caller must hold the dev_base or rtnl lock
664 * while allocating the name and adding the device in order to avoid
666 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
667 * Returns the number of the unit assigned or a negative errno code.
670 int dev_alloc_name(struct net_device *dev, const char *name)
675 const int max_netdevices = 8*PAGE_SIZE;
677 struct net_device *d;
679 p = strnchr(name, IFNAMSIZ-1, '%');
682 * Verify the string as this thing may have come from
683 * the user. There must be either one "%d" and no other "%"
686 if (p[1] != 'd' || strchr(p + 2, '%'))
689 /* Use one page as a bit array of possible slots */
690 inuse = (long *) get_zeroed_page(GFP_ATOMIC);
694 for (d = dev_base; d; d = d->next) {
695 if (!sscanf(d->name, name, &i))
697 if (i < 0 || i >= max_netdevices)
700 /* avoid cases where sscanf is not exact inverse of printf */
701 snprintf(buf, sizeof(buf), name, i);
702 if (!strncmp(buf, d->name, IFNAMSIZ))
706 i = find_first_zero_bit(inuse, max_netdevices);
707 free_page((unsigned long) inuse);
710 snprintf(buf, sizeof(buf), name, i);
711 if (!__dev_get_by_name(buf)) {
712 strlcpy(dev->name, buf, IFNAMSIZ);
716 /* It is possible to run out of possible slots
717 * when the name is long and there isn't enough space left
718 * for the digits, or if all bits are used.
725 * dev_change_name - change name of a device
727 * @newname: name (or format string) must be at least IFNAMSIZ
729 * Change name of a device, can pass format strings "eth%d".
732 int dev_change_name(struct net_device *dev, char *newname)
738 if (dev->flags & IFF_UP)
741 if (!dev_valid_name(newname))
744 if (strchr(newname, '%')) {
745 err = dev_alloc_name(dev, newname);
748 strcpy(newname, dev->name);
750 else if (__dev_get_by_name(newname))
753 strlcpy(dev->name, newname, IFNAMSIZ);
755 err = class_device_rename(&dev->class_dev, dev->name);
757 hlist_del(&dev->name_hlist);
758 hlist_add_head(&dev->name_hlist, dev_name_hash(dev->name));
759 raw_notifier_call_chain(&netdev_chain,
760 NETDEV_CHANGENAME, dev);
767 * netdev_features_change - device changes features
768 * @dev: device to cause notification
770 * Called to indicate a device has changed features.
772 void netdev_features_change(struct net_device *dev)
774 raw_notifier_call_chain(&netdev_chain, NETDEV_FEAT_CHANGE, dev);
776 EXPORT_SYMBOL(netdev_features_change);
779 * netdev_state_change - device changes state
780 * @dev: device to cause notification
782 * Called to indicate a device has changed state. This function calls
783 * the notifier chains for netdev_chain and sends a NEWLINK message
784 * to the routing socket.
786 void netdev_state_change(struct net_device *dev)
788 if (dev->flags & IFF_UP) {
789 raw_notifier_call_chain(&netdev_chain,
791 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
796 * dev_load - load a network module
797 * @name: name of interface
799 * If a network interface is not present and the process has suitable
800 * privileges this function loads the module. If module loading is not
801 * available in this kernel then it becomes a nop.
804 void dev_load(const char *name)
806 struct net_device *dev;
808 read_lock(&dev_base_lock);
809 dev = __dev_get_by_name(name);
810 read_unlock(&dev_base_lock);
812 if (!dev && capable(CAP_SYS_MODULE))
813 request_module("%s", name);
816 static int default_rebuild_header(struct sk_buff *skb)
818 printk(KERN_DEBUG "%s: default_rebuild_header called -- BUG!\n",
819 skb->dev ? skb->dev->name : "NULL!!!");
826 * dev_open - prepare an interface for use.
827 * @dev: device to open
829 * Takes a device from down to up state. The device's private open
830 * function is invoked and then the multicast lists are loaded. Finally
831 * the device is moved into the up state and a %NETDEV_UP message is
832 * sent to the netdev notifier chain.
834 * Calling this function on an active interface is a nop. On a failure
835 * a negative errno code is returned.
837 int dev_open(struct net_device *dev)
845 if (dev->flags & IFF_UP)
849 * Is it even present?
851 if (!netif_device_present(dev))
855 * Call device private open method
857 set_bit(__LINK_STATE_START, &dev->state);
859 ret = dev->open(dev);
861 clear_bit(__LINK_STATE_START, &dev->state);
865 * If it went open OK then:
872 dev->flags |= IFF_UP;
875 * Initialize multicasting status
880 * Wakeup transmit queue engine
885 * ... and announce new interface.
887 raw_notifier_call_chain(&netdev_chain, NETDEV_UP, dev);
893 * dev_close - shutdown an interface.
894 * @dev: device to shutdown
896 * This function moves an active device into down state. A
897 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
898 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
901 int dev_close(struct net_device *dev)
903 if (!(dev->flags & IFF_UP))
907 * Tell people we are going down, so that they can
908 * prepare to death, when device is still operating.
910 raw_notifier_call_chain(&netdev_chain, NETDEV_GOING_DOWN, dev);
914 clear_bit(__LINK_STATE_START, &dev->state);
916 /* Synchronize to scheduled poll. We cannot touch poll list,
917 * it can be even on different cpu. So just clear netif_running(),
918 * and wait when poll really will happen. Actually, the best place
919 * for this is inside dev->stop() after device stopped its irq
920 * engine, but this requires more changes in devices. */
922 smp_mb__after_clear_bit(); /* Commit netif_running(). */
923 while (test_bit(__LINK_STATE_RX_SCHED, &dev->state)) {
929 * Call the device specific close. This cannot fail.
930 * Only if device is UP
932 * We allow it to be called even after a DETACH hot-plug
939 * Device is now down.
942 dev->flags &= ~IFF_UP;
945 * Tell people we are down
947 raw_notifier_call_chain(&netdev_chain, NETDEV_DOWN, dev);
954 * Device change register/unregister. These are not inline or static
955 * as we export them to the world.
959 * register_netdevice_notifier - register a network notifier block
962 * Register a notifier to be called when network device events occur.
963 * The notifier passed is linked into the kernel structures and must
964 * not be reused until it has been unregistered. A negative errno code
965 * is returned on a failure.
967 * When registered all registration and up events are replayed
968 * to the new notifier to allow device to have a race free
969 * view of the network device list.
972 int register_netdevice_notifier(struct notifier_block *nb)
974 struct net_device *dev;
978 err = raw_notifier_chain_register(&netdev_chain, nb);
980 for (dev = dev_base; dev; dev = dev->next) {
981 nb->notifier_call(nb, NETDEV_REGISTER, dev);
983 if (dev->flags & IFF_UP)
984 nb->notifier_call(nb, NETDEV_UP, dev);
992 * unregister_netdevice_notifier - unregister a network notifier block
995 * Unregister a notifier previously registered by
996 * register_netdevice_notifier(). The notifier is unlinked into the
997 * kernel structures and may then be reused. A negative errno code
998 * is returned on a failure.
1001 int unregister_netdevice_notifier(struct notifier_block *nb)
1006 err = raw_notifier_chain_unregister(&netdev_chain, nb);
1012 * call_netdevice_notifiers - call all network notifier blocks
1013 * @val: value passed unmodified to notifier function
1014 * @v: pointer passed unmodified to notifier function
1016 * Call all network notifier blocks. Parameters and return value
1017 * are as for raw_notifier_call_chain().
1020 int call_netdevice_notifiers(unsigned long val, void *v)
1022 return raw_notifier_call_chain(&netdev_chain, val, v);
1025 /* When > 0 there are consumers of rx skb time stamps */
1026 static atomic_t netstamp_needed = ATOMIC_INIT(0);
1028 void net_enable_timestamp(void)
1030 atomic_inc(&netstamp_needed);
1033 void net_disable_timestamp(void)
1035 atomic_dec(&netstamp_needed);
1038 void __net_timestamp(struct sk_buff *skb)
1042 do_gettimeofday(&tv);
1043 skb_set_timestamp(skb, &tv);
1045 EXPORT_SYMBOL(__net_timestamp);
1047 static inline void net_timestamp(struct sk_buff *skb)
1049 if (atomic_read(&netstamp_needed))
1050 __net_timestamp(skb);
1052 skb->tstamp.off_sec = 0;
1053 skb->tstamp.off_usec = 0;
1058 * Support routine. Sends outgoing frames to any network
1059 * taps currently in use.
1062 static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1064 struct packet_type *ptype;
1069 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1070 /* Never send packets back to the socket
1071 * they originated from - MvS (miquels@drinkel.ow.org)
1073 if ((ptype->dev == dev || !ptype->dev) &&
1074 (ptype->af_packet_priv == NULL ||
1075 (struct sock *)ptype->af_packet_priv != skb->sk)) {
1076 struct sk_buff *skb2= skb_clone(skb, GFP_ATOMIC);
1080 /* skb->nh should be correctly
1081 set by sender, so that the second statement is
1082 just protection against buggy protocols.
1084 skb2->mac.raw = skb2->data;
1086 if (skb2->nh.raw < skb2->data ||
1087 skb2->nh.raw > skb2->tail) {
1088 if (net_ratelimit())
1089 printk(KERN_CRIT "protocol %04x is "
1091 skb2->protocol, dev->name);
1092 skb2->nh.raw = skb2->data;
1095 skb2->h.raw = skb2->nh.raw;
1096 skb2->pkt_type = PACKET_OUTGOING;
1097 ptype->func(skb2, skb->dev, ptype, skb->dev);
1104 void __netif_schedule(struct net_device *dev)
1106 if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
1107 unsigned long flags;
1108 struct softnet_data *sd;
1110 local_irq_save(flags);
1111 sd = &__get_cpu_var(softnet_data);
1112 dev->next_sched = sd->output_queue;
1113 sd->output_queue = dev;
1114 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1115 local_irq_restore(flags);
1118 EXPORT_SYMBOL(__netif_schedule);
1120 void __netif_rx_schedule(struct net_device *dev)
1122 unsigned long flags;
1124 local_irq_save(flags);
1126 list_add_tail(&dev->poll_list, &__get_cpu_var(softnet_data).poll_list);
1128 dev->quota += dev->weight;
1130 dev->quota = dev->weight;
1131 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
1132 local_irq_restore(flags);
1134 EXPORT_SYMBOL(__netif_rx_schedule);
1136 void dev_kfree_skb_any(struct sk_buff *skb)
1138 if (in_irq() || irqs_disabled())
1139 dev_kfree_skb_irq(skb);
1143 EXPORT_SYMBOL(dev_kfree_skb_any);
1147 void netif_device_detach(struct net_device *dev)
1149 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1150 netif_running(dev)) {
1151 netif_stop_queue(dev);
1154 EXPORT_SYMBOL(netif_device_detach);
1156 void netif_device_attach(struct net_device *dev)
1158 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1159 netif_running(dev)) {
1160 netif_wake_queue(dev);
1161 __netdev_watchdog_up(dev);
1164 EXPORT_SYMBOL(netif_device_attach);
1168 * Invalidate hardware checksum when packet is to be mangled, and
1169 * complete checksum manually on outgoing path.
1171 int skb_checksum_help(struct sk_buff *skb)
1174 int ret = 0, offset = skb->h.raw - skb->data;
1176 if (skb->ip_summed == CHECKSUM_COMPLETE)
1177 goto out_set_summed;
1179 if (unlikely(skb_shinfo(skb)->gso_size)) {
1180 /* Let GSO fix up the checksum. */
1181 goto out_set_summed;
1184 if (skb_cloned(skb)) {
1185 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1190 BUG_ON(offset > (int)skb->len);
1191 csum = skb_checksum(skb, offset, skb->len-offset, 0);
1193 offset = skb->tail - skb->h.raw;
1194 BUG_ON(offset <= 0);
1195 BUG_ON(skb->csum + 2 > offset);
1197 *(u16*)(skb->h.raw + skb->csum) = csum_fold(csum);
1200 skb->ip_summed = CHECKSUM_NONE;
1206 * skb_gso_segment - Perform segmentation on skb.
1207 * @skb: buffer to segment
1208 * @features: features for the output path (see dev->features)
1210 * This function segments the given skb and returns a list of segments.
1212 * It may return NULL if the skb requires no segmentation. This is
1213 * only possible when GSO is used for verifying header integrity.
1215 struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
1217 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1218 struct packet_type *ptype;
1219 int type = skb->protocol;
1222 BUG_ON(skb_shinfo(skb)->frag_list);
1224 skb->mac.raw = skb->data;
1225 skb->mac_len = skb->nh.raw - skb->data;
1226 __skb_pull(skb, skb->mac_len);
1228 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
1229 if (skb_header_cloned(skb) &&
1230 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1231 return ERR_PTR(err);
1235 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type) & 15], list) {
1236 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
1237 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
1238 err = ptype->gso_send_check(skb);
1239 segs = ERR_PTR(err);
1240 if (err || skb_gso_ok(skb, features))
1242 __skb_push(skb, skb->data - skb->nh.raw);
1244 segs = ptype->gso_segment(skb, features);
1250 __skb_push(skb, skb->data - skb->mac.raw);
1255 EXPORT_SYMBOL(skb_gso_segment);
1257 /* Take action when hardware reception checksum errors are detected. */
1259 void netdev_rx_csum_fault(struct net_device *dev)
1261 if (net_ratelimit()) {
1262 printk(KERN_ERR "%s: hw csum failure.\n",
1263 dev ? dev->name : "<unknown>");
1267 EXPORT_SYMBOL(netdev_rx_csum_fault);
1270 /* Actually, we should eliminate this check as soon as we know, that:
1271 * 1. IOMMU is present and allows to map all the memory.
1272 * 2. No high memory really exists on this machine.
1275 static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1277 #ifdef CONFIG_HIGHMEM
1280 if (dev->features & NETIF_F_HIGHDMA)
1283 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1284 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1292 void (*destructor)(struct sk_buff *skb);
1295 #define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1297 static void dev_gso_skb_destructor(struct sk_buff *skb)
1299 struct dev_gso_cb *cb;
1302 struct sk_buff *nskb = skb->next;
1304 skb->next = nskb->next;
1307 } while (skb->next);
1309 cb = DEV_GSO_CB(skb);
1311 cb->destructor(skb);
1315 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1316 * @skb: buffer to segment
1318 * This function segments the given skb and stores the list of segments
1321 static int dev_gso_segment(struct sk_buff *skb)
1323 struct net_device *dev = skb->dev;
1324 struct sk_buff *segs;
1325 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1328 segs = skb_gso_segment(skb, features);
1330 /* Verifying header integrity only. */
1334 if (unlikely(IS_ERR(segs)))
1335 return PTR_ERR(segs);
1338 DEV_GSO_CB(skb)->destructor = skb->destructor;
1339 skb->destructor = dev_gso_skb_destructor;
1344 int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1346 if (likely(!skb->next)) {
1348 dev_queue_xmit_nit(skb, dev);
1350 if (netif_needs_gso(dev, skb)) {
1351 if (unlikely(dev_gso_segment(skb)))
1357 return dev->hard_start_xmit(skb, dev);
1362 struct sk_buff *nskb = skb->next;
1365 skb->next = nskb->next;
1367 rc = dev->hard_start_xmit(nskb, dev);
1369 nskb->next = skb->next;
1373 if (unlikely(netif_queue_stopped(dev) && skb->next))
1374 return NETDEV_TX_BUSY;
1375 } while (skb->next);
1377 skb->destructor = DEV_GSO_CB(skb)->destructor;
1384 #define HARD_TX_LOCK(dev, cpu) { \
1385 if ((dev->features & NETIF_F_LLTX) == 0) { \
1386 netif_tx_lock(dev); \
1390 #define HARD_TX_UNLOCK(dev) { \
1391 if ((dev->features & NETIF_F_LLTX) == 0) { \
1392 netif_tx_unlock(dev); \
1397 * dev_queue_xmit - transmit a buffer
1398 * @skb: buffer to transmit
1400 * Queue a buffer for transmission to a network device. The caller must
1401 * have set the device and priority and built the buffer before calling
1402 * this function. The function can be called from an interrupt.
1404 * A negative errno code is returned on a failure. A success does not
1405 * guarantee the frame will be transmitted as it may be dropped due
1406 * to congestion or traffic shaping.
1408 * -----------------------------------------------------------------------------------
1409 * I notice this method can also return errors from the queue disciplines,
1410 * including NET_XMIT_DROP, which is a positive value. So, errors can also
1413 * Regardless of the return value, the skb is consumed, so it is currently
1414 * difficult to retry a send to this method. (You can bump the ref count
1415 * before sending to hold a reference for retry if you are careful.)
1417 * When calling this method, interrupts MUST be enabled. This is because
1418 * the BH enable code must have IRQs enabled so that it will not deadlock.
1422 int dev_queue_xmit(struct sk_buff *skb)
1424 struct net_device *dev = skb->dev;
1428 /* GSO will handle the following emulations directly. */
1429 if (netif_needs_gso(dev, skb))
1432 if (skb_shinfo(skb)->frag_list &&
1433 !(dev->features & NETIF_F_FRAGLIST) &&
1434 __skb_linearize(skb))
1437 /* Fragmented skb is linearized if device does not support SG,
1438 * or if at least one of fragments is in highmem and device
1439 * does not support DMA from it.
1441 if (skb_shinfo(skb)->nr_frags &&
1442 (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
1443 __skb_linearize(skb))
1446 /* If packet is not checksummed and device does not support
1447 * checksumming for this protocol, complete checksumming here.
1449 if (skb->ip_summed == CHECKSUM_PARTIAL &&
1450 (!(dev->features & NETIF_F_GEN_CSUM) &&
1451 (!(dev->features & NETIF_F_IP_CSUM) ||
1452 skb->protocol != htons(ETH_P_IP))))
1453 if (skb_checksum_help(skb))
1457 spin_lock_prefetch(&dev->queue_lock);
1459 /* Disable soft irqs for various locks below. Also
1460 * stops preemption for RCU.
1464 /* Updates of qdisc are serialized by queue_lock.
1465 * The struct Qdisc which is pointed to by qdisc is now a
1466 * rcu structure - it may be accessed without acquiring
1467 * a lock (but the structure may be stale.) The freeing of the
1468 * qdisc will be deferred until it's known that there are no
1469 * more references to it.
1471 * If the qdisc has an enqueue function, we still need to
1472 * hold the queue_lock before calling it, since queue_lock
1473 * also serializes access to the device queue.
1476 q = rcu_dereference(dev->qdisc);
1477 #ifdef CONFIG_NET_CLS_ACT
1478 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_EGRESS);
1481 /* Grab device queue */
1482 spin_lock(&dev->queue_lock);
1484 rc = q->enqueue(skb, q);
1488 spin_unlock(&dev->queue_lock);
1489 rc = rc == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : rc;
1493 /* The device has no queue. Common case for software devices:
1494 loopback, all the sorts of tunnels...
1496 Really, it is unlikely that netif_tx_lock protection is necessary
1497 here. (f.e. loopback and IP tunnels are clean ignoring statistics
1499 However, it is possible, that they rely on protection
1502 Check this and shot the lock. It is not prone from deadlocks.
1503 Either shot noqueue qdisc, it is even simpler 8)
1505 if (dev->flags & IFF_UP) {
1506 int cpu = smp_processor_id(); /* ok because BHs are off */
1508 if (dev->xmit_lock_owner != cpu) {
1510 HARD_TX_LOCK(dev, cpu);
1512 if (!netif_queue_stopped(dev)) {
1514 if (!dev_hard_start_xmit(skb, dev)) {
1515 HARD_TX_UNLOCK(dev);
1519 HARD_TX_UNLOCK(dev);
1520 if (net_ratelimit())
1521 printk(KERN_CRIT "Virtual device %s asks to "
1522 "queue packet!\n", dev->name);
1524 /* Recursion is detected! It is possible,
1526 if (net_ratelimit())
1527 printk(KERN_CRIT "Dead loop on virtual device "
1528 "%s, fix it urgently!\n", dev->name);
1533 rcu_read_unlock_bh();
1539 rcu_read_unlock_bh();
1544 /*=======================================================================
1546 =======================================================================*/
1548 int netdev_max_backlog = 1000;
1549 int netdev_budget = 300;
1550 int weight_p = 64; /* old backlog weight */
1552 DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1556 * netif_rx - post buffer to the network code
1557 * @skb: buffer to post
1559 * This function receives a packet from a device driver and queues it for
1560 * the upper (protocol) levels to process. It always succeeds. The buffer
1561 * may be dropped during processing for congestion control or by the
1565 * NET_RX_SUCCESS (no congestion)
1566 * NET_RX_CN_LOW (low congestion)
1567 * NET_RX_CN_MOD (moderate congestion)
1568 * NET_RX_CN_HIGH (high congestion)
1569 * NET_RX_DROP (packet was dropped)
1573 int netif_rx(struct sk_buff *skb)
1575 struct softnet_data *queue;
1576 unsigned long flags;
1578 /* if netpoll wants it, pretend we never saw it */
1579 if (netpoll_rx(skb))
1582 if (!skb->tstamp.off_sec)
1586 * The code is rearranged so that the path is the most
1587 * short when CPU is congested, but is still operating.
1589 local_irq_save(flags);
1590 queue = &__get_cpu_var(softnet_data);
1592 __get_cpu_var(netdev_rx_stat).total++;
1593 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
1594 if (queue->input_pkt_queue.qlen) {
1597 __skb_queue_tail(&queue->input_pkt_queue, skb);
1598 local_irq_restore(flags);
1599 return NET_RX_SUCCESS;
1602 netif_rx_schedule(&queue->backlog_dev);
1606 __get_cpu_var(netdev_rx_stat).dropped++;
1607 local_irq_restore(flags);
1613 int netif_rx_ni(struct sk_buff *skb)
1618 err = netif_rx(skb);
1619 if (local_softirq_pending())
1626 EXPORT_SYMBOL(netif_rx_ni);
1628 static inline struct net_device *skb_bond(struct sk_buff *skb)
1630 struct net_device *dev = skb->dev;
1633 if (skb_bond_should_drop(skb)) {
1637 skb->dev = dev->master;
1643 static void net_tx_action(struct softirq_action *h)
1645 struct softnet_data *sd = &__get_cpu_var(softnet_data);
1647 if (sd->completion_queue) {
1648 struct sk_buff *clist;
1650 local_irq_disable();
1651 clist = sd->completion_queue;
1652 sd->completion_queue = NULL;
1656 struct sk_buff *skb = clist;
1657 clist = clist->next;
1659 BUG_TRAP(!atomic_read(&skb->users));
1664 if (sd->output_queue) {
1665 struct net_device *head;
1667 local_irq_disable();
1668 head = sd->output_queue;
1669 sd->output_queue = NULL;
1673 struct net_device *dev = head;
1674 head = head->next_sched;
1676 smp_mb__before_clear_bit();
1677 clear_bit(__LINK_STATE_SCHED, &dev->state);
1679 if (spin_trylock(&dev->queue_lock)) {
1681 spin_unlock(&dev->queue_lock);
1683 netif_schedule(dev);
1689 static __inline__ int deliver_skb(struct sk_buff *skb,
1690 struct packet_type *pt_prev,
1691 struct net_device *orig_dev)
1693 atomic_inc(&skb->users);
1694 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1697 #if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
1698 int (*br_handle_frame_hook)(struct net_bridge_port *p, struct sk_buff **pskb);
1700 struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
1701 unsigned char *addr);
1702 void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent);
1704 static __inline__ int handle_bridge(struct sk_buff **pskb,
1705 struct packet_type **pt_prev, int *ret,
1706 struct net_device *orig_dev)
1708 struct net_bridge_port *port;
1710 if ((*pskb)->pkt_type == PACKET_LOOPBACK ||
1711 (port = rcu_dereference((*pskb)->dev->br_port)) == NULL)
1715 *ret = deliver_skb(*pskb, *pt_prev, orig_dev);
1719 return br_handle_frame_hook(port, pskb);
1722 #define handle_bridge(skb, pt_prev, ret, orig_dev) (0)
1725 #ifdef CONFIG_NET_CLS_ACT
1726 /* TODO: Maybe we should just force sch_ingress to be compiled in
1727 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
1728 * a compare and 2 stores extra right now if we dont have it on
1729 * but have CONFIG_NET_CLS_ACT
1730 * NOTE: This doesnt stop any functionality; if you dont have
1731 * the ingress scheduler, you just cant add policies on ingress.
1734 static int ing_filter(struct sk_buff *skb)
1737 struct net_device *dev = skb->dev;
1738 int result = TC_ACT_OK;
1740 if (dev->qdisc_ingress) {
1741 __u32 ttl = (__u32) G_TC_RTTL(skb->tc_verd);
1742 if (MAX_RED_LOOP < ttl++) {
1743 printk(KERN_WARNING "Redir loop detected Dropping packet (%s->%s)\n",
1744 skb->input_dev->name, skb->dev->name);
1748 skb->tc_verd = SET_TC_RTTL(skb->tc_verd,ttl);
1750 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_INGRESS);
1752 spin_lock(&dev->ingress_lock);
1753 if ((q = dev->qdisc_ingress) != NULL)
1754 result = q->enqueue(skb, q);
1755 spin_unlock(&dev->ingress_lock);
1763 int netif_receive_skb(struct sk_buff *skb)
1765 struct packet_type *ptype, *pt_prev;
1766 struct net_device *orig_dev;
1767 int ret = NET_RX_DROP;
1768 unsigned short type;
1770 /* if we've gotten here through NAPI, check netpoll */
1771 if (skb->dev->poll && netpoll_rx(skb))
1774 if (!skb->tstamp.off_sec)
1777 if (!skb->input_dev)
1778 skb->input_dev = skb->dev;
1780 orig_dev = skb_bond(skb);
1785 __get_cpu_var(netdev_rx_stat).total++;
1787 skb->h.raw = skb->nh.raw = skb->data;
1788 skb->mac_len = skb->nh.raw - skb->mac.raw;
1794 #ifdef CONFIG_NET_CLS_ACT
1795 if (skb->tc_verd & TC_NCLS) {
1796 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
1801 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1802 if (!ptype->dev || ptype->dev == skb->dev) {
1804 ret = deliver_skb(skb, pt_prev, orig_dev);
1809 #ifdef CONFIG_NET_CLS_ACT
1811 ret = deliver_skb(skb, pt_prev, orig_dev);
1812 pt_prev = NULL; /* noone else should process this after*/
1814 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
1817 ret = ing_filter(skb);
1819 if (ret == TC_ACT_SHOT || (ret == TC_ACT_STOLEN)) {
1828 handle_diverter(skb);
1830 if (handle_bridge(&skb, &pt_prev, &ret, orig_dev))
1833 type = skb->protocol;
1834 list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type)&15], list) {
1835 if (ptype->type == type &&
1836 (!ptype->dev || ptype->dev == skb->dev)) {
1838 ret = deliver_skb(skb, pt_prev, orig_dev);
1844 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1847 /* Jamal, now you will not able to escape explaining
1848 * me how you were going to use this. :-)
1858 static int process_backlog(struct net_device *backlog_dev, int *budget)
1861 int quota = min(backlog_dev->quota, *budget);
1862 struct softnet_data *queue = &__get_cpu_var(softnet_data);
1863 unsigned long start_time = jiffies;
1865 backlog_dev->weight = weight_p;
1867 struct sk_buff *skb;
1868 struct net_device *dev;
1870 local_irq_disable();
1871 skb = __skb_dequeue(&queue->input_pkt_queue);
1878 netif_receive_skb(skb);
1884 if (work >= quota || jiffies - start_time > 1)
1889 backlog_dev->quota -= work;
1894 backlog_dev->quota -= work;
1897 list_del(&backlog_dev->poll_list);
1898 smp_mb__before_clear_bit();
1899 netif_poll_enable(backlog_dev);
1905 static void net_rx_action(struct softirq_action *h)
1907 struct softnet_data *queue = &__get_cpu_var(softnet_data);
1908 unsigned long start_time = jiffies;
1909 int budget = netdev_budget;
1912 local_irq_disable();
1914 while (!list_empty(&queue->poll_list)) {
1915 struct net_device *dev;
1917 if (budget <= 0 || jiffies - start_time > 1)
1922 dev = list_entry(queue->poll_list.next,
1923 struct net_device, poll_list);
1924 have = netpoll_poll_lock(dev);
1926 if (dev->quota <= 0 || dev->poll(dev, &budget)) {
1927 netpoll_poll_unlock(have);
1928 local_irq_disable();
1929 list_move_tail(&dev->poll_list, &queue->poll_list);
1931 dev->quota += dev->weight;
1933 dev->quota = dev->weight;
1935 netpoll_poll_unlock(have);
1937 local_irq_disable();
1941 #ifdef CONFIG_NET_DMA
1943 * There may not be any more sk_buffs coming right now, so push
1944 * any pending DMA copies to hardware
1946 if (net_dma_client) {
1947 struct dma_chan *chan;
1949 list_for_each_entry_rcu(chan, &net_dma_client->channels, client_node)
1950 dma_async_memcpy_issue_pending(chan);
1958 __get_cpu_var(netdev_rx_stat).time_squeeze++;
1959 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
1963 static gifconf_func_t * gifconf_list [NPROTO];
1966 * register_gifconf - register a SIOCGIF handler
1967 * @family: Address family
1968 * @gifconf: Function handler
1970 * Register protocol dependent address dumping routines. The handler
1971 * that is passed must not be freed or reused until it has been replaced
1972 * by another handler.
1974 int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
1976 if (family >= NPROTO)
1978 gifconf_list[family] = gifconf;
1984 * Map an interface index to its name (SIOCGIFNAME)
1988 * We need this ioctl for efficient implementation of the
1989 * if_indextoname() function required by the IPv6 API. Without
1990 * it, we would have to search all the interfaces to find a
1994 static int dev_ifname(struct ifreq __user *arg)
1996 struct net_device *dev;
2000 * Fetch the caller's info block.
2003 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2006 read_lock(&dev_base_lock);
2007 dev = __dev_get_by_index(ifr.ifr_ifindex);
2009 read_unlock(&dev_base_lock);
2013 strcpy(ifr.ifr_name, dev->name);
2014 read_unlock(&dev_base_lock);
2016 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
2022 * Perform a SIOCGIFCONF call. This structure will change
2023 * size eventually, and there is nothing I can do about it.
2024 * Thus we will need a 'compatibility mode'.
2027 static int dev_ifconf(char __user *arg)
2030 struct net_device *dev;
2037 * Fetch the caller's info block.
2040 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
2047 * Loop over the interfaces, and write an info block for each.
2051 for (dev = dev_base; dev; dev = dev->next) {
2052 for (i = 0; i < NPROTO; i++) {
2053 if (gifconf_list[i]) {
2056 done = gifconf_list[i](dev, NULL, 0);
2058 done = gifconf_list[i](dev, pos + total,
2068 * All done. Write the updated control block back to the caller.
2070 ifc.ifc_len = total;
2073 * Both BSD and Solaris return 0 here, so we do too.
2075 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
2078 #ifdef CONFIG_PROC_FS
2080 * This is invoked by the /proc filesystem handler to display a device
2083 static __inline__ struct net_device *dev_get_idx(loff_t pos)
2085 struct net_device *dev;
2088 for (i = 0, dev = dev_base; dev && i < pos; ++i, dev = dev->next);
2090 return i == pos ? dev : NULL;
2093 void *dev_seq_start(struct seq_file *seq, loff_t *pos)
2095 read_lock(&dev_base_lock);
2096 return *pos ? dev_get_idx(*pos - 1) : SEQ_START_TOKEN;
2099 void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2102 return v == SEQ_START_TOKEN ? dev_base : ((struct net_device *)v)->next;
2105 void dev_seq_stop(struct seq_file *seq, void *v)
2107 read_unlock(&dev_base_lock);
2110 static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
2112 if (dev->get_stats) {
2113 struct net_device_stats *stats = dev->get_stats(dev);
2115 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
2116 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
2117 dev->name, stats->rx_bytes, stats->rx_packets,
2119 stats->rx_dropped + stats->rx_missed_errors,
2120 stats->rx_fifo_errors,
2121 stats->rx_length_errors + stats->rx_over_errors +
2122 stats->rx_crc_errors + stats->rx_frame_errors,
2123 stats->rx_compressed, stats->multicast,
2124 stats->tx_bytes, stats->tx_packets,
2125 stats->tx_errors, stats->tx_dropped,
2126 stats->tx_fifo_errors, stats->collisions,
2127 stats->tx_carrier_errors +
2128 stats->tx_aborted_errors +
2129 stats->tx_window_errors +
2130 stats->tx_heartbeat_errors,
2131 stats->tx_compressed);
2133 seq_printf(seq, "%6s: No statistics available.\n", dev->name);
2137 * Called from the PROCfs module. This now uses the new arbitrary sized
2138 * /proc/net interface to create /proc/net/dev
2140 static int dev_seq_show(struct seq_file *seq, void *v)
2142 if (v == SEQ_START_TOKEN)
2143 seq_puts(seq, "Inter-| Receive "
2145 " face |bytes packets errs drop fifo frame "
2146 "compressed multicast|bytes packets errs "
2147 "drop fifo colls carrier compressed\n");
2149 dev_seq_printf_stats(seq, v);
2153 static struct netif_rx_stats *softnet_get_online(loff_t *pos)
2155 struct netif_rx_stats *rc = NULL;
2157 while (*pos < NR_CPUS)
2158 if (cpu_online(*pos)) {
2159 rc = &per_cpu(netdev_rx_stat, *pos);
2166 static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
2168 return softnet_get_online(pos);
2171 static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2174 return softnet_get_online(pos);
2177 static void softnet_seq_stop(struct seq_file *seq, void *v)
2181 static int softnet_seq_show(struct seq_file *seq, void *v)
2183 struct netif_rx_stats *s = v;
2185 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
2186 s->total, s->dropped, s->time_squeeze, 0,
2187 0, 0, 0, 0, /* was fastroute */
2192 static struct seq_operations dev_seq_ops = {
2193 .start = dev_seq_start,
2194 .next = dev_seq_next,
2195 .stop = dev_seq_stop,
2196 .show = dev_seq_show,
2199 static int dev_seq_open(struct inode *inode, struct file *file)
2201 return seq_open(file, &dev_seq_ops);
2204 static struct file_operations dev_seq_fops = {
2205 .owner = THIS_MODULE,
2206 .open = dev_seq_open,
2208 .llseek = seq_lseek,
2209 .release = seq_release,
2212 static struct seq_operations softnet_seq_ops = {
2213 .start = softnet_seq_start,
2214 .next = softnet_seq_next,
2215 .stop = softnet_seq_stop,
2216 .show = softnet_seq_show,
2219 static int softnet_seq_open(struct inode *inode, struct file *file)
2221 return seq_open(file, &softnet_seq_ops);
2224 static struct file_operations softnet_seq_fops = {
2225 .owner = THIS_MODULE,
2226 .open = softnet_seq_open,
2228 .llseek = seq_lseek,
2229 .release = seq_release,
2232 #ifdef CONFIG_WIRELESS_EXT
2233 extern int wireless_proc_init(void);
2235 #define wireless_proc_init() 0
2238 static int __init dev_proc_init(void)
2242 if (!proc_net_fops_create("dev", S_IRUGO, &dev_seq_fops))
2244 if (!proc_net_fops_create("softnet_stat", S_IRUGO, &softnet_seq_fops))
2246 if (wireless_proc_init())
2252 proc_net_remove("softnet_stat");
2254 proc_net_remove("dev");
2258 #define dev_proc_init() 0
2259 #endif /* CONFIG_PROC_FS */
2263 * netdev_set_master - set up master/slave pair
2264 * @slave: slave device
2265 * @master: new master device
2267 * Changes the master device of the slave. Pass %NULL to break the
2268 * bonding. The caller must hold the RTNL semaphore. On a failure
2269 * a negative errno code is returned. On success the reference counts
2270 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
2271 * function returns zero.
2273 int netdev_set_master(struct net_device *slave, struct net_device *master)
2275 struct net_device *old = slave->master;
2285 slave->master = master;
2293 slave->flags |= IFF_SLAVE;
2295 slave->flags &= ~IFF_SLAVE;
2297 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
2302 * dev_set_promiscuity - update promiscuity count on a device
2306 * Add or remove promiscuity from a device. While the count in the device
2307 * remains above zero the interface remains promiscuous. Once it hits zero
2308 * the device reverts back to normal filtering operation. A negative inc
2309 * value is used to drop promiscuity on the device.
2311 void dev_set_promiscuity(struct net_device *dev, int inc)
2313 unsigned short old_flags = dev->flags;
2315 if ((dev->promiscuity += inc) == 0)
2316 dev->flags &= ~IFF_PROMISC;
2318 dev->flags |= IFF_PROMISC;
2319 if (dev->flags != old_flags) {
2321 printk(KERN_INFO "device %s %s promiscuous mode\n",
2322 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
2324 audit_log(current->audit_context, GFP_ATOMIC,
2325 AUDIT_ANOM_PROMISCUOUS,
2326 "dev=%s prom=%d old_prom=%d auid=%u",
2327 dev->name, (dev->flags & IFF_PROMISC),
2328 (old_flags & IFF_PROMISC),
2329 audit_get_loginuid(current->audit_context));
2334 * dev_set_allmulti - update allmulti count on a device
2338 * Add or remove reception of all multicast frames to a device. While the
2339 * count in the device remains above zero the interface remains listening
2340 * to all interfaces. Once it hits zero the device reverts back to normal
2341 * filtering operation. A negative @inc value is used to drop the counter
2342 * when releasing a resource needing all multicasts.
2345 void dev_set_allmulti(struct net_device *dev, int inc)
2347 unsigned short old_flags = dev->flags;
2349 dev->flags |= IFF_ALLMULTI;
2350 if ((dev->allmulti += inc) == 0)
2351 dev->flags &= ~IFF_ALLMULTI;
2352 if (dev->flags ^ old_flags)
2356 unsigned dev_get_flags(const struct net_device *dev)
2360 flags = (dev->flags & ~(IFF_PROMISC |
2365 (dev->gflags & (IFF_PROMISC |
2368 if (netif_running(dev)) {
2369 if (netif_oper_up(dev))
2370 flags |= IFF_RUNNING;
2371 if (netif_carrier_ok(dev))
2372 flags |= IFF_LOWER_UP;
2373 if (netif_dormant(dev))
2374 flags |= IFF_DORMANT;
2380 int dev_change_flags(struct net_device *dev, unsigned flags)
2383 int old_flags = dev->flags;
2386 * Set the flags on our device.
2389 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
2390 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
2392 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
2396 * Load in the correct multicast list now the flags have changed.
2402 * Have we downed the interface. We handle IFF_UP ourselves
2403 * according to user attempts to set it, rather than blindly
2408 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
2409 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
2415 if (dev->flags & IFF_UP &&
2416 ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
2418 raw_notifier_call_chain(&netdev_chain,
2419 NETDEV_CHANGE, dev);
2421 if ((flags ^ dev->gflags) & IFF_PROMISC) {
2422 int inc = (flags & IFF_PROMISC) ? +1 : -1;
2423 dev->gflags ^= IFF_PROMISC;
2424 dev_set_promiscuity(dev, inc);
2427 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
2428 is important. Some (broken) drivers set IFF_PROMISC, when
2429 IFF_ALLMULTI is requested not asking us and not reporting.
2431 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
2432 int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
2433 dev->gflags ^= IFF_ALLMULTI;
2434 dev_set_allmulti(dev, inc);
2437 if (old_flags ^ dev->flags)
2438 rtmsg_ifinfo(RTM_NEWLINK, dev, old_flags ^ dev->flags);
2443 int dev_set_mtu(struct net_device *dev, int new_mtu)
2447 if (new_mtu == dev->mtu)
2450 /* MTU must be positive. */
2454 if (!netif_device_present(dev))
2458 if (dev->change_mtu)
2459 err = dev->change_mtu(dev, new_mtu);
2462 if (!err && dev->flags & IFF_UP)
2463 raw_notifier_call_chain(&netdev_chain,
2464 NETDEV_CHANGEMTU, dev);
2468 int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
2472 if (!dev->set_mac_address)
2474 if (sa->sa_family != dev->type)
2476 if (!netif_device_present(dev))
2478 err = dev->set_mac_address(dev, sa);
2480 raw_notifier_call_chain(&netdev_chain,
2481 NETDEV_CHANGEADDR, dev);
2486 * Perform the SIOCxIFxxx calls.
2488 static int dev_ifsioc(struct ifreq *ifr, unsigned int cmd)
2491 struct net_device *dev = __dev_get_by_name(ifr->ifr_name);
2497 case SIOCGIFFLAGS: /* Get interface flags */
2498 ifr->ifr_flags = dev_get_flags(dev);
2501 case SIOCSIFFLAGS: /* Set interface flags */
2502 return dev_change_flags(dev, ifr->ifr_flags);
2504 case SIOCGIFMETRIC: /* Get the metric on the interface
2505 (currently unused) */
2506 ifr->ifr_metric = 0;
2509 case SIOCSIFMETRIC: /* Set the metric on the interface
2510 (currently unused) */
2513 case SIOCGIFMTU: /* Get the MTU of a device */
2514 ifr->ifr_mtu = dev->mtu;
2517 case SIOCSIFMTU: /* Set the MTU of a device */
2518 return dev_set_mtu(dev, ifr->ifr_mtu);
2522 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
2524 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
2525 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
2526 ifr->ifr_hwaddr.sa_family = dev->type;
2530 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
2532 case SIOCSIFHWBROADCAST:
2533 if (ifr->ifr_hwaddr.sa_family != dev->type)
2535 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
2536 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
2537 raw_notifier_call_chain(&netdev_chain,
2538 NETDEV_CHANGEADDR, dev);
2542 ifr->ifr_map.mem_start = dev->mem_start;
2543 ifr->ifr_map.mem_end = dev->mem_end;
2544 ifr->ifr_map.base_addr = dev->base_addr;
2545 ifr->ifr_map.irq = dev->irq;
2546 ifr->ifr_map.dma = dev->dma;
2547 ifr->ifr_map.port = dev->if_port;
2551 if (dev->set_config) {
2552 if (!netif_device_present(dev))
2554 return dev->set_config(dev, &ifr->ifr_map);
2559 if (!dev->set_multicast_list ||
2560 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
2562 if (!netif_device_present(dev))
2564 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
2568 if (!dev->set_multicast_list ||
2569 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
2571 if (!netif_device_present(dev))
2573 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
2577 ifr->ifr_ifindex = dev->ifindex;
2581 ifr->ifr_qlen = dev->tx_queue_len;
2585 if (ifr->ifr_qlen < 0)
2587 dev->tx_queue_len = ifr->ifr_qlen;
2591 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
2592 return dev_change_name(dev, ifr->ifr_newname);
2595 * Unknown or private ioctl
2599 if ((cmd >= SIOCDEVPRIVATE &&
2600 cmd <= SIOCDEVPRIVATE + 15) ||
2601 cmd == SIOCBONDENSLAVE ||
2602 cmd == SIOCBONDRELEASE ||
2603 cmd == SIOCBONDSETHWADDR ||
2604 cmd == SIOCBONDSLAVEINFOQUERY ||
2605 cmd == SIOCBONDINFOQUERY ||
2606 cmd == SIOCBONDCHANGEACTIVE ||
2607 cmd == SIOCGMIIPHY ||
2608 cmd == SIOCGMIIREG ||
2609 cmd == SIOCSMIIREG ||
2610 cmd == SIOCBRADDIF ||
2611 cmd == SIOCBRDELIF ||
2612 cmd == SIOCWANDEV) {
2614 if (dev->do_ioctl) {
2615 if (netif_device_present(dev))
2616 err = dev->do_ioctl(dev, ifr,
2629 * This function handles all "interface"-type I/O control requests. The actual
2630 * 'doing' part of this is dev_ifsioc above.
2634 * dev_ioctl - network device ioctl
2635 * @cmd: command to issue
2636 * @arg: pointer to a struct ifreq in user space
2638 * Issue ioctl functions to devices. This is normally called by the
2639 * user space syscall interfaces but can sometimes be useful for
2640 * other purposes. The return value is the return from the syscall if
2641 * positive or a negative errno code on error.
2644 int dev_ioctl(unsigned int cmd, void __user *arg)
2650 /* One special case: SIOCGIFCONF takes ifconf argument
2651 and requires shared lock, because it sleeps writing
2655 if (cmd == SIOCGIFCONF) {
2657 ret = dev_ifconf((char __user *) arg);
2661 if (cmd == SIOCGIFNAME)
2662 return dev_ifname((struct ifreq __user *)arg);
2664 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2667 ifr.ifr_name[IFNAMSIZ-1] = 0;
2669 colon = strchr(ifr.ifr_name, ':');
2674 * See which interface the caller is talking about.
2679 * These ioctl calls:
2680 * - can be done by all.
2681 * - atomic and do not require locking.
2692 dev_load(ifr.ifr_name);
2693 read_lock(&dev_base_lock);
2694 ret = dev_ifsioc(&ifr, cmd);
2695 read_unlock(&dev_base_lock);
2699 if (copy_to_user(arg, &ifr,
2700 sizeof(struct ifreq)))
2706 dev_load(ifr.ifr_name);
2708 ret = dev_ethtool(&ifr);
2713 if (copy_to_user(arg, &ifr,
2714 sizeof(struct ifreq)))
2720 * These ioctl calls:
2721 * - require superuser power.
2722 * - require strict serialization.
2728 if (!capable(CAP_NET_ADMIN))
2730 dev_load(ifr.ifr_name);
2732 ret = dev_ifsioc(&ifr, cmd);
2737 if (copy_to_user(arg, &ifr,
2738 sizeof(struct ifreq)))
2744 * These ioctl calls:
2745 * - require superuser power.
2746 * - require strict serialization.
2747 * - do not return a value
2757 case SIOCSIFHWBROADCAST:
2760 case SIOCBONDENSLAVE:
2761 case SIOCBONDRELEASE:
2762 case SIOCBONDSETHWADDR:
2763 case SIOCBONDCHANGEACTIVE:
2766 if (!capable(CAP_NET_ADMIN))
2769 case SIOCBONDSLAVEINFOQUERY:
2770 case SIOCBONDINFOQUERY:
2771 dev_load(ifr.ifr_name);
2773 ret = dev_ifsioc(&ifr, cmd);
2778 /* Get the per device memory space. We can add this but
2779 * currently do not support it */
2781 /* Set the per device memory buffer space.
2782 * Not applicable in our case */
2787 * Unknown or private ioctl.
2790 if (cmd == SIOCWANDEV ||
2791 (cmd >= SIOCDEVPRIVATE &&
2792 cmd <= SIOCDEVPRIVATE + 15)) {
2793 dev_load(ifr.ifr_name);
2795 ret = dev_ifsioc(&ifr, cmd);
2797 if (!ret && copy_to_user(arg, &ifr,
2798 sizeof(struct ifreq)))
2802 #ifdef CONFIG_WIRELESS_EXT
2803 /* Take care of Wireless Extensions */
2804 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
2805 /* If command is `set a parameter', or
2806 * `get the encoding parameters', check if
2807 * the user has the right to do it */
2808 if (IW_IS_SET(cmd) || cmd == SIOCGIWENCODE
2809 || cmd == SIOCGIWENCODEEXT) {
2810 if (!capable(CAP_NET_ADMIN))
2813 dev_load(ifr.ifr_name);
2815 /* Follow me in net/core/wireless.c */
2816 ret = wireless_process_ioctl(&ifr, cmd);
2818 if (IW_IS_GET(cmd) &&
2819 copy_to_user(arg, &ifr,
2820 sizeof(struct ifreq)))
2824 #endif /* CONFIG_WIRELESS_EXT */
2831 * dev_new_index - allocate an ifindex
2833 * Returns a suitable unique value for a new device interface
2834 * number. The caller must hold the rtnl semaphore or the
2835 * dev_base_lock to be sure it remains unique.
2837 static int dev_new_index(void)
2843 if (!__dev_get_by_index(ifindex))
2848 static int dev_boot_phase = 1;
2850 /* Delayed registration/unregisteration */
2851 static DEFINE_SPINLOCK(net_todo_list_lock);
2852 static struct list_head net_todo_list = LIST_HEAD_INIT(net_todo_list);
2854 static inline void net_set_todo(struct net_device *dev)
2856 spin_lock(&net_todo_list_lock);
2857 list_add_tail(&dev->todo_list, &net_todo_list);
2858 spin_unlock(&net_todo_list_lock);
2862 * register_netdevice - register a network device
2863 * @dev: device to register
2865 * Take a completed network device structure and add it to the kernel
2866 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
2867 * chain. 0 is returned on success. A negative errno code is returned
2868 * on a failure to set up the device, or if the name is a duplicate.
2870 * Callers must hold the rtnl semaphore. You may want
2871 * register_netdev() instead of this.
2874 * The locking appears insufficient to guarantee two parallel registers
2875 * will not get the same name.
2878 int register_netdevice(struct net_device *dev)
2880 struct hlist_head *head;
2881 struct hlist_node *p;
2884 BUG_ON(dev_boot_phase);
2889 /* When net_device's are persistent, this will be fatal. */
2890 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
2892 spin_lock_init(&dev->queue_lock);
2893 spin_lock_init(&dev->_xmit_lock);
2894 dev->xmit_lock_owner = -1;
2895 #ifdef CONFIG_NET_CLS_ACT
2896 spin_lock_init(&dev->ingress_lock);
2899 ret = alloc_divert_blk(dev);
2905 /* Init, if this function is available */
2907 ret = dev->init(dev);
2915 if (!dev_valid_name(dev->name)) {
2920 dev->ifindex = dev_new_index();
2921 if (dev->iflink == -1)
2922 dev->iflink = dev->ifindex;
2924 /* Check for existence of name */
2925 head = dev_name_hash(dev->name);
2926 hlist_for_each(p, head) {
2927 struct net_device *d
2928 = hlist_entry(p, struct net_device, name_hlist);
2929 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
2935 /* Fix illegal SG+CSUM combinations. */
2936 if ((dev->features & NETIF_F_SG) &&
2937 !(dev->features & NETIF_F_ALL_CSUM)) {
2938 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
2940 dev->features &= ~NETIF_F_SG;
2943 /* TSO requires that SG is present as well. */
2944 if ((dev->features & NETIF_F_TSO) &&
2945 !(dev->features & NETIF_F_SG)) {
2946 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no SG feature.\n",
2948 dev->features &= ~NETIF_F_TSO;
2950 if (dev->features & NETIF_F_UFO) {
2951 if (!(dev->features & NETIF_F_HW_CSUM)) {
2952 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
2953 "NETIF_F_HW_CSUM feature.\n",
2955 dev->features &= ~NETIF_F_UFO;
2957 if (!(dev->features & NETIF_F_SG)) {
2958 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
2959 "NETIF_F_SG feature.\n",
2961 dev->features &= ~NETIF_F_UFO;
2966 * nil rebuild_header routine,
2967 * that should be never called and used as just bug trap.
2970 if (!dev->rebuild_header)
2971 dev->rebuild_header = default_rebuild_header;
2973 ret = netdev_register_sysfs(dev);
2976 dev->reg_state = NETREG_REGISTERED;
2979 * Default initial state at registry is that the
2980 * device is present.
2983 set_bit(__LINK_STATE_PRESENT, &dev->state);
2986 dev_init_scheduler(dev);
2987 write_lock_bh(&dev_base_lock);
2989 dev_tail = &dev->next;
2990 hlist_add_head(&dev->name_hlist, head);
2991 hlist_add_head(&dev->index_hlist, dev_index_hash(dev->ifindex));
2993 write_unlock_bh(&dev_base_lock);
2995 /* Notify protocols, that a new device appeared. */
2996 raw_notifier_call_chain(&netdev_chain, NETDEV_REGISTER, dev);
3003 free_divert_blk(dev);
3008 * register_netdev - register a network device
3009 * @dev: device to register
3011 * Take a completed network device structure and add it to the kernel
3012 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3013 * chain. 0 is returned on success. A negative errno code is returned
3014 * on a failure to set up the device, or if the name is a duplicate.
3016 * This is a wrapper around register_netdev that takes the rtnl semaphore
3017 * and expands the device name if you passed a format string to
3020 int register_netdev(struct net_device *dev)
3027 * If the name is a format string the caller wants us to do a
3030 if (strchr(dev->name, '%')) {
3031 err = dev_alloc_name(dev, dev->name);
3037 * Back compatibility hook. Kill this one in 2.5
3039 if (dev->name[0] == 0 || dev->name[0] == ' ') {
3040 err = dev_alloc_name(dev, "eth%d");
3045 err = register_netdevice(dev);
3050 EXPORT_SYMBOL(register_netdev);
3053 * netdev_wait_allrefs - wait until all references are gone.
3055 * This is called when unregistering network devices.
3057 * Any protocol or device that holds a reference should register
3058 * for netdevice notification, and cleanup and put back the
3059 * reference if they receive an UNREGISTER event.
3060 * We can get stuck here if buggy protocols don't correctly
3063 static void netdev_wait_allrefs(struct net_device *dev)
3065 unsigned long rebroadcast_time, warning_time;
3067 rebroadcast_time = warning_time = jiffies;
3068 while (atomic_read(&dev->refcnt) != 0) {
3069 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
3072 /* Rebroadcast unregister notification */
3073 raw_notifier_call_chain(&netdev_chain,
3074 NETDEV_UNREGISTER, dev);
3076 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
3078 /* We must not have linkwatch events
3079 * pending on unregister. If this
3080 * happens, we simply run the queue
3081 * unscheduled, resulting in a noop
3084 linkwatch_run_queue();
3089 rebroadcast_time = jiffies;
3094 if (time_after(jiffies, warning_time + 10 * HZ)) {
3095 printk(KERN_EMERG "unregister_netdevice: "
3096 "waiting for %s to become free. Usage "
3098 dev->name, atomic_read(&dev->refcnt));
3099 warning_time = jiffies;
3108 * register_netdevice(x1);
3109 * register_netdevice(x2);
3111 * unregister_netdevice(y1);
3112 * unregister_netdevice(y2);
3118 * We are invoked by rtnl_unlock() after it drops the semaphore.
3119 * This allows us to deal with problems:
3120 * 1) We can delete sysfs objects which invoke hotplug
3121 * without deadlocking with linkwatch via keventd.
3122 * 2) Since we run with the RTNL semaphore not held, we can sleep
3123 * safely in order to wait for the netdev refcnt to drop to zero.
3125 static DEFINE_MUTEX(net_todo_run_mutex);
3126 void netdev_run_todo(void)
3128 struct list_head list;
3130 /* Need to guard against multiple cpu's getting out of order. */
3131 mutex_lock(&net_todo_run_mutex);
3133 /* Not safe to do outside the semaphore. We must not return
3134 * until all unregister events invoked by the local processor
3135 * have been completed (either by this todo run, or one on
3138 if (list_empty(&net_todo_list))
3141 /* Snapshot list, allow later requests */
3142 spin_lock(&net_todo_list_lock);
3143 list_replace_init(&net_todo_list, &list);
3144 spin_unlock(&net_todo_list_lock);
3146 while (!list_empty(&list)) {
3147 struct net_device *dev
3148 = list_entry(list.next, struct net_device, todo_list);
3149 list_del(&dev->todo_list);
3151 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
3152 printk(KERN_ERR "network todo '%s' but state %d\n",
3153 dev->name, dev->reg_state);
3158 netdev_unregister_sysfs(dev);
3159 dev->reg_state = NETREG_UNREGISTERED;
3161 netdev_wait_allrefs(dev);
3164 BUG_ON(atomic_read(&dev->refcnt));
3165 BUG_TRAP(!dev->ip_ptr);
3166 BUG_TRAP(!dev->ip6_ptr);
3167 BUG_TRAP(!dev->dn_ptr);
3169 /* It must be the very last action,
3170 * after this 'dev' may point to freed up memory.
3172 if (dev->destructor)
3173 dev->destructor(dev);
3177 mutex_unlock(&net_todo_run_mutex);
3181 * alloc_netdev - allocate network device
3182 * @sizeof_priv: size of private data to allocate space for
3183 * @name: device name format string
3184 * @setup: callback to initialize device
3186 * Allocates a struct net_device with private data area for driver use
3187 * and performs basic initialization.
3189 struct net_device *alloc_netdev(int sizeof_priv, const char *name,
3190 void (*setup)(struct net_device *))
3193 struct net_device *dev;
3196 BUG_ON(strlen(name) >= sizeof(dev->name));
3198 /* ensure 32-byte alignment of both the device and private area */
3199 alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST;
3200 alloc_size += sizeof_priv + NETDEV_ALIGN_CONST;
3202 p = kzalloc(alloc_size, GFP_KERNEL);
3204 printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n");
3208 dev = (struct net_device *)
3209 (((long)p + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
3210 dev->padded = (char *)dev - (char *)p;
3213 dev->priv = netdev_priv(dev);
3216 strcpy(dev->name, name);
3219 EXPORT_SYMBOL(alloc_netdev);
3222 * free_netdev - free network device
3225 * This function does the last stage of destroying an allocated device
3226 * interface. The reference to the device object is released.
3227 * If this is the last reference then it will be freed.
3229 void free_netdev(struct net_device *dev)
3232 /* Compatibility with error handling in drivers */
3233 if (dev->reg_state == NETREG_UNINITIALIZED) {
3234 kfree((char *)dev - dev->padded);
3238 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
3239 dev->reg_state = NETREG_RELEASED;
3241 /* will free via class release */
3242 class_device_put(&dev->class_dev);
3244 kfree((char *)dev - dev->padded);
3248 /* Synchronize with packet receive processing. */
3249 void synchronize_net(void)
3256 * unregister_netdevice - remove device from the kernel
3259 * This function shuts down a device interface and removes it
3260 * from the kernel tables. On success 0 is returned, on a failure
3261 * a negative errno code is returned.
3263 * Callers must hold the rtnl semaphore. You may want
3264 * unregister_netdev() instead of this.
3267 int unregister_netdevice(struct net_device *dev)
3269 struct net_device *d, **dp;
3271 BUG_ON(dev_boot_phase);
3274 /* Some devices call without registering for initialization unwind. */
3275 if (dev->reg_state == NETREG_UNINITIALIZED) {
3276 printk(KERN_DEBUG "unregister_netdevice: device %s/%p never "
3277 "was registered\n", dev->name, dev);
3281 BUG_ON(dev->reg_state != NETREG_REGISTERED);
3283 /* If device is running, close it first. */
3284 if (dev->flags & IFF_UP)
3287 /* And unlink it from device chain. */
3288 for (dp = &dev_base; (d = *dp) != NULL; dp = &d->next) {
3290 write_lock_bh(&dev_base_lock);
3291 hlist_del(&dev->name_hlist);
3292 hlist_del(&dev->index_hlist);
3293 if (dev_tail == &dev->next)
3296 write_unlock_bh(&dev_base_lock);
3301 printk(KERN_ERR "unregister net_device: '%s' not found\n",
3306 dev->reg_state = NETREG_UNREGISTERING;
3310 /* Shutdown queueing discipline. */
3314 /* Notify protocols, that we are about to destroy
3315 this device. They should clean all the things.
3317 raw_notifier_call_chain(&netdev_chain, NETDEV_UNREGISTER, dev);
3320 * Flush the multicast chain
3322 dev_mc_discard(dev);
3327 /* Notifier chain MUST detach us from master device. */
3328 BUG_TRAP(!dev->master);
3330 free_divert_blk(dev);
3332 /* Finish processing unregister after unlock */
3342 * unregister_netdev - remove device from the kernel
3345 * This function shuts down a device interface and removes it
3346 * from the kernel tables. On success 0 is returned, on a failure
3347 * a negative errno code is returned.
3349 * This is just a wrapper for unregister_netdevice that takes
3350 * the rtnl semaphore. In general you want to use this and not
3351 * unregister_netdevice.
3353 void unregister_netdev(struct net_device *dev)
3356 unregister_netdevice(dev);
3360 EXPORT_SYMBOL(unregister_netdev);
3362 #ifdef CONFIG_HOTPLUG_CPU
3363 static int dev_cpu_callback(struct notifier_block *nfb,
3364 unsigned long action,
3367 struct sk_buff **list_skb;
3368 struct net_device **list_net;
3369 struct sk_buff *skb;
3370 unsigned int cpu, oldcpu = (unsigned long)ocpu;
3371 struct softnet_data *sd, *oldsd;
3373 if (action != CPU_DEAD)
3376 local_irq_disable();
3377 cpu = smp_processor_id();
3378 sd = &per_cpu(softnet_data, cpu);
3379 oldsd = &per_cpu(softnet_data, oldcpu);
3381 /* Find end of our completion_queue. */
3382 list_skb = &sd->completion_queue;
3384 list_skb = &(*list_skb)->next;
3385 /* Append completion queue from offline CPU. */
3386 *list_skb = oldsd->completion_queue;
3387 oldsd->completion_queue = NULL;
3389 /* Find end of our output_queue. */
3390 list_net = &sd->output_queue;
3392 list_net = &(*list_net)->next_sched;
3393 /* Append output queue from offline CPU. */
3394 *list_net = oldsd->output_queue;
3395 oldsd->output_queue = NULL;
3397 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3400 /* Process offline CPU's input_pkt_queue */
3401 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
3406 #endif /* CONFIG_HOTPLUG_CPU */
3408 #ifdef CONFIG_NET_DMA
3410 * net_dma_rebalance -
3411 * This is called when the number of channels allocated to the net_dma_client
3412 * changes. The net_dma_client tries to have one DMA channel per CPU.
3414 static void net_dma_rebalance(void)
3416 unsigned int cpu, i, n;
3417 struct dma_chan *chan;
3419 if (net_dma_count == 0) {
3420 for_each_online_cpu(cpu)
3421 rcu_assign_pointer(per_cpu(softnet_data, cpu).net_dma, NULL);
3426 cpu = first_cpu(cpu_online_map);
3429 list_for_each_entry(chan, &net_dma_client->channels, client_node) {
3430 n = ((num_online_cpus() / net_dma_count)
3431 + (i < (num_online_cpus() % net_dma_count) ? 1 : 0));
3434 per_cpu(softnet_data, cpu).net_dma = chan;
3435 cpu = next_cpu(cpu, cpu_online_map);
3444 * netdev_dma_event - event callback for the net_dma_client
3445 * @client: should always be net_dma_client
3446 * @chan: DMA channel for the event
3447 * @event: event type
3449 static void netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
3450 enum dma_event event)
3452 spin_lock(&net_dma_event_lock);
3454 case DMA_RESOURCE_ADDED:
3456 net_dma_rebalance();
3458 case DMA_RESOURCE_REMOVED:
3460 net_dma_rebalance();
3465 spin_unlock(&net_dma_event_lock);
3469 * netdev_dma_regiser - register the networking subsystem as a DMA client
3471 static int __init netdev_dma_register(void)
3473 spin_lock_init(&net_dma_event_lock);
3474 net_dma_client = dma_async_client_register(netdev_dma_event);
3475 if (net_dma_client == NULL)
3478 dma_async_client_chan_request(net_dma_client, num_online_cpus());
3483 static int __init netdev_dma_register(void) { return -ENODEV; }
3484 #endif /* CONFIG_NET_DMA */
3487 * Initialize the DEV module. At boot time this walks the device list and
3488 * unhooks any devices that fail to initialise (normally hardware not
3489 * present) and leaves us with a valid list of present and active devices.
3494 * This is called single threaded during boot, so no need
3495 * to take the rtnl semaphore.
3497 static int __init net_dev_init(void)
3499 int i, rc = -ENOMEM;
3501 BUG_ON(!dev_boot_phase);
3505 if (dev_proc_init())
3508 if (netdev_sysfs_init())
3511 INIT_LIST_HEAD(&ptype_all);
3512 for (i = 0; i < 16; i++)
3513 INIT_LIST_HEAD(&ptype_base[i]);
3515 for (i = 0; i < ARRAY_SIZE(dev_name_head); i++)
3516 INIT_HLIST_HEAD(&dev_name_head[i]);
3518 for (i = 0; i < ARRAY_SIZE(dev_index_head); i++)
3519 INIT_HLIST_HEAD(&dev_index_head[i]);
3522 * Initialise the packet receive queues.
3525 for_each_possible_cpu(i) {
3526 struct softnet_data *queue;
3528 queue = &per_cpu(softnet_data, i);
3529 skb_queue_head_init(&queue->input_pkt_queue);
3530 queue->completion_queue = NULL;
3531 INIT_LIST_HEAD(&queue->poll_list);
3532 set_bit(__LINK_STATE_START, &queue->backlog_dev.state);
3533 queue->backlog_dev.weight = weight_p;
3534 queue->backlog_dev.poll = process_backlog;
3535 atomic_set(&queue->backlog_dev.refcnt, 1);
3538 netdev_dma_register();
3542 open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
3543 open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
3545 hotcpu_notifier(dev_cpu_callback, 0);
3553 subsys_initcall(net_dev_init);
3555 EXPORT_SYMBOL(__dev_get_by_index);
3556 EXPORT_SYMBOL(__dev_get_by_name);
3557 EXPORT_SYMBOL(__dev_remove_pack);
3558 EXPORT_SYMBOL(dev_valid_name);
3559 EXPORT_SYMBOL(dev_add_pack);
3560 EXPORT_SYMBOL(dev_alloc_name);
3561 EXPORT_SYMBOL(dev_close);
3562 EXPORT_SYMBOL(dev_get_by_flags);
3563 EXPORT_SYMBOL(dev_get_by_index);
3564 EXPORT_SYMBOL(dev_get_by_name);
3565 EXPORT_SYMBOL(dev_open);
3566 EXPORT_SYMBOL(dev_queue_xmit);
3567 EXPORT_SYMBOL(dev_remove_pack);
3568 EXPORT_SYMBOL(dev_set_allmulti);
3569 EXPORT_SYMBOL(dev_set_promiscuity);
3570 EXPORT_SYMBOL(dev_change_flags);
3571 EXPORT_SYMBOL(dev_set_mtu);
3572 EXPORT_SYMBOL(dev_set_mac_address);
3573 EXPORT_SYMBOL(free_netdev);
3574 EXPORT_SYMBOL(netdev_boot_setup_check);
3575 EXPORT_SYMBOL(netdev_set_master);
3576 EXPORT_SYMBOL(netdev_state_change);
3577 EXPORT_SYMBOL(netif_receive_skb);
3578 EXPORT_SYMBOL(netif_rx);
3579 EXPORT_SYMBOL(register_gifconf);
3580 EXPORT_SYMBOL(register_netdevice);
3581 EXPORT_SYMBOL(register_netdevice_notifier);
3582 EXPORT_SYMBOL(skb_checksum_help);
3583 EXPORT_SYMBOL(synchronize_net);
3584 EXPORT_SYMBOL(unregister_netdevice);
3585 EXPORT_SYMBOL(unregister_netdevice_notifier);
3586 EXPORT_SYMBOL(net_enable_timestamp);
3587 EXPORT_SYMBOL(net_disable_timestamp);
3588 EXPORT_SYMBOL(dev_get_flags);
3590 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
3591 EXPORT_SYMBOL(br_handle_frame_hook);
3592 EXPORT_SYMBOL(br_fdb_get_hook);
3593 EXPORT_SYMBOL(br_fdb_put_hook);
3597 EXPORT_SYMBOL(dev_load);
3600 EXPORT_PER_CPU_SYMBOL(softnet_data);