pkt_sched: Add and use qdisc_root() and qdisc_root_lock().
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
0187bdfb 93#include <linux/ethtool.h>
1da177e4
LT
94#include <linux/notifier.h>
95#include <linux/skbuff.h>
457c4cbc 96#include <net/net_namespace.h>
1da177e4
LT
97#include <net/sock.h>
98#include <linux/rtnetlink.h>
99#include <linux/proc_fs.h>
100#include <linux/seq_file.h>
101#include <linux/stat.h>
102#include <linux/if_bridge.h>
b863ceb7 103#include <linux/if_macvlan.h>
1da177e4
LT
104#include <net/dst.h>
105#include <net/pkt_sched.h>
106#include <net/checksum.h>
107#include <linux/highmem.h>
108#include <linux/init.h>
109#include <linux/kmod.h>
110#include <linux/module.h>
111#include <linux/kallsyms.h>
112#include <linux/netpoll.h>
113#include <linux/rcupdate.h>
114#include <linux/delay.h>
295f4a1f 115#include <net/wext.h>
1da177e4 116#include <net/iw_handler.h>
1da177e4 117#include <asm/current.h>
5bdb9886 118#include <linux/audit.h>
db217334 119#include <linux/dmaengine.h>
f6a78bfc 120#include <linux/err.h>
c7fa9d18 121#include <linux/ctype.h>
723e98b7 122#include <linux/if_arp.h>
6de329e2 123#include <linux/if_vlan.h>
8f0f2223
DM
124#include <linux/ip.h>
125#include <linux/ipv6.h>
126#include <linux/in.h>
1da177e4 127
342709ef
PE
128#include "net-sysfs.h"
129
1da177e4
LT
130/*
131 * The list of packet types we will receive (as opposed to discard)
132 * and the routines to invoke.
133 *
134 * Why 16. Because with 16 the only overlap we get on a hash of the
135 * low nibble of the protocol value is RARP/SNAP/X.25.
136 *
137 * NOTE: That is no longer true with the addition of VLAN tags. Not
138 * sure which should go first, but I bet it won't make much
139 * difference if we are running VLANs. The good news is that
140 * this protocol won't be in the list unless compiled in, so
3041a069 141 * the average user (w/out VLANs) will not be adversely affected.
1da177e4
LT
142 * --BLG
143 *
144 * 0800 IP
145 * 8100 802.1Q VLAN
146 * 0001 802.3
147 * 0002 AX.25
148 * 0004 802.2
149 * 8035 RARP
150 * 0005 SNAP
151 * 0805 X.25
152 * 0806 ARP
153 * 8137 IPX
154 * 0009 Localtalk
155 * 86DD IPv6
156 */
157
82d8a867
PE
158#define PTYPE_HASH_SIZE (16)
159#define PTYPE_HASH_MASK (PTYPE_HASH_SIZE - 1)
160
1da177e4 161static DEFINE_SPINLOCK(ptype_lock);
82d8a867 162static struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
6b2bedc3 163static struct list_head ptype_all __read_mostly; /* Taps */
1da177e4 164
db217334 165#ifdef CONFIG_NET_DMA
d379b01e
DW
166struct net_dma {
167 struct dma_client client;
168 spinlock_t lock;
169 cpumask_t channel_mask;
0c0b0aca 170 struct dma_chan **channels;
d379b01e
DW
171};
172
173static enum dma_state_client
174netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
175 enum dma_state state);
176
177static struct net_dma net_dma = {
178 .client = {
179 .event_callback = netdev_dma_event,
180 },
181};
db217334
CL
182#endif
183
1da177e4 184/*
7562f876 185 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
1da177e4
LT
186 * semaphore.
187 *
188 * Pure readers hold dev_base_lock for reading.
189 *
190 * Writers must hold the rtnl semaphore while they loop through the
7562f876 191 * dev_base_head list, and hold dev_base_lock for writing when they do the
1da177e4
LT
192 * actual updates. This allows pure readers to access the list even
193 * while a writer is preparing to update it.
194 *
195 * To put it another way, dev_base_lock is held for writing only to
196 * protect against pure readers; the rtnl semaphore provides the
197 * protection against other writers.
198 *
199 * See, for example usages, register_netdevice() and
200 * unregister_netdevice(), which must be called with the rtnl
201 * semaphore held.
202 */
1da177e4
LT
203DEFINE_RWLOCK(dev_base_lock);
204
1da177e4
LT
205EXPORT_SYMBOL(dev_base_lock);
206
207#define NETDEV_HASHBITS 8
881d966b 208#define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
1da177e4 209
881d966b 210static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
1da177e4
LT
211{
212 unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
881d966b 213 return &net->dev_name_head[hash & ((1 << NETDEV_HASHBITS) - 1)];
1da177e4
LT
214}
215
881d966b 216static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
1da177e4 217{
881d966b 218 return &net->dev_index_head[ifindex & ((1 << NETDEV_HASHBITS) - 1)];
1da177e4
LT
219}
220
ce286d32
EB
221/* Device list insertion */
222static int list_netdevice(struct net_device *dev)
223{
c346dca1 224 struct net *net = dev_net(dev);
ce286d32
EB
225
226 ASSERT_RTNL();
227
228 write_lock_bh(&dev_base_lock);
229 list_add_tail(&dev->dev_list, &net->dev_base_head);
230 hlist_add_head(&dev->name_hlist, dev_name_hash(net, dev->name));
231 hlist_add_head(&dev->index_hlist, dev_index_hash(net, dev->ifindex));
232 write_unlock_bh(&dev_base_lock);
233 return 0;
234}
235
236/* Device list removal */
237static void unlist_netdevice(struct net_device *dev)
238{
239 ASSERT_RTNL();
240
241 /* Unlink dev from the device chain */
242 write_lock_bh(&dev_base_lock);
243 list_del(&dev->dev_list);
244 hlist_del(&dev->name_hlist);
245 hlist_del(&dev->index_hlist);
246 write_unlock_bh(&dev_base_lock);
247}
248
1da177e4
LT
249/*
250 * Our notifier list
251 */
252
f07d5b94 253static RAW_NOTIFIER_HEAD(netdev_chain);
1da177e4
LT
254
255/*
256 * Device drivers call our routines to queue packets here. We empty the
257 * queue in the local softnet handler.
258 */
bea3348e
SH
259
260DEFINE_PER_CPU(struct softnet_data, softnet_data);
1da177e4 261
723e98b7
JP
262#ifdef CONFIG_DEBUG_LOCK_ALLOC
263/*
c773e847 264 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
723e98b7
JP
265 * according to dev->type
266 */
267static const unsigned short netdev_lock_type[] =
268 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
269 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
270 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
271 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
272 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
273 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
274 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
275 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
276 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
277 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
278 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
279 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
280 ARPHRD_FCFABRIC, ARPHRD_IEEE802_TR, ARPHRD_IEEE80211,
281 ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP, ARPHRD_VOID,
282 ARPHRD_NONE};
283
284static const char *netdev_lock_name[] =
285 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
286 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
287 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
288 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
289 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
290 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
291 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
292 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
293 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
294 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
295 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
296 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
297 "_xmit_FCFABRIC", "_xmit_IEEE802_TR", "_xmit_IEEE80211",
298 "_xmit_IEEE80211_PRISM", "_xmit_IEEE80211_RADIOTAP", "_xmit_VOID",
299 "_xmit_NONE"};
300
301static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
302
303static inline unsigned short netdev_lock_pos(unsigned short dev_type)
304{
305 int i;
306
307 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
308 if (netdev_lock_type[i] == dev_type)
309 return i;
310 /* the last key is used by default */
311 return ARRAY_SIZE(netdev_lock_type) - 1;
312}
313
314static inline void netdev_set_lockdep_class(spinlock_t *lock,
315 unsigned short dev_type)
316{
317 int i;
318
319 i = netdev_lock_pos(dev_type);
320 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
321 netdev_lock_name[i]);
322}
323#else
324static inline void netdev_set_lockdep_class(spinlock_t *lock,
325 unsigned short dev_type)
326{
327}
328#endif
1da177e4
LT
329
330/*******************************************************************************
331
332 Protocol management and registration routines
333
334*******************************************************************************/
335
1da177e4
LT
336/*
337 * Add a protocol ID to the list. Now that the input handler is
338 * smarter we can dispense with all the messy stuff that used to be
339 * here.
340 *
341 * BEWARE!!! Protocol handlers, mangling input packets,
342 * MUST BE last in hash buckets and checking protocol handlers
343 * MUST start from promiscuous ptype_all chain in net_bh.
344 * It is true now, do not change it.
345 * Explanation follows: if protocol handler, mangling packet, will
346 * be the first on list, it is not able to sense, that packet
347 * is cloned and should be copied-on-write, so that it will
348 * change it and subsequent readers will get broken packet.
349 * --ANK (980803)
350 */
351
352/**
353 * dev_add_pack - add packet handler
354 * @pt: packet type declaration
355 *
356 * Add a protocol handler to the networking stack. The passed &packet_type
357 * is linked into kernel lists and may not be freed until it has been
358 * removed from the kernel lists.
359 *
4ec93edb 360 * This call does not sleep therefore it can not
1da177e4
LT
361 * guarantee all CPU's that are in middle of receiving packets
362 * will see the new packet type (until the next received packet).
363 */
364
365void dev_add_pack(struct packet_type *pt)
366{
367 int hash;
368
369 spin_lock_bh(&ptype_lock);
9be9a6b9 370 if (pt->type == htons(ETH_P_ALL))
1da177e4 371 list_add_rcu(&pt->list, &ptype_all);
9be9a6b9 372 else {
82d8a867 373 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
1da177e4
LT
374 list_add_rcu(&pt->list, &ptype_base[hash]);
375 }
376 spin_unlock_bh(&ptype_lock);
377}
378
1da177e4
LT
379/**
380 * __dev_remove_pack - remove packet handler
381 * @pt: packet type declaration
382 *
383 * Remove a protocol handler that was previously added to the kernel
384 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
385 * from the kernel lists and can be freed or reused once this function
4ec93edb 386 * returns.
1da177e4
LT
387 *
388 * The packet type might still be in use by receivers
389 * and must not be freed until after all the CPU's have gone
390 * through a quiescent state.
391 */
392void __dev_remove_pack(struct packet_type *pt)
393{
394 struct list_head *head;
395 struct packet_type *pt1;
396
397 spin_lock_bh(&ptype_lock);
398
9be9a6b9 399 if (pt->type == htons(ETH_P_ALL))
1da177e4 400 head = &ptype_all;
9be9a6b9 401 else
82d8a867 402 head = &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
1da177e4
LT
403
404 list_for_each_entry(pt1, head, list) {
405 if (pt == pt1) {
406 list_del_rcu(&pt->list);
407 goto out;
408 }
409 }
410
411 printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt);
412out:
413 spin_unlock_bh(&ptype_lock);
414}
415/**
416 * dev_remove_pack - remove packet handler
417 * @pt: packet type declaration
418 *
419 * Remove a protocol handler that was previously added to the kernel
420 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
421 * from the kernel lists and can be freed or reused once this function
422 * returns.
423 *
424 * This call sleeps to guarantee that no CPU is looking at the packet
425 * type after return.
426 */
427void dev_remove_pack(struct packet_type *pt)
428{
429 __dev_remove_pack(pt);
4ec93edb 430
1da177e4
LT
431 synchronize_net();
432}
433
434/******************************************************************************
435
436 Device Boot-time Settings Routines
437
438*******************************************************************************/
439
440/* Boot time configuration table */
441static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
442
443/**
444 * netdev_boot_setup_add - add new setup entry
445 * @name: name of the device
446 * @map: configured settings for the device
447 *
448 * Adds new setup entry to the dev_boot_setup list. The function
449 * returns 0 on error and 1 on success. This is a generic routine to
450 * all netdevices.
451 */
452static int netdev_boot_setup_add(char *name, struct ifmap *map)
453{
454 struct netdev_boot_setup *s;
455 int i;
456
457 s = dev_boot_setup;
458 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
459 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
460 memset(s[i].name, 0, sizeof(s[i].name));
93b3cff9 461 strlcpy(s[i].name, name, IFNAMSIZ);
1da177e4
LT
462 memcpy(&s[i].map, map, sizeof(s[i].map));
463 break;
464 }
465 }
466
467 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
468}
469
470/**
471 * netdev_boot_setup_check - check boot time settings
472 * @dev: the netdevice
473 *
474 * Check boot time settings for the device.
475 * The found settings are set for the device to be used
476 * later in the device probing.
477 * Returns 0 if no settings found, 1 if they are.
478 */
479int netdev_boot_setup_check(struct net_device *dev)
480{
481 struct netdev_boot_setup *s = dev_boot_setup;
482 int i;
483
484 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
485 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
93b3cff9 486 !strcmp(dev->name, s[i].name)) {
1da177e4
LT
487 dev->irq = s[i].map.irq;
488 dev->base_addr = s[i].map.base_addr;
489 dev->mem_start = s[i].map.mem_start;
490 dev->mem_end = s[i].map.mem_end;
491 return 1;
492 }
493 }
494 return 0;
495}
496
497
498/**
499 * netdev_boot_base - get address from boot time settings
500 * @prefix: prefix for network device
501 * @unit: id for network device
502 *
503 * Check boot time settings for the base address of device.
504 * The found settings are set for the device to be used
505 * later in the device probing.
506 * Returns 0 if no settings found.
507 */
508unsigned long netdev_boot_base(const char *prefix, int unit)
509{
510 const struct netdev_boot_setup *s = dev_boot_setup;
511 char name[IFNAMSIZ];
512 int i;
513
514 sprintf(name, "%s%d", prefix, unit);
515
516 /*
517 * If device already registered then return base of 1
518 * to indicate not to probe for this interface
519 */
881d966b 520 if (__dev_get_by_name(&init_net, name))
1da177e4
LT
521 return 1;
522
523 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
524 if (!strcmp(name, s[i].name))
525 return s[i].map.base_addr;
526 return 0;
527}
528
529/*
530 * Saves at boot time configured settings for any netdevice.
531 */
532int __init netdev_boot_setup(char *str)
533{
534 int ints[5];
535 struct ifmap map;
536
537 str = get_options(str, ARRAY_SIZE(ints), ints);
538 if (!str || !*str)
539 return 0;
540
541 /* Save settings */
542 memset(&map, 0, sizeof(map));
543 if (ints[0] > 0)
544 map.irq = ints[1];
545 if (ints[0] > 1)
546 map.base_addr = ints[2];
547 if (ints[0] > 2)
548 map.mem_start = ints[3];
549 if (ints[0] > 3)
550 map.mem_end = ints[4];
551
552 /* Add new entry to the list */
553 return netdev_boot_setup_add(str, &map);
554}
555
556__setup("netdev=", netdev_boot_setup);
557
558/*******************************************************************************
559
560 Device Interface Subroutines
561
562*******************************************************************************/
563
564/**
565 * __dev_get_by_name - find a device by its name
c4ea43c5 566 * @net: the applicable net namespace
1da177e4
LT
567 * @name: name to find
568 *
569 * Find an interface by name. Must be called under RTNL semaphore
570 * or @dev_base_lock. If the name is found a pointer to the device
571 * is returned. If the name is not found then %NULL is returned. The
572 * reference counters are not incremented so the caller must be
573 * careful with locks.
574 */
575
881d966b 576struct net_device *__dev_get_by_name(struct net *net, const char *name)
1da177e4
LT
577{
578 struct hlist_node *p;
579
881d966b 580 hlist_for_each(p, dev_name_hash(net, name)) {
1da177e4
LT
581 struct net_device *dev
582 = hlist_entry(p, struct net_device, name_hlist);
583 if (!strncmp(dev->name, name, IFNAMSIZ))
584 return dev;
585 }
586 return NULL;
587}
588
589/**
590 * dev_get_by_name - find a device by its name
c4ea43c5 591 * @net: the applicable net namespace
1da177e4
LT
592 * @name: name to find
593 *
594 * Find an interface by name. This can be called from any
595 * context and does its own locking. The returned handle has
596 * the usage count incremented and the caller must use dev_put() to
597 * release it when it is no longer needed. %NULL is returned if no
598 * matching device is found.
599 */
600
881d966b 601struct net_device *dev_get_by_name(struct net *net, const char *name)
1da177e4
LT
602{
603 struct net_device *dev;
604
605 read_lock(&dev_base_lock);
881d966b 606 dev = __dev_get_by_name(net, name);
1da177e4
LT
607 if (dev)
608 dev_hold(dev);
609 read_unlock(&dev_base_lock);
610 return dev;
611}
612
613/**
614 * __dev_get_by_index - find a device by its ifindex
c4ea43c5 615 * @net: the applicable net namespace
1da177e4
LT
616 * @ifindex: index of device
617 *
618 * Search for an interface by index. Returns %NULL if the device
619 * is not found or a pointer to the device. The device has not
620 * had its reference counter increased so the caller must be careful
621 * about locking. The caller must hold either the RTNL semaphore
622 * or @dev_base_lock.
623 */
624
881d966b 625struct net_device *__dev_get_by_index(struct net *net, int ifindex)
1da177e4
LT
626{
627 struct hlist_node *p;
628
881d966b 629 hlist_for_each(p, dev_index_hash(net, ifindex)) {
1da177e4
LT
630 struct net_device *dev
631 = hlist_entry(p, struct net_device, index_hlist);
632 if (dev->ifindex == ifindex)
633 return dev;
634 }
635 return NULL;
636}
637
638
639/**
640 * dev_get_by_index - find a device by its ifindex
c4ea43c5 641 * @net: the applicable net namespace
1da177e4
LT
642 * @ifindex: index of device
643 *
644 * Search for an interface by index. Returns NULL if the device
645 * is not found or a pointer to the device. The device returned has
646 * had a reference added and the pointer is safe until the user calls
647 * dev_put to indicate they have finished with it.
648 */
649
881d966b 650struct net_device *dev_get_by_index(struct net *net, int ifindex)
1da177e4
LT
651{
652 struct net_device *dev;
653
654 read_lock(&dev_base_lock);
881d966b 655 dev = __dev_get_by_index(net, ifindex);
1da177e4
LT
656 if (dev)
657 dev_hold(dev);
658 read_unlock(&dev_base_lock);
659 return dev;
660}
661
662/**
663 * dev_getbyhwaddr - find a device by its hardware address
c4ea43c5 664 * @net: the applicable net namespace
1da177e4
LT
665 * @type: media type of device
666 * @ha: hardware address
667 *
668 * Search for an interface by MAC address. Returns NULL if the device
669 * is not found or a pointer to the device. The caller must hold the
670 * rtnl semaphore. The returned device has not had its ref count increased
671 * and the caller must therefore be careful about locking
672 *
673 * BUGS:
674 * If the API was consistent this would be __dev_get_by_hwaddr
675 */
676
881d966b 677struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *ha)
1da177e4
LT
678{
679 struct net_device *dev;
680
681 ASSERT_RTNL();
682
81103a52 683 for_each_netdev(net, dev)
1da177e4
LT
684 if (dev->type == type &&
685 !memcmp(dev->dev_addr, ha, dev->addr_len))
7562f876
PE
686 return dev;
687
688 return NULL;
1da177e4
LT
689}
690
cf309e3f
JF
691EXPORT_SYMBOL(dev_getbyhwaddr);
692
881d966b 693struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
1da177e4
LT
694{
695 struct net_device *dev;
696
4e9cac2b 697 ASSERT_RTNL();
881d966b 698 for_each_netdev(net, dev)
4e9cac2b 699 if (dev->type == type)
7562f876
PE
700 return dev;
701
702 return NULL;
4e9cac2b
PM
703}
704
705EXPORT_SYMBOL(__dev_getfirstbyhwtype);
706
881d966b 707struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
4e9cac2b
PM
708{
709 struct net_device *dev;
710
711 rtnl_lock();
881d966b 712 dev = __dev_getfirstbyhwtype(net, type);
4e9cac2b
PM
713 if (dev)
714 dev_hold(dev);
1da177e4
LT
715 rtnl_unlock();
716 return dev;
717}
718
719EXPORT_SYMBOL(dev_getfirstbyhwtype);
720
721/**
722 * dev_get_by_flags - find any device with given flags
c4ea43c5 723 * @net: the applicable net namespace
1da177e4
LT
724 * @if_flags: IFF_* values
725 * @mask: bitmask of bits in if_flags to check
726 *
727 * Search for any interface with the given flags. Returns NULL if a device
4ec93edb 728 * is not found or a pointer to the device. The device returned has
1da177e4
LT
729 * had a reference added and the pointer is safe until the user calls
730 * dev_put to indicate they have finished with it.
731 */
732
881d966b 733struct net_device * dev_get_by_flags(struct net *net, unsigned short if_flags, unsigned short mask)
1da177e4 734{
7562f876 735 struct net_device *dev, *ret;
1da177e4 736
7562f876 737 ret = NULL;
1da177e4 738 read_lock(&dev_base_lock);
881d966b 739 for_each_netdev(net, dev) {
1da177e4
LT
740 if (((dev->flags ^ if_flags) & mask) == 0) {
741 dev_hold(dev);
7562f876 742 ret = dev;
1da177e4
LT
743 break;
744 }
745 }
746 read_unlock(&dev_base_lock);
7562f876 747 return ret;
1da177e4
LT
748}
749
750/**
751 * dev_valid_name - check if name is okay for network device
752 * @name: name string
753 *
754 * Network device names need to be valid file names to
c7fa9d18
DM
755 * to allow sysfs to work. We also disallow any kind of
756 * whitespace.
1da177e4 757 */
c2373ee9 758int dev_valid_name(const char *name)
1da177e4 759{
c7fa9d18
DM
760 if (*name == '\0')
761 return 0;
b6fe17d6
SH
762 if (strlen(name) >= IFNAMSIZ)
763 return 0;
c7fa9d18
DM
764 if (!strcmp(name, ".") || !strcmp(name, ".."))
765 return 0;
766
767 while (*name) {
768 if (*name == '/' || isspace(*name))
769 return 0;
770 name++;
771 }
772 return 1;
1da177e4
LT
773}
774
775/**
b267b179
EB
776 * __dev_alloc_name - allocate a name for a device
777 * @net: network namespace to allocate the device name in
1da177e4 778 * @name: name format string
b267b179 779 * @buf: scratch buffer and result name string
1da177e4
LT
780 *
781 * Passed a format string - eg "lt%d" it will try and find a suitable
3041a069
SH
782 * id. It scans list of devices to build up a free map, then chooses
783 * the first empty slot. The caller must hold the dev_base or rtnl lock
784 * while allocating the name and adding the device in order to avoid
785 * duplicates.
786 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
787 * Returns the number of the unit assigned or a negative errno code.
1da177e4
LT
788 */
789
b267b179 790static int __dev_alloc_name(struct net *net, const char *name, char *buf)
1da177e4
LT
791{
792 int i = 0;
1da177e4
LT
793 const char *p;
794 const int max_netdevices = 8*PAGE_SIZE;
cfcabdcc 795 unsigned long *inuse;
1da177e4
LT
796 struct net_device *d;
797
798 p = strnchr(name, IFNAMSIZ-1, '%');
799 if (p) {
800 /*
801 * Verify the string as this thing may have come from
802 * the user. There must be either one "%d" and no other "%"
803 * characters.
804 */
805 if (p[1] != 'd' || strchr(p + 2, '%'))
806 return -EINVAL;
807
808 /* Use one page as a bit array of possible slots */
cfcabdcc 809 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
1da177e4
LT
810 if (!inuse)
811 return -ENOMEM;
812
881d966b 813 for_each_netdev(net, d) {
1da177e4
LT
814 if (!sscanf(d->name, name, &i))
815 continue;
816 if (i < 0 || i >= max_netdevices)
817 continue;
818
819 /* avoid cases where sscanf is not exact inverse of printf */
b267b179 820 snprintf(buf, IFNAMSIZ, name, i);
1da177e4
LT
821 if (!strncmp(buf, d->name, IFNAMSIZ))
822 set_bit(i, inuse);
823 }
824
825 i = find_first_zero_bit(inuse, max_netdevices);
826 free_page((unsigned long) inuse);
827 }
828
b267b179
EB
829 snprintf(buf, IFNAMSIZ, name, i);
830 if (!__dev_get_by_name(net, buf))
1da177e4 831 return i;
1da177e4
LT
832
833 /* It is possible to run out of possible slots
834 * when the name is long and there isn't enough space left
835 * for the digits, or if all bits are used.
836 */
837 return -ENFILE;
838}
839
b267b179
EB
840/**
841 * dev_alloc_name - allocate a name for a device
842 * @dev: device
843 * @name: name format string
844 *
845 * Passed a format string - eg "lt%d" it will try and find a suitable
846 * id. It scans list of devices to build up a free map, then chooses
847 * the first empty slot. The caller must hold the dev_base or rtnl lock
848 * while allocating the name and adding the device in order to avoid
849 * duplicates.
850 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
851 * Returns the number of the unit assigned or a negative errno code.
852 */
853
854int dev_alloc_name(struct net_device *dev, const char *name)
855{
856 char buf[IFNAMSIZ];
857 struct net *net;
858 int ret;
859
c346dca1
YH
860 BUG_ON(!dev_net(dev));
861 net = dev_net(dev);
b267b179
EB
862 ret = __dev_alloc_name(net, name, buf);
863 if (ret >= 0)
864 strlcpy(dev->name, buf, IFNAMSIZ);
865 return ret;
866}
867
1da177e4
LT
868
869/**
870 * dev_change_name - change name of a device
871 * @dev: device
872 * @newname: name (or format string) must be at least IFNAMSIZ
873 *
874 * Change name of a device, can pass format strings "eth%d".
875 * for wildcarding.
876 */
877int dev_change_name(struct net_device *dev, char *newname)
878{
fcc5a03a 879 char oldname[IFNAMSIZ];
1da177e4 880 int err = 0;
fcc5a03a 881 int ret;
881d966b 882 struct net *net;
1da177e4
LT
883
884 ASSERT_RTNL();
c346dca1 885 BUG_ON(!dev_net(dev));
1da177e4 886
c346dca1 887 net = dev_net(dev);
1da177e4
LT
888 if (dev->flags & IFF_UP)
889 return -EBUSY;
890
891 if (!dev_valid_name(newname))
892 return -EINVAL;
893
c8d90dca
SH
894 if (strncmp(newname, dev->name, IFNAMSIZ) == 0)
895 return 0;
896
fcc5a03a
HX
897 memcpy(oldname, dev->name, IFNAMSIZ);
898
1da177e4
LT
899 if (strchr(newname, '%')) {
900 err = dev_alloc_name(dev, newname);
901 if (err < 0)
902 return err;
903 strcpy(newname, dev->name);
904 }
881d966b 905 else if (__dev_get_by_name(net, newname))
1da177e4
LT
906 return -EEXIST;
907 else
908 strlcpy(dev->name, newname, IFNAMSIZ);
909
fcc5a03a 910rollback:
dcc99773
SH
911 err = device_rename(&dev->dev, dev->name);
912 if (err) {
913 memcpy(dev->name, oldname, IFNAMSIZ);
914 return err;
915 }
7f988eab
HX
916
917 write_lock_bh(&dev_base_lock);
92749821 918 hlist_del(&dev->name_hlist);
881d966b 919 hlist_add_head(&dev->name_hlist, dev_name_hash(net, dev->name));
7f988eab
HX
920 write_unlock_bh(&dev_base_lock);
921
056925ab 922 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
fcc5a03a
HX
923 ret = notifier_to_errno(ret);
924
925 if (ret) {
926 if (err) {
927 printk(KERN_ERR
928 "%s: name change rollback failed: %d.\n",
929 dev->name, ret);
930 } else {
931 err = ret;
932 memcpy(dev->name, oldname, IFNAMSIZ);
933 goto rollback;
934 }
935 }
1da177e4
LT
936
937 return err;
938}
939
d8a33ac4 940/**
3041a069 941 * netdev_features_change - device changes features
d8a33ac4
SH
942 * @dev: device to cause notification
943 *
944 * Called to indicate a device has changed features.
945 */
946void netdev_features_change(struct net_device *dev)
947{
056925ab 948 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
d8a33ac4
SH
949}
950EXPORT_SYMBOL(netdev_features_change);
951
1da177e4
LT
952/**
953 * netdev_state_change - device changes state
954 * @dev: device to cause notification
955 *
956 * Called to indicate a device has changed state. This function calls
957 * the notifier chains for netdev_chain and sends a NEWLINK message
958 * to the routing socket.
959 */
960void netdev_state_change(struct net_device *dev)
961{
962 if (dev->flags & IFF_UP) {
056925ab 963 call_netdevice_notifiers(NETDEV_CHANGE, dev);
1da177e4
LT
964 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
965 }
966}
967
c1da4ac7
OG
968void netdev_bonding_change(struct net_device *dev)
969{
970 call_netdevice_notifiers(NETDEV_BONDING_FAILOVER, dev);
971}
972EXPORT_SYMBOL(netdev_bonding_change);
973
1da177e4
LT
974/**
975 * dev_load - load a network module
c4ea43c5 976 * @net: the applicable net namespace
1da177e4
LT
977 * @name: name of interface
978 *
979 * If a network interface is not present and the process has suitable
980 * privileges this function loads the module. If module loading is not
981 * available in this kernel then it becomes a nop.
982 */
983
881d966b 984void dev_load(struct net *net, const char *name)
1da177e4 985{
4ec93edb 986 struct net_device *dev;
1da177e4
LT
987
988 read_lock(&dev_base_lock);
881d966b 989 dev = __dev_get_by_name(net, name);
1da177e4
LT
990 read_unlock(&dev_base_lock);
991
992 if (!dev && capable(CAP_SYS_MODULE))
993 request_module("%s", name);
994}
995
1da177e4
LT
996/**
997 * dev_open - prepare an interface for use.
998 * @dev: device to open
999 *
1000 * Takes a device from down to up state. The device's private open
1001 * function is invoked and then the multicast lists are loaded. Finally
1002 * the device is moved into the up state and a %NETDEV_UP message is
1003 * sent to the netdev notifier chain.
1004 *
1005 * Calling this function on an active interface is a nop. On a failure
1006 * a negative errno code is returned.
1007 */
1008int dev_open(struct net_device *dev)
1009{
1010 int ret = 0;
1011
e46b66bc
BH
1012 ASSERT_RTNL();
1013
1da177e4
LT
1014 /*
1015 * Is it already up?
1016 */
1017
1018 if (dev->flags & IFF_UP)
1019 return 0;
1020
1021 /*
1022 * Is it even present?
1023 */
1024 if (!netif_device_present(dev))
1025 return -ENODEV;
1026
1027 /*
1028 * Call device private open method
1029 */
1030 set_bit(__LINK_STATE_START, &dev->state);
bada339b
JG
1031
1032 if (dev->validate_addr)
1033 ret = dev->validate_addr(dev);
1034
1035 if (!ret && dev->open)
1da177e4 1036 ret = dev->open(dev);
1da177e4 1037
4ec93edb 1038 /*
1da177e4
LT
1039 * If it went open OK then:
1040 */
1041
bada339b
JG
1042 if (ret)
1043 clear_bit(__LINK_STATE_START, &dev->state);
1044 else {
1da177e4
LT
1045 /*
1046 * Set the flags.
1047 */
1048 dev->flags |= IFF_UP;
1049
1050 /*
1051 * Initialize multicasting status
1052 */
4417da66 1053 dev_set_rx_mode(dev);
1da177e4
LT
1054
1055 /*
1056 * Wakeup transmit queue engine
1057 */
1058 dev_activate(dev);
1059
1060 /*
1061 * ... and announce new interface.
1062 */
056925ab 1063 call_netdevice_notifiers(NETDEV_UP, dev);
1da177e4 1064 }
bada339b 1065
1da177e4
LT
1066 return ret;
1067}
1068
1069/**
1070 * dev_close - shutdown an interface.
1071 * @dev: device to shutdown
1072 *
1073 * This function moves an active device into down state. A
1074 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1075 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1076 * chain.
1077 */
1078int dev_close(struct net_device *dev)
1079{
e46b66bc
BH
1080 ASSERT_RTNL();
1081
9d5010db
DM
1082 might_sleep();
1083
1da177e4
LT
1084 if (!(dev->flags & IFF_UP))
1085 return 0;
1086
1087 /*
1088 * Tell people we are going down, so that they can
1089 * prepare to death, when device is still operating.
1090 */
056925ab 1091 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
1da177e4 1092
1da177e4
LT
1093 clear_bit(__LINK_STATE_START, &dev->state);
1094
1095 /* Synchronize to scheduled poll. We cannot touch poll list,
bea3348e
SH
1096 * it can be even on different cpu. So just clear netif_running().
1097 *
1098 * dev->stop() will invoke napi_disable() on all of it's
1099 * napi_struct instances on this device.
1100 */
1da177e4 1101 smp_mb__after_clear_bit(); /* Commit netif_running(). */
1da177e4 1102
d8b2a4d2
ML
1103 dev_deactivate(dev);
1104
1da177e4
LT
1105 /*
1106 * Call the device specific close. This cannot fail.
1107 * Only if device is UP
1108 *
1109 * We allow it to be called even after a DETACH hot-plug
1110 * event.
1111 */
1112 if (dev->stop)
1113 dev->stop(dev);
1114
1115 /*
1116 * Device is now down.
1117 */
1118
1119 dev->flags &= ~IFF_UP;
1120
1121 /*
1122 * Tell people we are down
1123 */
056925ab 1124 call_netdevice_notifiers(NETDEV_DOWN, dev);
1da177e4
LT
1125
1126 return 0;
1127}
1128
1129
0187bdfb
BH
1130/**
1131 * dev_disable_lro - disable Large Receive Offload on a device
1132 * @dev: device
1133 *
1134 * Disable Large Receive Offload (LRO) on a net device. Must be
1135 * called under RTNL. This is needed if received packets may be
1136 * forwarded to another interface.
1137 */
1138void dev_disable_lro(struct net_device *dev)
1139{
1140 if (dev->ethtool_ops && dev->ethtool_ops->get_flags &&
1141 dev->ethtool_ops->set_flags) {
1142 u32 flags = dev->ethtool_ops->get_flags(dev);
1143 if (flags & ETH_FLAG_LRO) {
1144 flags &= ~ETH_FLAG_LRO;
1145 dev->ethtool_ops->set_flags(dev, flags);
1146 }
1147 }
1148 WARN_ON(dev->features & NETIF_F_LRO);
1149}
1150EXPORT_SYMBOL(dev_disable_lro);
1151
1152
881d966b
EB
1153static int dev_boot_phase = 1;
1154
1da177e4
LT
1155/*
1156 * Device change register/unregister. These are not inline or static
1157 * as we export them to the world.
1158 */
1159
1160/**
1161 * register_netdevice_notifier - register a network notifier block
1162 * @nb: notifier
1163 *
1164 * Register a notifier to be called when network device events occur.
1165 * The notifier passed is linked into the kernel structures and must
1166 * not be reused until it has been unregistered. A negative errno code
1167 * is returned on a failure.
1168 *
1169 * When registered all registration and up events are replayed
4ec93edb 1170 * to the new notifier to allow device to have a race free
1da177e4
LT
1171 * view of the network device list.
1172 */
1173
1174int register_netdevice_notifier(struct notifier_block *nb)
1175{
1176 struct net_device *dev;
fcc5a03a 1177 struct net_device *last;
881d966b 1178 struct net *net;
1da177e4
LT
1179 int err;
1180
1181 rtnl_lock();
f07d5b94 1182 err = raw_notifier_chain_register(&netdev_chain, nb);
fcc5a03a
HX
1183 if (err)
1184 goto unlock;
881d966b
EB
1185 if (dev_boot_phase)
1186 goto unlock;
1187 for_each_net(net) {
1188 for_each_netdev(net, dev) {
1189 err = nb->notifier_call(nb, NETDEV_REGISTER, dev);
1190 err = notifier_to_errno(err);
1191 if (err)
1192 goto rollback;
1193
1194 if (!(dev->flags & IFF_UP))
1195 continue;
1da177e4 1196
881d966b
EB
1197 nb->notifier_call(nb, NETDEV_UP, dev);
1198 }
1da177e4 1199 }
fcc5a03a
HX
1200
1201unlock:
1da177e4
LT
1202 rtnl_unlock();
1203 return err;
fcc5a03a
HX
1204
1205rollback:
1206 last = dev;
881d966b
EB
1207 for_each_net(net) {
1208 for_each_netdev(net, dev) {
1209 if (dev == last)
1210 break;
fcc5a03a 1211
881d966b
EB
1212 if (dev->flags & IFF_UP) {
1213 nb->notifier_call(nb, NETDEV_GOING_DOWN, dev);
1214 nb->notifier_call(nb, NETDEV_DOWN, dev);
1215 }
1216 nb->notifier_call(nb, NETDEV_UNREGISTER, dev);
fcc5a03a 1217 }
fcc5a03a 1218 }
c67625a1
PE
1219
1220 raw_notifier_chain_unregister(&netdev_chain, nb);
fcc5a03a 1221 goto unlock;
1da177e4
LT
1222}
1223
1224/**
1225 * unregister_netdevice_notifier - unregister a network notifier block
1226 * @nb: notifier
1227 *
1228 * Unregister a notifier previously registered by
1229 * register_netdevice_notifier(). The notifier is unlinked into the
1230 * kernel structures and may then be reused. A negative errno code
1231 * is returned on a failure.
1232 */
1233
1234int unregister_netdevice_notifier(struct notifier_block *nb)
1235{
9f514950
HX
1236 int err;
1237
1238 rtnl_lock();
f07d5b94 1239 err = raw_notifier_chain_unregister(&netdev_chain, nb);
9f514950
HX
1240 rtnl_unlock();
1241 return err;
1da177e4
LT
1242}
1243
1244/**
1245 * call_netdevice_notifiers - call all network notifier blocks
1246 * @val: value passed unmodified to notifier function
c4ea43c5 1247 * @dev: net_device pointer passed unmodified to notifier function
1da177e4
LT
1248 *
1249 * Call all network notifier blocks. Parameters and return value
f07d5b94 1250 * are as for raw_notifier_call_chain().
1da177e4
LT
1251 */
1252
ad7379d4 1253int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
1da177e4 1254{
ad7379d4 1255 return raw_notifier_call_chain(&netdev_chain, val, dev);
1da177e4
LT
1256}
1257
1258/* When > 0 there are consumers of rx skb time stamps */
1259static atomic_t netstamp_needed = ATOMIC_INIT(0);
1260
1261void net_enable_timestamp(void)
1262{
1263 atomic_inc(&netstamp_needed);
1264}
1265
1266void net_disable_timestamp(void)
1267{
1268 atomic_dec(&netstamp_needed);
1269}
1270
a61bbcf2 1271static inline void net_timestamp(struct sk_buff *skb)
1da177e4
LT
1272{
1273 if (atomic_read(&netstamp_needed))
a61bbcf2 1274 __net_timestamp(skb);
b7aa0bf7
ED
1275 else
1276 skb->tstamp.tv64 = 0;
1da177e4
LT
1277}
1278
1279/*
1280 * Support routine. Sends outgoing frames to any network
1281 * taps currently in use.
1282 */
1283
f6a78bfc 1284static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1da177e4
LT
1285{
1286 struct packet_type *ptype;
a61bbcf2
PM
1287
1288 net_timestamp(skb);
1da177e4
LT
1289
1290 rcu_read_lock();
1291 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1292 /* Never send packets back to the socket
1293 * they originated from - MvS (miquels@drinkel.ow.org)
1294 */
1295 if ((ptype->dev == dev || !ptype->dev) &&
1296 (ptype->af_packet_priv == NULL ||
1297 (struct sock *)ptype->af_packet_priv != skb->sk)) {
1298 struct sk_buff *skb2= skb_clone(skb, GFP_ATOMIC);
1299 if (!skb2)
1300 break;
1301
1302 /* skb->nh should be correctly
1303 set by sender, so that the second statement is
1304 just protection against buggy protocols.
1305 */
459a98ed 1306 skb_reset_mac_header(skb2);
1da177e4 1307
d56f90a7 1308 if (skb_network_header(skb2) < skb2->data ||
27a884dc 1309 skb2->network_header > skb2->tail) {
1da177e4
LT
1310 if (net_ratelimit())
1311 printk(KERN_CRIT "protocol %04x is "
1312 "buggy, dev %s\n",
1313 skb2->protocol, dev->name);
c1d2bbe1 1314 skb_reset_network_header(skb2);
1da177e4
LT
1315 }
1316
b0e380b1 1317 skb2->transport_header = skb2->network_header;
1da177e4 1318 skb2->pkt_type = PACKET_OUTGOING;
f2ccd8fa 1319 ptype->func(skb2, skb->dev, ptype, skb->dev);
1da177e4
LT
1320 }
1321 }
1322 rcu_read_unlock();
1323}
1324
56079431 1325
86d804e1 1326void __netif_schedule(struct netdev_queue *txq)
56079431 1327{
86d804e1
DM
1328 struct net_device *dev = txq->dev;
1329
56079431 1330 if (!test_and_set_bit(__LINK_STATE_SCHED, &dev->state)) {
56079431 1331 struct softnet_data *sd;
86d804e1 1332 unsigned long flags;
56079431
DV
1333
1334 local_irq_save(flags);
1335 sd = &__get_cpu_var(softnet_data);
ee609cb3
DM
1336 txq->next_sched = sd->output_queue;
1337 sd->output_queue = txq;
56079431
DV
1338 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1339 local_irq_restore(flags);
1340 }
1341}
1342EXPORT_SYMBOL(__netif_schedule);
1343
bea3348e 1344void dev_kfree_skb_irq(struct sk_buff *skb)
56079431 1345{
bea3348e
SH
1346 if (atomic_dec_and_test(&skb->users)) {
1347 struct softnet_data *sd;
1348 unsigned long flags;
56079431 1349
bea3348e
SH
1350 local_irq_save(flags);
1351 sd = &__get_cpu_var(softnet_data);
1352 skb->next = sd->completion_queue;
1353 sd->completion_queue = skb;
1354 raise_softirq_irqoff(NET_TX_SOFTIRQ);
1355 local_irq_restore(flags);
1356 }
56079431 1357}
bea3348e 1358EXPORT_SYMBOL(dev_kfree_skb_irq);
56079431
DV
1359
1360void dev_kfree_skb_any(struct sk_buff *skb)
1361{
1362 if (in_irq() || irqs_disabled())
1363 dev_kfree_skb_irq(skb);
1364 else
1365 dev_kfree_skb(skb);
1366}
1367EXPORT_SYMBOL(dev_kfree_skb_any);
1368
1369
bea3348e
SH
1370/**
1371 * netif_device_detach - mark device as removed
1372 * @dev: network device
1373 *
1374 * Mark device as removed from system and therefore no longer available.
1375 */
56079431
DV
1376void netif_device_detach(struct net_device *dev)
1377{
1378 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
1379 netif_running(dev)) {
1380 netif_stop_queue(dev);
1381 }
1382}
1383EXPORT_SYMBOL(netif_device_detach);
1384
bea3348e
SH
1385/**
1386 * netif_device_attach - mark device as attached
1387 * @dev: network device
1388 *
1389 * Mark device as attached from system and restart if needed.
1390 */
56079431
DV
1391void netif_device_attach(struct net_device *dev)
1392{
1393 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
1394 netif_running(dev)) {
1395 netif_wake_queue(dev);
4ec93edb 1396 __netdev_watchdog_up(dev);
56079431
DV
1397 }
1398}
1399EXPORT_SYMBOL(netif_device_attach);
1400
6de329e2
BH
1401static bool can_checksum_protocol(unsigned long features, __be16 protocol)
1402{
1403 return ((features & NETIF_F_GEN_CSUM) ||
1404 ((features & NETIF_F_IP_CSUM) &&
1405 protocol == htons(ETH_P_IP)) ||
1406 ((features & NETIF_F_IPV6_CSUM) &&
1407 protocol == htons(ETH_P_IPV6)));
1408}
1409
1410static bool dev_can_checksum(struct net_device *dev, struct sk_buff *skb)
1411{
1412 if (can_checksum_protocol(dev->features, skb->protocol))
1413 return true;
1414
1415 if (skb->protocol == htons(ETH_P_8021Q)) {
1416 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
1417 if (can_checksum_protocol(dev->features & dev->vlan_features,
1418 veh->h_vlan_encapsulated_proto))
1419 return true;
1420 }
1421
1422 return false;
1423}
56079431 1424
1da177e4
LT
1425/*
1426 * Invalidate hardware checksum when packet is to be mangled, and
1427 * complete checksum manually on outgoing path.
1428 */
84fa7933 1429int skb_checksum_help(struct sk_buff *skb)
1da177e4 1430{
d3bc23e7 1431 __wsum csum;
663ead3b 1432 int ret = 0, offset;
1da177e4 1433
84fa7933 1434 if (skb->ip_summed == CHECKSUM_COMPLETE)
a430a43d
HX
1435 goto out_set_summed;
1436
1437 if (unlikely(skb_shinfo(skb)->gso_size)) {
a430a43d
HX
1438 /* Let GSO fix up the checksum. */
1439 goto out_set_summed;
1da177e4
LT
1440 }
1441
a030847e
HX
1442 offset = skb->csum_start - skb_headroom(skb);
1443 BUG_ON(offset >= skb_headlen(skb));
1444 csum = skb_checksum(skb, offset, skb->len - offset, 0);
1445
1446 offset += skb->csum_offset;
1447 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
1448
1449 if (skb_cloned(skb) &&
1450 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
1da177e4
LT
1451 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1452 if (ret)
1453 goto out;
1454 }
1455
a030847e 1456 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
a430a43d 1457out_set_summed:
1da177e4 1458 skb->ip_summed = CHECKSUM_NONE;
4ec93edb 1459out:
1da177e4
LT
1460 return ret;
1461}
1462
f6a78bfc
HX
1463/**
1464 * skb_gso_segment - Perform segmentation on skb.
1465 * @skb: buffer to segment
576a30eb 1466 * @features: features for the output path (see dev->features)
f6a78bfc
HX
1467 *
1468 * This function segments the given skb and returns a list of segments.
576a30eb
HX
1469 *
1470 * It may return NULL if the skb requires no segmentation. This is
1471 * only possible when GSO is used for verifying header integrity.
f6a78bfc 1472 */
576a30eb 1473struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features)
f6a78bfc
HX
1474{
1475 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
1476 struct packet_type *ptype;
252e3346 1477 __be16 type = skb->protocol;
a430a43d 1478 int err;
f6a78bfc
HX
1479
1480 BUG_ON(skb_shinfo(skb)->frag_list);
f6a78bfc 1481
459a98ed 1482 skb_reset_mac_header(skb);
b0e380b1 1483 skb->mac_len = skb->network_header - skb->mac_header;
f6a78bfc
HX
1484 __skb_pull(skb, skb->mac_len);
1485
f9d106a6 1486 if (WARN_ON(skb->ip_summed != CHECKSUM_PARTIAL)) {
a430a43d
HX
1487 if (skb_header_cloned(skb) &&
1488 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
1489 return ERR_PTR(err);
1490 }
1491
f6a78bfc 1492 rcu_read_lock();
82d8a867
PE
1493 list_for_each_entry_rcu(ptype,
1494 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
f6a78bfc 1495 if (ptype->type == type && !ptype->dev && ptype->gso_segment) {
84fa7933 1496 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
a430a43d
HX
1497 err = ptype->gso_send_check(skb);
1498 segs = ERR_PTR(err);
1499 if (err || skb_gso_ok(skb, features))
1500 break;
d56f90a7
ACM
1501 __skb_push(skb, (skb->data -
1502 skb_network_header(skb)));
a430a43d 1503 }
576a30eb 1504 segs = ptype->gso_segment(skb, features);
f6a78bfc
HX
1505 break;
1506 }
1507 }
1508 rcu_read_unlock();
1509
98e399f8 1510 __skb_push(skb, skb->data - skb_mac_header(skb));
576a30eb 1511
f6a78bfc
HX
1512 return segs;
1513}
1514
1515EXPORT_SYMBOL(skb_gso_segment);
1516
fb286bb2
HX
1517/* Take action when hardware reception checksum errors are detected. */
1518#ifdef CONFIG_BUG
1519void netdev_rx_csum_fault(struct net_device *dev)
1520{
1521 if (net_ratelimit()) {
4ec93edb 1522 printk(KERN_ERR "%s: hw csum failure.\n",
246a4212 1523 dev ? dev->name : "<unknown>");
fb286bb2
HX
1524 dump_stack();
1525 }
1526}
1527EXPORT_SYMBOL(netdev_rx_csum_fault);
1528#endif
1529
1da177e4
LT
1530/* Actually, we should eliminate this check as soon as we know, that:
1531 * 1. IOMMU is present and allows to map all the memory.
1532 * 2. No high memory really exists on this machine.
1533 */
1534
1535static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1536{
3d3a8533 1537#ifdef CONFIG_HIGHMEM
1da177e4
LT
1538 int i;
1539
1540 if (dev->features & NETIF_F_HIGHDMA)
1541 return 0;
1542
1543 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1544 if (PageHighMem(skb_shinfo(skb)->frags[i].page))
1545 return 1;
1546
3d3a8533 1547#endif
1da177e4
LT
1548 return 0;
1549}
1da177e4 1550
f6a78bfc
HX
1551struct dev_gso_cb {
1552 void (*destructor)(struct sk_buff *skb);
1553};
1554
1555#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
1556
1557static void dev_gso_skb_destructor(struct sk_buff *skb)
1558{
1559 struct dev_gso_cb *cb;
1560
1561 do {
1562 struct sk_buff *nskb = skb->next;
1563
1564 skb->next = nskb->next;
1565 nskb->next = NULL;
1566 kfree_skb(nskb);
1567 } while (skb->next);
1568
1569 cb = DEV_GSO_CB(skb);
1570 if (cb->destructor)
1571 cb->destructor(skb);
1572}
1573
1574/**
1575 * dev_gso_segment - Perform emulated hardware segmentation on skb.
1576 * @skb: buffer to segment
1577 *
1578 * This function segments the given skb and stores the list of segments
1579 * in skb->next.
1580 */
1581static int dev_gso_segment(struct sk_buff *skb)
1582{
1583 struct net_device *dev = skb->dev;
1584 struct sk_buff *segs;
576a30eb
HX
1585 int features = dev->features & ~(illegal_highdma(dev, skb) ?
1586 NETIF_F_SG : 0);
1587
1588 segs = skb_gso_segment(skb, features);
1589
1590 /* Verifying header integrity only. */
1591 if (!segs)
1592 return 0;
f6a78bfc 1593
801678c5 1594 if (IS_ERR(segs))
f6a78bfc
HX
1595 return PTR_ERR(segs);
1596
1597 skb->next = segs;
1598 DEV_GSO_CB(skb)->destructor = skb->destructor;
1599 skb->destructor = dev_gso_skb_destructor;
1600
1601 return 0;
1602}
1603
fd2ea0a7
DM
1604int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
1605 struct netdev_queue *txq)
f6a78bfc
HX
1606{
1607 if (likely(!skb->next)) {
9be9a6b9 1608 if (!list_empty(&ptype_all))
f6a78bfc
HX
1609 dev_queue_xmit_nit(skb, dev);
1610
576a30eb
HX
1611 if (netif_needs_gso(dev, skb)) {
1612 if (unlikely(dev_gso_segment(skb)))
1613 goto out_kfree_skb;
1614 if (skb->next)
1615 goto gso;
1616 }
f6a78bfc 1617
576a30eb 1618 return dev->hard_start_xmit(skb, dev);
f6a78bfc
HX
1619 }
1620
576a30eb 1621gso:
f6a78bfc
HX
1622 do {
1623 struct sk_buff *nskb = skb->next;
1624 int rc;
1625
1626 skb->next = nskb->next;
1627 nskb->next = NULL;
1628 rc = dev->hard_start_xmit(nskb, dev);
1629 if (unlikely(rc)) {
f54d9e8d 1630 nskb->next = skb->next;
f6a78bfc
HX
1631 skb->next = nskb;
1632 return rc;
1633 }
fd2ea0a7 1634 if (unlikely(netif_tx_queue_stopped(txq) && skb->next))
f54d9e8d 1635 return NETDEV_TX_BUSY;
f6a78bfc 1636 } while (skb->next);
4ec93edb 1637
f6a78bfc
HX
1638 skb->destructor = DEV_GSO_CB(skb)->destructor;
1639
1640out_kfree_skb:
1641 kfree_skb(skb);
1642 return 0;
1643}
1644
1da177e4
LT
1645/**
1646 * dev_queue_xmit - transmit a buffer
1647 * @skb: buffer to transmit
1648 *
1649 * Queue a buffer for transmission to a network device. The caller must
1650 * have set the device and priority and built the buffer before calling
1651 * this function. The function can be called from an interrupt.
1652 *
1653 * A negative errno code is returned on a failure. A success does not
1654 * guarantee the frame will be transmitted as it may be dropped due
1655 * to congestion or traffic shaping.
af191367
BG
1656 *
1657 * -----------------------------------------------------------------------------------
1658 * I notice this method can also return errors from the queue disciplines,
1659 * including NET_XMIT_DROP, which is a positive value. So, errors can also
1660 * be positive.
1661 *
1662 * Regardless of the return value, the skb is consumed, so it is currently
1663 * difficult to retry a send to this method. (You can bump the ref count
1664 * before sending to hold a reference for retry if you are careful.)
1665 *
1666 * When calling this method, interrupts MUST be enabled. This is because
1667 * the BH enable code must have IRQs enabled so that it will not deadlock.
1668 * --BLG
1da177e4
LT
1669 */
1670
8f0f2223
DM
1671static u16 simple_tx_hash(struct net_device *dev, struct sk_buff *skb)
1672{
1673 u32 *addr, *ports, hash, ihl;
1674 u8 ip_proto;
1675 int alen;
1676
1677 switch (skb->protocol) {
1678 case __constant_htons(ETH_P_IP):
1679 ip_proto = ip_hdr(skb)->protocol;
1680 addr = &ip_hdr(skb)->saddr;
1681 ihl = ip_hdr(skb)->ihl;
1682 alen = 2;
1683 break;
1684 case __constant_htons(ETH_P_IPV6):
1685 ip_proto = ipv6_hdr(skb)->nexthdr;
1686 addr = &ipv6_hdr(skb)->saddr.s6_addr32[0];
1687 ihl = (40 >> 2);
1688 alen = 8;
1689 break;
1690 default:
1691 return 0;
1692 }
1693
1694 ports = (u32 *) (skb_network_header(skb) + (ihl * 4));
1695
1696 hash = 0;
1697 while (alen--)
1698 hash ^= *addr++;
1699
1700 switch (ip_proto) {
1701 case IPPROTO_TCP:
1702 case IPPROTO_UDP:
1703 case IPPROTO_DCCP:
1704 case IPPROTO_ESP:
1705 case IPPROTO_AH:
1706 case IPPROTO_SCTP:
1707 case IPPROTO_UDPLITE:
1708 hash ^= *ports;
1709 break;
1710
1711 default:
1712 break;
1713 }
1714
1715 return hash % dev->real_num_tx_queues;
1716}
1717
e8a0464c
DM
1718static struct netdev_queue *dev_pick_tx(struct net_device *dev,
1719 struct sk_buff *skb)
1720{
fd2ea0a7
DM
1721 u16 queue_index = 0;
1722
eae792b7
DM
1723 if (dev->select_queue)
1724 queue_index = dev->select_queue(dev, skb);
8f0f2223
DM
1725 else if (dev->real_num_tx_queues > 1)
1726 queue_index = simple_tx_hash(dev, skb);
eae792b7 1727
fd2ea0a7
DM
1728 skb_set_queue_mapping(skb, queue_index);
1729 return netdev_get_tx_queue(dev, queue_index);
e8a0464c
DM
1730}
1731
1da177e4
LT
1732int dev_queue_xmit(struct sk_buff *skb)
1733{
1734 struct net_device *dev = skb->dev;
dc2b4847 1735 struct netdev_queue *txq;
1da177e4
LT
1736 struct Qdisc *q;
1737 int rc = -ENOMEM;
1738
f6a78bfc
HX
1739 /* GSO will handle the following emulations directly. */
1740 if (netif_needs_gso(dev, skb))
1741 goto gso;
1742
1da177e4
LT
1743 if (skb_shinfo(skb)->frag_list &&
1744 !(dev->features & NETIF_F_FRAGLIST) &&
364c6bad 1745 __skb_linearize(skb))
1da177e4
LT
1746 goto out_kfree_skb;
1747
1748 /* Fragmented skb is linearized if device does not support SG,
1749 * or if at least one of fragments is in highmem and device
1750 * does not support DMA from it.
1751 */
1752 if (skb_shinfo(skb)->nr_frags &&
1753 (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) &&
364c6bad 1754 __skb_linearize(skb))
1da177e4
LT
1755 goto out_kfree_skb;
1756
1757 /* If packet is not checksummed and device does not support
1758 * checksumming for this protocol, complete checksumming here.
1759 */
663ead3b
HX
1760 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1761 skb_set_transport_header(skb, skb->csum_start -
1762 skb_headroom(skb));
6de329e2
BH
1763 if (!dev_can_checksum(dev, skb) && skb_checksum_help(skb))
1764 goto out_kfree_skb;
663ead3b 1765 }
1da177e4 1766
f6a78bfc 1767gso:
4ec93edb
YH
1768 /* Disable soft irqs for various locks below. Also
1769 * stops preemption for RCU.
1da177e4 1770 */
4ec93edb 1771 rcu_read_lock_bh();
1da177e4 1772
eae792b7
DM
1773 txq = dev_pick_tx(dev, skb);
1774 spin_lock_prefetch(&txq->lock);
1775
dc2b4847 1776 /* Updates of qdisc are serialized by queue->lock.
4ec93edb
YH
1777 * The struct Qdisc which is pointed to by qdisc is now a
1778 * rcu structure - it may be accessed without acquiring
1da177e4 1779 * a lock (but the structure may be stale.) The freeing of the
4ec93edb 1780 * qdisc will be deferred until it's known that there are no
1da177e4 1781 * more references to it.
4ec93edb
YH
1782 *
1783 * If the qdisc has an enqueue function, we still need to
dc2b4847 1784 * hold the queue->lock before calling it, since queue->lock
1da177e4
LT
1785 * also serializes access to the device queue.
1786 */
1787
b0e1e646 1788 q = rcu_dereference(txq->qdisc);
1da177e4
LT
1789#ifdef CONFIG_NET_CLS_ACT
1790 skb->tc_verd = SET_TC_AT(skb->tc_verd,AT_EGRESS);
1791#endif
1792 if (q->enqueue) {
1793 /* Grab device queue */
dc2b4847 1794 spin_lock(&txq->lock);
b0e1e646 1795 q = txq->qdisc;
85670cc1
PM
1796 if (q->enqueue) {
1797 rc = q->enqueue(skb, q);
eb6aafe3 1798 qdisc_run(txq);
dc2b4847 1799 spin_unlock(&txq->lock);
1da177e4 1800
85670cc1
PM
1801 rc = rc == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : rc;
1802 goto out;
1803 }
dc2b4847 1804 spin_unlock(&txq->lock);
1da177e4
LT
1805 }
1806
1807 /* The device has no queue. Common case for software devices:
1808 loopback, all the sorts of tunnels...
1809
932ff279
HX
1810 Really, it is unlikely that netif_tx_lock protection is necessary
1811 here. (f.e. loopback and IP tunnels are clean ignoring statistics
1da177e4
LT
1812 counters.)
1813 However, it is possible, that they rely on protection
1814 made by us here.
1815
1816 Check this and shot the lock. It is not prone from deadlocks.
1817 Either shot noqueue qdisc, it is even simpler 8)
1818 */
1819 if (dev->flags & IFF_UP) {
1820 int cpu = smp_processor_id(); /* ok because BHs are off */
1821
c773e847 1822 if (txq->xmit_lock_owner != cpu) {
1da177e4 1823
c773e847 1824 HARD_TX_LOCK(dev, txq, cpu);
1da177e4 1825
fd2ea0a7 1826 if (!netif_tx_queue_stopped(txq)) {
1da177e4 1827 rc = 0;
fd2ea0a7 1828 if (!dev_hard_start_xmit(skb, dev, txq)) {
c773e847 1829 HARD_TX_UNLOCK(dev, txq);
1da177e4
LT
1830 goto out;
1831 }
1832 }
c773e847 1833 HARD_TX_UNLOCK(dev, txq);
1da177e4
LT
1834 if (net_ratelimit())
1835 printk(KERN_CRIT "Virtual device %s asks to "
1836 "queue packet!\n", dev->name);
1837 } else {
1838 /* Recursion is detected! It is possible,
1839 * unfortunately */
1840 if (net_ratelimit())
1841 printk(KERN_CRIT "Dead loop on virtual device "
1842 "%s, fix it urgently!\n", dev->name);
1843 }
1844 }
1845
1846 rc = -ENETDOWN;
d4828d85 1847 rcu_read_unlock_bh();
1da177e4
LT
1848
1849out_kfree_skb:
1850 kfree_skb(skb);
1851 return rc;
1852out:
d4828d85 1853 rcu_read_unlock_bh();
1da177e4
LT
1854 return rc;
1855}
1856
1857
1858/*=======================================================================
1859 Receiver routines
1860 =======================================================================*/
1861
6b2bedc3
SH
1862int netdev_max_backlog __read_mostly = 1000;
1863int netdev_budget __read_mostly = 300;
1864int weight_p __read_mostly = 64; /* old backlog weight */
1da177e4
LT
1865
1866DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1867
1868
1da177e4
LT
1869/**
1870 * netif_rx - post buffer to the network code
1871 * @skb: buffer to post
1872 *
1873 * This function receives a packet from a device driver and queues it for
1874 * the upper (protocol) levels to process. It always succeeds. The buffer
1875 * may be dropped during processing for congestion control or by the
1876 * protocol layers.
1877 *
1878 * return values:
1879 * NET_RX_SUCCESS (no congestion)
1da177e4
LT
1880 * NET_RX_DROP (packet was dropped)
1881 *
1882 */
1883
1884int netif_rx(struct sk_buff *skb)
1885{
1da177e4
LT
1886 struct softnet_data *queue;
1887 unsigned long flags;
1888
1889 /* if netpoll wants it, pretend we never saw it */
1890 if (netpoll_rx(skb))
1891 return NET_RX_DROP;
1892
b7aa0bf7 1893 if (!skb->tstamp.tv64)
a61bbcf2 1894 net_timestamp(skb);
1da177e4
LT
1895
1896 /*
1897 * The code is rearranged so that the path is the most
1898 * short when CPU is congested, but is still operating.
1899 */
1900 local_irq_save(flags);
1da177e4
LT
1901 queue = &__get_cpu_var(softnet_data);
1902
1903 __get_cpu_var(netdev_rx_stat).total++;
1904 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
1905 if (queue->input_pkt_queue.qlen) {
1da177e4
LT
1906enqueue:
1907 dev_hold(skb->dev);
1908 __skb_queue_tail(&queue->input_pkt_queue, skb);
1da177e4 1909 local_irq_restore(flags);
34008d8c 1910 return NET_RX_SUCCESS;
1da177e4
LT
1911 }
1912
bea3348e 1913 napi_schedule(&queue->backlog);
1da177e4
LT
1914 goto enqueue;
1915 }
1916
1da177e4
LT
1917 __get_cpu_var(netdev_rx_stat).dropped++;
1918 local_irq_restore(flags);
1919
1920 kfree_skb(skb);
1921 return NET_RX_DROP;
1922}
1923
1924int netif_rx_ni(struct sk_buff *skb)
1925{
1926 int err;
1927
1928 preempt_disable();
1929 err = netif_rx(skb);
1930 if (local_softirq_pending())
1931 do_softirq();
1932 preempt_enable();
1933
1934 return err;
1935}
1936
1937EXPORT_SYMBOL(netif_rx_ni);
1938
f2ccd8fa 1939static inline struct net_device *skb_bond(struct sk_buff *skb)
1da177e4
LT
1940{
1941 struct net_device *dev = skb->dev;
1942
8f903c70 1943 if (dev->master) {
7ea49ed7 1944 if (skb_bond_should_drop(skb)) {
8f903c70
JV
1945 kfree_skb(skb);
1946 return NULL;
1947 }
1da177e4 1948 skb->dev = dev->master;
8f903c70 1949 }
f2ccd8fa
DM
1950
1951 return dev;
1da177e4
LT
1952}
1953
bea3348e 1954
1da177e4
LT
1955static void net_tx_action(struct softirq_action *h)
1956{
1957 struct softnet_data *sd = &__get_cpu_var(softnet_data);
1958
1959 if (sd->completion_queue) {
1960 struct sk_buff *clist;
1961
1962 local_irq_disable();
1963 clist = sd->completion_queue;
1964 sd->completion_queue = NULL;
1965 local_irq_enable();
1966
1967 while (clist) {
1968 struct sk_buff *skb = clist;
1969 clist = clist->next;
1970
1971 BUG_TRAP(!atomic_read(&skb->users));
1972 __kfree_skb(skb);
1973 }
1974 }
1975
1976 if (sd->output_queue) {
ee609cb3 1977 struct netdev_queue *head;
1da177e4
LT
1978
1979 local_irq_disable();
1980 head = sd->output_queue;
1981 sd->output_queue = NULL;
1982 local_irq_enable();
1983
1984 while (head) {
ee609cb3
DM
1985 struct netdev_queue *txq = head;
1986 struct net_device *dev = txq->dev;
1da177e4
LT
1987 head = head->next_sched;
1988
1989 smp_mb__before_clear_bit();
1990 clear_bit(__LINK_STATE_SCHED, &dev->state);
1991
dc2b4847 1992 if (spin_trylock(&txq->lock)) {
eb6aafe3 1993 qdisc_run(txq);
dc2b4847 1994 spin_unlock(&txq->lock);
1da177e4 1995 } else {
86d804e1 1996 netif_schedule_queue(txq);
1da177e4
LT
1997 }
1998 }
1999 }
2000}
2001
6f05f629
SH
2002static inline int deliver_skb(struct sk_buff *skb,
2003 struct packet_type *pt_prev,
2004 struct net_device *orig_dev)
1da177e4
LT
2005{
2006 atomic_inc(&skb->users);
f2ccd8fa 2007 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1da177e4
LT
2008}
2009
2010#if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE)
6229e362 2011/* These hooks defined here for ATM */
1da177e4
LT
2012struct net_bridge;
2013struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
2014 unsigned char *addr);
6229e362 2015void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent) __read_mostly;
1da177e4 2016
6229e362
SH
2017/*
2018 * If bridge module is loaded call bridging hook.
2019 * returns NULL if packet was consumed.
2020 */
2021struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p,
2022 struct sk_buff *skb) __read_mostly;
2023static inline struct sk_buff *handle_bridge(struct sk_buff *skb,
2024 struct packet_type **pt_prev, int *ret,
2025 struct net_device *orig_dev)
1da177e4
LT
2026{
2027 struct net_bridge_port *port;
2028
6229e362
SH
2029 if (skb->pkt_type == PACKET_LOOPBACK ||
2030 (port = rcu_dereference(skb->dev->br_port)) == NULL)
2031 return skb;
1da177e4
LT
2032
2033 if (*pt_prev) {
6229e362 2034 *ret = deliver_skb(skb, *pt_prev, orig_dev);
1da177e4 2035 *pt_prev = NULL;
4ec93edb
YH
2036 }
2037
6229e362 2038 return br_handle_frame_hook(port, skb);
1da177e4
LT
2039}
2040#else
6229e362 2041#define handle_bridge(skb, pt_prev, ret, orig_dev) (skb)
1da177e4
LT
2042#endif
2043
b863ceb7
PM
2044#if defined(CONFIG_MACVLAN) || defined(CONFIG_MACVLAN_MODULE)
2045struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *skb) __read_mostly;
2046EXPORT_SYMBOL_GPL(macvlan_handle_frame_hook);
2047
2048static inline struct sk_buff *handle_macvlan(struct sk_buff *skb,
2049 struct packet_type **pt_prev,
2050 int *ret,
2051 struct net_device *orig_dev)
2052{
2053 if (skb->dev->macvlan_port == NULL)
2054 return skb;
2055
2056 if (*pt_prev) {
2057 *ret = deliver_skb(skb, *pt_prev, orig_dev);
2058 *pt_prev = NULL;
2059 }
2060 return macvlan_handle_frame_hook(skb);
2061}
2062#else
2063#define handle_macvlan(skb, pt_prev, ret, orig_dev) (skb)
2064#endif
2065
1da177e4
LT
2066#ifdef CONFIG_NET_CLS_ACT
2067/* TODO: Maybe we should just force sch_ingress to be compiled in
2068 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
2069 * a compare and 2 stores extra right now if we dont have it on
2070 * but have CONFIG_NET_CLS_ACT
4ec93edb 2071 * NOTE: This doesnt stop any functionality; if you dont have
1da177e4
LT
2072 * the ingress scheduler, you just cant add policies on ingress.
2073 *
2074 */
4ec93edb 2075static int ing_filter(struct sk_buff *skb)
1da177e4 2076{
1da177e4 2077 struct net_device *dev = skb->dev;
f697c3e8 2078 u32 ttl = G_TC_RTTL(skb->tc_verd);
555353cf
DM
2079 struct netdev_queue *rxq;
2080 int result = TC_ACT_OK;
2081 struct Qdisc *q;
4ec93edb 2082
f697c3e8
HX
2083 if (MAX_RED_LOOP < ttl++) {
2084 printk(KERN_WARNING
2085 "Redir loop detected Dropping packet (%d->%d)\n",
2086 skb->iif, dev->ifindex);
2087 return TC_ACT_SHOT;
2088 }
1da177e4 2089
f697c3e8
HX
2090 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
2091 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
1da177e4 2092
555353cf
DM
2093 rxq = &dev->rx_queue;
2094
2095 spin_lock(&rxq->lock);
816f3258 2096 if ((q = rxq->qdisc) != NULL)
f697c3e8 2097 result = q->enqueue(skb, q);
555353cf 2098 spin_unlock(&rxq->lock);
f697c3e8
HX
2099
2100 return result;
2101}
86e65da9 2102
f697c3e8
HX
2103static inline struct sk_buff *handle_ing(struct sk_buff *skb,
2104 struct packet_type **pt_prev,
2105 int *ret, struct net_device *orig_dev)
2106{
816f3258 2107 if (!skb->dev->rx_queue.qdisc)
f697c3e8 2108 goto out;
1da177e4 2109
f697c3e8
HX
2110 if (*pt_prev) {
2111 *ret = deliver_skb(skb, *pt_prev, orig_dev);
2112 *pt_prev = NULL;
2113 } else {
2114 /* Huh? Why does turning on AF_PACKET affect this? */
2115 skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
1da177e4
LT
2116 }
2117
f697c3e8
HX
2118 switch (ing_filter(skb)) {
2119 case TC_ACT_SHOT:
2120 case TC_ACT_STOLEN:
2121 kfree_skb(skb);
2122 return NULL;
2123 }
2124
2125out:
2126 skb->tc_verd = 0;
2127 return skb;
1da177e4
LT
2128}
2129#endif
2130
bc1d0411
PM
2131/*
2132 * netif_nit_deliver - deliver received packets to network taps
2133 * @skb: buffer
2134 *
2135 * This function is used to deliver incoming packets to network
2136 * taps. It should be used when the normal netif_receive_skb path
2137 * is bypassed, for example because of VLAN acceleration.
2138 */
2139void netif_nit_deliver(struct sk_buff *skb)
2140{
2141 struct packet_type *ptype;
2142
2143 if (list_empty(&ptype_all))
2144 return;
2145
2146 skb_reset_network_header(skb);
2147 skb_reset_transport_header(skb);
2148 skb->mac_len = skb->network_header - skb->mac_header;
2149
2150 rcu_read_lock();
2151 list_for_each_entry_rcu(ptype, &ptype_all, list) {
2152 if (!ptype->dev || ptype->dev == skb->dev)
2153 deliver_skb(skb, ptype, skb->dev);
2154 }
2155 rcu_read_unlock();
2156}
2157
3b582cc1
SH
2158/**
2159 * netif_receive_skb - process receive buffer from network
2160 * @skb: buffer to process
2161 *
2162 * netif_receive_skb() is the main receive data processing function.
2163 * It always succeeds. The buffer may be dropped during processing
2164 * for congestion control or by the protocol layers.
2165 *
2166 * This function may only be called from softirq context and interrupts
2167 * should be enabled.
2168 *
2169 * Return values (usually ignored):
2170 * NET_RX_SUCCESS: no congestion
2171 * NET_RX_DROP: packet was dropped
2172 */
1da177e4
LT
2173int netif_receive_skb(struct sk_buff *skb)
2174{
2175 struct packet_type *ptype, *pt_prev;
f2ccd8fa 2176 struct net_device *orig_dev;
1da177e4 2177 int ret = NET_RX_DROP;
252e3346 2178 __be16 type;
1da177e4
LT
2179
2180 /* if we've gotten here through NAPI, check netpoll */
bea3348e 2181 if (netpoll_receive_skb(skb))
1da177e4
LT
2182 return NET_RX_DROP;
2183
b7aa0bf7 2184 if (!skb->tstamp.tv64)
a61bbcf2 2185 net_timestamp(skb);
1da177e4 2186
c01003c2
PM
2187 if (!skb->iif)
2188 skb->iif = skb->dev->ifindex;
86e65da9 2189
f2ccd8fa 2190 orig_dev = skb_bond(skb);
1da177e4 2191
8f903c70
JV
2192 if (!orig_dev)
2193 return NET_RX_DROP;
2194
1da177e4
LT
2195 __get_cpu_var(netdev_rx_stat).total++;
2196
c1d2bbe1 2197 skb_reset_network_header(skb);
badff6d0 2198 skb_reset_transport_header(skb);
b0e380b1 2199 skb->mac_len = skb->network_header - skb->mac_header;
1da177e4
LT
2200
2201 pt_prev = NULL;
2202
2203 rcu_read_lock();
2204
b9f75f45
EB
2205 /* Don't receive packets in an exiting network namespace */
2206 if (!net_alive(dev_net(skb->dev)))
2207 goto out;
2208
1da177e4
LT
2209#ifdef CONFIG_NET_CLS_ACT
2210 if (skb->tc_verd & TC_NCLS) {
2211 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
2212 goto ncls;
2213 }
2214#endif
2215
2216 list_for_each_entry_rcu(ptype, &ptype_all, list) {
2217 if (!ptype->dev || ptype->dev == skb->dev) {
4ec93edb 2218 if (pt_prev)
f2ccd8fa 2219 ret = deliver_skb(skb, pt_prev, orig_dev);
1da177e4
LT
2220 pt_prev = ptype;
2221 }
2222 }
2223
2224#ifdef CONFIG_NET_CLS_ACT
f697c3e8
HX
2225 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
2226 if (!skb)
1da177e4 2227 goto out;
1da177e4
LT
2228ncls:
2229#endif
2230
6229e362 2231 skb = handle_bridge(skb, &pt_prev, &ret, orig_dev);
b863ceb7
PM
2232 if (!skb)
2233 goto out;
2234 skb = handle_macvlan(skb, &pt_prev, &ret, orig_dev);
6229e362 2235 if (!skb)
1da177e4
LT
2236 goto out;
2237
2238 type = skb->protocol;
82d8a867
PE
2239 list_for_each_entry_rcu(ptype,
2240 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
1da177e4
LT
2241 if (ptype->type == type &&
2242 (!ptype->dev || ptype->dev == skb->dev)) {
4ec93edb 2243 if (pt_prev)
f2ccd8fa 2244 ret = deliver_skb(skb, pt_prev, orig_dev);
1da177e4
LT
2245 pt_prev = ptype;
2246 }
2247 }
2248
2249 if (pt_prev) {
f2ccd8fa 2250 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1da177e4
LT
2251 } else {
2252 kfree_skb(skb);
2253 /* Jamal, now you will not able to escape explaining
2254 * me how you were going to use this. :-)
2255 */
2256 ret = NET_RX_DROP;
2257 }
2258
2259out:
2260 rcu_read_unlock();
2261 return ret;
2262}
2263
bea3348e 2264static int process_backlog(struct napi_struct *napi, int quota)
1da177e4
LT
2265{
2266 int work = 0;
1da177e4
LT
2267 struct softnet_data *queue = &__get_cpu_var(softnet_data);
2268 unsigned long start_time = jiffies;
2269
bea3348e
SH
2270 napi->weight = weight_p;
2271 do {
1da177e4
LT
2272 struct sk_buff *skb;
2273 struct net_device *dev;
2274
2275 local_irq_disable();
2276 skb = __skb_dequeue(&queue->input_pkt_queue);
bea3348e
SH
2277 if (!skb) {
2278 __napi_complete(napi);
2279 local_irq_enable();
2280 break;
2281 }
2282
1da177e4
LT
2283 local_irq_enable();
2284
2285 dev = skb->dev;
2286
2287 netif_receive_skb(skb);
2288
2289 dev_put(dev);
bea3348e 2290 } while (++work < quota && jiffies == start_time);
1da177e4 2291
bea3348e
SH
2292 return work;
2293}
1da177e4 2294
bea3348e
SH
2295/**
2296 * __napi_schedule - schedule for receive
c4ea43c5 2297 * @n: entry to schedule
bea3348e
SH
2298 *
2299 * The entry's receive function will be scheduled to run
2300 */
b5606c2d 2301void __napi_schedule(struct napi_struct *n)
bea3348e
SH
2302{
2303 unsigned long flags;
1da177e4 2304
bea3348e
SH
2305 local_irq_save(flags);
2306 list_add_tail(&n->poll_list, &__get_cpu_var(softnet_data).poll_list);
2307 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2308 local_irq_restore(flags);
1da177e4 2309}
bea3348e
SH
2310EXPORT_SYMBOL(__napi_schedule);
2311
1da177e4
LT
2312
2313static void net_rx_action(struct softirq_action *h)
2314{
bea3348e 2315 struct list_head *list = &__get_cpu_var(softnet_data).poll_list;
1da177e4 2316 unsigned long start_time = jiffies;
51b0bded 2317 int budget = netdev_budget;
53fb95d3
MM
2318 void *have;
2319
1da177e4
LT
2320 local_irq_disable();
2321
bea3348e
SH
2322 while (!list_empty(list)) {
2323 struct napi_struct *n;
2324 int work, weight;
1da177e4 2325
bea3348e
SH
2326 /* If softirq window is exhuasted then punt.
2327 *
2328 * Note that this is a slight policy change from the
2329 * previous NAPI code, which would allow up to 2
2330 * jiffies to pass before breaking out. The test
2331 * used to be "jiffies - start_time > 1".
2332 */
2333 if (unlikely(budget <= 0 || jiffies != start_time))
1da177e4
LT
2334 goto softnet_break;
2335
2336 local_irq_enable();
2337
bea3348e
SH
2338 /* Even though interrupts have been re-enabled, this
2339 * access is safe because interrupts can only add new
2340 * entries to the tail of this list, and only ->poll()
2341 * calls can remove this head entry from the list.
2342 */
2343 n = list_entry(list->next, struct napi_struct, poll_list);
1da177e4 2344
bea3348e
SH
2345 have = netpoll_poll_lock(n);
2346
2347 weight = n->weight;
2348
0a7606c1
DM
2349 /* This NAPI_STATE_SCHED test is for avoiding a race
2350 * with netpoll's poll_napi(). Only the entity which
2351 * obtains the lock and sees NAPI_STATE_SCHED set will
2352 * actually make the ->poll() call. Therefore we avoid
2353 * accidently calling ->poll() when NAPI is not scheduled.
2354 */
2355 work = 0;
2356 if (test_bit(NAPI_STATE_SCHED, &n->state))
2357 work = n->poll(n, weight);
bea3348e
SH
2358
2359 WARN_ON_ONCE(work > weight);
2360
2361 budget -= work;
2362
2363 local_irq_disable();
2364
2365 /* Drivers must not modify the NAPI state if they
2366 * consume the entire weight. In such cases this code
2367 * still "owns" the NAPI instance and therefore can
2368 * move the instance around on the list at-will.
2369 */
fed17f30
DM
2370 if (unlikely(work == weight)) {
2371 if (unlikely(napi_disable_pending(n)))
2372 __napi_complete(n);
2373 else
2374 list_move_tail(&n->poll_list, list);
2375 }
bea3348e
SH
2376
2377 netpoll_poll_unlock(have);
1da177e4
LT
2378 }
2379out:
515e06c4 2380 local_irq_enable();
bea3348e 2381
db217334
CL
2382#ifdef CONFIG_NET_DMA
2383 /*
2384 * There may not be any more sk_buffs coming right now, so push
2385 * any pending DMA copies to hardware
2386 */
d379b01e
DW
2387 if (!cpus_empty(net_dma.channel_mask)) {
2388 int chan_idx;
2389 for_each_cpu_mask(chan_idx, net_dma.channel_mask) {
2390 struct dma_chan *chan = net_dma.channels[chan_idx];
2391 if (chan)
2392 dma_async_memcpy_issue_pending(chan);
2393 }
db217334
CL
2394 }
2395#endif
bea3348e 2396
1da177e4
LT
2397 return;
2398
2399softnet_break:
2400 __get_cpu_var(netdev_rx_stat).time_squeeze++;
2401 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2402 goto out;
2403}
2404
2405static gifconf_func_t * gifconf_list [NPROTO];
2406
2407/**
2408 * register_gifconf - register a SIOCGIF handler
2409 * @family: Address family
2410 * @gifconf: Function handler
2411 *
2412 * Register protocol dependent address dumping routines. The handler
2413 * that is passed must not be freed or reused until it has been replaced
2414 * by another handler.
2415 */
2416int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
2417{
2418 if (family >= NPROTO)
2419 return -EINVAL;
2420 gifconf_list[family] = gifconf;
2421 return 0;
2422}
2423
2424
2425/*
2426 * Map an interface index to its name (SIOCGIFNAME)
2427 */
2428
2429/*
2430 * We need this ioctl for efficient implementation of the
2431 * if_indextoname() function required by the IPv6 API. Without
2432 * it, we would have to search all the interfaces to find a
2433 * match. --pb
2434 */
2435
881d966b 2436static int dev_ifname(struct net *net, struct ifreq __user *arg)
1da177e4
LT
2437{
2438 struct net_device *dev;
2439 struct ifreq ifr;
2440
2441 /*
2442 * Fetch the caller's info block.
2443 */
2444
2445 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
2446 return -EFAULT;
2447
2448 read_lock(&dev_base_lock);
881d966b 2449 dev = __dev_get_by_index(net, ifr.ifr_ifindex);
1da177e4
LT
2450 if (!dev) {
2451 read_unlock(&dev_base_lock);
2452 return -ENODEV;
2453 }
2454
2455 strcpy(ifr.ifr_name, dev->name);
2456 read_unlock(&dev_base_lock);
2457
2458 if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
2459 return -EFAULT;
2460 return 0;
2461}
2462
2463/*
2464 * Perform a SIOCGIFCONF call. This structure will change
2465 * size eventually, and there is nothing I can do about it.
2466 * Thus we will need a 'compatibility mode'.
2467 */
2468
881d966b 2469static int dev_ifconf(struct net *net, char __user *arg)
1da177e4
LT
2470{
2471 struct ifconf ifc;
2472 struct net_device *dev;
2473 char __user *pos;
2474 int len;
2475 int total;
2476 int i;
2477
2478 /*
2479 * Fetch the caller's info block.
2480 */
2481
2482 if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
2483 return -EFAULT;
2484
2485 pos = ifc.ifc_buf;
2486 len = ifc.ifc_len;
2487
2488 /*
2489 * Loop over the interfaces, and write an info block for each.
2490 */
2491
2492 total = 0;
881d966b 2493 for_each_netdev(net, dev) {
1da177e4
LT
2494 for (i = 0; i < NPROTO; i++) {
2495 if (gifconf_list[i]) {
2496 int done;
2497 if (!pos)
2498 done = gifconf_list[i](dev, NULL, 0);
2499 else
2500 done = gifconf_list[i](dev, pos + total,
2501 len - total);
2502 if (done < 0)
2503 return -EFAULT;
2504 total += done;
2505 }
2506 }
4ec93edb 2507 }
1da177e4
LT
2508
2509 /*
2510 * All done. Write the updated control block back to the caller.
2511 */
2512 ifc.ifc_len = total;
2513
2514 /*
2515 * Both BSD and Solaris return 0 here, so we do too.
2516 */
2517 return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
2518}
2519
2520#ifdef CONFIG_PROC_FS
2521/*
2522 * This is invoked by the /proc filesystem handler to display a device
2523 * in detail.
2524 */
7562f876 2525void *dev_seq_start(struct seq_file *seq, loff_t *pos)
9a429c49 2526 __acquires(dev_base_lock)
1da177e4 2527{
e372c414 2528 struct net *net = seq_file_net(seq);
7562f876 2529 loff_t off;
1da177e4 2530 struct net_device *dev;
1da177e4 2531
7562f876
PE
2532 read_lock(&dev_base_lock);
2533 if (!*pos)
2534 return SEQ_START_TOKEN;
1da177e4 2535
7562f876 2536 off = 1;
881d966b 2537 for_each_netdev(net, dev)
7562f876
PE
2538 if (off++ == *pos)
2539 return dev;
1da177e4 2540
7562f876 2541 return NULL;
1da177e4
LT
2542}
2543
2544void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2545{
e372c414 2546 struct net *net = seq_file_net(seq);
1da177e4 2547 ++*pos;
7562f876 2548 return v == SEQ_START_TOKEN ?
881d966b 2549 first_net_device(net) : next_net_device((struct net_device *)v);
1da177e4
LT
2550}
2551
2552void dev_seq_stop(struct seq_file *seq, void *v)
9a429c49 2553 __releases(dev_base_lock)
1da177e4
LT
2554{
2555 read_unlock(&dev_base_lock);
2556}
2557
2558static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
2559{
c45d286e 2560 struct net_device_stats *stats = dev->get_stats(dev);
1da177e4 2561
5a1b5898
RR
2562 seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
2563 "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
2564 dev->name, stats->rx_bytes, stats->rx_packets,
2565 stats->rx_errors,
2566 stats->rx_dropped + stats->rx_missed_errors,
2567 stats->rx_fifo_errors,
2568 stats->rx_length_errors + stats->rx_over_errors +
2569 stats->rx_crc_errors + stats->rx_frame_errors,
2570 stats->rx_compressed, stats->multicast,
2571 stats->tx_bytes, stats->tx_packets,
2572 stats->tx_errors, stats->tx_dropped,
2573 stats->tx_fifo_errors, stats->collisions,
2574 stats->tx_carrier_errors +
2575 stats->tx_aborted_errors +
2576 stats->tx_window_errors +
2577 stats->tx_heartbeat_errors,
2578 stats->tx_compressed);
1da177e4
LT
2579}
2580
2581/*
2582 * Called from the PROCfs module. This now uses the new arbitrary sized
2583 * /proc/net interface to create /proc/net/dev
2584 */
2585static int dev_seq_show(struct seq_file *seq, void *v)
2586{
2587 if (v == SEQ_START_TOKEN)
2588 seq_puts(seq, "Inter-| Receive "
2589 " | Transmit\n"
2590 " face |bytes packets errs drop fifo frame "
2591 "compressed multicast|bytes packets errs "
2592 "drop fifo colls carrier compressed\n");
2593 else
2594 dev_seq_printf_stats(seq, v);
2595 return 0;
2596}
2597
2598static struct netif_rx_stats *softnet_get_online(loff_t *pos)
2599{
2600 struct netif_rx_stats *rc = NULL;
2601
0c0b0aca 2602 while (*pos < nr_cpu_ids)
4ec93edb 2603 if (cpu_online(*pos)) {
1da177e4
LT
2604 rc = &per_cpu(netdev_rx_stat, *pos);
2605 break;
2606 } else
2607 ++*pos;
2608 return rc;
2609}
2610
2611static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
2612{
2613 return softnet_get_online(pos);
2614}
2615
2616static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2617{
2618 ++*pos;
2619 return softnet_get_online(pos);
2620}
2621
2622static void softnet_seq_stop(struct seq_file *seq, void *v)
2623{
2624}
2625
2626static int softnet_seq_show(struct seq_file *seq, void *v)
2627{
2628 struct netif_rx_stats *s = v;
2629
2630 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
31aa02c5 2631 s->total, s->dropped, s->time_squeeze, 0,
c1ebcdb8
SH
2632 0, 0, 0, 0, /* was fastroute */
2633 s->cpu_collision );
1da177e4
LT
2634 return 0;
2635}
2636
f690808e 2637static const struct seq_operations dev_seq_ops = {
1da177e4
LT
2638 .start = dev_seq_start,
2639 .next = dev_seq_next,
2640 .stop = dev_seq_stop,
2641 .show = dev_seq_show,
2642};
2643
2644static int dev_seq_open(struct inode *inode, struct file *file)
2645{
e372c414
DL
2646 return seq_open_net(inode, file, &dev_seq_ops,
2647 sizeof(struct seq_net_private));
1da177e4
LT
2648}
2649
9a32144e 2650static const struct file_operations dev_seq_fops = {
1da177e4
LT
2651 .owner = THIS_MODULE,
2652 .open = dev_seq_open,
2653 .read = seq_read,
2654 .llseek = seq_lseek,
e372c414 2655 .release = seq_release_net,
1da177e4
LT
2656};
2657
f690808e 2658static const struct seq_operations softnet_seq_ops = {
1da177e4
LT
2659 .start = softnet_seq_start,
2660 .next = softnet_seq_next,
2661 .stop = softnet_seq_stop,
2662 .show = softnet_seq_show,
2663};
2664
2665static int softnet_seq_open(struct inode *inode, struct file *file)
2666{
2667 return seq_open(file, &softnet_seq_ops);
2668}
2669
9a32144e 2670static const struct file_operations softnet_seq_fops = {
1da177e4
LT
2671 .owner = THIS_MODULE,
2672 .open = softnet_seq_open,
2673 .read = seq_read,
2674 .llseek = seq_lseek,
2675 .release = seq_release,
2676};
2677
0e1256ff
SH
2678static void *ptype_get_idx(loff_t pos)
2679{
2680 struct packet_type *pt = NULL;
2681 loff_t i = 0;
2682 int t;
2683
2684 list_for_each_entry_rcu(pt, &ptype_all, list) {
2685 if (i == pos)
2686 return pt;
2687 ++i;
2688 }
2689
82d8a867 2690 for (t = 0; t < PTYPE_HASH_SIZE; t++) {
0e1256ff
SH
2691 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
2692 if (i == pos)
2693 return pt;
2694 ++i;
2695 }
2696 }
2697 return NULL;
2698}
2699
2700static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
72348a42 2701 __acquires(RCU)
0e1256ff
SH
2702{
2703 rcu_read_lock();
2704 return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
2705}
2706
2707static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2708{
2709 struct packet_type *pt;
2710 struct list_head *nxt;
2711 int hash;
2712
2713 ++*pos;
2714 if (v == SEQ_START_TOKEN)
2715 return ptype_get_idx(0);
2716
2717 pt = v;
2718 nxt = pt->list.next;
2719 if (pt->type == htons(ETH_P_ALL)) {
2720 if (nxt != &ptype_all)
2721 goto found;
2722 hash = 0;
2723 nxt = ptype_base[0].next;
2724 } else
82d8a867 2725 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
0e1256ff
SH
2726
2727 while (nxt == &ptype_base[hash]) {
82d8a867 2728 if (++hash >= PTYPE_HASH_SIZE)
0e1256ff
SH
2729 return NULL;
2730 nxt = ptype_base[hash].next;
2731 }
2732found:
2733 return list_entry(nxt, struct packet_type, list);
2734}
2735
2736static void ptype_seq_stop(struct seq_file *seq, void *v)
72348a42 2737 __releases(RCU)
0e1256ff
SH
2738{
2739 rcu_read_unlock();
2740}
2741
2742static void ptype_seq_decode(struct seq_file *seq, void *sym)
2743{
2744#ifdef CONFIG_KALLSYMS
2745 unsigned long offset = 0, symsize;
2746 const char *symname;
2747 char *modname;
2748 char namebuf[128];
2749
2750 symname = kallsyms_lookup((unsigned long)sym, &symsize, &offset,
2751 &modname, namebuf);
2752
2753 if (symname) {
2754 char *delim = ":";
2755
2756 if (!modname)
2757 modname = delim = "";
2758 seq_printf(seq, "%s%s%s%s+0x%lx", delim, modname, delim,
2759 symname, offset);
2760 return;
2761 }
2762#endif
2763
2764 seq_printf(seq, "[%p]", sym);
2765}
2766
2767static int ptype_seq_show(struct seq_file *seq, void *v)
2768{
2769 struct packet_type *pt = v;
2770
2771 if (v == SEQ_START_TOKEN)
2772 seq_puts(seq, "Type Device Function\n");
c346dca1 2773 else if (pt->dev == NULL || dev_net(pt->dev) == seq_file_net(seq)) {
0e1256ff
SH
2774 if (pt->type == htons(ETH_P_ALL))
2775 seq_puts(seq, "ALL ");
2776 else
2777 seq_printf(seq, "%04x", ntohs(pt->type));
2778
2779 seq_printf(seq, " %-8s ",
2780 pt->dev ? pt->dev->name : "");
2781 ptype_seq_decode(seq, pt->func);
2782 seq_putc(seq, '\n');
2783 }
2784
2785 return 0;
2786}
2787
2788static const struct seq_operations ptype_seq_ops = {
2789 .start = ptype_seq_start,
2790 .next = ptype_seq_next,
2791 .stop = ptype_seq_stop,
2792 .show = ptype_seq_show,
2793};
2794
2795static int ptype_seq_open(struct inode *inode, struct file *file)
2796{
2feb27db
PE
2797 return seq_open_net(inode, file, &ptype_seq_ops,
2798 sizeof(struct seq_net_private));
0e1256ff
SH
2799}
2800
2801static const struct file_operations ptype_seq_fops = {
2802 .owner = THIS_MODULE,
2803 .open = ptype_seq_open,
2804 .read = seq_read,
2805 .llseek = seq_lseek,
2feb27db 2806 .release = seq_release_net,
0e1256ff
SH
2807};
2808
2809
4665079c 2810static int __net_init dev_proc_net_init(struct net *net)
1da177e4
LT
2811{
2812 int rc = -ENOMEM;
2813
881d966b 2814 if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops))
1da177e4 2815 goto out;
881d966b 2816 if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops))
1da177e4 2817 goto out_dev;
881d966b 2818 if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops))
457c4cbc 2819 goto out_softnet;
0e1256ff 2820
881d966b 2821 if (wext_proc_init(net))
457c4cbc 2822 goto out_ptype;
1da177e4
LT
2823 rc = 0;
2824out:
2825 return rc;
457c4cbc 2826out_ptype:
881d966b 2827 proc_net_remove(net, "ptype");
1da177e4 2828out_softnet:
881d966b 2829 proc_net_remove(net, "softnet_stat");
1da177e4 2830out_dev:
881d966b 2831 proc_net_remove(net, "dev");
1da177e4
LT
2832 goto out;
2833}
881d966b 2834
4665079c 2835static void __net_exit dev_proc_net_exit(struct net *net)
881d966b
EB
2836{
2837 wext_proc_exit(net);
2838
2839 proc_net_remove(net, "ptype");
2840 proc_net_remove(net, "softnet_stat");
2841 proc_net_remove(net, "dev");
2842}
2843
022cbae6 2844static struct pernet_operations __net_initdata dev_proc_ops = {
881d966b
EB
2845 .init = dev_proc_net_init,
2846 .exit = dev_proc_net_exit,
2847};
2848
2849static int __init dev_proc_init(void)
2850{
2851 return register_pernet_subsys(&dev_proc_ops);
2852}
1da177e4
LT
2853#else
2854#define dev_proc_init() 0
2855#endif /* CONFIG_PROC_FS */
2856
2857
2858/**
2859 * netdev_set_master - set up master/slave pair
2860 * @slave: slave device
2861 * @master: new master device
2862 *
2863 * Changes the master device of the slave. Pass %NULL to break the
2864 * bonding. The caller must hold the RTNL semaphore. On a failure
2865 * a negative errno code is returned. On success the reference counts
2866 * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
2867 * function returns zero.
2868 */
2869int netdev_set_master(struct net_device *slave, struct net_device *master)
2870{
2871 struct net_device *old = slave->master;
2872
2873 ASSERT_RTNL();
2874
2875 if (master) {
2876 if (old)
2877 return -EBUSY;
2878 dev_hold(master);
2879 }
2880
2881 slave->master = master;
4ec93edb 2882
1da177e4
LT
2883 synchronize_net();
2884
2885 if (old)
2886 dev_put(old);
2887
2888 if (master)
2889 slave->flags |= IFF_SLAVE;
2890 else
2891 slave->flags &= ~IFF_SLAVE;
2892
2893 rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
2894 return 0;
2895}
2896
dad9b335 2897static int __dev_set_promiscuity(struct net_device *dev, int inc)
1da177e4
LT
2898{
2899 unsigned short old_flags = dev->flags;
2900
24023451
PM
2901 ASSERT_RTNL();
2902
dad9b335
WC
2903 dev->flags |= IFF_PROMISC;
2904 dev->promiscuity += inc;
2905 if (dev->promiscuity == 0) {
2906 /*
2907 * Avoid overflow.
2908 * If inc causes overflow, untouch promisc and return error.
2909 */
2910 if (inc < 0)
2911 dev->flags &= ~IFF_PROMISC;
2912 else {
2913 dev->promiscuity -= inc;
2914 printk(KERN_WARNING "%s: promiscuity touches roof, "
2915 "set promiscuity failed, promiscuity feature "
2916 "of device might be broken.\n", dev->name);
2917 return -EOVERFLOW;
2918 }
2919 }
52609c0b 2920 if (dev->flags != old_flags) {
1da177e4
LT
2921 printk(KERN_INFO "device %s %s promiscuous mode\n",
2922 dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
4ec93edb 2923 "left");
7759db82
KHK
2924 if (audit_enabled)
2925 audit_log(current->audit_context, GFP_ATOMIC,
2926 AUDIT_ANOM_PROMISCUOUS,
2927 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
2928 dev->name, (dev->flags & IFF_PROMISC),
2929 (old_flags & IFF_PROMISC),
2930 audit_get_loginuid(current),
2931 current->uid, current->gid,
2932 audit_get_sessionid(current));
24023451
PM
2933
2934 if (dev->change_rx_flags)
2935 dev->change_rx_flags(dev, IFF_PROMISC);
1da177e4 2936 }
dad9b335 2937 return 0;
1da177e4
LT
2938}
2939
4417da66
PM
2940/**
2941 * dev_set_promiscuity - update promiscuity count on a device
2942 * @dev: device
2943 * @inc: modifier
2944 *
2945 * Add or remove promiscuity from a device. While the count in the device
2946 * remains above zero the interface remains promiscuous. Once it hits zero
2947 * the device reverts back to normal filtering operation. A negative inc
2948 * value is used to drop promiscuity on the device.
dad9b335 2949 * Return 0 if successful or a negative errno code on error.
4417da66 2950 */
dad9b335 2951int dev_set_promiscuity(struct net_device *dev, int inc)
4417da66
PM
2952{
2953 unsigned short old_flags = dev->flags;
dad9b335 2954 int err;
4417da66 2955
dad9b335 2956 err = __dev_set_promiscuity(dev, inc);
4b5a698e 2957 if (err < 0)
dad9b335 2958 return err;
4417da66
PM
2959 if (dev->flags != old_flags)
2960 dev_set_rx_mode(dev);
dad9b335 2961 return err;
4417da66
PM
2962}
2963
1da177e4
LT
2964/**
2965 * dev_set_allmulti - update allmulti count on a device
2966 * @dev: device
2967 * @inc: modifier
2968 *
2969 * Add or remove reception of all multicast frames to a device. While the
2970 * count in the device remains above zero the interface remains listening
2971 * to all interfaces. Once it hits zero the device reverts back to normal
2972 * filtering operation. A negative @inc value is used to drop the counter
2973 * when releasing a resource needing all multicasts.
dad9b335 2974 * Return 0 if successful or a negative errno code on error.
1da177e4
LT
2975 */
2976
dad9b335 2977int dev_set_allmulti(struct net_device *dev, int inc)
1da177e4
LT
2978{
2979 unsigned short old_flags = dev->flags;
2980
24023451
PM
2981 ASSERT_RTNL();
2982
1da177e4 2983 dev->flags |= IFF_ALLMULTI;
dad9b335
WC
2984 dev->allmulti += inc;
2985 if (dev->allmulti == 0) {
2986 /*
2987 * Avoid overflow.
2988 * If inc causes overflow, untouch allmulti and return error.
2989 */
2990 if (inc < 0)
2991 dev->flags &= ~IFF_ALLMULTI;
2992 else {
2993 dev->allmulti -= inc;
2994 printk(KERN_WARNING "%s: allmulti touches roof, "
2995 "set allmulti failed, allmulti feature of "
2996 "device might be broken.\n", dev->name);
2997 return -EOVERFLOW;
2998 }
2999 }
24023451
PM
3000 if (dev->flags ^ old_flags) {
3001 if (dev->change_rx_flags)
3002 dev->change_rx_flags(dev, IFF_ALLMULTI);
4417da66 3003 dev_set_rx_mode(dev);
24023451 3004 }
dad9b335 3005 return 0;
4417da66
PM
3006}
3007
3008/*
3009 * Upload unicast and multicast address lists to device and
3010 * configure RX filtering. When the device doesn't support unicast
53ccaae1 3011 * filtering it is put in promiscuous mode while unicast addresses
4417da66
PM
3012 * are present.
3013 */
3014void __dev_set_rx_mode(struct net_device *dev)
3015{
3016 /* dev_open will call this function so the list will stay sane. */
3017 if (!(dev->flags&IFF_UP))
3018 return;
3019
3020 if (!netif_device_present(dev))
40b77c94 3021 return;
4417da66
PM
3022
3023 if (dev->set_rx_mode)
3024 dev->set_rx_mode(dev);
3025 else {
3026 /* Unicast addresses changes may only happen under the rtnl,
3027 * therefore calling __dev_set_promiscuity here is safe.
3028 */
3029 if (dev->uc_count > 0 && !dev->uc_promisc) {
3030 __dev_set_promiscuity(dev, 1);
3031 dev->uc_promisc = 1;
3032 } else if (dev->uc_count == 0 && dev->uc_promisc) {
3033 __dev_set_promiscuity(dev, -1);
3034 dev->uc_promisc = 0;
3035 }
3036
3037 if (dev->set_multicast_list)
3038 dev->set_multicast_list(dev);
3039 }
3040}
3041
3042void dev_set_rx_mode(struct net_device *dev)
3043{
b9e40857 3044 netif_addr_lock_bh(dev);
4417da66 3045 __dev_set_rx_mode(dev);
b9e40857 3046 netif_addr_unlock_bh(dev);
1da177e4
LT
3047}
3048
61cbc2fc
PM
3049int __dev_addr_delete(struct dev_addr_list **list, int *count,
3050 void *addr, int alen, int glbl)
bf742482
PM
3051{
3052 struct dev_addr_list *da;
3053
3054 for (; (da = *list) != NULL; list = &da->next) {
3055 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
3056 alen == da->da_addrlen) {
3057 if (glbl) {
3058 int old_glbl = da->da_gusers;
3059 da->da_gusers = 0;
3060 if (old_glbl == 0)
3061 break;
3062 }
3063 if (--da->da_users)
3064 return 0;
3065
3066 *list = da->next;
3067 kfree(da);
61cbc2fc 3068 (*count)--;
bf742482
PM
3069 return 0;
3070 }
3071 }
3072 return -ENOENT;
3073}
3074
61cbc2fc
PM
3075int __dev_addr_add(struct dev_addr_list **list, int *count,
3076 void *addr, int alen, int glbl)
bf742482
PM
3077{
3078 struct dev_addr_list *da;
3079
3080 for (da = *list; da != NULL; da = da->next) {
3081 if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 &&
3082 da->da_addrlen == alen) {
3083 if (glbl) {
3084 int old_glbl = da->da_gusers;
3085 da->da_gusers = 1;
3086 if (old_glbl)
3087 return 0;
3088 }
3089 da->da_users++;
3090 return 0;
3091 }
3092 }
3093
12aa343a 3094 da = kzalloc(sizeof(*da), GFP_ATOMIC);
bf742482
PM
3095 if (da == NULL)
3096 return -ENOMEM;
3097 memcpy(da->da_addr, addr, alen);
3098 da->da_addrlen = alen;
3099 da->da_users = 1;
3100 da->da_gusers = glbl ? 1 : 0;
3101 da->next = *list;
3102 *list = da;
61cbc2fc 3103 (*count)++;
bf742482
PM
3104 return 0;
3105}
3106
4417da66
PM
3107/**
3108 * dev_unicast_delete - Release secondary unicast address.
3109 * @dev: device
0ed72ec4
RD
3110 * @addr: address to delete
3111 * @alen: length of @addr
4417da66
PM
3112 *
3113 * Release reference to a secondary unicast address and remove it
0ed72ec4 3114 * from the device if the reference count drops to zero.
4417da66
PM
3115 *
3116 * The caller must hold the rtnl_mutex.
3117 */
3118int dev_unicast_delete(struct net_device *dev, void *addr, int alen)
3119{
3120 int err;
3121
3122 ASSERT_RTNL();
3123
b9e40857 3124 netif_addr_lock_bh(dev);
61cbc2fc
PM
3125 err = __dev_addr_delete(&dev->uc_list, &dev->uc_count, addr, alen, 0);
3126 if (!err)
4417da66 3127 __dev_set_rx_mode(dev);
b9e40857 3128 netif_addr_unlock_bh(dev);
4417da66
PM
3129 return err;
3130}
3131EXPORT_SYMBOL(dev_unicast_delete);
3132
3133/**
3134 * dev_unicast_add - add a secondary unicast address
3135 * @dev: device
5dbaec5d 3136 * @addr: address to add
0ed72ec4 3137 * @alen: length of @addr
4417da66
PM
3138 *
3139 * Add a secondary unicast address to the device or increase
3140 * the reference count if it already exists.
3141 *
3142 * The caller must hold the rtnl_mutex.
3143 */
3144int dev_unicast_add(struct net_device *dev, void *addr, int alen)
3145{
3146 int err;
3147
3148 ASSERT_RTNL();
3149
b9e40857 3150 netif_addr_lock_bh(dev);
61cbc2fc
PM
3151 err = __dev_addr_add(&dev->uc_list, &dev->uc_count, addr, alen, 0);
3152 if (!err)
4417da66 3153 __dev_set_rx_mode(dev);
b9e40857 3154 netif_addr_unlock_bh(dev);
4417da66
PM
3155 return err;
3156}
3157EXPORT_SYMBOL(dev_unicast_add);
3158
e83a2ea8
CL
3159int __dev_addr_sync(struct dev_addr_list **to, int *to_count,
3160 struct dev_addr_list **from, int *from_count)
3161{
3162 struct dev_addr_list *da, *next;
3163 int err = 0;
3164
3165 da = *from;
3166 while (da != NULL) {
3167 next = da->next;
3168 if (!da->da_synced) {
3169 err = __dev_addr_add(to, to_count,
3170 da->da_addr, da->da_addrlen, 0);
3171 if (err < 0)
3172 break;
3173 da->da_synced = 1;
3174 da->da_users++;
3175 } else if (da->da_users == 1) {
3176 __dev_addr_delete(to, to_count,
3177 da->da_addr, da->da_addrlen, 0);
3178 __dev_addr_delete(from, from_count,
3179 da->da_addr, da->da_addrlen, 0);
3180 }
3181 da = next;
3182 }
3183 return err;
3184}
3185
3186void __dev_addr_unsync(struct dev_addr_list **to, int *to_count,
3187 struct dev_addr_list **from, int *from_count)
3188{
3189 struct dev_addr_list *da, *next;
3190
3191 da = *from;
3192 while (da != NULL) {
3193 next = da->next;
3194 if (da->da_synced) {
3195 __dev_addr_delete(to, to_count,
3196 da->da_addr, da->da_addrlen, 0);
3197 da->da_synced = 0;
3198 __dev_addr_delete(from, from_count,
3199 da->da_addr, da->da_addrlen, 0);
3200 }
3201 da = next;
3202 }
3203}
3204
3205/**
3206 * dev_unicast_sync - Synchronize device's unicast list to another device
3207 * @to: destination device
3208 * @from: source device
3209 *
3210 * Add newly added addresses to the destination device and release
3211 * addresses that have no users left. The source device must be
3212 * locked by netif_tx_lock_bh.
3213 *
3214 * This function is intended to be called from the dev->set_rx_mode
3215 * function of layered software devices.
3216 */
3217int dev_unicast_sync(struct net_device *to, struct net_device *from)
3218{
3219 int err = 0;
3220
b9e40857 3221 netif_addr_lock_bh(to);
e83a2ea8
CL
3222 err = __dev_addr_sync(&to->uc_list, &to->uc_count,
3223 &from->uc_list, &from->uc_count);
3224 if (!err)
3225 __dev_set_rx_mode(to);
b9e40857 3226 netif_addr_unlock_bh(to);
e83a2ea8
CL
3227 return err;
3228}
3229EXPORT_SYMBOL(dev_unicast_sync);
3230
3231/**
bc2cda1e 3232 * dev_unicast_unsync - Remove synchronized addresses from the destination device
e83a2ea8
CL
3233 * @to: destination device
3234 * @from: source device
3235 *
3236 * Remove all addresses that were added to the destination device by
3237 * dev_unicast_sync(). This function is intended to be called from the
3238 * dev->stop function of layered software devices.
3239 */
3240void dev_unicast_unsync(struct net_device *to, struct net_device *from)
3241{
b9e40857 3242 netif_addr_lock_bh(from);
e308a5d8 3243 netif_addr_lock(to);
e83a2ea8
CL
3244
3245 __dev_addr_unsync(&to->uc_list, &to->uc_count,
3246 &from->uc_list, &from->uc_count);
3247 __dev_set_rx_mode(to);
3248
e308a5d8 3249 netif_addr_unlock(to);
b9e40857 3250 netif_addr_unlock_bh(from);
e83a2ea8
CL
3251}
3252EXPORT_SYMBOL(dev_unicast_unsync);
3253
12972621
DC
3254static void __dev_addr_discard(struct dev_addr_list **list)
3255{
3256 struct dev_addr_list *tmp;
3257
3258 while (*list != NULL) {
3259 tmp = *list;
3260 *list = tmp->next;
3261 if (tmp->da_users > tmp->da_gusers)
3262 printk("__dev_addr_discard: address leakage! "
3263 "da_users=%d\n", tmp->da_users);
3264 kfree(tmp);
3265 }
3266}
3267
26cc2522 3268static void dev_addr_discard(struct net_device *dev)
4417da66 3269{
b9e40857 3270 netif_addr_lock_bh(dev);
26cc2522 3271
4417da66
PM
3272 __dev_addr_discard(&dev->uc_list);
3273 dev->uc_count = 0;
4417da66 3274
456ad75c
DC
3275 __dev_addr_discard(&dev->mc_list);
3276 dev->mc_count = 0;
26cc2522 3277
b9e40857 3278 netif_addr_unlock_bh(dev);
456ad75c
DC
3279}
3280
1da177e4
LT
3281unsigned dev_get_flags(const struct net_device *dev)
3282{
3283 unsigned flags;
3284
3285 flags = (dev->flags & ~(IFF_PROMISC |
3286 IFF_ALLMULTI |
b00055aa
SR
3287 IFF_RUNNING |
3288 IFF_LOWER_UP |
3289 IFF_DORMANT)) |
1da177e4
LT
3290 (dev->gflags & (IFF_PROMISC |
3291 IFF_ALLMULTI));
3292
b00055aa
SR
3293 if (netif_running(dev)) {
3294 if (netif_oper_up(dev))
3295 flags |= IFF_RUNNING;
3296 if (netif_carrier_ok(dev))
3297 flags |= IFF_LOWER_UP;
3298 if (netif_dormant(dev))
3299 flags |= IFF_DORMANT;
3300 }
1da177e4
LT
3301
3302 return flags;
3303}
3304
3305int dev_change_flags(struct net_device *dev, unsigned flags)
3306{
7c355f53 3307 int ret, changes;
1da177e4
LT
3308 int old_flags = dev->flags;
3309
24023451
PM
3310 ASSERT_RTNL();
3311
1da177e4
LT
3312 /*
3313 * Set the flags on our device.
3314 */
3315
3316 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
3317 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
3318 IFF_AUTOMEDIA)) |
3319 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
3320 IFF_ALLMULTI));
3321
3322 /*
3323 * Load in the correct multicast list now the flags have changed.
3324 */
3325
0e91796e 3326 if (dev->change_rx_flags && (old_flags ^ flags) & IFF_MULTICAST)
24023451
PM
3327 dev->change_rx_flags(dev, IFF_MULTICAST);
3328
4417da66 3329 dev_set_rx_mode(dev);
1da177e4
LT
3330
3331 /*
3332 * Have we downed the interface. We handle IFF_UP ourselves
3333 * according to user attempts to set it, rather than blindly
3334 * setting it.
3335 */
3336
3337 ret = 0;
3338 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
3339 ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
3340
3341 if (!ret)
4417da66 3342 dev_set_rx_mode(dev);
1da177e4
LT
3343 }
3344
3345 if (dev->flags & IFF_UP &&
3346 ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
3347 IFF_VOLATILE)))
056925ab 3348 call_netdevice_notifiers(NETDEV_CHANGE, dev);
1da177e4
LT
3349
3350 if ((flags ^ dev->gflags) & IFF_PROMISC) {
3351 int inc = (flags & IFF_PROMISC) ? +1 : -1;
3352 dev->gflags ^= IFF_PROMISC;
3353 dev_set_promiscuity(dev, inc);
3354 }
3355
3356 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
3357 is important. Some (broken) drivers set IFF_PROMISC, when
3358 IFF_ALLMULTI is requested not asking us and not reporting.
3359 */
3360 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
3361 int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
3362 dev->gflags ^= IFF_ALLMULTI;
3363 dev_set_allmulti(dev, inc);
3364 }
3365
7c355f53
TG
3366 /* Exclude state transition flags, already notified */
3367 changes = (old_flags ^ dev->flags) & ~(IFF_UP | IFF_RUNNING);
3368 if (changes)
3369 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
1da177e4
LT
3370
3371 return ret;
3372}
3373
3374int dev_set_mtu(struct net_device *dev, int new_mtu)
3375{
3376 int err;
3377
3378 if (new_mtu == dev->mtu)
3379 return 0;
3380
3381 /* MTU must be positive. */
3382 if (new_mtu < 0)
3383 return -EINVAL;
3384
3385 if (!netif_device_present(dev))
3386 return -ENODEV;
3387
3388 err = 0;
3389 if (dev->change_mtu)
3390 err = dev->change_mtu(dev, new_mtu);
3391 else
3392 dev->mtu = new_mtu;
3393 if (!err && dev->flags & IFF_UP)
056925ab 3394 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
1da177e4
LT
3395 return err;
3396}
3397
3398int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
3399{
3400 int err;
3401
3402 if (!dev->set_mac_address)
3403 return -EOPNOTSUPP;
3404 if (sa->sa_family != dev->type)
3405 return -EINVAL;
3406 if (!netif_device_present(dev))
3407 return -ENODEV;
3408 err = dev->set_mac_address(dev, sa);
3409 if (!err)
056925ab 3410 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1da177e4
LT
3411 return err;
3412}
3413
3414/*
14e3e079 3415 * Perform the SIOCxIFxxx calls, inside read_lock(dev_base_lock)
1da177e4 3416 */
14e3e079 3417static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd)
1da177e4
LT
3418{
3419 int err;
881d966b 3420 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
1da177e4
LT
3421
3422 if (!dev)
3423 return -ENODEV;
3424
3425 switch (cmd) {
3426 case SIOCGIFFLAGS: /* Get interface flags */
3427 ifr->ifr_flags = dev_get_flags(dev);
3428 return 0;
3429
1da177e4
LT
3430 case SIOCGIFMETRIC: /* Get the metric on the interface
3431 (currently unused) */
3432 ifr->ifr_metric = 0;
3433 return 0;
3434
1da177e4
LT
3435 case SIOCGIFMTU: /* Get the MTU of a device */
3436 ifr->ifr_mtu = dev->mtu;
3437 return 0;
3438
1da177e4
LT
3439 case SIOCGIFHWADDR:
3440 if (!dev->addr_len)
3441 memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
3442 else
3443 memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
3444 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
3445 ifr->ifr_hwaddr.sa_family = dev->type;
3446 return 0;
3447
14e3e079
JG
3448 case SIOCGIFSLAVE:
3449 err = -EINVAL;
3450 break;
3451
3452 case SIOCGIFMAP:
3453 ifr->ifr_map.mem_start = dev->mem_start;
3454 ifr->ifr_map.mem_end = dev->mem_end;
3455 ifr->ifr_map.base_addr = dev->base_addr;
3456 ifr->ifr_map.irq = dev->irq;
3457 ifr->ifr_map.dma = dev->dma;
3458 ifr->ifr_map.port = dev->if_port;
3459 return 0;
3460
3461 case SIOCGIFINDEX:
3462 ifr->ifr_ifindex = dev->ifindex;
3463 return 0;
3464
3465 case SIOCGIFTXQLEN:
3466 ifr->ifr_qlen = dev->tx_queue_len;
3467 return 0;
3468
3469 default:
3470 /* dev_ioctl() should ensure this case
3471 * is never reached
3472 */
3473 WARN_ON(1);
3474 err = -EINVAL;
3475 break;
3476
3477 }
3478 return err;
3479}
3480
3481/*
3482 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
3483 */
3484static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd)
3485{
3486 int err;
3487 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
3488
3489 if (!dev)
3490 return -ENODEV;
3491
3492 switch (cmd) {
3493 case SIOCSIFFLAGS: /* Set interface flags */
3494 return dev_change_flags(dev, ifr->ifr_flags);
3495
3496 case SIOCSIFMETRIC: /* Set the metric on the interface
3497 (currently unused) */
3498 return -EOPNOTSUPP;
3499
3500 case SIOCSIFMTU: /* Set the MTU of a device */
3501 return dev_set_mtu(dev, ifr->ifr_mtu);
3502
1da177e4
LT
3503 case SIOCSIFHWADDR:
3504 return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
3505
3506 case SIOCSIFHWBROADCAST:
3507 if (ifr->ifr_hwaddr.sa_family != dev->type)
3508 return -EINVAL;
3509 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
3510 min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
056925ab 3511 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1da177e4
LT
3512 return 0;
3513
1da177e4
LT
3514 case SIOCSIFMAP:
3515 if (dev->set_config) {
3516 if (!netif_device_present(dev))
3517 return -ENODEV;
3518 return dev->set_config(dev, &ifr->ifr_map);
3519 }
3520 return -EOPNOTSUPP;
3521
3522 case SIOCADDMULTI:
61ee6bd4 3523 if ((!dev->set_multicast_list && !dev->set_rx_mode) ||
1da177e4
LT
3524 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
3525 return -EINVAL;
3526 if (!netif_device_present(dev))
3527 return -ENODEV;
3528 return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
3529 dev->addr_len, 1);
3530
3531 case SIOCDELMULTI:
61ee6bd4 3532 if ((!dev->set_multicast_list && !dev->set_rx_mode) ||
1da177e4
LT
3533 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
3534 return -EINVAL;
3535 if (!netif_device_present(dev))
3536 return -ENODEV;
3537 return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
3538 dev->addr_len, 1);
3539
1da177e4
LT
3540 case SIOCSIFTXQLEN:
3541 if (ifr->ifr_qlen < 0)
3542 return -EINVAL;
3543 dev->tx_queue_len = ifr->ifr_qlen;
3544 return 0;
3545
3546 case SIOCSIFNAME:
3547 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
3548 return dev_change_name(dev, ifr->ifr_newname);
3549
3550 /*
3551 * Unknown or private ioctl
3552 */
3553
3554 default:
3555 if ((cmd >= SIOCDEVPRIVATE &&
3556 cmd <= SIOCDEVPRIVATE + 15) ||
3557 cmd == SIOCBONDENSLAVE ||
3558 cmd == SIOCBONDRELEASE ||
3559 cmd == SIOCBONDSETHWADDR ||
3560 cmd == SIOCBONDSLAVEINFOQUERY ||
3561 cmd == SIOCBONDINFOQUERY ||
3562 cmd == SIOCBONDCHANGEACTIVE ||
3563 cmd == SIOCGMIIPHY ||
3564 cmd == SIOCGMIIREG ||
3565 cmd == SIOCSMIIREG ||
3566 cmd == SIOCBRADDIF ||
3567 cmd == SIOCBRDELIF ||
3568 cmd == SIOCWANDEV) {
3569 err = -EOPNOTSUPP;
3570 if (dev->do_ioctl) {
3571 if (netif_device_present(dev))
3572 err = dev->do_ioctl(dev, ifr,
3573 cmd);
3574 else
3575 err = -ENODEV;
3576 }
3577 } else
3578 err = -EINVAL;
3579
3580 }
3581 return err;
3582}
3583
3584/*
3585 * This function handles all "interface"-type I/O control requests. The actual
3586 * 'doing' part of this is dev_ifsioc above.
3587 */
3588
3589/**
3590 * dev_ioctl - network device ioctl
c4ea43c5 3591 * @net: the applicable net namespace
1da177e4
LT
3592 * @cmd: command to issue
3593 * @arg: pointer to a struct ifreq in user space
3594 *
3595 * Issue ioctl functions to devices. This is normally called by the
3596 * user space syscall interfaces but can sometimes be useful for
3597 * other purposes. The return value is the return from the syscall if
3598 * positive or a negative errno code on error.
3599 */
3600
881d966b 3601int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg)
1da177e4
LT
3602{
3603 struct ifreq ifr;
3604 int ret;
3605 char *colon;
3606
3607 /* One special case: SIOCGIFCONF takes ifconf argument
3608 and requires shared lock, because it sleeps writing
3609 to user space.
3610 */
3611
3612 if (cmd == SIOCGIFCONF) {
6756ae4b 3613 rtnl_lock();
881d966b 3614 ret = dev_ifconf(net, (char __user *) arg);
6756ae4b 3615 rtnl_unlock();
1da177e4
LT
3616 return ret;
3617 }
3618 if (cmd == SIOCGIFNAME)
881d966b 3619 return dev_ifname(net, (struct ifreq __user *)arg);
1da177e4
LT
3620
3621 if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
3622 return -EFAULT;
3623
3624 ifr.ifr_name[IFNAMSIZ-1] = 0;
3625
3626 colon = strchr(ifr.ifr_name, ':');
3627 if (colon)
3628 *colon = 0;
3629
3630 /*
3631 * See which interface the caller is talking about.
3632 */
3633
3634 switch (cmd) {
3635 /*
3636 * These ioctl calls:
3637 * - can be done by all.
3638 * - atomic and do not require locking.
3639 * - return a value
3640 */
3641 case SIOCGIFFLAGS:
3642 case SIOCGIFMETRIC:
3643 case SIOCGIFMTU:
3644 case SIOCGIFHWADDR:
3645 case SIOCGIFSLAVE:
3646 case SIOCGIFMAP:
3647 case SIOCGIFINDEX:
3648 case SIOCGIFTXQLEN:
881d966b 3649 dev_load(net, ifr.ifr_name);
1da177e4 3650 read_lock(&dev_base_lock);
14e3e079 3651 ret = dev_ifsioc_locked(net, &ifr, cmd);
1da177e4
LT
3652 read_unlock(&dev_base_lock);
3653 if (!ret) {
3654 if (colon)
3655 *colon = ':';
3656 if (copy_to_user(arg, &ifr,
3657 sizeof(struct ifreq)))
3658 ret = -EFAULT;
3659 }
3660 return ret;
3661
3662 case SIOCETHTOOL:
881d966b 3663 dev_load(net, ifr.ifr_name);
1da177e4 3664 rtnl_lock();
881d966b 3665 ret = dev_ethtool(net, &ifr);
1da177e4
LT
3666 rtnl_unlock();
3667 if (!ret) {
3668 if (colon)
3669 *colon = ':';
3670 if (copy_to_user(arg, &ifr,
3671 sizeof(struct ifreq)))
3672 ret = -EFAULT;
3673 }
3674 return ret;
3675
3676 /*
3677 * These ioctl calls:
3678 * - require superuser power.
3679 * - require strict serialization.
3680 * - return a value
3681 */
3682 case SIOCGMIIPHY:
3683 case SIOCGMIIREG:
3684 case SIOCSIFNAME:
3685 if (!capable(CAP_NET_ADMIN))
3686 return -EPERM;
881d966b 3687 dev_load(net, ifr.ifr_name);
1da177e4 3688 rtnl_lock();
881d966b 3689 ret = dev_ifsioc(net, &ifr, cmd);
1da177e4
LT
3690 rtnl_unlock();
3691 if (!ret) {
3692 if (colon)
3693 *colon = ':';
3694 if (copy_to_user(arg, &ifr,
3695 sizeof(struct ifreq)))
3696 ret = -EFAULT;
3697 }
3698 return ret;
3699
3700 /*
3701 * These ioctl calls:
3702 * - require superuser power.
3703 * - require strict serialization.
3704 * - do not return a value
3705 */
3706 case SIOCSIFFLAGS:
3707 case SIOCSIFMETRIC:
3708 case SIOCSIFMTU:
3709 case SIOCSIFMAP:
3710 case SIOCSIFHWADDR:
3711 case SIOCSIFSLAVE:
3712 case SIOCADDMULTI:
3713 case SIOCDELMULTI:
3714 case SIOCSIFHWBROADCAST:
3715 case SIOCSIFTXQLEN:
3716 case SIOCSMIIREG:
3717 case SIOCBONDENSLAVE:
3718 case SIOCBONDRELEASE:
3719 case SIOCBONDSETHWADDR:
1da177e4
LT
3720 case SIOCBONDCHANGEACTIVE:
3721 case SIOCBRADDIF:
3722 case SIOCBRDELIF:
3723 if (!capable(CAP_NET_ADMIN))
3724 return -EPERM;
cabcac0b
TG
3725 /* fall through */
3726 case SIOCBONDSLAVEINFOQUERY:
3727 case SIOCBONDINFOQUERY:
881d966b 3728 dev_load(net, ifr.ifr_name);
1da177e4 3729 rtnl_lock();
881d966b 3730 ret = dev_ifsioc(net, &ifr, cmd);
1da177e4
LT
3731 rtnl_unlock();
3732 return ret;
3733
3734 case SIOCGIFMEM:
3735 /* Get the per device memory space. We can add this but
3736 * currently do not support it */
3737 case SIOCSIFMEM:
3738 /* Set the per device memory buffer space.
3739 * Not applicable in our case */
3740 case SIOCSIFLINK:
3741 return -EINVAL;
3742
3743 /*
3744 * Unknown or private ioctl.
3745 */
3746 default:
3747 if (cmd == SIOCWANDEV ||
3748 (cmd >= SIOCDEVPRIVATE &&
3749 cmd <= SIOCDEVPRIVATE + 15)) {
881d966b 3750 dev_load(net, ifr.ifr_name);
1da177e4 3751 rtnl_lock();
881d966b 3752 ret = dev_ifsioc(net, &ifr, cmd);
1da177e4
LT
3753 rtnl_unlock();
3754 if (!ret && copy_to_user(arg, &ifr,
3755 sizeof(struct ifreq)))
3756 ret = -EFAULT;
3757 return ret;
3758 }
1da177e4 3759 /* Take care of Wireless Extensions */
295f4a1f 3760 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST)
881d966b 3761 return wext_handle_ioctl(net, &ifr, cmd, arg);
1da177e4
LT
3762 return -EINVAL;
3763 }
3764}
3765
3766
3767/**
3768 * dev_new_index - allocate an ifindex
c4ea43c5 3769 * @net: the applicable net namespace
1da177e4
LT
3770 *
3771 * Returns a suitable unique value for a new device interface
3772 * number. The caller must hold the rtnl semaphore or the
3773 * dev_base_lock to be sure it remains unique.
3774 */
881d966b 3775static int dev_new_index(struct net *net)
1da177e4
LT
3776{
3777 static int ifindex;
3778 for (;;) {
3779 if (++ifindex <= 0)
3780 ifindex = 1;
881d966b 3781 if (!__dev_get_by_index(net, ifindex))
1da177e4
LT
3782 return ifindex;
3783 }
3784}
3785
1da177e4
LT
3786/* Delayed registration/unregisteration */
3787static DEFINE_SPINLOCK(net_todo_list_lock);
3b5b34fd 3788static LIST_HEAD(net_todo_list);
1da177e4 3789
6f05f629 3790static void net_set_todo(struct net_device *dev)
1da177e4
LT
3791{
3792 spin_lock(&net_todo_list_lock);
3793 list_add_tail(&dev->todo_list, &net_todo_list);
3794 spin_unlock(&net_todo_list_lock);
3795}
3796
93ee31f1
DL
3797static void rollback_registered(struct net_device *dev)
3798{
3799 BUG_ON(dev_boot_phase);
3800 ASSERT_RTNL();
3801
3802 /* Some devices call without registering for initialization unwind. */
3803 if (dev->reg_state == NETREG_UNINITIALIZED) {
3804 printk(KERN_DEBUG "unregister_netdevice: device %s/%p never "
3805 "was registered\n", dev->name, dev);
3806
3807 WARN_ON(1);
3808 return;
3809 }
3810
3811 BUG_ON(dev->reg_state != NETREG_REGISTERED);
3812
3813 /* If device is running, close it first. */
3814 dev_close(dev);
3815
3816 /* And unlink it from device chain. */
3817 unlist_netdevice(dev);
3818
3819 dev->reg_state = NETREG_UNREGISTERING;
3820
3821 synchronize_net();
3822
3823 /* Shutdown queueing discipline. */
3824 dev_shutdown(dev);
3825
3826
3827 /* Notify protocols, that we are about to destroy
3828 this device. They should clean all the things.
3829 */
3830 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
3831
3832 /*
3833 * Flush the unicast and multicast chains
3834 */
3835 dev_addr_discard(dev);
3836
3837 if (dev->uninit)
3838 dev->uninit(dev);
3839
3840 /* Notifier chain MUST detach us from master device. */
3841 BUG_TRAP(!dev->master);
3842
3843 /* Remove entries from kobject tree */
3844 netdev_unregister_kobject(dev);
3845
3846 synchronize_net();
3847
3848 dev_put(dev);
3849}
3850
e8a0464c
DM
3851static void __netdev_init_queue_locks_one(struct net_device *dev,
3852 struct netdev_queue *dev_queue,
3853 void *_unused)
c773e847
DM
3854{
3855 spin_lock_init(&dev_queue->_xmit_lock);
3856 netdev_set_lockdep_class(&dev_queue->_xmit_lock, dev->type);
3857 dev_queue->xmit_lock_owner = -1;
3858}
3859
3860static void netdev_init_queue_locks(struct net_device *dev)
3861{
e8a0464c
DM
3862 netdev_for_each_tx_queue(dev, __netdev_init_queue_locks_one, NULL);
3863 __netdev_init_queue_locks_one(dev, &dev->rx_queue, NULL);
c773e847
DM
3864}
3865
1da177e4
LT
3866/**
3867 * register_netdevice - register a network device
3868 * @dev: device to register
3869 *
3870 * Take a completed network device structure and add it to the kernel
3871 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
3872 * chain. 0 is returned on success. A negative errno code is returned
3873 * on a failure to set up the device, or if the name is a duplicate.
3874 *
3875 * Callers must hold the rtnl semaphore. You may want
3876 * register_netdev() instead of this.
3877 *
3878 * BUGS:
3879 * The locking appears insufficient to guarantee two parallel registers
3880 * will not get the same name.
3881 */
3882
3883int register_netdevice(struct net_device *dev)
3884{
3885 struct hlist_head *head;
3886 struct hlist_node *p;
3887 int ret;
881d966b 3888 struct net *net;
1da177e4
LT
3889
3890 BUG_ON(dev_boot_phase);
3891 ASSERT_RTNL();
3892
b17a7c17
SH
3893 might_sleep();
3894
1da177e4
LT
3895 /* When net_device's are persistent, this will be fatal. */
3896 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
c346dca1
YH
3897 BUG_ON(!dev_net(dev));
3898 net = dev_net(dev);
1da177e4 3899
f1f28aa3 3900 spin_lock_init(&dev->addr_list_lock);
c773e847 3901 netdev_init_queue_locks(dev);
1da177e4 3902
1da177e4
LT
3903 dev->iflink = -1;
3904
3905 /* Init, if this function is available */
3906 if (dev->init) {
3907 ret = dev->init(dev);
3908 if (ret) {
3909 if (ret > 0)
3910 ret = -EIO;
90833aa4 3911 goto out;
1da177e4
LT
3912 }
3913 }
4ec93edb 3914
1da177e4
LT
3915 if (!dev_valid_name(dev->name)) {
3916 ret = -EINVAL;
7ce1b0ed 3917 goto err_uninit;
1da177e4
LT
3918 }
3919
881d966b 3920 dev->ifindex = dev_new_index(net);
1da177e4
LT
3921 if (dev->iflink == -1)
3922 dev->iflink = dev->ifindex;
3923
3924 /* Check for existence of name */
881d966b 3925 head = dev_name_hash(net, dev->name);
1da177e4
LT
3926 hlist_for_each(p, head) {
3927 struct net_device *d
3928 = hlist_entry(p, struct net_device, name_hlist);
3929 if (!strncmp(d->name, dev->name, IFNAMSIZ)) {
3930 ret = -EEXIST;
7ce1b0ed 3931 goto err_uninit;
1da177e4 3932 }
4ec93edb 3933 }
1da177e4 3934
d212f87b
SH
3935 /* Fix illegal checksum combinations */
3936 if ((dev->features & NETIF_F_HW_CSUM) &&
3937 (dev->features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
3938 printk(KERN_NOTICE "%s: mixed HW and IP checksum settings.\n",
3939 dev->name);
3940 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
3941 }
3942
3943 if ((dev->features & NETIF_F_NO_CSUM) &&
3944 (dev->features & (NETIF_F_HW_CSUM|NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
3945 printk(KERN_NOTICE "%s: mixed no checksumming and other settings.\n",
3946 dev->name);
3947 dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM|NETIF_F_HW_CSUM);
3948 }
3949
3950
1da177e4
LT
3951 /* Fix illegal SG+CSUM combinations. */
3952 if ((dev->features & NETIF_F_SG) &&
8648b305 3953 !(dev->features & NETIF_F_ALL_CSUM)) {
5a8da02b 3954 printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
1da177e4
LT
3955 dev->name);
3956 dev->features &= ~NETIF_F_SG;
3957 }
3958
3959 /* TSO requires that SG is present as well. */
3960 if ((dev->features & NETIF_F_TSO) &&
3961 !(dev->features & NETIF_F_SG)) {
5a8da02b 3962 printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no SG feature.\n",
1da177e4
LT
3963 dev->name);
3964 dev->features &= ~NETIF_F_TSO;
3965 }
e89e9cf5
AR
3966 if (dev->features & NETIF_F_UFO) {
3967 if (!(dev->features & NETIF_F_HW_CSUM)) {
3968 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
3969 "NETIF_F_HW_CSUM feature.\n",
3970 dev->name);
3971 dev->features &= ~NETIF_F_UFO;
3972 }
3973 if (!(dev->features & NETIF_F_SG)) {
3974 printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
3975 "NETIF_F_SG feature.\n",
3976 dev->name);
3977 dev->features &= ~NETIF_F_UFO;
3978 }
3979 }
1da177e4 3980
aaf8cdc3 3981 netdev_initialize_kobject(dev);
8b41d188 3982 ret = netdev_register_kobject(dev);
b17a7c17 3983 if (ret)
7ce1b0ed 3984 goto err_uninit;
b17a7c17
SH
3985 dev->reg_state = NETREG_REGISTERED;
3986
1da177e4
LT
3987 /*
3988 * Default initial state at registry is that the
3989 * device is present.
3990 */
3991
3992 set_bit(__LINK_STATE_PRESENT, &dev->state);
3993
1da177e4 3994 dev_init_scheduler(dev);
1da177e4 3995 dev_hold(dev);
ce286d32 3996 list_netdevice(dev);
1da177e4
LT
3997
3998 /* Notify protocols, that a new device appeared. */
056925ab 3999 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
fcc5a03a 4000 ret = notifier_to_errno(ret);
93ee31f1
DL
4001 if (ret) {
4002 rollback_registered(dev);
4003 dev->reg_state = NETREG_UNREGISTERED;
4004 }
1da177e4
LT
4005
4006out:
4007 return ret;
7ce1b0ed
HX
4008
4009err_uninit:
4010 if (dev->uninit)
4011 dev->uninit(dev);
4012 goto out;
1da177e4
LT
4013}
4014
4015/**
4016 * register_netdev - register a network device
4017 * @dev: device to register
4018 *
4019 * Take a completed network device structure and add it to the kernel
4020 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
4021 * chain. 0 is returned on success. A negative errno code is returned
4022 * on a failure to set up the device, or if the name is a duplicate.
4023 *
38b4da38 4024 * This is a wrapper around register_netdevice that takes the rtnl semaphore
1da177e4
LT
4025 * and expands the device name if you passed a format string to
4026 * alloc_netdev.
4027 */
4028int register_netdev(struct net_device *dev)
4029{
4030 int err;
4031
4032 rtnl_lock();
4033
4034 /*
4035 * If the name is a format string the caller wants us to do a
4036 * name allocation.
4037 */
4038 if (strchr(dev->name, '%')) {
4039 err = dev_alloc_name(dev, dev->name);
4040 if (err < 0)
4041 goto out;
4042 }
4ec93edb 4043
1da177e4
LT
4044 err = register_netdevice(dev);
4045out:
4046 rtnl_unlock();
4047 return err;
4048}
4049EXPORT_SYMBOL(register_netdev);
4050
4051/*
4052 * netdev_wait_allrefs - wait until all references are gone.
4053 *
4054 * This is called when unregistering network devices.
4055 *
4056 * Any protocol or device that holds a reference should register
4057 * for netdevice notification, and cleanup and put back the
4058 * reference if they receive an UNREGISTER event.
4059 * We can get stuck here if buggy protocols don't correctly
4ec93edb 4060 * call dev_put.
1da177e4
LT
4061 */
4062static void netdev_wait_allrefs(struct net_device *dev)
4063{
4064 unsigned long rebroadcast_time, warning_time;
4065
4066 rebroadcast_time = warning_time = jiffies;
4067 while (atomic_read(&dev->refcnt) != 0) {
4068 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
6756ae4b 4069 rtnl_lock();
1da177e4
LT
4070
4071 /* Rebroadcast unregister notification */
056925ab 4072 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
1da177e4
LT
4073
4074 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
4075 &dev->state)) {
4076 /* We must not have linkwatch events
4077 * pending on unregister. If this
4078 * happens, we simply run the queue
4079 * unscheduled, resulting in a noop
4080 * for this device.
4081 */
4082 linkwatch_run_queue();
4083 }
4084
6756ae4b 4085 __rtnl_unlock();
1da177e4
LT
4086
4087 rebroadcast_time = jiffies;
4088 }
4089
4090 msleep(250);
4091
4092 if (time_after(jiffies, warning_time + 10 * HZ)) {
4093 printk(KERN_EMERG "unregister_netdevice: "
4094 "waiting for %s to become free. Usage "
4095 "count = %d\n",
4096 dev->name, atomic_read(&dev->refcnt));
4097 warning_time = jiffies;
4098 }
4099 }
4100}
4101
4102/* The sequence is:
4103 *
4104 * rtnl_lock();
4105 * ...
4106 * register_netdevice(x1);
4107 * register_netdevice(x2);
4108 * ...
4109 * unregister_netdevice(y1);
4110 * unregister_netdevice(y2);
4111 * ...
4112 * rtnl_unlock();
4113 * free_netdev(y1);
4114 * free_netdev(y2);
4115 *
4116 * We are invoked by rtnl_unlock() after it drops the semaphore.
4117 * This allows us to deal with problems:
b17a7c17 4118 * 1) We can delete sysfs objects which invoke hotplug
1da177e4
LT
4119 * without deadlocking with linkwatch via keventd.
4120 * 2) Since we run with the RTNL semaphore not held, we can sleep
4121 * safely in order to wait for the netdev refcnt to drop to zero.
4122 */
4a3e2f71 4123static DEFINE_MUTEX(net_todo_run_mutex);
1da177e4
LT
4124void netdev_run_todo(void)
4125{
626ab0e6 4126 struct list_head list;
1da177e4
LT
4127
4128 /* Need to guard against multiple cpu's getting out of order. */
4a3e2f71 4129 mutex_lock(&net_todo_run_mutex);
1da177e4
LT
4130
4131 /* Not safe to do outside the semaphore. We must not return
4132 * until all unregister events invoked by the local processor
4133 * have been completed (either by this todo run, or one on
4134 * another cpu).
4135 */
4136 if (list_empty(&net_todo_list))
4137 goto out;
4138
4139 /* Snapshot list, allow later requests */
4140 spin_lock(&net_todo_list_lock);
626ab0e6 4141 list_replace_init(&net_todo_list, &list);
1da177e4 4142 spin_unlock(&net_todo_list_lock);
626ab0e6 4143
1da177e4
LT
4144 while (!list_empty(&list)) {
4145 struct net_device *dev
4146 = list_entry(list.next, struct net_device, todo_list);
4147 list_del(&dev->todo_list);
4148
b17a7c17
SH
4149 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
4150 printk(KERN_ERR "network todo '%s' but state %d\n",
4151 dev->name, dev->reg_state);
4152 dump_stack();
4153 continue;
4154 }
1da177e4 4155
b17a7c17 4156 dev->reg_state = NETREG_UNREGISTERED;
1da177e4 4157
b17a7c17 4158 netdev_wait_allrefs(dev);
1da177e4 4159
b17a7c17
SH
4160 /* paranoia */
4161 BUG_ON(atomic_read(&dev->refcnt));
4162 BUG_TRAP(!dev->ip_ptr);
4163 BUG_TRAP(!dev->ip6_ptr);
4164 BUG_TRAP(!dev->dn_ptr);
1da177e4 4165
b17a7c17
SH
4166 if (dev->destructor)
4167 dev->destructor(dev);
9093bbb2
SH
4168
4169 /* Free network device */
4170 kobject_put(&dev->dev.kobj);
1da177e4
LT
4171 }
4172
4173out:
4a3e2f71 4174 mutex_unlock(&net_todo_run_mutex);
1da177e4
LT
4175}
4176
5a1b5898 4177static struct net_device_stats *internal_stats(struct net_device *dev)
c45d286e 4178{
5a1b5898 4179 return &dev->stats;
c45d286e
RR
4180}
4181
dc2b4847 4182static void netdev_init_one_queue(struct net_device *dev,
e8a0464c
DM
4183 struct netdev_queue *queue,
4184 void *_unused)
dc2b4847
DM
4185{
4186 spin_lock_init(&queue->lock);
4187 queue->dev = dev;
4188}
4189
bb949fbd
DM
4190static void netdev_init_queues(struct net_device *dev)
4191{
e8a0464c
DM
4192 netdev_init_one_queue(dev, &dev->rx_queue, NULL);
4193 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
bb949fbd
DM
4194}
4195
1da177e4 4196/**
f25f4e44 4197 * alloc_netdev_mq - allocate network device
1da177e4
LT
4198 * @sizeof_priv: size of private data to allocate space for
4199 * @name: device name format string
4200 * @setup: callback to initialize device
f25f4e44 4201 * @queue_count: the number of subqueues to allocate
1da177e4
LT
4202 *
4203 * Allocates a struct net_device with private data area for driver use
f25f4e44
PWJ
4204 * and performs basic initialization. Also allocates subquue structs
4205 * for each queue on the device at the end of the netdevice.
1da177e4 4206 */
f25f4e44
PWJ
4207struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
4208 void (*setup)(struct net_device *), unsigned int queue_count)
1da177e4 4209{
e8a0464c 4210 struct netdev_queue *tx;
1da177e4
LT
4211 struct net_device *dev;
4212 int alloc_size;
e8a0464c 4213 void *p;
1da177e4 4214
b6fe17d6
SH
4215 BUG_ON(strlen(name) >= sizeof(dev->name));
4216
fd2ea0a7 4217 alloc_size = sizeof(struct net_device);
d1643d24
AD
4218 if (sizeof_priv) {
4219 /* ensure 32-byte alignment of private area */
4220 alloc_size = (alloc_size + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST;
4221 alloc_size += sizeof_priv;
4222 }
4223 /* ensure 32-byte alignment of whole construct */
4224 alloc_size += NETDEV_ALIGN_CONST;
1da177e4 4225
31380de9 4226 p = kzalloc(alloc_size, GFP_KERNEL);
1da177e4 4227 if (!p) {
b6fe17d6 4228 printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n");
1da177e4
LT
4229 return NULL;
4230 }
1da177e4 4231
e8a0464c
DM
4232 tx = kzalloc(sizeof(struct netdev_queue) * queue_count, GFP_KERNEL);
4233 if (!tx) {
4234 printk(KERN_ERR "alloc_netdev: Unable to allocate "
4235 "tx qdiscs.\n");
4236 kfree(p);
4237 return NULL;
4238 }
4239
1da177e4
LT
4240 dev = (struct net_device *)
4241 (((long)p + NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
4242 dev->padded = (char *)dev - (char *)p;
c346dca1 4243 dev_net_set(dev, &init_net);
1da177e4 4244
e8a0464c
DM
4245 dev->_tx = tx;
4246 dev->num_tx_queues = queue_count;
fd2ea0a7 4247 dev->real_num_tx_queues = queue_count;
e8a0464c 4248
f25f4e44
PWJ
4249 if (sizeof_priv) {
4250 dev->priv = ((char *)dev +
fd2ea0a7 4251 ((sizeof(struct net_device) + NETDEV_ALIGN_CONST)
f25f4e44
PWJ
4252 & ~NETDEV_ALIGN_CONST));
4253 }
4254
82cc1a7a 4255 dev->gso_max_size = GSO_MAX_SIZE;
1da177e4 4256
bb949fbd
DM
4257 netdev_init_queues(dev);
4258
5a1b5898 4259 dev->get_stats = internal_stats;
bea3348e 4260 netpoll_netdev_init(dev);
1da177e4
LT
4261 setup(dev);
4262 strcpy(dev->name, name);
4263 return dev;
4264}
f25f4e44 4265EXPORT_SYMBOL(alloc_netdev_mq);
1da177e4
LT
4266
4267/**
4268 * free_netdev - free network device
4269 * @dev: device
4270 *
4ec93edb
YH
4271 * This function does the last stage of destroying an allocated device
4272 * interface. The reference to the device object is released.
1da177e4
LT
4273 * If this is the last reference then it will be freed.
4274 */
4275void free_netdev(struct net_device *dev)
4276{
f3005d7f
DL
4277 release_net(dev_net(dev));
4278
e8a0464c
DM
4279 kfree(dev->_tx);
4280
3041a069 4281 /* Compatibility with error handling in drivers */
1da177e4
LT
4282 if (dev->reg_state == NETREG_UNINITIALIZED) {
4283 kfree((char *)dev - dev->padded);
4284 return;
4285 }
4286
4287 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
4288 dev->reg_state = NETREG_RELEASED;
4289
43cb76d9
GKH
4290 /* will free via device release */
4291 put_device(&dev->dev);
1da177e4 4292}
4ec93edb 4293
1da177e4 4294/* Synchronize with packet receive processing. */
4ec93edb 4295void synchronize_net(void)
1da177e4
LT
4296{
4297 might_sleep();
fbd568a3 4298 synchronize_rcu();
1da177e4
LT
4299}
4300
4301/**
4302 * unregister_netdevice - remove device from the kernel
4303 * @dev: device
4304 *
4305 * This function shuts down a device interface and removes it
d59b54b1 4306 * from the kernel tables.
1da177e4
LT
4307 *
4308 * Callers must hold the rtnl semaphore. You may want
4309 * unregister_netdev() instead of this.
4310 */
4311
22f8cde5 4312void unregister_netdevice(struct net_device *dev)
1da177e4 4313{
a6620712
HX
4314 ASSERT_RTNL();
4315
93ee31f1 4316 rollback_registered(dev);
1da177e4
LT
4317 /* Finish processing unregister after unlock */
4318 net_set_todo(dev);
1da177e4
LT
4319}
4320
4321/**
4322 * unregister_netdev - remove device from the kernel
4323 * @dev: device
4324 *
4325 * This function shuts down a device interface and removes it
d59b54b1 4326 * from the kernel tables.
1da177e4
LT
4327 *
4328 * This is just a wrapper for unregister_netdevice that takes
4329 * the rtnl semaphore. In general you want to use this and not
4330 * unregister_netdevice.
4331 */
4332void unregister_netdev(struct net_device *dev)
4333{
4334 rtnl_lock();
4335 unregister_netdevice(dev);
4336 rtnl_unlock();
4337}
4338
4339EXPORT_SYMBOL(unregister_netdev);
4340
ce286d32
EB
4341/**
4342 * dev_change_net_namespace - move device to different nethost namespace
4343 * @dev: device
4344 * @net: network namespace
4345 * @pat: If not NULL name pattern to try if the current device name
4346 * is already taken in the destination network namespace.
4347 *
4348 * This function shuts down a device interface and moves it
4349 * to a new network namespace. On success 0 is returned, on
4350 * a failure a netagive errno code is returned.
4351 *
4352 * Callers must hold the rtnl semaphore.
4353 */
4354
4355int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
4356{
4357 char buf[IFNAMSIZ];
4358 const char *destname;
4359 int err;
4360
4361 ASSERT_RTNL();
4362
4363 /* Don't allow namespace local devices to be moved. */
4364 err = -EINVAL;
4365 if (dev->features & NETIF_F_NETNS_LOCAL)
4366 goto out;
4367
4368 /* Ensure the device has been registrered */
4369 err = -EINVAL;
4370 if (dev->reg_state != NETREG_REGISTERED)
4371 goto out;
4372
4373 /* Get out if there is nothing todo */
4374 err = 0;
878628fb 4375 if (net_eq(dev_net(dev), net))
ce286d32
EB
4376 goto out;
4377
4378 /* Pick the destination device name, and ensure
4379 * we can use it in the destination network namespace.
4380 */
4381 err = -EEXIST;
4382 destname = dev->name;
4383 if (__dev_get_by_name(net, destname)) {
4384 /* We get here if we can't use the current device name */
4385 if (!pat)
4386 goto out;
4387 if (!dev_valid_name(pat))
4388 goto out;
4389 if (strchr(pat, '%')) {
4390 if (__dev_alloc_name(net, pat, buf) < 0)
4391 goto out;
4392 destname = buf;
4393 } else
4394 destname = pat;
4395 if (__dev_get_by_name(net, destname))
4396 goto out;
4397 }
4398
4399 /*
4400 * And now a mini version of register_netdevice unregister_netdevice.
4401 */
4402
4403 /* If device is running close it first. */
9b772652 4404 dev_close(dev);
ce286d32
EB
4405
4406 /* And unlink it from device chain */
4407 err = -ENODEV;
4408 unlist_netdevice(dev);
4409
4410 synchronize_net();
4411
4412 /* Shutdown queueing discipline. */
4413 dev_shutdown(dev);
4414
4415 /* Notify protocols, that we are about to destroy
4416 this device. They should clean all the things.
4417 */
4418 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
4419
4420 /*
4421 * Flush the unicast and multicast chains
4422 */
4423 dev_addr_discard(dev);
4424
4425 /* Actually switch the network namespace */
c346dca1 4426 dev_net_set(dev, net);
ce286d32
EB
4427
4428 /* Assign the new device name */
4429 if (destname != dev->name)
4430 strcpy(dev->name, destname);
4431
4432 /* If there is an ifindex conflict assign a new one */
4433 if (__dev_get_by_index(net, dev->ifindex)) {
4434 int iflink = (dev->iflink == dev->ifindex);
4435 dev->ifindex = dev_new_index(net);
4436 if (iflink)
4437 dev->iflink = dev->ifindex;
4438 }
4439
8b41d188 4440 /* Fixup kobjects */
aaf8cdc3
DL
4441 netdev_unregister_kobject(dev);
4442 err = netdev_register_kobject(dev);
8b41d188 4443 WARN_ON(err);
ce286d32
EB
4444
4445 /* Add the device back in the hashes */
4446 list_netdevice(dev);
4447
4448 /* Notify protocols, that a new device appeared. */
4449 call_netdevice_notifiers(NETDEV_REGISTER, dev);
4450
4451 synchronize_net();
4452 err = 0;
4453out:
4454 return err;
4455}
4456
1da177e4
LT
4457static int dev_cpu_callback(struct notifier_block *nfb,
4458 unsigned long action,
4459 void *ocpu)
4460{
4461 struct sk_buff **list_skb;
ee609cb3 4462 struct netdev_queue **list_net;
1da177e4
LT
4463 struct sk_buff *skb;
4464 unsigned int cpu, oldcpu = (unsigned long)ocpu;
4465 struct softnet_data *sd, *oldsd;
4466
8bb78442 4467 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
1da177e4
LT
4468 return NOTIFY_OK;
4469
4470 local_irq_disable();
4471 cpu = smp_processor_id();
4472 sd = &per_cpu(softnet_data, cpu);
4473 oldsd = &per_cpu(softnet_data, oldcpu);
4474
4475 /* Find end of our completion_queue. */
4476 list_skb = &sd->completion_queue;
4477 while (*list_skb)
4478 list_skb = &(*list_skb)->next;
4479 /* Append completion queue from offline CPU. */
4480 *list_skb = oldsd->completion_queue;
4481 oldsd->completion_queue = NULL;
4482
4483 /* Find end of our output_queue. */
4484 list_net = &sd->output_queue;
4485 while (*list_net)
4486 list_net = &(*list_net)->next_sched;
4487 /* Append output queue from offline CPU. */
4488 *list_net = oldsd->output_queue;
4489 oldsd->output_queue = NULL;
4490
4491 raise_softirq_irqoff(NET_TX_SOFTIRQ);
4492 local_irq_enable();
4493
4494 /* Process offline CPU's input_pkt_queue */
4495 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue)))
4496 netif_rx(skb);
4497
4498 return NOTIFY_OK;
4499}
1da177e4 4500
db217334
CL
4501#ifdef CONFIG_NET_DMA
4502/**
0ed72ec4
RD
4503 * net_dma_rebalance - try to maintain one DMA channel per CPU
4504 * @net_dma: DMA client and associated data (lock, channels, channel_mask)
4505 *
4506 * This is called when the number of channels allocated to the net_dma client
4507 * changes. The net_dma client tries to have one DMA channel per CPU.
db217334 4508 */
d379b01e
DW
4509
4510static void net_dma_rebalance(struct net_dma *net_dma)
db217334 4511{
d379b01e 4512 unsigned int cpu, i, n, chan_idx;
db217334
CL
4513 struct dma_chan *chan;
4514
d379b01e 4515 if (cpus_empty(net_dma->channel_mask)) {
db217334 4516 for_each_online_cpu(cpu)
29bbd72d 4517 rcu_assign_pointer(per_cpu(softnet_data, cpu).net_dma, NULL);
db217334
CL
4518 return;
4519 }
4520
4521 i = 0;
4522 cpu = first_cpu(cpu_online_map);
4523
d379b01e
DW
4524 for_each_cpu_mask(chan_idx, net_dma->channel_mask) {
4525 chan = net_dma->channels[chan_idx];
4526
4527 n = ((num_online_cpus() / cpus_weight(net_dma->channel_mask))
4528 + (i < (num_online_cpus() %
4529 cpus_weight(net_dma->channel_mask)) ? 1 : 0));
db217334
CL
4530
4531 while(n) {
29bbd72d 4532 per_cpu(softnet_data, cpu).net_dma = chan;
db217334
CL
4533 cpu = next_cpu(cpu, cpu_online_map);
4534 n--;
4535 }
4536 i++;
4537 }
db217334
CL
4538}
4539
4540/**
4541 * netdev_dma_event - event callback for the net_dma_client
4542 * @client: should always be net_dma_client
f4b8ea78 4543 * @chan: DMA channel for the event
0ed72ec4 4544 * @state: DMA state to be handled
db217334 4545 */
d379b01e
DW
4546static enum dma_state_client
4547netdev_dma_event(struct dma_client *client, struct dma_chan *chan,
4548 enum dma_state state)
4549{
4550 int i, found = 0, pos = -1;
4551 struct net_dma *net_dma =
4552 container_of(client, struct net_dma, client);
4553 enum dma_state_client ack = DMA_DUP; /* default: take no action */
4554
4555 spin_lock(&net_dma->lock);
4556 switch (state) {
4557 case DMA_RESOURCE_AVAILABLE:
0c0b0aca 4558 for (i = 0; i < nr_cpu_ids; i++)
d379b01e
DW
4559 if (net_dma->channels[i] == chan) {
4560 found = 1;
4561 break;
4562 } else if (net_dma->channels[i] == NULL && pos < 0)
4563 pos = i;
4564
4565 if (!found && pos >= 0) {
4566 ack = DMA_ACK;
4567 net_dma->channels[pos] = chan;
4568 cpu_set(pos, net_dma->channel_mask);
4569 net_dma_rebalance(net_dma);
4570 }
db217334
CL
4571 break;
4572 case DMA_RESOURCE_REMOVED:
0c0b0aca 4573 for (i = 0; i < nr_cpu_ids; i++)
d379b01e
DW
4574 if (net_dma->channels[i] == chan) {
4575 found = 1;
4576 pos = i;
4577 break;
4578 }
4579
4580 if (found) {
4581 ack = DMA_ACK;
4582 cpu_clear(pos, net_dma->channel_mask);
4583 net_dma->channels[i] = NULL;
4584 net_dma_rebalance(net_dma);
4585 }
db217334
CL
4586 break;
4587 default:
4588 break;
4589 }
d379b01e
DW
4590 spin_unlock(&net_dma->lock);
4591
4592 return ack;
db217334
CL
4593}
4594
4595/**
4596 * netdev_dma_regiser - register the networking subsystem as a DMA client
4597 */
4598static int __init netdev_dma_register(void)
4599{
0c0b0aca
MT
4600 net_dma.channels = kzalloc(nr_cpu_ids * sizeof(struct net_dma),
4601 GFP_KERNEL);
4602 if (unlikely(!net_dma.channels)) {
4603 printk(KERN_NOTICE
4604 "netdev_dma: no memory for net_dma.channels\n");
4605 return -ENOMEM;
4606 }
d379b01e
DW
4607 spin_lock_init(&net_dma.lock);
4608 dma_cap_set(DMA_MEMCPY, net_dma.client.cap_mask);
4609 dma_async_client_register(&net_dma.client);
4610 dma_async_client_chan_request(&net_dma.client);
db217334
CL
4611 return 0;
4612}
4613
4614#else
4615static int __init netdev_dma_register(void) { return -ENODEV; }
4616#endif /* CONFIG_NET_DMA */
1da177e4 4617
7f353bf2
HX
4618/**
4619 * netdev_compute_feature - compute conjunction of two feature sets
4620 * @all: first feature set
4621 * @one: second feature set
4622 *
4623 * Computes a new feature set after adding a device with feature set
4624 * @one to the master device with current feature set @all. Returns
4625 * the new feature set.
4626 */
4627int netdev_compute_features(unsigned long all, unsigned long one)
4628{
4629 /* if device needs checksumming, downgrade to hw checksumming */
4630 if (all & NETIF_F_NO_CSUM && !(one & NETIF_F_NO_CSUM))
4631 all ^= NETIF_F_NO_CSUM | NETIF_F_HW_CSUM;
4632
4633 /* if device can't do all checksum, downgrade to ipv4/ipv6 */
4634 if (all & NETIF_F_HW_CSUM && !(one & NETIF_F_HW_CSUM))
4635 all ^= NETIF_F_HW_CSUM
4636 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
4637
4638 if (one & NETIF_F_GSO)
4639 one |= NETIF_F_GSO_SOFTWARE;
4640 one |= NETIF_F_GSO;
4641
4642 /* If even one device supports robust GSO, enable it for all. */
4643 if (one & NETIF_F_GSO_ROBUST)
4644 all |= NETIF_F_GSO_ROBUST;
4645
4646 all &= one | NETIF_F_LLTX;
4647
4648 if (!(all & NETIF_F_ALL_CSUM))
4649 all &= ~NETIF_F_SG;
4650 if (!(all & NETIF_F_SG))
4651 all &= ~NETIF_F_GSO_MASK;
4652
4653 return all;
4654}
4655EXPORT_SYMBOL(netdev_compute_features);
4656
30d97d35
PE
4657static struct hlist_head *netdev_create_hash(void)
4658{
4659 int i;
4660 struct hlist_head *hash;
4661
4662 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
4663 if (hash != NULL)
4664 for (i = 0; i < NETDEV_HASHENTRIES; i++)
4665 INIT_HLIST_HEAD(&hash[i]);
4666
4667 return hash;
4668}
4669
881d966b 4670/* Initialize per network namespace state */
4665079c 4671static int __net_init netdev_init(struct net *net)
881d966b 4672{
881d966b 4673 INIT_LIST_HEAD(&net->dev_base_head);
881d966b 4674
30d97d35
PE
4675 net->dev_name_head = netdev_create_hash();
4676 if (net->dev_name_head == NULL)
4677 goto err_name;
881d966b 4678
30d97d35
PE
4679 net->dev_index_head = netdev_create_hash();
4680 if (net->dev_index_head == NULL)
4681 goto err_idx;
881d966b
EB
4682
4683 return 0;
30d97d35
PE
4684
4685err_idx:
4686 kfree(net->dev_name_head);
4687err_name:
4688 return -ENOMEM;
881d966b
EB
4689}
4690
4665079c 4691static void __net_exit netdev_exit(struct net *net)
881d966b
EB
4692{
4693 kfree(net->dev_name_head);
4694 kfree(net->dev_index_head);
4695}
4696
022cbae6 4697static struct pernet_operations __net_initdata netdev_net_ops = {
881d966b
EB
4698 .init = netdev_init,
4699 .exit = netdev_exit,
4700};
4701
4665079c 4702static void __net_exit default_device_exit(struct net *net)
ce286d32
EB
4703{
4704 struct net_device *dev, *next;
4705 /*
4706 * Push all migratable of the network devices back to the
4707 * initial network namespace
4708 */
4709 rtnl_lock();
4710 for_each_netdev_safe(net, dev, next) {
4711 int err;
aca51397 4712 char fb_name[IFNAMSIZ];
ce286d32
EB
4713
4714 /* Ignore unmoveable devices (i.e. loopback) */
4715 if (dev->features & NETIF_F_NETNS_LOCAL)
4716 continue;
4717
4718 /* Push remaing network devices to init_net */
aca51397
PE
4719 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
4720 err = dev_change_net_namespace(dev, &init_net, fb_name);
ce286d32 4721 if (err) {
aca51397 4722 printk(KERN_EMERG "%s: failed to move %s to init_net: %d\n",
ce286d32 4723 __func__, dev->name, err);
aca51397 4724 BUG();
ce286d32
EB
4725 }
4726 }
4727 rtnl_unlock();
4728}
4729
022cbae6 4730static struct pernet_operations __net_initdata default_device_ops = {
ce286d32
EB
4731 .exit = default_device_exit,
4732};
4733
1da177e4
LT
4734/*
4735 * Initialize the DEV module. At boot time this walks the device list and
4736 * unhooks any devices that fail to initialise (normally hardware not
4737 * present) and leaves us with a valid list of present and active devices.
4738 *
4739 */
4740
4741/*
4742 * This is called single threaded during boot, so no need
4743 * to take the rtnl semaphore.
4744 */
4745static int __init net_dev_init(void)
4746{
4747 int i, rc = -ENOMEM;
4748
4749 BUG_ON(!dev_boot_phase);
4750
1da177e4
LT
4751 if (dev_proc_init())
4752 goto out;
4753
8b41d188 4754 if (netdev_kobject_init())
1da177e4
LT
4755 goto out;
4756
4757 INIT_LIST_HEAD(&ptype_all);
82d8a867 4758 for (i = 0; i < PTYPE_HASH_SIZE; i++)
1da177e4
LT
4759 INIT_LIST_HEAD(&ptype_base[i]);
4760
881d966b
EB
4761 if (register_pernet_subsys(&netdev_net_ops))
4762 goto out;
1da177e4 4763
ce286d32
EB
4764 if (register_pernet_device(&default_device_ops))
4765 goto out;
4766
1da177e4
LT
4767 /*
4768 * Initialise the packet receive queues.
4769 */
4770
6f912042 4771 for_each_possible_cpu(i) {
1da177e4
LT
4772 struct softnet_data *queue;
4773
4774 queue = &per_cpu(softnet_data, i);
4775 skb_queue_head_init(&queue->input_pkt_queue);
1da177e4
LT
4776 queue->completion_queue = NULL;
4777 INIT_LIST_HEAD(&queue->poll_list);
bea3348e
SH
4778
4779 queue->backlog.poll = process_backlog;
4780 queue->backlog.weight = weight_p;
1da177e4
LT
4781 }
4782
db217334
CL
4783 netdev_dma_register();
4784
1da177e4
LT
4785 dev_boot_phase = 0;
4786
4787 open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
4788 open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
4789
4790 hotcpu_notifier(dev_cpu_callback, 0);
4791 dst_init();
4792 dev_mcast_init();
4793 rc = 0;
4794out:
4795 return rc;
4796}
4797
4798subsys_initcall(net_dev_init);
4799
4800EXPORT_SYMBOL(__dev_get_by_index);
4801EXPORT_SYMBOL(__dev_get_by_name);
4802EXPORT_SYMBOL(__dev_remove_pack);
c2373ee9 4803EXPORT_SYMBOL(dev_valid_name);
1da177e4
LT
4804EXPORT_SYMBOL(dev_add_pack);
4805EXPORT_SYMBOL(dev_alloc_name);
4806EXPORT_SYMBOL(dev_close);
4807EXPORT_SYMBOL(dev_get_by_flags);
4808EXPORT_SYMBOL(dev_get_by_index);
4809EXPORT_SYMBOL(dev_get_by_name);
1da177e4
LT
4810EXPORT_SYMBOL(dev_open);
4811EXPORT_SYMBOL(dev_queue_xmit);
4812EXPORT_SYMBOL(dev_remove_pack);
4813EXPORT_SYMBOL(dev_set_allmulti);
4814EXPORT_SYMBOL(dev_set_promiscuity);
4815EXPORT_SYMBOL(dev_change_flags);
4816EXPORT_SYMBOL(dev_set_mtu);
4817EXPORT_SYMBOL(dev_set_mac_address);
4818EXPORT_SYMBOL(free_netdev);
4819EXPORT_SYMBOL(netdev_boot_setup_check);
4820EXPORT_SYMBOL(netdev_set_master);
4821EXPORT_SYMBOL(netdev_state_change);
4822EXPORT_SYMBOL(netif_receive_skb);
4823EXPORT_SYMBOL(netif_rx);
4824EXPORT_SYMBOL(register_gifconf);
4825EXPORT_SYMBOL(register_netdevice);
4826EXPORT_SYMBOL(register_netdevice_notifier);
4827EXPORT_SYMBOL(skb_checksum_help);
4828EXPORT_SYMBOL(synchronize_net);
4829EXPORT_SYMBOL(unregister_netdevice);
4830EXPORT_SYMBOL(unregister_netdevice_notifier);
4831EXPORT_SYMBOL(net_enable_timestamp);
4832EXPORT_SYMBOL(net_disable_timestamp);
4833EXPORT_SYMBOL(dev_get_flags);
4834
4835#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
4836EXPORT_SYMBOL(br_handle_frame_hook);
4837EXPORT_SYMBOL(br_fdb_get_hook);
4838EXPORT_SYMBOL(br_fdb_put_hook);
4839#endif
4840
4841#ifdef CONFIG_KMOD
4842EXPORT_SYMBOL(dev_load);
4843#endif
4844
4845EXPORT_PER_CPU_SYMBOL(softnet_data);