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