eb965a773199832bb450f2457cd6486b21975029
[linux-2.6.git] / net / core / dev.c
1 /*
2  *      NET3    Protocol independent device support routines.
3  *
4  *              This program is free software; you can redistribute it and/or
5  *              modify it under the terms of the GNU General Public License
6  *              as published by the Free Software Foundation; either version
7  *              2 of the License, or (at your option) any later version.
8  *
9  *      Derived from the non IP parts of dev.c 1.0.19
10  *              Authors:        Ross Biro
11  *                              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12  *                              Mark Evans, <evansmp@uhura.aston.ac.uk>
13  *
14  *      Additional Authors:
15  *              Florian la Roche <rzsfl@rz.uni-sb.de>
16  *              Alan Cox <gw4pts@gw4pts.ampr.org>
17  *              David Hinds <dahinds@users.sourceforge.net>
18  *              Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19  *              Adam Sulmicki <adam@cfar.umd.edu>
20  *              Pekka Riikonen <priikone@poesidon.pspt.fi>
21  *
22  *      Changes:
23  *              D.J. Barrow     :       Fixed bug where dev->refcnt gets set
24  *                                      to 2 if register_netdev gets called
25  *                                      before net_dev_init & also removed a
26  *                                      few lines of code in the process.
27  *              Alan Cox        :       device private ioctl copies fields back.
28  *              Alan Cox        :       Transmit queue code does relevant
29  *                                      stunts to keep the queue safe.
30  *              Alan Cox        :       Fixed double lock.
31  *              Alan Cox        :       Fixed promisc NULL pointer trap
32  *              ????????        :       Support the full private ioctl range
33  *              Alan Cox        :       Moved ioctl permission check into
34  *                                      drivers
35  *              Tim Kordas      :       SIOCADDMULTI/SIOCDELMULTI
36  *              Alan Cox        :       100 backlog just doesn't cut it when
37  *                                      you start doing multicast video 8)
38  *              Alan Cox        :       Rewrote net_bh and list manager.
39  *              Alan Cox        :       Fix ETH_P_ALL echoback lengths.
40  *              Alan Cox        :       Took out transmit every packet pass
41  *                                      Saved a few bytes in the ioctl handler
42  *              Alan Cox        :       Network driver sets packet type before
43  *                                      calling netif_rx. Saves a function
44  *                                      call a packet.
45  *              Alan Cox        :       Hashed net_bh()
46  *              Richard Kooijman:       Timestamp fixes.
47  *              Alan Cox        :       Wrong field in SIOCGIFDSTADDR
48  *              Alan Cox        :       Device lock protection.
49  *              Alan Cox        :       Fixed nasty side effect of device close
50  *                                      changes.
51  *              Rudi Cilibrasi  :       Pass the right thing to
52  *                                      set_mac_address()
53  *              Dave Miller     :       32bit quantity for the device lock to
54  *                                      make it work out on a Sparc.
55  *              Bjorn Ekwall    :       Added KERNELD hack.
56  *              Alan Cox        :       Cleaned up the backlog initialise.
57  *              Craig Metz      :       SIOCGIFCONF fix if space for under
58  *                                      1 device.
59  *          Thomas Bogendoerfer :       Return ENODEV for dev_open, if there
60  *                                      is no device open function.
61  *              Andi Kleen      :       Fix error reporting for SIOCGIFCONF
62  *          Michael Chastain    :       Fix signed/unsigned for SIOCGIFCONF
63  *              Cyrus Durgin    :       Cleaned for KMOD
64  *              Adam Sulmicki   :       Bug Fix : Network Device Unload
65  *                                      A network device unload needs to purge
66  *                                      the backlog queue.
67  *      Paul Rusty Russell      :       SIOCSIFNAME
68  *              Pekka Riikonen  :       Netdev boot-time settings code
69  *              Andrew Morton   :       Make unregister_netdevice wait
70  *                                      indefinitely on dev->refcnt
71  *              J Hadi Salim    :       - Backlog queue sampling
72  *                                      - netif_rx() feedback
73  */
74
75 #include <asm/uaccess.h>
76 #include <asm/system.h>
77 #include <linux/bitops.h>
78 #include <linux/capability.h>
79 #include <linux/config.h>
80 #include <linux/cpu.h>
81 #include <linux/types.h>
82 #include <linux/kernel.h>
83 #include <linux/sched.h>
84 #include <linux/mutex.h>
85 #include <linux/string.h>
86 #include <linux/mm.h>
87 #include <linux/socket.h>
88 #include <linux/sockios.h>
89 #include <linux/errno.h>
90 #include <linux/interrupt.h>
91 #include <linux/if_ether.h>
92 #include <linux/netdevice.h>
93 #include <linux/etherdevice.h>
94 #include <linux/notifier.h>
95 #include <linux/skbuff.h>
96 #include <net/sock.h>
97 #include <linux/rtnetlink.h>
98 #include <linux/proc_fs.h>
99 #include <linux/seq_file.h>
100 #include <linux/stat.h>
101 #include <linux/if_bridge.h>
102 #include <linux/divert.h>
103 #include <net/dst.h>
104 #include <net/pkt_sched.h>
105 #include <net/checksum.h>
106 #include <linux/highmem.h>
107 #include <linux/init.h>
108 #include <linux/kmod.h>
109 #include <linux/module.h>
110 #include <linux/kallsyms.h>
111 #include <linux/netpoll.h>
112 #include <linux/rcupdate.h>
113 #include <linux/delay.h>
114 #include <linux/wireless.h>
115 #include <net/iw_handler.h>
116 #include <asm/current.h>
117 #include <linux/audit.h>
118 #include <linux/vs_network.h>
119
120 /*
121  *      The list of packet types we will receive (as opposed to discard)
122  *      and the routines to invoke.
123  *
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.
126  *
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.
132  *             --BLG
133  *
134  *              0800    IP
135  *              8100    802.1Q VLAN
136  *              0001    802.3
137  *              0002    AX.25
138  *              0004    802.2
139  *              8035    RARP
140  *              0005    SNAP
141  *              0805    X.25
142  *              0806    ARP
143  *              8137    IPX
144  *              0009    Localtalk
145  *              86DD    IPv6
146  */
147
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 */
151
152 /*
153  * The @dev_base list is protected by @dev_base_lock and the rtnl
154  * semaphore.
155  *
156  * Pure readers hold dev_base_lock for reading.
157  *
158  * Writers must hold the rtnl semaphore while they loop through the
159  * dev_base list, and hold dev_base_lock for writing when they do the
160  * actual updates.  This allows pure readers to access the list even
161  * while a writer is preparing to update it.
162  *
163  * To put it another way, dev_base_lock is held for writing only to
164  * protect against pure readers; the rtnl semaphore provides the
165  * protection against other writers.
166  *
167  * See, for example usages, register_netdevice() and
168  * unregister_netdevice(), which must be called with the rtnl
169  * semaphore held.
170  */
171 struct net_device *dev_base;
172 static struct net_device **dev_tail = &dev_base;
173 DEFINE_RWLOCK(dev_base_lock);
174
175 EXPORT_SYMBOL(dev_base);
176 EXPORT_SYMBOL(dev_base_lock);
177
178 #define NETDEV_HASHBITS 8
179 static struct hlist_head dev_name_head[1<<NETDEV_HASHBITS];
180 static struct hlist_head dev_index_head[1<<NETDEV_HASHBITS];
181
182 static inline struct hlist_head *dev_name_hash(const char *name)
183 {
184         unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
185         return &dev_name_head[hash & ((1<<NETDEV_HASHBITS)-1)];
186 }
187
188 static inline struct hlist_head *dev_index_hash(int ifindex)
189 {
190         return &dev_index_head[ifindex & ((1<<NETDEV_HASHBITS)-1)];
191 }
192
193 /*
194  *      Our notifier list
195  */
196
197 static RAW_NOTIFIER_HEAD(netdev_chain);
198
199 /*
200  *      Device drivers call our routines to queue packets here. We empty the
201  *      queue in the local softnet handler.
202  */
203 DEFINE_PER_CPU(struct softnet_data, softnet_data) = { NULL };
204
205 #ifdef CONFIG_SYSFS
206 extern int netdev_sysfs_init(void);
207 extern int netdev_register_sysfs(struct net_device *);
208 extern void netdev_unregister_sysfs(struct net_device *);
209 #else
210 #define netdev_sysfs_init()             (0)
211 #define netdev_register_sysfs(dev)      (0)
212 #define netdev_unregister_sysfs(dev)    do { } while(0)
213 #endif
214
215
216 /*******************************************************************************
217
218                 Protocol management and registration routines
219
220 *******************************************************************************/
221
222 /*
223  *      For efficiency
224  */
225
226 int netdev_nit;
227
228 /*
229  *      Add a protocol ID to the list. Now that the input handler is
230  *      smarter we can dispense with all the messy stuff that used to be
231  *      here.
232  *
233  *      BEWARE!!! Protocol handlers, mangling input packets,
234  *      MUST BE last in hash buckets and checking protocol handlers
235  *      MUST start from promiscuous ptype_all chain in net_bh.
236  *      It is true now, do not change it.
237  *      Explanation follows: if protocol handler, mangling packet, will
238  *      be the first on list, it is not able to sense, that packet
239  *      is cloned and should be copied-on-write, so that it will
240  *      change it and subsequent readers will get broken packet.
241  *                                                      --ANK (980803)
242  */
243
244 /**
245  *      dev_add_pack - add packet handler
246  *      @pt: packet type declaration
247  *
248  *      Add a protocol handler to the networking stack. The passed &packet_type
249  *      is linked into kernel lists and may not be freed until it has been
250  *      removed from the kernel lists.
251  *
252  *      This call does not sleep therefore it can not 
253  *      guarantee all CPU's that are in middle of receiving packets
254  *      will see the new packet type (until the next received packet).
255  */
256
257 void dev_add_pack(struct packet_type *pt)
258 {
259         int hash;
260
261         spin_lock_bh(&ptype_lock);
262         if (pt->type == htons(ETH_P_ALL)) {
263                 netdev_nit++;
264                 list_add_rcu(&pt->list, &ptype_all);
265         } else {
266                 hash = ntohs(pt->type) & 15;
267                 list_add_rcu(&pt->list, &ptype_base[hash]);
268         }
269         spin_unlock_bh(&ptype_lock);
270 }
271
272 /**
273  *      __dev_remove_pack        - remove packet handler
274  *      @pt: packet type declaration
275  *
276  *      Remove a protocol handler that was previously added to the kernel
277  *      protocol handlers by dev_add_pack(). The passed &packet_type is removed
278  *      from the kernel lists and can be freed or reused once this function
279  *      returns. 
280  *
281  *      The packet type might still be in use by receivers
282  *      and must not be freed until after all the CPU's have gone
283  *      through a quiescent state.
284  */
285 void __dev_remove_pack(struct packet_type *pt)
286 {
287         struct list_head *head;
288         struct packet_type *pt1;
289
290         spin_lock_bh(&ptype_lock);
291
292         if (pt->type == htons(ETH_P_ALL)) {
293                 netdev_nit--;
294                 head = &ptype_all;
295         } else
296                 head = &ptype_base[ntohs(pt->type) & 15];
297
298         list_for_each_entry(pt1, head, list) {
299                 if (pt == pt1) {
300                         list_del_rcu(&pt->list);
301                         goto out;
302                 }
303         }
304
305         printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
306 out:
307         spin_unlock_bh(&ptype_lock);
308 }
309 /**
310  *      dev_remove_pack  - remove packet handler
311  *      @pt: packet type declaration
312  *
313  *      Remove a protocol handler that was previously added to the kernel
314  *      protocol handlers by dev_add_pack(). The passed &packet_type is removed
315  *      from the kernel lists and can be freed or reused once this function
316  *      returns.
317  *
318  *      This call sleeps to guarantee that no CPU is looking at the packet
319  *      type after return.
320  */
321 void dev_remove_pack(struct packet_type *pt)
322 {
323         __dev_remove_pack(pt);
324         
325         synchronize_net();
326 }
327
328 /******************************************************************************
329
330                       Device Boot-time Settings Routines
331
332 *******************************************************************************/
333
334 /* Boot time configuration table */
335 static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
336
337 /**
338  *      netdev_boot_setup_add   - add new setup entry
339  *      @name: name of the device
340  *      @map: configured settings for the device
341  *
342  *      Adds new setup entry to the dev_boot_setup list.  The function
343  *      returns 0 on error and 1 on success.  This is a generic routine to
344  *      all netdevices.
345  */
346 static int netdev_boot_setup_add(char *name, struct ifmap *map)
347 {
348         struct netdev_boot_setup *s;
349         int i;
350
351         s = dev_boot_setup;
352         for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
353                 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
354                         memset(s[i].name, 0, sizeof(s[i].name));
355                         strcpy(s[i].name, name);
356                         memcpy(&s[i].map, map, sizeof(s[i].map));
357                         break;
358                 }
359         }
360
361         return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
362 }
363
364 /**
365  *      netdev_boot_setup_check - check boot time settings
366  *      @dev: the netdevice
367  *
368  *      Check boot time settings for the device.
369  *      The found settings are set for the device to be used
370  *      later in the device probing.
371  *      Returns 0 if no settings found, 1 if they are.
372  */
373 int netdev_boot_setup_check(struct net_device *dev)
374 {
375         struct netdev_boot_setup *s = dev_boot_setup;
376         int i;
377
378         for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
379                 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
380                     !strncmp(dev->name, s[i].name, strlen(s[i].name))) {
381                         dev->irq        = s[i].map.irq;
382                         dev->base_addr  = s[i].map.base_addr;
383                         dev->mem_start  = s[i].map.mem_start;
384                         dev->mem_end    = s[i].map.mem_end;
385                         return 1;
386                 }
387         }
388         return 0;
389 }
390
391
392 /**
393  *      netdev_boot_base        - get address from boot time settings
394  *      @prefix: prefix for network device
395  *      @unit: id for network device
396  *
397  *      Check boot time settings for the base address of device.
398  *      The found settings are set for the device to be used
399  *      later in the device probing.
400  *      Returns 0 if no settings found.
401  */
402 unsigned long netdev_boot_base(const char *prefix, int unit)
403 {
404         const struct netdev_boot_setup *s = dev_boot_setup;
405         char name[IFNAMSIZ];
406         int i;
407
408         sprintf(name, "%s%d", prefix, unit);
409
410         /*
411          * If device already registered then return base of 1
412          * to indicate not to probe for this interface
413          */
414         if (__dev_get_by_name(name))
415                 return 1;
416
417         for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
418                 if (!strcmp(name, s[i].name))
419                         return s[i].map.base_addr;
420         return 0;
421 }
422
423 /*
424  * Saves at boot time configured settings for any netdevice.
425  */
426 int __init netdev_boot_setup(char *str)
427 {
428         int ints[5];
429         struct ifmap map;
430
431         str = get_options(str, ARRAY_SIZE(ints), ints);
432         if (!str || !*str)
433                 return 0;
434
435         /* Save settings */
436         memset(&map, 0, sizeof(map));
437         if (ints[0] > 0)
438                 map.irq = ints[1];
439         if (ints[0] > 1)
440                 map.base_addr = ints[2];
441         if (ints[0] > 2)
442                 map.mem_start = ints[3];
443         if (ints[0] > 3)
444                 map.mem_end = ints[4];
445
446         /* Add new entry to the list */
447         return netdev_boot_setup_add(str, &map);
448 }
449
450 __setup("netdev=", netdev_boot_setup);
451
452 /*******************************************************************************
453
454                             Device Interface Subroutines
455
456 *******************************************************************************/
457
458 /**
459  *      __dev_get_by_name       - find a device by its name
460  *      @name: name to find
461  *
462  *      Find an interface by name. Must be called under RTNL semaphore
463  *      or @dev_base_lock. If the name is found a pointer to the device
464  *      is returned. If the name is not found then %NULL is returned. The
465  *      reference counters are not incremented so the caller must be
466  *      careful with locks.
467  */
468
469 struct net_device *__dev_get_by_name(const char *name)
470 {
471         struct hlist_node *p;
472
473         hlist_for_each(p, dev_name_hash(name)) {
474                 struct net_device *dev
475                         = hlist_entry(p, struct net_device, name_hlist);
476                 if (!strncmp(dev->name, name, IFNAMSIZ))
477                         return dev;
478         }
479         return NULL;
480 }
481
482 /**
483  *      dev_get_by_name         - find a device by its name
484  *      @name: name to find
485  *
486  *      Find an interface by name. This can be called from any
487  *      context and does its own locking. The returned handle has
488  *      the usage count incremented and the caller must use dev_put() to
489  *      release it when it is no longer needed. %NULL is returned if no
490  *      matching device is found.
491  */
492
493 struct net_device *dev_get_by_name(const char *name)
494 {
495         struct net_device *dev;
496
497         read_lock(&dev_base_lock);
498         dev = __dev_get_by_name(name);
499         if (dev)
500                 dev_hold(dev);
501         read_unlock(&dev_base_lock);
502         return dev;
503 }
504
505 /**
506  *      __dev_get_by_index - find a device by its ifindex
507  *      @ifindex: index of device
508  *
509  *      Search for an interface by index. Returns %NULL if the device
510  *      is not found or a pointer to the device. The device has not
511  *      had its reference counter increased so the caller must be careful
512  *      about locking. The caller must hold either the RTNL semaphore
513  *      or @dev_base_lock.
514  */
515
516 struct net_device *__dev_get_by_index(int ifindex)
517 {
518         struct hlist_node *p;
519
520         hlist_for_each(p, dev_index_hash(ifindex)) {
521                 struct net_device *dev
522                         = hlist_entry(p, struct net_device, index_hlist);
523                 if (dev->ifindex == ifindex)
524                         return dev;
525         }
526         return NULL;
527 }
528
529
530 /**
531  *      dev_get_by_index - find a device by its ifindex
532  *      @ifindex: index of device
533  *
534  *      Search for an interface by index. Returns NULL if the device
535  *      is not found or a pointer to the device. The device returned has
536  *      had a reference added and the pointer is safe until the user calls
537  *      dev_put to indicate they have finished with it.
538  */
539
540 struct net_device *dev_get_by_index(int ifindex)
541 {
542         struct net_device *dev;
543
544         read_lock(&dev_base_lock);
545         dev = __dev_get_by_index(ifindex);
546         if (dev)
547                 dev_hold(dev);
548         read_unlock(&dev_base_lock);
549         return dev;
550 }
551
552 /**
553  *      dev_getbyhwaddr - find a device by its hardware address
554  *      @type: media type of device
555  *      @ha: hardware address
556  *
557  *      Search for an interface by MAC address. Returns NULL if the device
558  *      is not found or a pointer to the device. The caller must hold the
559  *      rtnl semaphore. The returned device has not had its ref count increased
560  *      and the caller must therefore be careful about locking
561  *
562  *      BUGS:
563  *      If the API was consistent this would be __dev_get_by_hwaddr
564  */
565
566 struct net_device *dev_getbyhwaddr(unsigned short type, char *ha)
567 {
568         struct net_device *dev;
569
570         ASSERT_RTNL();
571
572         for (dev = dev_base; dev; dev = dev->next)
573                 if (dev->type == type &&
574                     !memcmp(dev->dev_addr, ha, dev->addr_len))
575                         break;
576         return dev;
577 }
578
579 EXPORT_SYMBOL(dev_getbyhwaddr);
580
581 struct net_device *dev_getfirstbyhwtype(unsigned short type)
582 {
583         struct net_device *dev;
584
585         rtnl_lock();
586         for (dev = dev_base; dev; dev = dev->next) {
587                 if (dev->type == type) {
588                         dev_hold(dev);
589                         break;
590                 }
591         }
592         rtnl_unlock();
593         return dev;
594 }
595
596 EXPORT_SYMBOL(dev_getfirstbyhwtype);
597
598 /**
599  *      dev_get_by_flags - find any device with given flags
600  *      @if_flags: IFF_* values
601  *      @mask: bitmask of bits in if_flags to check
602  *
603  *      Search for any interface with the given flags. Returns NULL if a device
604  *      is not found or a pointer to the device. The device returned has 
605  *      had a reference added and the pointer is safe until the user calls
606  *      dev_put to indicate they have finished with it.
607  */
608
609 struct net_device * dev_get_by_flags(unsigned short if_flags, unsigned short mask)
610 {
611         struct net_device *dev;
612
613         read_lock(&dev_base_lock);
614         for (dev = dev_base; dev != NULL; dev = dev->next) {
615                 if (((dev->flags ^ if_flags) & mask) == 0) {
616                         dev_hold(dev);
617                         break;
618                 }
619         }
620         read_unlock(&dev_base_lock);
621         return dev;
622 }
623
624 /**
625  *      dev_valid_name - check if name is okay for network device
626  *      @name: name string
627  *
628  *      Network device names need to be valid file names to
629  *      to allow sysfs to work
630  */
631 int dev_valid_name(const char *name)
632 {
633         return !(*name == '\0' 
634                  || !strcmp(name, ".")
635                  || !strcmp(name, "..")
636                  || strchr(name, '/'));
637 }
638
639 /**
640  *      dev_alloc_name - allocate a name for a device
641  *      @dev: device
642  *      @name: name format string
643  *
644  *      Passed a format string - eg "lt%d" it will try and find a suitable
645  *      id. It scans list of devices to build up a free map, then chooses
646  *      the first empty slot. The caller must hold the dev_base or rtnl lock
647  *      while allocating the name and adding the device in order to avoid
648  *      duplicates.
649  *      Limited to bits_per_byte * page size devices (ie 32K on most platforms).
650  *      Returns the number of the unit assigned or a negative errno code.
651  */
652
653 int dev_alloc_name(struct net_device *dev, const char *name)
654 {
655         int i = 0;
656         char buf[IFNAMSIZ];
657         const char *p;
658         const int max_netdevices = 8*PAGE_SIZE;
659         long *inuse;
660         struct net_device *d;
661
662         p = strnchr(name, IFNAMSIZ-1, '%');
663         if (p) {
664                 /*
665                  * Verify the string as this thing may have come from
666                  * the user.  There must be either one "%d" and no other "%"
667                  * characters.
668                  */
669                 if (p[1] != 'd' || strchr(p + 2, '%'))
670                         return -EINVAL;
671
672                 /* Use one page as a bit array of possible slots */
673                 inuse = (long *) get_zeroed_page(GFP_ATOMIC);
674                 if (!inuse)
675                         return -ENOMEM;
676
677                 for (d = dev_base; d; d = d->next) {
678                         if (!sscanf(d->name, name, &i))
679                                 continue;
680                         if (i < 0 || i >= max_netdevices)
681                                 continue;
682
683                         /*  avoid cases where sscanf is not exact inverse of printf */
684                         snprintf(buf, sizeof(buf), name, i);
685                         if (!strncmp(buf, d->name, IFNAMSIZ))
686                                 set_bit(i, inuse);
687                 }
688
689                 i = find_first_zero_bit(inuse, max_netdevices);
690                 free_page((unsigned long) inuse);
691         }
692
693         snprintf(buf, sizeof(buf), name, i);
694         if (!__dev_get_by_name(buf)) {
695                 strlcpy(dev->name, buf, IFNAMSIZ);
696                 return i;
697         }
698
699         /* It is possible to run out of possible slots
700          * when the name is long and there isn't enough space left
701          * for the digits, or if all bits are used.
702          */
703         return -ENFILE;
704 }
705
706
707 /**
708  *      dev_change_name - change name of a device
709  *      @dev: device
710  *      @newname: name (or format string) must be at least IFNAMSIZ
711  *
712  *      Change name of a device, can pass format strings "eth%d".
713  *      for wildcarding.
714  */
715 int dev_change_name(struct net_device *dev, char *newname)
716 {
717         int err = 0;
718
719         ASSERT_RTNL();
720
721         if (dev->flags & IFF_UP)
722                 return -EBUSY;
723
724         if (!dev_valid_name(newname))
725                 return -EINVAL;
726
727         if (strchr(newname, '%')) {
728                 err = dev_alloc_name(dev, newname);
729                 if (err < 0)
730                         return err;
731                 strcpy(newname, dev->name);
732         }
733         else if (__dev_get_by_name(newname))
734                 return -EEXIST;
735         else
736                 strlcpy(dev->name, newname, IFNAMSIZ);
737
738         err = class_device_rename(&dev->class_dev, dev->name);
739         if (!err) {
740                 hlist_del(&dev->name_hlist);
741                 hlist_add_head(&dev->name_hlist, dev_name_hash(dev->name));
742                 raw_notifier_call_chain(&netdev_chain,
743                                 NETDEV_CHANGENAME, dev);
744         }
745
746         return err;
747 }
748
749 /**
750  *      netdev_features_change - device changes features
751  *      @dev: device to cause notification
752  *
753  *      Called to indicate a device has changed features.
754  */
755 void netdev_features_change(struct net_device *dev)
756 {
757         raw_notifier_call_chain(&netdev_chain, NETDEV_FEAT_CHANGE, dev);
758 }
759 EXPORT_SYMBOL(netdev_features_change);
760
761 /**
762  *      netdev_state_change - device changes state
763  *      @dev: device to cause notification
764  *
765  *      Called to indicate a device has changed state. This function calls
766  *      the notifier chains for netdev_chain and sends a NEWLINK message
767  *      to the routing socket.
768  */
769 void netdev_state_change(struct net_device *dev)
770 {
771         if (dev->flags & IFF_UP) {
772                 raw_notifier_call_chain(&netdev_chain,
773                                 NETDEV_CHANGE, dev);
774                 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
775         }
776 }
777
778 /**
779  *      dev_load        - load a network module
780  *      @name: name of interface
781  *
782  *      If a network interface is not present and the process has suitable
783  *      privileges this function loads the module. If module loading is not
784  *      available in this kernel then it becomes a nop.
785  */
786
787 void dev_load(const char *name)
788 {
789         struct net_device *dev;  
790
791         read_lock(&dev_base_lock);
792         dev = __dev_get_by_name(name);
793         read_unlock(&dev_base_lock);
794
795         if (!dev && capable(CAP_SYS_MODULE))
796                 request_module("%s", name);
797 }
798
799 static int default_rebuild_header(struct sk_buff *skb)
800 {
801         printk(KERN_DEBUG "%s: default_rebuild_header called -- BUG!\n",
802                skb->dev ? skb->dev->name : "NULL!!!");
803         kfree_skb(skb);
804         return 1;
805 }
806
807
808 /**
809  *      dev_open        - prepare an interface for use.
810  *      @dev:   device to open
811  *
812  *      Takes a device from down to up state. The device's private open
813  *      function is invoked and then the multicast lists are loaded. Finally
814  *      the device is moved into the up state and a %NETDEV_UP message is
815  *      sent to the netdev notifier chain.
816  *
817  *      Calling this function on an active interface is a nop. On a failure
818  *      a negative errno code is returned.
819  */
820 int dev_open(struct net_device *dev)
821 {
822         int ret = 0;
823
824         /*
825          *      Is it already up?
826          */
827
828         if (dev->flags & IFF_UP)
829                 return 0;
830
831         /*
832          *      Is it even present?
833          */
834         if (!netif_device_present(dev))
835                 return -ENODEV;
836
837         /*
838          *      Call device private open method
839          */
840         set_bit(__LINK_STATE_START, &dev->state);
841         if (dev->open) {
842                 ret = dev->open(dev);
843                 if (ret)
844                         clear_bit(__LINK_STATE_START, &dev->state);
845         }
846
847         /*
848          *      If it went open OK then:
849          */
850
851         if (!ret) {
852                 /*
853                  *      Set the flags.
854                  */
855                 dev->flags |= IFF_UP;
856
857                 /*
858                  *      Initialize multicasting status
859                  */
860                 dev_mc_upload(dev);
861
862                 /*
863                  *      Wakeup transmit queue engine
864                  */
865                 dev_activate(dev);
866
867                 /*
868                  *      ... and announce new interface.
869                  */
870                 raw_notifier_call_chain(&netdev_chain, NETDEV_UP, dev);
871         }
872         return ret;
873 }
874
875 /**
876  *      dev_close - shutdown an interface.
877  *      @dev: device to shutdown
878  *
879  *      This function moves an active device into down state. A
880  *      %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
881  *      is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
882  *      chain.
883  */
884 int dev_close(struct net_device *dev)
885 {
886         if (!(dev->flags & IFF_UP))
887                 return 0;
888
889         /*
890          *      Tell people we are going down, so that they can
891          *      prepare to death, when device is still operating.
892          */
893         raw_notifier_call_chain(&netdev_chain, NETDEV_GOING_DOWN, dev);
894
895         dev_deactivate(dev);
896
897         clear_bit(__LINK_STATE_START, &dev->state);
898
899         /* Synchronize to scheduled poll. We cannot touch poll list,
900          * it can be even on different cpu. So just clear netif_running(),
901          * and wait when poll really will happen. Actually, the best place
902          * for this is inside dev->stop() after device stopped its irq
903          * engine, but this requires more changes in devices. */
904
905         smp_mb__after_clear_bit(); /* Commit netif_running(). */
906         while (test_bit(__LINK_STATE_RX_SCHED, &dev->state)) {
907                 /* No hurry. */
908                 msleep(1);
909         }
910
911         /*
912          *      Call the device specific close. This cannot fail.
913          *      Only if device is UP
914          *
915          *      We allow it to be called even after a DETACH hot-plug
916          *      event.
917          */
918         if (dev->stop)
919                 dev->stop(dev);
920
921         /*
922          *      Device is now down.
923          */
924
925         dev->flags &= ~IFF_UP;
926
927         /*
928          * Tell people we are down
929          */
930         raw_notifier_call_chain(&netdev_chain, NETDEV_DOWN, dev);
931
932         return 0;
933 }
934
935
936 /*
937  *      Device change register/unregister. These are not inline or static
938  *      as we export them to the world.
939  */
940
941 /**
942  *      register_netdevice_notifier - register a network notifier block
943  *      @nb: notifier
944  *
945  *      Register a notifier to be called when network device events occur.
946  *      The notifier passed is linked into the kernel structures and must
947  *      not be reused until it has been unregistered. A negative errno code
948  *      is returned on a failure.
949  *
950  *      When registered all registration and up events are replayed
951  *      to the new notifier to allow device to have a race free 
952  *      view of the network device list.
953  */
954
955 int register_netdevice_notifier(struct notifier_block *nb)
956 {
957         struct net_device *dev;
958         int err;
959
960         rtnl_lock();
961         err = raw_notifier_chain_register(&netdev_chain, nb);
962         if (!err) {
963                 for (dev = dev_base; dev; dev = dev->next) {
964                         nb->notifier_call(nb, NETDEV_REGISTER, dev);
965
966                         if (dev->flags & IFF_UP) 
967                                 nb->notifier_call(nb, NETDEV_UP, dev);
968                 }
969         }
970         rtnl_unlock();
971         return err;
972 }
973
974 /**
975  *      unregister_netdevice_notifier - unregister a network notifier block
976  *      @nb: notifier
977  *
978  *      Unregister a notifier previously registered by
979  *      register_netdevice_notifier(). The notifier is unlinked into the
980  *      kernel structures and may then be reused. A negative errno code
981  *      is returned on a failure.
982  */
983
984 int unregister_netdevice_notifier(struct notifier_block *nb)
985 {
986         int err;
987
988         rtnl_lock();
989         err = raw_notifier_chain_unregister(&netdev_chain, nb);
990         rtnl_unlock();
991         return err;
992 }
993
994 /**
995  *      call_netdevice_notifiers - call all network notifier blocks
996  *      @val: value passed unmodified to notifier function
997  *      @v:   pointer passed unmodified to notifier function
998  *
999  *      Call all network notifier blocks.  Parameters and return value
1000  *      are as for raw_notifier_call_chain().
1001  */
1002
1003 int call_netdevice_notifiers(unsigned long val, void *v)
1004 {
1005         return raw_notifier_call_chain(&netdev_chain, val, v);
1006 }
1007
1008 /* When > 0 there are consumers of rx skb time stamps */
1009 static atomic_t netstamp_needed = ATOMIC_INIT(0);
1010
1011 void net_enable_timestamp(void)
1012 {
1013         atomic_inc(&netstamp_needed);
1014 }
1015
1016 void net_disable_timestamp(void)
1017 {
1018         atomic_dec(&netstamp_needed);
1019 }
1020
1021 void __net_timestamp(struct sk_buff *skb)
1022 {
1023         struct timeval tv;
1024
1025         do_gettimeofday(&tv);
1026         skb_set_timestamp(skb, &tv);
1027 }
1028 EXPORT_SYMBOL(__net_timestamp);
1029
1030 static inline void net_timestamp(struct sk_buff *skb)
1031 {
1032         if (atomic_read(&netstamp_needed))
1033                 __net_timestamp(skb);
1034         else {
1035                 skb->tstamp.off_sec = 0;
1036                 skb->tstamp.off_usec = 0;
1037         }
1038 }
1039
1040 /*
1041  *      Support routine. Sends outgoing frames to any network
1042  *      taps currently in use.
1043  */
1044
1045 void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1046 {
1047         struct packet_type *ptype;
1048
1049         net_timestamp(skb);
1050
1051         rcu_read_lock();
1052         list_for_each_entry_rcu(ptype, &ptype_all, list) {
1053                 /* Never send packets back to the socket
1054                  * they originated from - MvS (miquels@drinkel.ow.org)
1055                  */
1056                 if ((ptype->dev == dev || !ptype->dev) &&
1057                     (ptype->af_packet_priv == NULL ||
1058                      (struct sock *)ptype->af_packet_priv != skb->sk)) {
1059                         struct sk_buff *skb2= skb_clone(skb, GFP_ATOMIC);
1060                         if (!skb2)
1061                                 break;
1062
1063                         /* skb->nh should be correctly
1064                            set by sender, so that the second statement is
1065                            just protection against buggy protocols.
1066                          */
1067                         skb2->mac.raw = skb2->data;
1068
1069                         if (skb2->nh.raw < skb2->data ||
1070                             skb2->nh.raw > skb2->tail) {
1071                                 if (net_ratelimit())
1072                                         printk(KERN_CRIT "protocol %04x is "
1073                                                "buggy, dev %s\n",
1074                                                skb2->protocol, dev->name);
1075                                 skb2->nh.raw = skb2->data;
1076                         }
1077
1078                         skb2->h.raw = skb2->nh.raw;
1079                         skb2->pkt_type = PACKET_OUTGOING;
1080                         ptype->func(skb2, skb->dev, ptype, skb->dev);
1081                 }
1082         }
1083         rcu_read_unlock();
1084 }
1085
1086
1087 void __netif_schedule(struct net_device *dev)
1088 {
1089         if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
1090                 unsigned long flags;
1091                 struct softnet_data *sd;
1092
1093                 local_irq_save(flags);
1094                 sd = &__get_cpu_var(softnet_data);
1095                 dev->next_sched = sd->output_queue;
1096                 sd->output_queue = dev;
1097                 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1098                 local_irq_restore(flags);
1099         }
1100 }
1101 EXPORT_SYMBOL(__netif_schedule);
1102
1103 void __netif_rx_schedule(struct net_device *dev)
1104 {
1105         unsigned long flags;
1106
1107         local_irq_save(flags);
1108         dev_hold(dev);
1109         list_add_tail(&dev->poll_list, &__get_cpu_var(softnet_data).poll_list);
1110         if (dev->quota < 0)
1111                 dev->quota += dev->weight;
1112         else
1113                 dev->quota = dev->weight;
1114         __raise_softirq_irqoff(NET_RX_SOFTIRQ);
1115         local_irq_restore(flags);
1116 }
1117 EXPORT_SYMBOL(__netif_rx_schedule);
1118
1119 void dev_kfree_skb_any(struct sk_buff *skb)
1120 {
1121         if (in_irq() || irqs_disabled())
1122                 dev_kfree_skb_irq(skb);
1123         else
1124                 dev_kfree_skb(skb);
1125 }
1126 EXPORT_SYMBOL(dev_kfree_skb_any);
1127
1128
1129 /* Hot-plugging. */
1130 void netif_device_detach(struct net_device *dev)
1131 {
1132         if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1133             netif_running(dev)) {
1134                 netif_stop_queue(dev);
1135         }
1136 }
1137 EXPORT_SYMBOL(netif_device_detach);
1138
1139 void netif_device_attach(struct net_device *dev)
1140 {
1141         if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1142             netif_running(dev)) {
1143                 netif_wake_queue(dev);
1144                 __netdev_watchdog_up(dev);
1145         }
1146 }
1147 EXPORT_SYMBOL(netif_device_attach);
1148
1149
1150 /*
1151  * Invalidate hardware checksum when packet is to be mangled, and
1152  * complete checksum manually on outgoing path.
1153  */
1154 int skb_checksum_help(struct sk_buff *skb, int inward)
1155 {
1156         unsigned int csum;
1157         int ret = 0, offset = skb->h.raw - skb->data;
1158
1159         if (inward) {
1160                 skb->ip_summed = CHECKSUM_NONE;
1161                 goto out;
1162         }
1163
1164         if (skb_cloned(skb)) {
1165                 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1166                 if (ret)
1167                         goto out;
1168         }
1169
1170         BUG_ON(offset > (int)skb->len);
1171         csum = skb_checksum(skb, offset, skb->len-offset, 0);
1172
1173         offset = skb->tail - skb->h.raw;
1174         BUG_ON(offset <= 0);
1175         BUG_ON(skb->csum + 2 > offset);
1176
1177         *(u16*)(skb->h.raw + skb->csum) = csum_fold(csum);
1178         skb->ip_summed = CHECKSUM_NONE;
1179 out:    
1180         return ret;
1181 }
1182
1183 /* Take action when hardware reception checksum errors are detected. */
1184 #ifdef CONFIG_BUG
1185 void netdev_rx_csum_fault(struct net_device *dev)
1186 {
1187         if (net_ratelimit()) {
1188                 printk(KERN_ERR "%s: hw csum failure.\n", 
1189                         dev ? dev->name : "<unknown>");
1190                 dump_stack();
1191         }
1192 }
1193 EXPORT_SYMBOL(netdev_rx_csum_fault);
1194 #endif
1195
1196 #ifdef CONFIG_HIGHMEM
1197 /* Actually, we should eliminate this check as soon as we know, that:
1198  * 1. IOMMU is present and allows to map all the memory.
1199  * 2. No high memory really exists on this machine.
1200  */
1201
1202 static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1203 {
1204         int i;
1205
1206         if (dev->features & NETIF_F_HIGHDMA)
1207                 return 0;
1208
1209         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1210                 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1211                         return 1;
1212
1213         return 0;
1214 }
1215 #else
1216 #define illegal_highdma(dev, skb)       (0)
1217 #endif
1218
1219 /* Keep head the same: replace data */
1220 int __skb_linearize(struct sk_buff *skb, gfp_t gfp_mask)
1221 {
1222         unsigned int size;
1223         u8 *data;
1224         long offset;
1225         struct skb_shared_info *ninfo;
1226         int headerlen = skb->data - skb->head;
1227         int expand = (skb->tail + skb->data_len) - skb->end;
1228
1229         if (skb_shared(skb))
1230                 BUG();
1231
1232         if (expand <= 0)
1233                 expand = 0;
1234
1235         size = skb->end - skb->head + expand;
1236         size = SKB_DATA_ALIGN(size);
1237         data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
1238         if (!data)
1239                 return -ENOMEM;
1240
1241         /* Copy entire thing */
1242         if (skb_copy_bits(skb, -headerlen, data, headerlen + skb->len))
1243                 BUG();
1244
1245         /* Set up shinfo */
1246         ninfo = (struct skb_shared_info*)(data + size);
1247         atomic_set(&ninfo->dataref, 1);
1248         ninfo->tso_size = skb_shinfo(skb)->tso_size;
1249         ninfo->tso_segs = skb_shinfo(skb)->tso_segs;
1250         ninfo->nr_frags = 0;
1251         ninfo->frag_list = NULL;
1252
1253         /* Offset between the two in bytes */
1254         offset = data - skb->head;
1255
1256         /* Free old data. */
1257         skb_release_data(skb);
1258
1259         skb->head = data;
1260         skb->end  = data + size;
1261
1262         /* Set up new pointers */
1263         skb->h.raw   += offset;
1264         skb->nh.raw  += offset;
1265         skb->mac.raw += offset;
1266         skb->tail    += offset;
1267         skb->data    += offset;
1268
1269         /* We are no longer a clone, even if we were. */
1270         skb->cloned    = 0;
1271
1272         skb->tail     += skb->data_len;
1273         skb->data_len  = 0;
1274         return 0;
1275 }
1276
1277 #define HARD_TX_LOCK(dev, cpu) {                        \
1278         if ((dev->features & NETIF_F_LLTX) == 0) {      \
1279                 spin_lock(&dev->xmit_lock);             \
1280                 dev->xmit_lock_owner = cpu;             \
1281         }                                               \
1282 }
1283
1284 #define HARD_TX_UNLOCK(dev) {                           \
1285         if ((dev->features & NETIF_F_LLTX) == 0) {      \
1286                 dev->xmit_lock_owner = -1;              \
1287                 spin_unlock(&dev->xmit_lock);           \
1288         }                                               \
1289 }
1290
1291 /**
1292  *      dev_queue_xmit - transmit a buffer
1293  *      @skb: buffer to transmit
1294  *
1295  *      Queue a buffer for transmission to a network device. The caller must
1296  *      have set the device and priority and built the buffer before calling
1297  *      this function. The function can be called from an interrupt.
1298  *
1299  *      A negative errno code is returned on a failure. A success does not
1300  *      guarantee the frame will be transmitted as it may be dropped due
1301  *      to congestion or traffic shaping.
1302  *
1303  * -----------------------------------------------------------------------------------
1304  *      I notice this method can also return errors from the queue disciplines,
1305  *      including NET_XMIT_DROP, which is a positive value.  So, errors can also
1306  *      be positive.
1307  *
1308  *      Regardless of the return value, the skb is consumed, so it is currently
1309  *      difficult to retry a send to this method.  (You can bump the ref count
1310  *      before sending to hold a reference for retry if you are careful.)
1311  *
1312  *      When calling this method, interrupts MUST be enabled.  This is because
1313  *      the BH enable code must have IRQs enabled so that it will not deadlock.
1314  *          --BLG
1315  */
1316
1317 int dev_queue_xmit(struct sk_buff *skb)
1318 {
1319         struct net_device *dev = skb->dev;
1320         struct Qdisc *q;
1321         int rc = -ENOMEM;
1322
1323         if (skb_shinfo(skb)->frag_list &&
1324             !(dev->features & NETIF_F_FRAGLIST) &&
1325             __skb_linearize(skb, GFP_ATOMIC))
1326                 goto out_kfree_skb;
1327
1328         /* Fragmented skb is linearized if device does not support SG,
1329          * or if at least one of fragments is in highmem and device
1330          * does not support DMA from it.
1331          */
1332         if (skb_shinfo(skb)->nr_frags &&
1333             (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
1334             __skb_linearize(skb, GFP_ATOMIC))
1335                 goto out_kfree_skb;
1336
1337         /* If packet is not checksummed and device does not support
1338          * checksumming for this protocol, complete checksumming here.
1339          */
1340         if (skb->ip_summed == CHECKSUM_HW &&
1341             (!(dev->features & (NETIF_F_HW_CSUM | NETIF_F_NO_CSUM)) &&
1342              (!(dev->features & NETIF_F_IP_CSUM) ||
1343               skb->protocol != htons(ETH_P_IP))))
1344                 if (skb_checksum_help(skb, 0))
1345                         goto out_kfree_skb;
1346
1347         spin_lock_prefetch(&dev->queue_lock);
1348
1349         /* Disable soft irqs for various locks below. Also 
1350          * stops preemption for RCU. 
1351          */
1352         local_bh_disable(); 
1353
1354         /* Updates of qdisc are serialized by queue_lock. 
1355          * The struct Qdisc which is pointed to by qdisc is now a 
1356          * rcu structure - it may be accessed without acquiring 
1357          * a lock (but the structure may be stale.) The freeing of the
1358          * qdisc will be deferred until it's known that there are no 
1359          * more references to it.
1360          * 
1361          * If the qdisc has an enqueue function, we still need to 
1362          * hold the queue_lock before calling it, since queue_lock
1363          * also serializes access to the device queue.
1364          */
1365
1366         q = rcu_dereference(dev->qdisc);
1367 #ifdef CONFIG_NET_CLS_ACT
1368         skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_EGRESS);
1369 #endif
1370         if (q->enqueue) {
1371                 /* Grab device queue */
1372                 spin_lock(&dev->queue_lock);
1373
1374                 rc = q->enqueue(skb, q);
1375
1376                 qdisc_run(dev);
1377
1378                 spin_unlock(&dev->queue_lock);
1379                 rc = rc == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : rc;
1380                 goto out;
1381         }
1382
1383         /* The device has no queue. Common case for software devices:
1384            loopback, all the sorts of tunnels...
1385
1386            Really, it is unlikely that xmit_lock protection is necessary here.
1387            (f.e. loopback and IP tunnels are clean ignoring statistics
1388            counters.)
1389            However, it is possible, that they rely on protection
1390            made by us here.
1391
1392            Check this and shot the lock. It is not prone from deadlocks.
1393            Either shot noqueue qdisc, it is even simpler 8)
1394          */
1395         if (dev->flags & IFF_UP) {
1396                 int cpu = smp_processor_id(); /* ok because BHs are off */
1397
1398                 if (dev->xmit_lock_owner != cpu) {
1399
1400                         HARD_TX_LOCK(dev, cpu);
1401
1402                         if (!netif_queue_stopped(dev)) {
1403                                 if (netdev_nit)
1404                                         dev_queue_xmit_nit(skb, dev);
1405
1406                                 rc = 0;
1407                                 if (!dev->hard_start_xmit(skb, dev)) {
1408                                         HARD_TX_UNLOCK(dev);
1409                                         goto out;
1410                                 }
1411                         }
1412                         HARD_TX_UNLOCK(dev);
1413                         if (net_ratelimit())
1414                                 printk(KERN_CRIT "Virtual device %s asks to "
1415                                        "queue packet!\n", dev->name);
1416                 } else {
1417                         /* Recursion is detected! It is possible,
1418                          * unfortunately */
1419                         if (net_ratelimit())
1420                                 printk(KERN_CRIT "Dead loop on virtual device "
1421                                        "%s, fix it urgently!\n", dev->name);
1422                 }
1423         }
1424
1425         rc = -ENETDOWN;
1426         local_bh_enable();
1427
1428 out_kfree_skb:
1429         kfree_skb(skb);
1430         return rc;
1431 out:
1432         local_bh_enable();
1433         return rc;
1434 }
1435
1436
1437 /*=======================================================================
1438                         Receiver routines
1439   =======================================================================*/
1440
1441 int netdev_max_backlog = 1000;
1442 int netdev_budget = 300;
1443 int weight_p = 64;            /* old backlog weight */
1444
1445 DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1446
1447
1448 /**
1449  *      netif_rx        -       post buffer to the network code
1450  *      @skb: buffer to post
1451  *
1452  *      This function receives a packet from a device driver and queues it for
1453  *      the upper (protocol) levels to process.  It always succeeds. The buffer
1454  *      may be dropped during processing for congestion control or by the
1455  *      protocol layers.
1456  *
1457  *      return values:
1458  *      NET_RX_SUCCESS  (no congestion)
1459  *      NET_RX_CN_LOW   (low congestion)
1460  *      NET_RX_CN_MOD   (moderate congestion)
1461  *      NET_RX_CN_HIGH  (high congestion)
1462  *      NET_RX_DROP     (packet was dropped)
1463  *
1464  */
1465
1466 int netif_rx(struct sk_buff *skb)
1467 {
1468         struct softnet_data *queue;
1469         unsigned long flags;
1470
1471         /* if netpoll wants it, pretend we never saw it */
1472         if (netpoll_rx(skb))
1473                 return NET_RX_DROP;
1474
1475         if (!skb->tstamp.off_sec)
1476                 net_timestamp(skb);
1477
1478         /*
1479          * The code is rearranged so that the path is the most
1480          * short when CPU is congested, but is still operating.
1481          */
1482         local_irq_save(flags);
1483         queue = &__get_cpu_var(softnet_data);
1484
1485         __get_cpu_var(netdev_rx_stat).total++;
1486         if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
1487                 if (queue->input_pkt_queue.qlen) {
1488 enqueue:
1489                         dev_hold(skb->dev);
1490                         __skb_queue_tail(&queue->input_pkt_queue, skb);
1491                         local_irq_restore(flags);
1492                         return NET_RX_SUCCESS;
1493                 }
1494
1495                 netif_rx_schedule(&queue->backlog_dev);
1496                 goto enqueue;
1497         }
1498
1499         __get_cpu_var(netdev_rx_stat).dropped++;
1500         local_irq_restore(flags);
1501
1502         kfree_skb(skb);
1503         return NET_RX_DROP;
1504 }
1505
1506 int netif_rx_ni(struct sk_buff *skb)
1507 {
1508         int err;
1509
1510         preempt_disable();
1511         err = netif_rx(skb);
1512         if (local_softirq_pending())
1513                 do_softirq();
1514         preempt_enable();
1515
1516         return err;
1517 }
1518
1519 EXPORT_SYMBOL(netif_rx_ni);
1520
1521 static inline struct net_device *skb_bond(struct sk_buff *skb)
1522 {
1523         struct net_device *dev = skb->dev;
1524
1525         if (dev->master) {
1526                 /*
1527                  * On bonding slaves other than the currently active
1528                  * slave, suppress duplicates except for 802.3ad
1529                  * ETH_P_SLOW and alb non-mcast/bcast.
1530                  */
1531                 if (dev->priv_flags & IFF_SLAVE_INACTIVE) {
1532                         if (dev->master->priv_flags & IFF_MASTER_ALB) {
1533                                 if (skb->pkt_type != PACKET_BROADCAST &&
1534                                     skb->pkt_type != PACKET_MULTICAST)
1535                                         goto keep;
1536                         }
1537
1538                         if (dev->master->priv_flags & IFF_MASTER_8023AD &&
1539                             skb->protocol == __constant_htons(ETH_P_SLOW))
1540                                 goto keep;
1541                 
1542                         kfree_skb(skb);
1543                         return NULL;
1544                 }
1545 keep:
1546                 skb->dev = dev->master;
1547         }
1548
1549         return dev;
1550 }
1551
1552 static void net_tx_action(struct softirq_action *h)
1553 {
1554         struct softnet_data *sd = &__get_cpu_var(softnet_data);
1555
1556         if (sd->completion_queue) {
1557                 struct sk_buff *clist;
1558
1559                 local_irq_disable();
1560                 clist = sd->completion_queue;
1561                 sd->completion_queue = NULL;
1562                 local_irq_enable();
1563
1564                 while (clist) {
1565                         struct sk_buff *skb = clist;
1566                         clist = clist->next;
1567
1568                         BUG_TRAP(!atomic_read(&skb->users));
1569                         __kfree_skb(skb);
1570                 }
1571         }
1572
1573         if (sd->output_queue) {
1574                 struct net_device *head;
1575
1576                 local_irq_disable();
1577                 head = sd->output_queue;
1578                 sd->output_queue = NULL;
1579                 local_irq_enable();
1580
1581                 while (head) {
1582                         struct net_device *dev = head;
1583                         head = head->next_sched;
1584
1585                         smp_mb__before_clear_bit();
1586                         clear_bit(__LINK_STATE_SCHED, &dev->state);
1587
1588                         if (spin_trylock(&dev->queue_lock)) {
1589                                 qdisc_run(dev);
1590                                 spin_unlock(&dev->queue_lock);
1591                         } else {
1592                                 netif_schedule(dev);
1593                         }
1594                 }
1595         }
1596 }
1597
1598 static __inline__ int deliver_skb(struct sk_buff *skb,
1599                                   struct packet_type *pt_prev,
1600                                   struct net_device *orig_dev)
1601 {
1602         atomic_inc(&skb->users);
1603         return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1604 }
1605
1606 #if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
1607 int (*br_handle_frame_hook)(struct net_bridge_port *p, struct sk_buff **pskb);
1608 struct net_bridge;
1609 struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
1610                                                 unsigned char *addr);
1611 void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent);
1612
1613 static __inline__ int handle_bridge(struct sk_buff **pskb,
1614                                     struct packet_type **pt_prev, int *ret,
1615                                     struct net_device *orig_dev)
1616 {
1617         struct net_bridge_port *port;
1618
1619         if ((*pskb)->pkt_type == PACKET_LOOPBACK ||
1620             (port = rcu_dereference((*pskb)->dev->br_port)) == NULL)
1621                 return 0;
1622
1623         if (*pt_prev) {
1624                 *ret = deliver_skb(*pskb, *pt_prev, orig_dev);
1625                 *pt_prev = NULL;
1626         } 
1627         
1628         return br_handle_frame_hook(port, pskb);
1629 }
1630 #else
1631 #define handle_bridge(skb, pt_prev, ret, orig_dev)      (0)
1632 #endif
1633
1634 #ifdef CONFIG_NET_CLS_ACT
1635 /* TODO: Maybe we should just force sch_ingress to be compiled in
1636  * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
1637  * a compare and 2 stores extra right now if we dont have it on
1638  * but have CONFIG_NET_CLS_ACT
1639  * NOTE: This doesnt stop any functionality; if you dont have 
1640  * the ingress scheduler, you just cant add policies on ingress.
1641  *
1642  */
1643 static int ing_filter(struct sk_buff *skb) 
1644 {
1645         struct Qdisc *q;
1646         struct net_device *dev = skb->dev;
1647         int result = TC_ACT_OK;
1648         
1649         if (dev->qdisc_ingress) {
1650                 __u32 ttl = (__u32) G_TC_RTTL(skb->tc_verd);
1651                 if (MAX_RED_LOOP < ttl++) {
1652                         printk("Redir loop detected Dropping packet (%s->%s)\n",
1653                                 skb->input_dev->name, skb->dev->name);
1654                         return TC_ACT_SHOT;
1655                 }
1656
1657                 skb->tc_verd = SET_TC_RTTL(skb->tc_verd,ttl);
1658
1659                 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_INGRESS);
1660
1661                 spin_lock(&dev->ingress_lock);
1662                 if ((q = dev->qdisc_ingress) != NULL)
1663                         result = q->enqueue(skb, q);
1664                 spin_unlock(&dev->ingress_lock);
1665
1666         }
1667
1668         return result;
1669 }
1670 #endif
1671
1672 int netif_receive_skb(struct sk_buff *skb)
1673 {
1674         struct packet_type *ptype, *pt_prev;
1675         struct net_device *orig_dev;
1676         int ret = NET_RX_DROP;
1677         unsigned short type;
1678
1679         /* if we've gotten here through NAPI, check netpoll */
1680         if (skb->dev->poll && netpoll_rx(skb))
1681                 return NET_RX_DROP;
1682
1683         if (!skb->tstamp.off_sec)
1684                 net_timestamp(skb);
1685
1686         if (!skb->input_dev)
1687                 skb->input_dev = skb->dev;
1688
1689         orig_dev = skb_bond(skb);
1690
1691         if (!orig_dev)
1692                 return NET_RX_DROP;
1693
1694         __get_cpu_var(netdev_rx_stat).total++;
1695
1696         skb->h.raw = skb->nh.raw = skb->data;
1697         skb->mac_len = skb->nh.raw - skb->mac.raw;
1698
1699         pt_prev = NULL;
1700
1701         rcu_read_lock();
1702
1703 #ifdef CONFIG_NET_CLS_ACT
1704         if (skb->tc_verd & TC_NCLS) {
1705                 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
1706                 goto ncls;
1707         }
1708 #endif
1709
1710         list_for_each_entry_rcu(ptype, &ptype_all, list) {
1711                 if (!ptype->dev || ptype->dev == skb->dev) {
1712                         if (pt_prev) 
1713                                 ret = deliver_skb(skb, pt_prev, orig_dev);
1714                         pt_prev = ptype;
1715                 }
1716         }
1717
1718 #ifdef CONFIG_NET_CLS_ACT
1719         if (pt_prev) {
1720                 ret = deliver_skb(skb, pt_prev, orig_dev);
1721                 pt_prev = NULL; /* noone else should process this after*/
1722         } else {
1723                 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
1724         }
1725
1726         ret = ing_filter(skb);
1727
1728         if (ret == TC_ACT_SHOT || (ret == TC_ACT_STOLEN)) {
1729                 kfree_skb(skb);
1730                 goto out;
1731         }
1732
1733         skb->tc_verd = 0;
1734 ncls:
1735 #endif
1736
1737         handle_diverter(skb);
1738
1739         if (handle_bridge(&skb, &pt_prev, &ret, orig_dev))
1740                 goto out;
1741
1742         type = skb->protocol;
1743         list_for_each_entry_rcu(ptype, &ptype_base[ntohs(type)&15], list) {
1744                 if (ptype->type == type &&
1745                     (!ptype->dev || ptype->dev == skb->dev)) {
1746                         if (pt_prev) 
1747                                 ret = deliver_skb(skb, pt_prev, orig_dev);
1748                         pt_prev = ptype;
1749                 }
1750         }
1751
1752         if (pt_prev) {
1753                 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1754         } else {
1755                 kfree_skb(skb);
1756                 /* Jamal, now you will not able to escape explaining
1757                  * me how you were going to use this. :-)
1758                  */
1759                 ret = NET_RX_DROP;
1760         }
1761
1762 out:
1763         rcu_read_unlock();
1764         return ret;
1765 }
1766
1767 static int process_backlog(struct net_device *backlog_dev, int *budget)
1768 {
1769         int work = 0;
1770         int quota = min(backlog_dev->quota, *budget);
1771         struct softnet_data *queue = &__get_cpu_var(softnet_data);
1772         unsigned long start_time = jiffies;
1773
1774         backlog_dev->weight = weight_p;
1775         for (;;) {
1776                 struct sk_buff *skb;
1777                 struct net_device *dev;
1778
1779                 local_irq_disable();
1780                 skb = __skb_dequeue(&queue->input_pkt_queue);
1781                 if (!skb)
1782                         goto job_done;
1783                 local_irq_enable();
1784
1785                 dev = skb->dev;
1786
1787                 netif_receive_skb(skb);
1788
1789                 dev_put(dev);
1790
1791                 work++;
1792
1793                 if (work >= quota || jiffies - start_time > 1)
1794                         break;
1795
1796         }
1797
1798         backlog_dev->quota -= work;
1799         *budget -= work;
1800         return -1;
1801
1802 job_done:
1803         backlog_dev->quota -= work;
1804         *budget -= work;
1805
1806         list_del(&backlog_dev->poll_list);
1807         smp_mb__before_clear_bit();
1808         netif_poll_enable(backlog_dev);
1809
1810         local_irq_enable();
1811         return 0;
1812 }
1813
1814 static void net_rx_action(struct softirq_action *h)
1815 {
1816         struct softnet_data *queue = &__get_cpu_var(softnet_data);
1817         unsigned long start_time = jiffies;
1818         int budget = netdev_budget;
1819         void *have;
1820
1821         local_irq_disable();
1822
1823         while (!list_empty(&queue->poll_list)) {
1824                 struct net_device *dev;
1825
1826                 if (budget <= 0 || jiffies - start_time > 1)
1827                         goto softnet_break;
1828
1829                 local_irq_enable();
1830
1831                 dev = list_entry(queue->poll_list.next,
1832                                  struct net_device, poll_list);
1833                 have = netpoll_poll_lock(dev);
1834
1835                 if (dev->quota <= 0 || dev->poll(dev, &budget)) {
1836                         netpoll_poll_unlock(have);
1837                         local_irq_disable();
1838                         list_move_tail(&dev->poll_list, &queue->poll_list);
1839                         if (dev->quota < 0)
1840                                 dev->quota += dev->weight;
1841                         else
1842                                 dev->quota = dev->weight;
1843                 } else {
1844                         netpoll_poll_unlock(have);
1845                         dev_put(dev);
1846                         local_irq_disable();
1847                 }
1848         }
1849 out:
1850         local_irq_enable();
1851         return;
1852
1853 softnet_break:
1854         __get_cpu_var(netdev_rx_stat).time_squeeze++;
1855         __raise_softirq_irqoff(NET_RX_SOFTIRQ);
1856         goto out;
1857 }
1858
1859 static gifconf_func_t * gifconf_list [NPROTO];
1860
1861 /**
1862  *      register_gifconf        -       register a SIOCGIF handler
1863  *      @family: Address family
1864  *      @gifconf: Function handler
1865  *
1866  *      Register protocol dependent address dumping routines. The handler
1867  *      that is passed must not be freed or reused until it has been replaced
1868  *      by another handler.
1869  */
1870 int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
1871 {
1872         if (family >= NPROTO)
1873                 return -EINVAL;
1874         gifconf_list[family] = gifconf;
1875         return 0;
1876 }
1877
1878
1879 /*
1880  *      Map an interface index to its name (SIOCGIFNAME)
1881  */
1882
1883 /*
1884  *      We need this ioctl for efficient implementation of the
1885  *      if_indextoname() function required by the IPv6 API.  Without
1886  *      it, we would have to search all the interfaces to find a
1887  *      match.  --pb
1888  */
1889
1890 static int dev_ifname(struct ifreq __user *arg)
1891 {
1892         struct net_device *dev;
1893         struct ifreq ifr;
1894
1895         /*
1896          *      Fetch the caller's info block.
1897          */
1898
1899         if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
1900                 return -EFAULT;
1901
1902         read_lock(&dev_base_lock);
1903         dev = __dev_get_by_index(ifr.ifr_ifindex);
1904         if (!dev) {
1905                 read_unlock(&dev_base_lock);
1906                 return -ENODEV;
1907         }
1908
1909         strcpy(ifr.ifr_name, dev->name);
1910         read_unlock(&dev_base_lock);
1911
1912         if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
1913                 return -EFAULT;
1914         return 0;
1915 }
1916
1917 /*
1918  *      Perform a SIOCGIFCONF call. This structure will change
1919  *      size eventually, and there is nothing I can do about it.
1920  *      Thus we will need a 'compatibility mode'.
1921  */
1922
1923 static int dev_ifconf(char __user *arg)
1924 {
1925         struct ifconf ifc;
1926         struct net_device *dev;
1927         char __user *pos;
1928         int len;
1929         int total;
1930         int i;
1931
1932         /*
1933          *      Fetch the caller's info block.
1934          */
1935
1936         if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
1937                 return -EFAULT;
1938
1939         pos = ifc.ifc_buf;
1940         len = ifc.ifc_len;
1941
1942         /*
1943          *      Loop over the interfaces, and write an info block for each.
1944          */
1945
1946         total = 0;
1947         for (dev = dev_base; dev; dev = dev->next) {
1948                 if (vx_flags(VXF_HIDE_NETIF, 0) &&
1949                         !dev_in_nx_info(dev, current->nx_info))
1950                         continue;
1951                 for (i = 0; i < NPROTO; i++) {
1952                         if (gifconf_list[i]) {
1953                                 int done;
1954                                 if (!pos)
1955                                         done = gifconf_list[i](dev, NULL, 0);
1956                                 else
1957                                         done = gifconf_list[i](dev, pos + total,
1958                                                                len - total);
1959                                 if (done < 0)
1960                                         return -EFAULT;
1961                                 total += done;
1962                         }
1963                 }
1964         }
1965
1966         /*
1967          *      All done.  Write the updated control block back to the caller.
1968          */
1969         ifc.ifc_len = total;
1970
1971         /*
1972          *      Both BSD and Solaris return 0 here, so we do too.
1973          */
1974         return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
1975 }
1976
1977 #ifdef CONFIG_PROC_FS
1978 /*
1979  *      This is invoked by the /proc filesystem handler to display a device
1980  *      in detail.
1981  */
1982 static __inline__ struct net_device *dev_get_idx(loff_t pos)
1983 {
1984         struct net_device *dev;
1985         loff_t i;
1986
1987         for (i = 0, dev = dev_base; dev && i < pos; ++i, dev = dev->next);
1988
1989         return i == pos ? dev : NULL;
1990 }
1991
1992 void *dev_seq_start(struct seq_file *seq, loff_t *pos)
1993 {
1994         read_lock(&dev_base_lock);
1995         return *pos ? dev_get_idx(*pos - 1) : SEQ_START_TOKEN;
1996 }
1997
1998 void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1999 {
2000         ++*pos;
2001         return v == SEQ_START_TOKEN ? dev_base : ((struct net_device *)v)->next;
2002 }
2003
2004 void dev_seq_stop(struct seq_file *seq, void *v)
2005 {
2006         read_unlock(&dev_base_lock);
2007 }
2008
2009 static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
2010 {
2011         struct nx_info *nxi = current->nx_info;
2012
2013         if (vx_flags(VXF_HIDE_NETIF, 0) && !dev_in_nx_info(dev, nxi))
2014                 return;
2015         if (dev->get_stats) {
2016                 struct net_device_stats *stats = dev->get_stats(dev);
2017
2018                 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
2019                                 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
2020                            dev->name, stats->rx_bytes, stats->rx_packets,
2021                            stats->rx_errors,
2022                            stats->rx_dropped + stats->rx_missed_errors,
2023                            stats->rx_fifo_errors,
2024                            stats->rx_length_errors + stats->rx_over_errors +
2025                              stats->rx_crc_errors + stats->rx_frame_errors,
2026                            stats->rx_compressed, stats->multicast,
2027                            stats->tx_bytes, stats->tx_packets,
2028                            stats->tx_errors, stats->tx_dropped,
2029                            stats->tx_fifo_errors, stats->collisions,
2030                            stats->tx_carrier_errors +
2031                              stats->tx_aborted_errors +
2032                              stats->tx_window_errors +
2033                              stats->tx_heartbeat_errors,
2034                            stats->tx_compressed);
2035         } else
2036                 seq_printf(seq, "%6s: No statistics available.\n", dev->name);
2037 }
2038
2039 /*
2040  *      Called from the PROCfs module. This now uses the new arbitrary sized
2041  *      /proc/net interface to create /proc/net/dev
2042  */
2043 static int dev_seq_show(struct seq_file *seq, void *v)
2044 {
2045         if (v == SEQ_START_TOKEN)
2046                 seq_puts(seq, "Inter-|   Receive                            "
2047                               "                    |  Transmit\n"
2048                               " face |bytes    packets errs drop fifo frame "
2049                               "compressed multicast|bytes    packets errs "
2050                               "drop fifo colls carrier compressed\n");
2051         else
2052                 dev_seq_printf_stats(seq, v);
2053         return 0;
2054 }
2055
2056 static struct netif_rx_stats *softnet_get_online(loff_t *pos)
2057 {
2058         struct netif_rx_stats *rc = NULL;
2059
2060         while (*pos < NR_CPUS)
2061                 if (cpu_online(*pos)) {
2062                         rc = &per_cpu(netdev_rx_stat, *pos);
2063                         break;
2064                 } else
2065                         ++*pos;
2066         return rc;
2067 }
2068
2069 static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
2070 {
2071         return softnet_get_online(pos);
2072 }
2073
2074 static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2075 {
2076         ++*pos;
2077         return softnet_get_online(pos);
2078 }
2079
2080 static void softnet_seq_stop(struct seq_file *seq, void *v)
2081 {
2082 }
2083
2084 static int softnet_seq_show(struct seq_file *seq, void *v)
2085 {
2086         struct netif_rx_stats *s = v;
2087
2088         seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
2089                    s->total, s->dropped, s->time_squeeze, 0,
2090                    0, 0, 0, 0, /* was fastroute */
2091                    s->cpu_collision );
2092         return 0;
2093 }
2094
2095 static struct seq_operations dev_seq_ops = {
2096         .start = dev_seq_start,
2097         .next  = dev_seq_next,
2098         .stop  = dev_seq_stop,
2099         .show  = dev_seq_show,
2100 };
2101
2102 static int dev_seq_open(struct inode *inode, struct file *file)
2103 {
2104         return seq_open(file, &dev_seq_ops);
2105 }
2106
2107 static struct file_operations dev_seq_fops = {
2108         .owner   = THIS_MODULE,
2109         .open    = dev_seq_open,
2110         .read    = seq_read,
2111         .llseek  = seq_lseek,
2112         .release = seq_release,
2113 };
2114
2115 static struct seq_operations softnet_seq_ops = {
2116         .start = softnet_seq_start,
2117         .next  = softnet_seq_next,
2118         .stop  = softnet_seq_stop,
2119         .show  = softnet_seq_show,
2120 };
2121
2122 static int softnet_seq_open(struct inode *inode, struct file *file)
2123 {
2124         return seq_open(file, &softnet_seq_ops);
2125 }
2126
2127 static struct file_operations softnet_seq_fops = {
2128         .owner   = THIS_MODULE,
2129         .open    = softnet_seq_open,
2130         .read    = seq_read,
2131         .llseek  = seq_lseek,
2132         .release = seq_release,
2133 };
2134
2135 #ifdef CONFIG_WIRELESS_EXT
2136 extern int wireless_proc_init(void);
2137 #else
2138 #define wireless_proc_init() 0
2139 #endif
2140
2141 static int __init dev_proc_init(void)
2142 {
2143         int rc = -ENOMEM;
2144
2145         if (!proc_net_fops_create("dev", S_IRUGO, &dev_seq_fops))
2146                 goto out;
2147         if (!proc_net_fops_create("softnet_stat", S_IRUGO, &softnet_seq_fops))
2148                 goto out_dev;
2149         if (wireless_proc_init())
2150                 goto out_softnet;
2151         rc = 0;
2152 out:
2153         return rc;
2154 out_softnet:
2155         proc_net_remove("softnet_stat");
2156 out_dev:
2157         proc_net_remove("dev");
2158         goto out;
2159 }
2160 #else
2161 #define dev_proc_init() 0
2162 #endif  /* CONFIG_PROC_FS */
2163
2164
2165 /**
2166  *      netdev_set_master       -       set up master/slave pair
2167  *      @slave: slave device
2168  *      @master: new master device
2169  *
2170  *      Changes the master device of the slave. Pass %NULL to break the
2171  *      bonding. The caller must hold the RTNL semaphore. On a failure
2172  *      a negative errno code is returned. On success the reference counts
2173  *      are adjusted, %RTM_NEWLINK is sent to the routing socket and the
2174  *      function returns zero.
2175  */
2176 int netdev_set_master(struct net_device *slave, struct net_device *master)
2177 {
2178         struct net_device *old = slave->master;
2179
2180         ASSERT_RTNL();
2181
2182         if (master) {
2183                 if (old)
2184                         return -EBUSY;
2185                 dev_hold(master);
2186         }
2187
2188         slave->master = master;
2189         
2190         synchronize_net();
2191
2192         if (old)
2193                 dev_put(old);
2194
2195         if (master)
2196                 slave->flags |= IFF_SLAVE;
2197         else
2198                 slave->flags &= ~IFF_SLAVE;
2199
2200         rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
2201         return 0;
2202 }
2203
2204 /**
2205  *      dev_set_promiscuity     - update promiscuity count on a device
2206  *      @dev: device
2207  *      @inc: modifier
2208  *
2209  *      Add or remove promiscuity from a device. While the count in the device
2210  *      remains above zero the interface remains promiscuous. Once it hits zero
2211  *      the device reverts back to normal filtering operation. A negative inc
2212  *      value is used to drop promiscuity on the device.
2213  */
2214 void dev_set_promiscuity(struct net_device *dev, int inc)
2215 {
2216         unsigned short old_flags = dev->flags;
2217
2218         if ((dev->promiscuity += inc) == 0)
2219                 dev->flags &= ~IFF_PROMISC;
2220         else
2221                 dev->flags |= IFF_PROMISC;
2222         if (dev->flags != old_flags) {
2223                 dev_mc_upload(dev);
2224                 printk(KERN_INFO "device %s %s promiscuous mode\n",
2225                        dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
2226                                                                "left");
2227                 audit_log(current->audit_context, GFP_ATOMIC,
2228                         AUDIT_ANOM_PROMISCUOUS,
2229                         "dev=%s prom=%d old_prom=%d auid=%u",
2230                         dev->name, (dev->flags & IFF_PROMISC),
2231                         (old_flags & IFF_PROMISC),
2232                         audit_get_loginuid(current->audit_context)); 
2233         }
2234 }
2235
2236 /**
2237  *      dev_set_allmulti        - update allmulti count on a device
2238  *      @dev: device
2239  *      @inc: modifier
2240  *
2241  *      Add or remove reception of all multicast frames to a device. While the
2242  *      count in the device remains above zero the interface remains listening
2243  *      to all interfaces. Once it hits zero the device reverts back to normal
2244  *      filtering operation. A negative @inc value is used to drop the counter
2245  *      when releasing a resource needing all multicasts.
2246  */
2247
2248 void dev_set_allmulti(struct net_device *dev, int inc)
2249 {
2250         unsigned short old_flags = dev->flags;
2251
2252         dev->flags |= IFF_ALLMULTI;
2253         if ((dev->allmulti += inc) == 0)
2254                 dev->flags &= ~IFF_ALLMULTI;
2255         if (dev->flags ^ old_flags)
2256                 dev_mc_upload(dev);
2257 }
2258
2259 unsigned dev_get_flags(const struct net_device *dev)
2260 {
2261         unsigned flags;
2262
2263         flags = (dev->flags & ~(IFF_PROMISC |
2264                                 IFF_ALLMULTI |
2265                                 IFF_RUNNING |
2266                                 IFF_LOWER_UP |
2267                                 IFF_DORMANT)) |
2268                 (dev->gflags & (IFF_PROMISC |
2269                                 IFF_ALLMULTI));
2270
2271         if (netif_running(dev)) {
2272                 if (netif_oper_up(dev))
2273                         flags |= IFF_RUNNING;
2274                 if (netif_carrier_ok(dev))
2275                         flags |= IFF_LOWER_UP;
2276                 if (netif_dormant(dev))
2277                         flags |= IFF_DORMANT;
2278         }
2279
2280         return flags;
2281 }
2282
2283 int dev_change_flags(struct net_device *dev, unsigned flags)
2284 {
2285         int ret;
2286         int old_flags = dev->flags;
2287
2288         /*
2289          *      Set the flags on our device.
2290          */
2291
2292         dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
2293                                IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
2294                                IFF_AUTOMEDIA)) |
2295                      (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
2296                                     IFF_ALLMULTI));
2297
2298         /*
2299          *      Load in the correct multicast list now the flags have changed.
2300          */
2301
2302         dev_mc_upload(dev);
2303
2304         /*
2305          *      Have we downed the interface. We handle IFF_UP ourselves
2306          *      according to user attempts to set it, rather than blindly
2307          *      setting it.
2308          */
2309
2310         ret = 0;
2311         if ((old_flags ^ flags) & IFF_UP) {     /* Bit is different  ? */
2312                 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
2313
2314                 if (!ret)
2315                         dev_mc_upload(dev);
2316         }
2317
2318         if (dev->flags & IFF_UP &&
2319             ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
2320                                           IFF_VOLATILE)))
2321                 raw_notifier_call_chain(&netdev_chain,
2322                                 NETDEV_CHANGE, dev);
2323
2324         if ((flags ^ dev->gflags) & IFF_PROMISC) {
2325                 int inc = (flags & IFF_PROMISC) ? +1 : -1;
2326                 dev->gflags ^= IFF_PROMISC;
2327                 dev_set_promiscuity(dev, inc);
2328         }
2329
2330         /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
2331            is important. Some (broken) drivers set IFF_PROMISC, when
2332            IFF_ALLMULTI is requested not asking us and not reporting.
2333          */
2334         if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
2335                 int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
2336                 dev->gflags ^= IFF_ALLMULTI;
2337                 dev_set_allmulti(dev, inc);
2338         }
2339
2340         if (old_flags ^ dev->flags)
2341                 rtmsg_ifinfo(RTM_NEWLINK, dev, old_flags ^ dev->flags);
2342
2343         return ret;
2344 }
2345
2346 int dev_set_mtu(struct net_device *dev, int new_mtu)
2347 {
2348         int err;
2349
2350         if (new_mtu == dev->mtu)
2351                 return 0;
2352
2353         /*      MTU must be positive.    */
2354         if (new_mtu < 0)
2355                 return -EINVAL;
2356
2357         if (!netif_device_present(dev))
2358                 return -ENODEV;
2359
2360         err = 0;
2361         if (dev->change_mtu)
2362                 err = dev->change_mtu(dev, new_mtu);
2363         else
2364                 dev->mtu = new_mtu;
2365         if (!err && dev->flags & IFF_UP)
2366                 raw_notifier_call_chain(&netdev_chain,
2367                                 NETDEV_CHANGEMTU, dev);
2368         return err;
2369 }
2370
2371 int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
2372 {
2373         int err;
2374
2375         if (!dev->set_mac_address)
2376                 return -EOPNOTSUPP;
2377         if (sa->sa_family != dev->type)
2378                 return -EINVAL;
2379         if (!netif_device_present(dev))
2380                 return -ENODEV;
2381         err = dev->set_mac_address(dev, sa);
2382         if (!err)
2383                 raw_notifier_call_chain(&netdev_chain,
2384                                 NETDEV_CHANGEADDR, dev);
2385         return err;
2386 }
2387
2388 /*
2389  *      Perform the SIOCxIFxxx calls.
2390  */
2391 static int dev_ifsioc(struct ifreq *ifr, unsigned int cmd)
2392 {
2393         int err;
2394         struct net_device *dev = __dev_get_by_name(ifr->ifr_name);
2395
2396         if (!dev)
2397                 return -ENODEV;
2398
2399         switch (cmd) {
2400                 case SIOCGIFFLAGS:      /* Get interface flags */
2401                         ifr->ifr_flags = dev_get_flags(dev);
2402                         return 0;
2403
2404                 case SIOCSIFFLAGS:      /* Set interface flags */
2405                         return dev_change_flags(dev, ifr->ifr_flags);
2406
2407                 case SIOCGIFMETRIC:     /* Get the metric on the interface
2408                                            (currently unused) */
2409                         ifr->ifr_metric = 0;
2410                         return 0;
2411
2412                 case SIOCSIFMETRIC:     /* Set the metric on the interface
2413                                            (currently unused) */
2414                         return -EOPNOTSUPP;
2415
2416                 case SIOCGIFMTU:        /* Get the MTU of a device */
2417                         ifr->ifr_mtu = dev->mtu;
2418                         return 0;
2419
2420                 case SIOCSIFMTU:        /* Set the MTU of a device */
2421                         return dev_set_mtu(dev, ifr->ifr_mtu);
2422
2423                 case SIOCGIFHWADDR:
2424                         if (!dev->addr_len)
2425                                 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
2426                         else
2427                                 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
2428                                        min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
2429                         ifr->ifr_hwaddr.sa_family = dev->type;
2430                         return 0;
2431
2432                 case SIOCSIFHWADDR:
2433                         return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
2434
2435                 case SIOCSIFHWBROADCAST:
2436                         if (ifr->ifr_hwaddr.sa_family != dev->type)
2437                                 return -EINVAL;
2438                         memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
2439                                min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
2440                         raw_notifier_call_chain(&netdev_chain,
2441                                             NETDEV_CHANGEADDR, dev);
2442                         return 0;
2443
2444                 case SIOCGIFMAP:
2445                         ifr->ifr_map.mem_start = dev->mem_start;
2446                         ifr->ifr_map.mem_end   = dev->mem_end;
2447                         ifr->ifr_map.base_addr = dev->base_addr;
2448                         ifr->ifr_map.irq       = dev->irq;
2449                         ifr->ifr_map.dma       = dev->dma;
2450                         ifr->ifr_map.port      = dev->if_port;
2451                         return 0;
2452
2453                 case SIOCSIFMAP:
2454                         if (dev->set_config) {
2455                                 if (!netif_device_present(dev))
2456                                         return -ENODEV;
2457                                 return dev->set_config(dev, &ifr->ifr_map);
2458                         }
2459                         return -EOPNOTSUPP;
2460
2461                 case SIOCADDMULTI:
2462                         if (!dev->set_multicast_list ||
2463                             ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
2464                                 return -EINVAL;
2465                         if (!netif_device_present(dev))
2466                                 return -ENODEV;
2467                         return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
2468                                           dev->addr_len, 1);
2469
2470                 case SIOCDELMULTI:
2471                         if (!dev->set_multicast_list ||
2472                             ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
2473                                 return -EINVAL;
2474                         if (!netif_device_present(dev))
2475                                 return -ENODEV;
2476                         return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
2477                                              dev->addr_len, 1);
2478
2479                 case SIOCGIFINDEX:
2480                         ifr->ifr_ifindex = dev->ifindex;
2481                         return 0;
2482
2483                 case SIOCGIFTXQLEN:
2484                         ifr->ifr_qlen = dev->tx_queue_len;
2485                         return 0;
2486
2487                 case SIOCSIFTXQLEN:
2488                         if (ifr->ifr_qlen < 0)
2489                                 return -EINVAL;
2490                         dev->tx_queue_len = ifr->ifr_qlen;
2491                         return 0;
2492
2493                 case SIOCSIFNAME:
2494                         ifr->ifr_newname[IFNAMSIZ-1] = '\0';
2495                         return dev_change_name(dev, ifr->ifr_newname);
2496
2497                 /*
2498                  *      Unknown or private ioctl
2499                  */
2500
2501                 default:
2502                         if ((cmd >= SIOCDEVPRIVATE &&
2503                             cmd <= SIOCDEVPRIVATE + 15) ||
2504                             cmd == SIOCBONDENSLAVE ||
2505                             cmd == SIOCBONDRELEASE ||
2506                             cmd == SIOCBONDSETHWADDR ||
2507                             cmd == SIOCBONDSLAVEINFOQUERY ||
2508                             cmd == SIOCBONDINFOQUERY ||
2509                             cmd == SIOCBONDCHANGEACTIVE ||
2510                             cmd == SIOCGMIIPHY ||
2511                             cmd == SIOCGMIIREG ||
2512                             cmd == SIOCSMIIREG ||
2513                             cmd == SIOCBRADDIF ||
2514                             cmd == SIOCBRDELIF ||
2515                             cmd == SIOCWANDEV) {
2516                                 err = -EOPNOTSUPP;
2517                                 if (dev->do_ioctl) {
2518                                         if (netif_device_present(dev))
2519                                                 err = dev->do_ioctl(dev, ifr,
2520                                                                     cmd);
2521                                         else
2522                                                 err = -ENODEV;
2523                                 }
2524                         } else
2525                                 err = -EINVAL;
2526
2527         }
2528         return err;
2529 }
2530
2531 /*
2532  *      This function handles all "interface"-type I/O control requests. The actual
2533  *      'doing' part of this is dev_ifsioc above.
2534  */
2535
2536 /**
2537  *      dev_ioctl       -       network device ioctl
2538  *      @cmd: command to issue
2539  *      @arg: pointer to a struct ifreq in user space
2540  *
2541  *      Issue ioctl functions to devices. This is normally called by the
2542  *      user space syscall interfaces but can sometimes be useful for
2543  *      other purposes. The return value is the return from the syscall if
2544  *      positive or a negative errno code on error.
2545  */
2546
2547 int dev_ioctl(unsigned int cmd, void __user *arg)
2548 {
2549         struct ifreq ifr;
2550         int ret;
2551         char *colon;
2552
2553         /* One special case: SIOCGIFCONF takes ifconf argument
2554            and requires shared lock, because it sleeps writing
2555            to user space.
2556          */
2557
2558         if (cmd == SIOCGIFCONF) {
2559                 rtnl_lock();
2560                 ret = dev_ifconf((char __user *) arg);
2561                 rtnl_unlock();
2562                 return ret;
2563         }
2564         if (cmd == SIOCGIFNAME)
2565                 return dev_ifname((struct ifreq __user *)arg);
2566
2567         if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2568                 return -EFAULT;
2569
2570         ifr.ifr_name[IFNAMSIZ-1] = 0;
2571
2572         colon = strchr(ifr.ifr_name, ':');
2573         if (colon)
2574                 *colon = 0;
2575
2576         /*
2577          *      See which interface the caller is talking about.
2578          */
2579
2580         switch (cmd) {
2581                 /*
2582                  *      These ioctl calls:
2583                  *      - can be done by all.
2584                  *      - atomic and do not require locking.
2585                  *      - return a value
2586                  */
2587                 case SIOCGIFFLAGS:
2588                 case SIOCGIFMETRIC:
2589                 case SIOCGIFMTU:
2590                 case SIOCGIFHWADDR:
2591                 case SIOCGIFSLAVE:
2592                 case SIOCGIFMAP:
2593                 case SIOCGIFINDEX:
2594                 case SIOCGIFTXQLEN:
2595                         dev_load(ifr.ifr_name);
2596                         read_lock(&dev_base_lock);
2597                         ret = dev_ifsioc(&ifr, cmd);
2598                         read_unlock(&dev_base_lock);
2599                         if (!ret) {
2600                                 if (colon)
2601                                         *colon = ':';
2602                                 if (copy_to_user(arg, &ifr,
2603                                                  sizeof(struct ifreq)))
2604                                         ret = -EFAULT;
2605                         }
2606                         return ret;
2607
2608                 case SIOCETHTOOL:
2609                         dev_load(ifr.ifr_name);
2610                         rtnl_lock();
2611                         ret = dev_ethtool(&ifr);
2612                         rtnl_unlock();
2613                         if (!ret) {
2614                                 if (colon)
2615                                         *colon = ':';
2616                                 if (copy_to_user(arg, &ifr,
2617                                                  sizeof(struct ifreq)))
2618                                         ret = -EFAULT;
2619                         }
2620                         return ret;
2621
2622                 /*
2623                  *      These ioctl calls:
2624                  *      - require superuser power.
2625                  *      - require strict serialization.
2626                  *      - return a value
2627                  */
2628                 case SIOCGMIIPHY:
2629                 case SIOCGMIIREG:
2630                 case SIOCSIFNAME:
2631                         if (!capable(CAP_NET_ADMIN))
2632                                 return -EPERM;
2633                         dev_load(ifr.ifr_name);
2634                         rtnl_lock();
2635                         ret = dev_ifsioc(&ifr, cmd);
2636                         rtnl_unlock();
2637                         if (!ret) {
2638                                 if (colon)
2639                                         *colon = ':';
2640                                 if (copy_to_user(arg, &ifr,
2641                                                  sizeof(struct ifreq)))
2642                                         ret = -EFAULT;
2643                         }
2644                         return ret;
2645
2646                 /*
2647                  *      These ioctl calls:
2648                  *      - require superuser power.
2649                  *      - require strict serialization.
2650                  *      - do not return a value
2651                  */
2652                 case SIOCSIFFLAGS:
2653                 case SIOCSIFMETRIC:
2654                 case SIOCSIFMTU:
2655                 case SIOCSIFMAP:
2656                 case SIOCSIFHWADDR:
2657                 case SIOCSIFSLAVE:
2658                 case SIOCADDMULTI:
2659                 case SIOCDELMULTI:
2660                 case SIOCSIFHWBROADCAST:
2661                 case SIOCSIFTXQLEN:
2662                 case SIOCSMIIREG:
2663                 case SIOCBONDENSLAVE:
2664                 case SIOCBONDRELEASE:
2665                 case SIOCBONDSETHWADDR:
2666                 case SIOCBONDCHANGEACTIVE:
2667                 case SIOCBRADDIF:
2668                 case SIOCBRDELIF:
2669                         if (!capable(CAP_NET_ADMIN))
2670                                 return -EPERM;
2671                         /* fall through */
2672                 case SIOCBONDSLAVEINFOQUERY:
2673                 case SIOCBONDINFOQUERY:
2674                         dev_load(ifr.ifr_name);
2675                         rtnl_lock();
2676                         ret = dev_ifsioc(&ifr, cmd);
2677                         rtnl_unlock();
2678                         return ret;
2679
2680                 case SIOCGIFMEM:
2681                         /* Get the per device memory space. We can add this but
2682                          * currently do not support it */
2683                 case SIOCSIFMEM:
2684                         /* Set the per device memory buffer space.
2685                          * Not applicable in our case */
2686                 case SIOCSIFLINK:
2687                         return -EINVAL;
2688
2689                 /*
2690                  *      Unknown or private ioctl.
2691                  */
2692                 default:
2693                         if (cmd == SIOCWANDEV ||
2694                             (cmd >= SIOCDEVPRIVATE &&
2695                              cmd <= SIOCDEVPRIVATE + 15)) {
2696                                 dev_load(ifr.ifr_name);
2697                                 rtnl_lock();
2698                                 ret = dev_ifsioc(&ifr, cmd);
2699                                 rtnl_unlock();
2700                                 if (!ret && copy_to_user(arg, &ifr,
2701                                                          sizeof(struct ifreq)))
2702                                         ret = -EFAULT;
2703                                 return ret;
2704                         }
2705 #ifdef CONFIG_WIRELESS_EXT
2706                         /* Take care of Wireless Extensions */
2707                         if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
2708                                 /* If command is `set a parameter', or
2709                                  * `get the encoding parameters', check if
2710                                  * the user has the right to do it */
2711                                 if (IW_IS_SET(cmd) || cmd == SIOCGIWENCODE
2712                                     || cmd == SIOCGIWENCODEEXT) {
2713                                         if (!capable(CAP_NET_ADMIN))
2714                                                 return -EPERM;
2715                                 }
2716                                 dev_load(ifr.ifr_name);
2717                                 rtnl_lock();
2718                                 /* Follow me in net/core/wireless.c */
2719                                 ret = wireless_process_ioctl(&ifr, cmd);
2720                                 rtnl_unlock();
2721                                 if (IW_IS_GET(cmd) &&
2722                                     copy_to_user(arg, &ifr,
2723                                                  sizeof(struct ifreq)))
2724                                         ret = -EFAULT;
2725                                 return ret;
2726                         }
2727 #endif  /* CONFIG_WIRELESS_EXT */
2728                         return -EINVAL;
2729         }
2730 }
2731
2732
2733 /**
2734  *      dev_new_index   -       allocate an ifindex
2735  *
2736  *      Returns a suitable unique value for a new device interface
2737  *      number.  The caller must hold the rtnl semaphore or the
2738  *      dev_base_lock to be sure it remains unique.
2739  */
2740 static int dev_new_index(void)
2741 {
2742         static int ifindex;
2743         for (;;) {
2744                 if (++ifindex <= 0)
2745                         ifindex = 1;
2746                 if (!__dev_get_by_index(ifindex))
2747                         return ifindex;
2748         }
2749 }
2750
2751 static int dev_boot_phase = 1;
2752
2753 /* Delayed registration/unregisteration */
2754 static DEFINE_SPINLOCK(net_todo_list_lock);
2755 static struct list_head net_todo_list = LIST_HEAD_INIT(net_todo_list);
2756
2757 static inline void net_set_todo(struct net_device *dev)
2758 {
2759         spin_lock(&net_todo_list_lock);
2760         list_add_tail(&dev->todo_list, &net_todo_list);
2761         spin_unlock(&net_todo_list_lock);
2762 }
2763
2764 /**
2765  *      register_netdevice      - register a network device
2766  *      @dev: device to register
2767  *
2768  *      Take a completed network device structure and add it to the kernel
2769  *      interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
2770  *      chain. 0 is returned on success. A negative errno code is returned
2771  *      on a failure to set up the device, or if the name is a duplicate.
2772  *
2773  *      Callers must hold the rtnl semaphore. You may want
2774  *      register_netdev() instead of this.
2775  *
2776  *      BUGS:
2777  *      The locking appears insufficient to guarantee two parallel registers
2778  *      will not get the same name.
2779  */
2780
2781 int register_netdevice(struct net_device *dev)
2782 {
2783         struct hlist_head *head;
2784         struct hlist_node *p;
2785         int ret;
2786
2787         BUG_ON(dev_boot_phase);
2788         ASSERT_RTNL();
2789
2790         might_sleep();
2791
2792         /* When net_device's are persistent, this will be fatal. */
2793         BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
2794
2795         spin_lock_init(&dev->queue_lock);
2796         spin_lock_init(&dev->xmit_lock);
2797         dev->xmit_lock_owner = -1;
2798 #ifdef CONFIG_NET_CLS_ACT
2799         spin_lock_init(&dev->ingress_lock);
2800 #endif
2801
2802         ret = alloc_divert_blk(dev);
2803         if (ret)
2804                 goto out;
2805
2806         dev->iflink = -1;
2807
2808         /* Init, if this function is available */
2809         if (dev->init) {
2810                 ret = dev->init(dev);
2811                 if (ret) {
2812                         if (ret > 0)
2813                                 ret = -EIO;
2814                         goto out_err;
2815                 }
2816         }
2817  
2818         if (!dev_valid_name(dev->name)) {
2819                 ret = -EINVAL;
2820                 goto out_err;
2821         }
2822
2823         dev->ifindex = dev_new_index();
2824         if (dev->iflink == -1)
2825                 dev->iflink = dev->ifindex;
2826
2827         /* Check for existence of name */
2828         head = dev_name_hash(dev->name);
2829         hlist_for_each(p, head) {
2830                 struct net_device *d
2831                         = hlist_entry(p, struct net_device, name_hlist);
2832                 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
2833                         ret = -EEXIST;
2834                         goto out_err;
2835                 }
2836         }
2837
2838         /* Fix illegal SG+CSUM combinations. */
2839         if ((dev->features & NETIF_F_SG) &&
2840             !(dev->features & (NETIF_F_IP_CSUM |
2841                                NETIF_F_NO_CSUM |
2842                                NETIF_F_HW_CSUM))) {
2843                 printk("%s: Dropping NETIF_F_SG since no checksum feature.\n",
2844                        dev->name);
2845                 dev->features &= ~NETIF_F_SG;
2846         }
2847
2848         /* TSO requires that SG is present as well. */
2849         if ((dev->features & NETIF_F_TSO) &&
2850             !(dev->features & NETIF_F_SG)) {
2851                 printk("%s: Dropping NETIF_F_TSO since no SG feature.\n",
2852                        dev->name);
2853                 dev->features &= ~NETIF_F_TSO;
2854         }
2855         if (dev->features & NETIF_F_UFO) {
2856                 if (!(dev->features & NETIF_F_HW_CSUM)) {
2857                         printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
2858                                         "NETIF_F_HW_CSUM feature.\n",
2859                                                         dev->name);
2860                         dev->features &= ~NETIF_F_UFO;
2861                 }
2862                 if (!(dev->features & NETIF_F_SG)) {
2863                         printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
2864                                         "NETIF_F_SG feature.\n",
2865                                         dev->name);
2866                         dev->features &= ~NETIF_F_UFO;
2867                 }
2868         }
2869
2870         /*
2871          *      nil rebuild_header routine,
2872          *      that should be never called and used as just bug trap.
2873          */
2874
2875         if (!dev->rebuild_header)
2876                 dev->rebuild_header = default_rebuild_header;
2877
2878         ret = netdev_register_sysfs(dev);
2879         if (ret)
2880                 goto out_err;
2881         dev->reg_state = NETREG_REGISTERED;
2882
2883         /*
2884          *      Default initial state at registry is that the
2885          *      device is present.
2886          */
2887
2888         set_bit(__LINK_STATE_PRESENT, &dev->state);
2889
2890         dev->next = NULL;
2891         dev_init_scheduler(dev);
2892         write_lock_bh(&dev_base_lock);
2893         *dev_tail = dev;
2894         dev_tail = &dev->next;
2895         hlist_add_head(&dev->name_hlist, head);
2896         hlist_add_head(&dev->index_hlist, dev_index_hash(dev->ifindex));
2897         dev_hold(dev);
2898         write_unlock_bh(&dev_base_lock);
2899
2900         /* Notify protocols, that a new device appeared. */
2901         raw_notifier_call_chain(&netdev_chain, NETDEV_REGISTER, dev);
2902
2903         ret = 0;
2904
2905 out:
2906         return ret;
2907 out_err:
2908         free_divert_blk(dev);
2909         goto out;
2910 }
2911
2912 /**
2913  *      register_netdev - register a network device
2914  *      @dev: device to register
2915  *
2916  *      Take a completed network device structure and add it to the kernel
2917  *      interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
2918  *      chain. 0 is returned on success. A negative errno code is returned
2919  *      on a failure to set up the device, or if the name is a duplicate.
2920  *
2921  *      This is a wrapper around register_netdev that takes the rtnl semaphore
2922  *      and expands the device name if you passed a format string to
2923  *      alloc_netdev.
2924  */
2925 int register_netdev(struct net_device *dev)
2926 {
2927         int err;
2928
2929         rtnl_lock();
2930
2931         /*
2932          * If the name is a format string the caller wants us to do a
2933          * name allocation.
2934          */
2935         if (strchr(dev->name, '%')) {
2936                 err = dev_alloc_name(dev, dev->name);
2937                 if (err < 0)
2938                         goto out;
2939         }
2940         
2941         /*
2942          * Back compatibility hook. Kill this one in 2.5
2943          */
2944         if (dev->name[0] == 0 || dev->name[0] == ' ') {
2945                 err = dev_alloc_name(dev, "eth%d");
2946                 if (err < 0)
2947                         goto out;
2948         }
2949
2950         err = register_netdevice(dev);
2951 out:
2952         rtnl_unlock();
2953         return err;
2954 }
2955 EXPORT_SYMBOL(register_netdev);
2956
2957 /*
2958  * netdev_wait_allrefs - wait until all references are gone.
2959  *
2960  * This is called when unregistering network devices.
2961  *
2962  * Any protocol or device that holds a reference should register
2963  * for netdevice notification, and cleanup and put back the
2964  * reference if they receive an UNREGISTER event.
2965  * We can get stuck here if buggy protocols don't correctly
2966  * call dev_put. 
2967  */
2968 static void netdev_wait_allrefs(struct net_device *dev)
2969 {
2970         unsigned long rebroadcast_time, warning_time;
2971
2972         rebroadcast_time = warning_time = jiffies;
2973         while (atomic_read(&dev->refcnt) != 0) {
2974                 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
2975                         rtnl_lock();
2976
2977                         /* Rebroadcast unregister notification */
2978                         raw_notifier_call_chain(&netdev_chain,
2979                                             NETDEV_UNREGISTER, dev);
2980
2981                         if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
2982                                      &dev->state)) {
2983                                 /* We must not have linkwatch events
2984                                  * pending on unregister. If this
2985                                  * happens, we simply run the queue
2986                                  * unscheduled, resulting in a noop
2987                                  * for this device.
2988                                  */
2989                                 linkwatch_run_queue();
2990                         }
2991
2992                         __rtnl_unlock();
2993
2994                         rebroadcast_time = jiffies;
2995                 }
2996
2997                 msleep(250);
2998
2999                 if (time_after(jiffies, warning_time + 10 * HZ)) {
3000                         printk(KERN_EMERG "unregister_netdevice: "
3001                                "waiting for %s to become free. Usage "
3002                                "count = %d\n",
3003                                dev->name, atomic_read(&dev->refcnt));
3004                         warning_time = jiffies;
3005                 }
3006         }
3007 }
3008
3009 /* The sequence is:
3010  *
3011  *      rtnl_lock();
3012  *      ...
3013  *      register_netdevice(x1);
3014  *      register_netdevice(x2);
3015  *      ...
3016  *      unregister_netdevice(y1);
3017  *      unregister_netdevice(y2);
3018  *      ...
3019  *      rtnl_unlock();
3020  *      free_netdev(y1);
3021  *      free_netdev(y2);
3022  *
3023  * We are invoked by rtnl_unlock() after it drops the semaphore.
3024  * This allows us to deal with problems:
3025  * 1) We can delete sysfs objects which invoke hotplug
3026  *    without deadlocking with linkwatch via keventd.
3027  * 2) Since we run with the RTNL semaphore not held, we can sleep
3028  *    safely in order to wait for the netdev refcnt to drop to zero.
3029  */
3030 static DEFINE_MUTEX(net_todo_run_mutex);
3031 void netdev_run_todo(void)
3032 {
3033         struct list_head list = LIST_HEAD_INIT(list);
3034
3035         /* Need to guard against multiple cpu's getting out of order. */
3036         mutex_lock(&net_todo_run_mutex);
3037
3038         /* Not safe to do outside the semaphore.  We must not return
3039          * until all unregister events invoked by the local processor
3040          * have been completed (either by this todo run, or one on
3041          * another cpu).
3042          */
3043         if (list_empty(&net_todo_list))
3044                 goto out;
3045
3046         /* Snapshot list, allow later requests */
3047         spin_lock(&net_todo_list_lock);
3048         list_splice_init(&net_todo_list, &list);
3049         spin_unlock(&net_todo_list_lock);
3050                 
3051         while (!list_empty(&list)) {
3052                 struct net_device *dev
3053                         = list_entry(list.next, struct net_device, todo_list);
3054                 list_del(&dev->todo_list);
3055
3056                 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
3057                         printk(KERN_ERR "network todo '%s' but state %d\n",
3058                                dev->name, dev->reg_state);
3059                         dump_stack();
3060                         continue;
3061                 }
3062
3063                 netdev_unregister_sysfs(dev);
3064                 dev->reg_state = NETREG_UNREGISTERED;
3065
3066                 netdev_wait_allrefs(dev);
3067
3068                 /* paranoia */
3069                 BUG_ON(atomic_read(&dev->refcnt));
3070                 BUG_TRAP(!dev->ip_ptr);
3071                 BUG_TRAP(!dev->ip6_ptr);
3072                 BUG_TRAP(!dev->dn_ptr);
3073
3074                 /* It must be the very last action,
3075                  * after this 'dev' may point to freed up memory.
3076                  */
3077                 if (dev->destructor)
3078                         dev->destructor(dev);
3079         }
3080
3081 out:
3082         mutex_unlock(&net_todo_run_mutex);
3083 }
3084
3085 /**
3086  *      alloc_netdev - allocate network device
3087  *      @sizeof_priv:   size of private data to allocate space for
3088  *      @name:          device name format string
3089  *      @setup:         callback to initialize device
3090  *
3091  *      Allocates a struct net_device with private data area for driver use
3092  *      and performs basic initialization.
3093  */
3094 struct net_device *alloc_netdev(int sizeof_priv, const char *name,
3095                 void (*setup)(struct net_device *))
3096 {
3097         void *p;
3098         struct net_device *dev;
3099         int alloc_size;
3100
3101         /* ensure 32-byte alignment of both the device and private area */
3102         alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST;
3103         alloc_size += sizeof_priv + NETDEV_ALIGN_CONST;
3104
3105         p = kzalloc(alloc_size, GFP_KERNEL);
3106         if (!p) {
3107                 printk(KERN_ERR "alloc_dev: Unable to allocate device.\n");
3108                 return NULL;
3109         }
3110
3111         dev = (struct net_device *)
3112                 (((long)p + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
3113         dev->padded = (char *)dev - (char *)p;
3114
3115         if (sizeof_priv)
3116                 dev->priv = netdev_priv(dev);
3117
3118         setup(dev);
3119         strcpy(dev->name, name);
3120         return dev;
3121 }
3122 EXPORT_SYMBOL(alloc_netdev);
3123
3124 /**
3125  *      free_netdev - free network device
3126  *      @dev: device
3127  *
3128  *      This function does the last stage of destroying an allocated device 
3129  *      interface. The reference to the device object is released.  
3130  *      If this is the last reference then it will be freed.
3131  */
3132 void free_netdev(struct net_device *dev)
3133 {
3134 #ifdef CONFIG_SYSFS
3135         /*  Compatibility with error handling in drivers */
3136         if (dev->reg_state == NETREG_UNINITIALIZED) {
3137                 kfree((char *)dev - dev->padded);
3138                 return;
3139         }
3140
3141         BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
3142         dev->reg_state = NETREG_RELEASED;
3143
3144         /* will free via class release */
3145         class_device_put(&dev->class_dev);
3146 #else
3147         kfree((char *)dev - dev->padded);
3148 #endif
3149 }
3150  
3151 /* Synchronize with packet receive processing. */
3152 void synchronize_net(void) 
3153 {
3154         might_sleep();
3155         synchronize_rcu();
3156 }
3157
3158 /**
3159  *      unregister_netdevice - remove device from the kernel
3160  *      @dev: device
3161  *
3162  *      This function shuts down a device interface and removes it
3163  *      from the kernel tables. On success 0 is returned, on a failure
3164  *      a negative errno code is returned.
3165  *
3166  *      Callers must hold the rtnl semaphore.  You may want
3167  *      unregister_netdev() instead of this.
3168  */
3169
3170 int unregister_netdevice(struct net_device *dev)
3171 {
3172         struct net_device *d, **dp;
3173
3174         BUG_ON(dev_boot_phase);
3175         ASSERT_RTNL();
3176
3177         /* Some devices call without registering for initialization unwind. */
3178         if (dev->reg_state == NETREG_UNINITIALIZED) {
3179                 printk(KERN_DEBUG "unregister_netdevice: device %s/%p never "
3180                                   "was registered\n", dev->name, dev);
3181                 return -ENODEV;
3182         }
3183
3184         BUG_ON(dev->reg_state != NETREG_REGISTERED);
3185
3186         /* If device is running, close it first. */
3187         if (dev->flags & IFF_UP)
3188                 dev_close(dev);
3189
3190         /* And unlink it from device chain. */
3191         for (dp = &dev_base; (d = *dp) != NULL; dp = &d->next) {
3192                 if (d == dev) {
3193                         write_lock_bh(&dev_base_lock);
3194                         hlist_del(&dev->name_hlist);
3195                         hlist_del(&dev->index_hlist);
3196                         if (dev_tail == &dev->next)
3197                                 dev_tail = dp;
3198                         *dp = d->next;
3199                         write_unlock_bh(&dev_base_lock);
3200                         break;
3201                 }
3202         }
3203         if (!d) {
3204                 printk(KERN_ERR "unregister net_device: '%s' not found\n",
3205                        dev->name);
3206                 return -ENODEV;
3207         }
3208
3209         dev->reg_state = NETREG_UNREGISTERING;
3210
3211         synchronize_net();
3212
3213         /* Shutdown queueing discipline. */
3214         dev_shutdown(dev);
3215
3216         
3217         /* Notify protocols, that we are about to destroy
3218            this device. They should clean all the things.
3219         */
3220         raw_notifier_call_chain(&netdev_chain, NETDEV_UNREGISTER, dev);
3221         
3222         /*
3223          *      Flush the multicast chain
3224          */
3225         dev_mc_discard(dev);
3226
3227         if (dev->uninit)
3228                 dev->uninit(dev);
3229
3230         /* Notifier chain MUST detach us from master device. */
3231         BUG_TRAP(!dev->master);
3232
3233         free_divert_blk(dev);
3234
3235         /* Finish processing unregister after unlock */
3236         net_set_todo(dev);
3237
3238         synchronize_net();
3239
3240         dev_put(dev);
3241         return 0;
3242 }
3243
3244 /**
3245  *      unregister_netdev - remove device from the kernel
3246  *      @dev: device
3247  *
3248  *      This function shuts down a device interface and removes it
3249  *      from the kernel tables. On success 0 is returned, on a failure
3250  *      a negative errno code is returned.
3251  *
3252  *      This is just a wrapper for unregister_netdevice that takes
3253  *      the rtnl semaphore.  In general you want to use this and not
3254  *      unregister_netdevice.
3255  */
3256 void unregister_netdev(struct net_device *dev)
3257 {
3258         rtnl_lock();
3259         unregister_netdevice(dev);
3260         rtnl_unlock();
3261 }
3262
3263 EXPORT_SYMBOL(unregister_netdev);
3264
3265 #ifdef CONFIG_HOTPLUG_CPU
3266 static int dev_cpu_callback(struct notifier_block *nfb,
3267                             unsigned long action,
3268                             void *ocpu)
3269 {
3270         struct sk_buff **list_skb;
3271         struct net_device **list_net;
3272         struct sk_buff *skb;
3273         unsigned int cpu, oldcpu = (unsigned long)ocpu;
3274         struct softnet_data *sd, *oldsd;
3275
3276         if (action != CPU_DEAD)
3277                 return NOTIFY_OK;
3278
3279         local_irq_disable();
3280         cpu = smp_processor_id();
3281         sd = &per_cpu(softnet_data, cpu);
3282         oldsd = &per_cpu(softnet_data, oldcpu);
3283
3284         /* Find end of our completion_queue. */
3285         list_skb = &sd->completion_queue;
3286         while (*list_skb)
3287                 list_skb = &(*list_skb)->next;
3288         /* Append completion queue from offline CPU. */
3289         *list_skb = oldsd->completion_queue;
3290         oldsd->completion_queue = NULL;
3291
3292         /* Find end of our output_queue. */
3293         list_net = &sd->output_queue;
3294         while (*list_net)
3295                 list_net = &(*list_net)->next_sched;
3296         /* Append output queue from offline CPU. */
3297         *list_net = oldsd->output_queue;
3298         oldsd->output_queue = NULL;
3299
3300         raise_softirq_irqoff(NET_TX_SOFTIRQ);
3301         local_irq_enable();
3302
3303         /* Process offline CPU's input_pkt_queue */
3304         while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
3305                 netif_rx(skb);
3306
3307         return NOTIFY_OK;
3308 }
3309 #endif /* CONFIG_HOTPLUG_CPU */
3310
3311
3312 /*
3313  *      Initialize the DEV module. At boot time this walks the device list and
3314  *      unhooks any devices that fail to initialise (normally hardware not
3315  *      present) and leaves us with a valid list of present and active devices.
3316  *
3317  */
3318
3319 /*
3320  *       This is called single threaded during boot, so no need
3321  *       to take the rtnl semaphore.
3322  */
3323 static int __init net_dev_init(void)
3324 {
3325         int i, rc = -ENOMEM;
3326
3327         BUG_ON(!dev_boot_phase);
3328
3329         net_random_init();
3330
3331         if (dev_proc_init())
3332                 goto out;
3333
3334         if (netdev_sysfs_init())
3335                 goto out;
3336
3337         INIT_LIST_HEAD(&ptype_all);
3338         for (i = 0; i < 16; i++) 
3339                 INIT_LIST_HEAD(&ptype_base[i]);
3340
3341         for (i = 0; i < ARRAY_SIZE(dev_name_head); i++)
3342                 INIT_HLIST_HEAD(&dev_name_head[i]);
3343
3344         for (i = 0; i < ARRAY_SIZE(dev_index_head); i++)
3345                 INIT_HLIST_HEAD(&dev_index_head[i]);
3346
3347         /*
3348          *      Initialise the packet receive queues.
3349          */
3350
3351         for_each_possible_cpu(i) {
3352                 struct softnet_data *queue;
3353
3354                 queue = &per_cpu(softnet_data, i);
3355                 skb_queue_head_init(&queue->input_pkt_queue);
3356                 queue->completion_queue = NULL;
3357                 INIT_LIST_HEAD(&queue->poll_list);
3358                 set_bit(__LINK_STATE_START, &queue->backlog_dev.state);
3359                 queue->backlog_dev.weight = weight_p;
3360                 queue->backlog_dev.poll = process_backlog;
3361                 atomic_set(&queue->backlog_dev.refcnt, 1);
3362         }
3363
3364         dev_boot_phase = 0;
3365
3366         open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
3367         open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
3368
3369         hotcpu_notifier(dev_cpu_callback, 0);
3370         dst_init();
3371         dev_mcast_init();
3372         rc = 0;
3373 out:
3374         return rc;
3375 }
3376
3377 subsys_initcall(net_dev_init);
3378
3379 EXPORT_SYMBOL(__dev_get_by_index);
3380 EXPORT_SYMBOL(__dev_get_by_name);
3381 EXPORT_SYMBOL(__dev_remove_pack);
3382 EXPORT_SYMBOL(__skb_linearize);
3383 EXPORT_SYMBOL(dev_valid_name);
3384 EXPORT_SYMBOL(dev_add_pack);
3385 EXPORT_SYMBOL(dev_alloc_name);
3386 EXPORT_SYMBOL(dev_close);
3387 EXPORT_SYMBOL(dev_get_by_flags);
3388 EXPORT_SYMBOL(dev_get_by_index);
3389 EXPORT_SYMBOL(dev_get_by_name);
3390 EXPORT_SYMBOL(dev_open);
3391 EXPORT_SYMBOL(dev_queue_xmit);
3392 EXPORT_SYMBOL(dev_remove_pack);
3393 EXPORT_SYMBOL(dev_set_allmulti);
3394 EXPORT_SYMBOL(dev_set_promiscuity);
3395 EXPORT_SYMBOL(dev_change_flags);
3396 EXPORT_SYMBOL(dev_set_mtu);
3397 EXPORT_SYMBOL(dev_set_mac_address);
3398 EXPORT_SYMBOL(free_netdev);
3399 EXPORT_SYMBOL(netdev_boot_setup_check);
3400 EXPORT_SYMBOL(netdev_set_master);
3401 EXPORT_SYMBOL(netdev_state_change);
3402 EXPORT_SYMBOL(netif_receive_skb);
3403 EXPORT_SYMBOL(netif_rx);
3404 EXPORT_SYMBOL(register_gifconf);
3405 EXPORT_SYMBOL(register_netdevice);
3406 EXPORT_SYMBOL(register_netdevice_notifier);
3407 EXPORT_SYMBOL(skb_checksum_help);
3408 EXPORT_SYMBOL(synchronize_net);
3409 EXPORT_SYMBOL(unregister_netdevice);
3410 EXPORT_SYMBOL(unregister_netdevice_notifier);
3411 EXPORT_SYMBOL(net_enable_timestamp);
3412 EXPORT_SYMBOL(net_disable_timestamp);
3413 EXPORT_SYMBOL(dev_get_flags);
3414
3415 #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
3416 EXPORT_SYMBOL(br_handle_frame_hook);
3417 EXPORT_SYMBOL(br_fdb_get_hook);
3418 EXPORT_SYMBOL(br_fdb_put_hook);
3419 #endif
3420
3421 #ifdef CONFIG_KMOD
3422 EXPORT_SYMBOL(dev_load);
3423 #endif
3424
3425 EXPORT_PER_CPU_SYMBOL(softnet_data);