dev.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:70k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  NET3 Protocol independent device support routines.
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  *
  9.  * Derived from the non IP parts of dev.c 1.0.19
  10.  *  Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  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 <dhinds@allegro.stanford.edu>
  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 to 2
  24.  *                                      if register_netdev gets called before
  25.  *                                      net_dev_init & also removed a few lines
  26.  *                                      of code in the process.
  27.  * Alan Cox : device private ioctl copies fields back.
  28.  * Alan Cox : Transmit queue code does relevant stunts to
  29.  * 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 drivers
  34.  * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
  35.  * Alan Cox : 100 backlog just doesn't cut it when
  36.  * you start doing multicast video 8)
  37.  * Alan Cox : Rewrote net_bh and list manager.
  38.  * Alan Cox :  Fix ETH_P_ALL echoback lengths.
  39.  * Alan Cox : Took out transmit every packet pass
  40.  * Saved a few bytes in the ioctl handler
  41.  * Alan Cox : Network driver sets packet type before calling netif_rx. Saves
  42.  * a function call a packet.
  43.  * Alan Cox : Hashed net_bh()
  44.  * Richard Kooijman: Timestamp fixes.
  45.  * Alan Cox : Wrong field in SIOCGIFDSTADDR
  46.  * Alan Cox : Device lock protection.
  47.  * Alan Cox :  Fixed nasty side effect of device close changes.
  48.  * Rudi Cilibrasi : Pass the right thing to set_mac_address()
  49.  * Dave Miller : 32bit quantity for the device lock to make it work out
  50.  * on a Sparc.
  51.  * Bjorn Ekwall : Added KERNELD hack.
  52.  * Alan Cox : Cleaned up the backlog initialise.
  53.  * Craig Metz : SIOCGIFCONF fix if space for under
  54.  * 1 device.
  55.  *     Thomas Bogendoerfer : Return ENODEV for dev_open, if there
  56.  * is no device open function.
  57.  * Andi Kleen : Fix error reporting for SIOCGIFCONF
  58.  *     Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
  59.  * Cyrus Durgin : Cleaned for KMOD
  60.  * Adam Sulmicki   : Bug Fix : Network Device Unload
  61.  * A network device unload needs to purge
  62.  * the backlog queue.
  63.  * Paul Rusty Russell : SIOCSIFNAME
  64.  *              Pekka Riikonen  : Netdev boot-time settings code
  65.  *              Andrew Morton   :       Make unregister_netdevice wait indefinitely on dev->refcnt
  66.  *  J Hadi Salim : - Backlog queue sampling
  67.  *         - netif_rx() feedback
  68.  */
  69. #include <asm/uaccess.h>
  70. #include <asm/system.h>
  71. #include <asm/bitops.h>
  72. #include <linux/config.h>
  73. #include <linux/types.h>
  74. #include <linux/kernel.h>
  75. #include <linux/sched.h>
  76. #include <linux/string.h>
  77. #include <linux/mm.h>
  78. #include <linux/socket.h>
  79. #include <linux/sockios.h>
  80. #include <linux/errno.h>
  81. #include <linux/interrupt.h>
  82. #include <linux/if_ether.h>
  83. #include <linux/netdevice.h>
  84. #include <linux/etherdevice.h>
  85. #include <linux/notifier.h>
  86. #include <linux/skbuff.h>
  87. #include <linux/brlock.h>
  88. #include <net/sock.h>
  89. #include <linux/rtnetlink.h>
  90. #include <linux/proc_fs.h>
  91. #include <linux/stat.h>
  92. #include <linux/if_bridge.h>
  93. #include <linux/divert.h>
  94. #include <net/dst.h>
  95. #include <net/pkt_sched.h>
  96. #include <net/profile.h>
  97. #include <net/checksum.h>
  98. #include <linux/highmem.h>
  99. #include <linux/init.h>
  100. #include <linux/kmod.h>
  101. #include <linux/module.h>
  102. #if defined(CONFIG_NET_RADIO) || defined(CONFIG_NET_PCMCIA_RADIO)
  103. #include <linux/wireless.h> /* Note : will define WIRELESS_EXT */
  104. #endif /* CONFIG_NET_RADIO || CONFIG_NET_PCMCIA_RADIO */
  105. #ifdef CONFIG_PLIP
  106. extern int plip_init(void);
  107. #endif
  108. /* This define, if set, will randomly drop a packet when congestion
  109.  * is more than moderate.  It helps fairness in the multi-interface
  110.  * case when one of them is a hog, but it kills performance for the
  111.  * single interface case so it is off now by default.
  112.  */
  113. #undef RAND_LIE
  114. /* Setting this will sample the queue lengths and thus congestion
  115.  * via a timer instead of as each packet is received.
  116.  */
  117. #undef OFFLINE_SAMPLE
  118. NET_PROFILE_DEFINE(dev_queue_xmit)
  119. NET_PROFILE_DEFINE(softnet_process)
  120. const char *if_port_text[] = {
  121.   "unknown",
  122.   "BNC",
  123.   "10baseT",
  124.   "AUI",
  125.   "100baseT",
  126.   "100baseTX",
  127.   "100baseFX"
  128. };
  129. /*
  130.  * The list of packet types we will receive (as opposed to discard)
  131.  * and the routines to invoke.
  132.  *
  133.  * Why 16. Because with 16 the only overlap we get on a hash of the
  134.  * low nibble of the protocol value is RARP/SNAP/X.25.
  135.  *
  136.  *      NOTE:  That is no longer true with the addition of VLAN tags.  Not
  137.  *             sure which should go first, but I bet it won't make much
  138.  *             difference if we are running VLANs.  The good news is that
  139.  *             this protocol won't be in the list unless compiled in, so
  140.  *             the average user (w/out VLANs) will not be adversly affected.
  141.  *             --BLG
  142.  *
  143.  * 0800 IP
  144.  * 8100    802.1Q VLAN
  145.  * 0001 802.3
  146.  * 0002 AX.25
  147.  * 0004 802.2
  148.  * 8035 RARP
  149.  * 0005 SNAP
  150.  * 0805 X.25
  151.  * 0806 ARP
  152.  * 8137 IPX
  153.  * 0009 Localtalk
  154.  * 86DD IPv6
  155.  */
  156. static struct packet_type *ptype_base[16]; /* 16 way hashed list */
  157. static struct packet_type *ptype_all = NULL; /* Taps */
  158. #ifdef OFFLINE_SAMPLE
  159. static void sample_queue(unsigned long dummy);
  160. static struct timer_list samp_timer = { function: sample_queue };
  161. #endif
  162. #ifdef CONFIG_HOTPLUG
  163. static int net_run_sbin_hotplug(struct net_device *dev, char *action);
  164. #else
  165. #define net_run_sbin_hotplug(dev, action) ({ 0; })
  166. #endif
  167. /*
  168.  * Our notifier list
  169.  */
  170.  
  171. static struct notifier_block *netdev_chain=NULL;
  172. /*
  173.  * Device drivers call our routines to queue packets here. We empty the
  174.  * queue in the local softnet handler.
  175.  */
  176. struct softnet_data softnet_data[NR_CPUS] __cacheline_aligned;
  177. #ifdef CONFIG_NET_FASTROUTE
  178. int netdev_fastroute;
  179. int netdev_fastroute_obstacles;
  180. #endif
  181. /******************************************************************************************
  182. Protocol management and registration routines
  183. *******************************************************************************************/
  184. /*
  185.  * For efficiency
  186.  */
  187. int netdev_nit=0;
  188. /*
  189.  * Add a protocol ID to the list. Now that the input handler is
  190.  * smarter we can dispense with all the messy stuff that used to be
  191.  * here.
  192.  *
  193.  * BEWARE!!! Protocol handlers, mangling input packets,
  194.  * MUST BE last in hash buckets and checking protocol handlers
  195.  * MUST start from promiscous ptype_all chain in net_bh.
  196.  * It is true now, do not change it.
  197.  * Explantion follows: if protocol handler, mangling packet, will
  198.  * be the first on list, it is not able to sense, that packet
  199.  * is cloned and should be copied-on-write, so that it will
  200.  * change it and subsequent readers will get broken packet.
  201.  * --ANK (980803)
  202.  */
  203. /**
  204.  * dev_add_pack - add packet handler
  205.  * @pt: packet type declaration
  206.  * 
  207.  * Add a protocol handler to the networking stack. The passed &packet_type
  208.  * is linked into kernel lists and may not be freed until it has been
  209.  * removed from the kernel lists.
  210.  */
  211.  
  212. void dev_add_pack(struct packet_type *pt)
  213. {
  214. int hash;
  215. br_write_lock_bh(BR_NETPROTO_LOCK);
  216. #ifdef CONFIG_NET_FASTROUTE
  217. /* Hack to detect packet socket */
  218. if ((pt->data) && ((int)(pt->data)!=1)) {
  219. netdev_fastroute_obstacles++;
  220. dev_clear_fastroute(pt->dev);
  221. }
  222. #endif
  223. if (pt->type == htons(ETH_P_ALL)) {
  224. netdev_nit++;
  225. pt->next=ptype_all;
  226. ptype_all=pt;
  227. } else {
  228. hash=ntohs(pt->type)&15;
  229. pt->next = ptype_base[hash];
  230. ptype_base[hash] = pt;
  231. }
  232. br_write_unlock_bh(BR_NETPROTO_LOCK);
  233. }
  234. /**
  235.  * dev_remove_pack  - remove packet handler
  236.  * @pt: packet type declaration
  237.  * 
  238.  * Remove a protocol handler that was previously added to the kernel
  239.  * protocol handlers by dev_add_pack(). The passed &packet_type is removed
  240.  * from the kernel lists and can be freed or reused once this function
  241.  * returns.
  242.  */
  243.  
  244. void dev_remove_pack(struct packet_type *pt)
  245. {
  246. struct packet_type **pt1;
  247. br_write_lock_bh(BR_NETPROTO_LOCK);
  248. if (pt->type == htons(ETH_P_ALL)) {
  249. netdev_nit--;
  250. pt1=&ptype_all;
  251. } else {
  252. pt1=&ptype_base[ntohs(pt->type)&15];
  253. }
  254. for (; (*pt1) != NULL; pt1 = &((*pt1)->next)) {
  255. if (pt == (*pt1)) {
  256. *pt1 = pt->next;
  257. #ifdef CONFIG_NET_FASTROUTE
  258. if (pt->data)
  259. netdev_fastroute_obstacles--;
  260. #endif
  261. br_write_unlock_bh(BR_NETPROTO_LOCK);
  262. return;
  263. }
  264. }
  265. br_write_unlock_bh(BR_NETPROTO_LOCK);
  266. printk(KERN_WARNING "dev_remove_pack: %p not found.n", pt);
  267. }
  268. /******************************************************************************
  269.       Device Boot-time Settings Routines
  270. *******************************************************************************/
  271. /* Boot time configuration table */
  272. static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
  273. /**
  274.  * netdev_boot_setup_add - add new setup entry
  275.  * @name: name of the device
  276.  * @map: configured settings for the device
  277.  *
  278.  * Adds new setup entry to the dev_boot_setup list.  The function
  279.  * returns 0 on error and 1 on success.  This is a generic routine to
  280.  * all netdevices.
  281.  */
  282. int netdev_boot_setup_add(char *name, struct ifmap *map)
  283. {
  284. struct netdev_boot_setup *s;
  285. int i;
  286. s = dev_boot_setup;
  287. for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
  288. if (s[i].name[0] == '' || s[i].name[0] == ' ') {
  289. memset(s[i].name, 0, sizeof(s[i].name));
  290. strcpy(s[i].name, name);
  291. memcpy(&s[i].map, map, sizeof(s[i].map));
  292. break;
  293. }
  294. }
  295. if (i >= NETDEV_BOOT_SETUP_MAX)
  296. return 0;
  297. return 1;
  298. }
  299. /**
  300.  * netdev_boot_setup_check - check boot time settings
  301.  * @dev: the netdevice
  302.  *
  303.  *  Check boot time settings for the device.
  304.  * The found settings are set for the device to be used
  305.  * later in the device probing.
  306.  * Returns 0 if no settings found, 1 if they are.
  307.  */
  308. int netdev_boot_setup_check(struct net_device *dev)
  309. {
  310. struct netdev_boot_setup *s;
  311. int i;
  312. s = dev_boot_setup;
  313. for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
  314. if (s[i].name[0] != '' && s[i].name[0] != ' ' &&
  315.     !strncmp(dev->name, s[i].name, strlen(s[i].name))) {
  316. dev->irq  = s[i].map.irq;
  317. dev->base_addr  = s[i].map.base_addr;
  318. dev->mem_start  = s[i].map.mem_start;
  319. dev->mem_end  = s[i].map.mem_end;
  320. return 1;
  321. }
  322. }
  323. return 0;
  324. }
  325. /*
  326.  * Saves at boot time configured settings for any netdevice.
  327.  */
  328. int __init netdev_boot_setup(char *str)
  329. {
  330. int ints[5];
  331. struct ifmap map;
  332. str = get_options(str, ARRAY_SIZE(ints), ints);
  333. if (!str || !*str)
  334. return 0;
  335. /* Save settings */
  336. memset(&map, 0, sizeof(map));
  337. if (ints[0] > 0)
  338. map.irq = ints[1];
  339. if (ints[0] > 1)
  340. map.base_addr = ints[2];
  341. if (ints[0] > 2)
  342. map.mem_start = ints[3];
  343. if (ints[0] > 3)
  344. map.mem_end = ints[4];
  345. /* Add new entry to the list */
  346. return netdev_boot_setup_add(str, &map);
  347. }
  348. __setup("netdev=", netdev_boot_setup);
  349. /*****************************************************************************************
  350.     Device Interface Subroutines
  351. ******************************************************************************************/
  352. /**
  353.  * __dev_get_by_name - find a device by its name 
  354.  * @name: name to find
  355.  *
  356.  * Find an interface by name. Must be called under RTNL semaphore
  357.  * or @dev_base_lock. If the name is found a pointer to the device
  358.  * is returned. If the name is not found then %NULL is returned. The
  359.  * reference counters are not incremented so the caller must be
  360.  * careful with locks.
  361.  */
  362.  
  363. struct net_device *__dev_get_by_name(const char *name)
  364. {
  365. struct net_device *dev;
  366. for (dev = dev_base; dev != NULL; dev = dev->next) {
  367. if (strncmp(dev->name, name, IFNAMSIZ) == 0)
  368. return dev;
  369. }
  370. return NULL;
  371. }
  372. /**
  373.  * dev_get_by_name - find a device by its name
  374.  * @name: name to find
  375.  *
  376.  * Find an interface by name. This can be called from any 
  377.  * context and does its own locking. The returned handle has
  378.  * the usage count incremented and the caller must use dev_put() to
  379.  * release it when it is no longer needed. %NULL is returned if no
  380.  * matching device is found.
  381.  */
  382. struct net_device *dev_get_by_name(const char *name)
  383. {
  384. struct net_device *dev;
  385. read_lock(&dev_base_lock);
  386. dev = __dev_get_by_name(name);
  387. if (dev)
  388. dev_hold(dev);
  389. read_unlock(&dev_base_lock);
  390. return dev;
  391. }
  392. /* 
  393.    Return value is changed to int to prevent illegal usage in future.
  394.    It is still legal to use to check for device existance.
  395.    User should understand, that the result returned by this function
  396.    is meaningless, if it was not issued under rtnl semaphore.
  397.  */
  398. /**
  399.  * dev_get - test if a device exists
  400.  * @name: name to test for
  401.  *
  402.  * Test if a name exists. Returns true if the name is found. In order
  403.  * to be sure the name is not allocated or removed during the test the
  404.  * caller must hold the rtnl semaphore.
  405.  *
  406.  * This function primarily exists for back compatibility with older
  407.  * drivers. 
  408.  */
  409.  
  410. int dev_get(const char *name)
  411. {
  412. struct net_device *dev;
  413. read_lock(&dev_base_lock);
  414. dev = __dev_get_by_name(name);
  415. read_unlock(&dev_base_lock);
  416. return dev != NULL;
  417. }
  418. /**
  419.  * __dev_get_by_index - find a device by its ifindex
  420.  * @ifindex: index of device
  421.  *
  422.  * Search for an interface by index. Returns %NULL if the device
  423.  * is not found or a pointer to the device. The device has not
  424.  * had its reference counter increased so the caller must be careful
  425.  * about locking. The caller must hold either the RTNL semaphore
  426.  * or @dev_base_lock.
  427.  */
  428. struct net_device * __dev_get_by_index(int ifindex)
  429. {
  430. struct net_device *dev;
  431. for (dev = dev_base; dev != NULL; dev = dev->next) {
  432. if (dev->ifindex == ifindex)
  433. return dev;
  434. }
  435. return NULL;
  436. }
  437. /**
  438.  * dev_get_by_index - find a device by its ifindex
  439.  * @ifindex: index of device
  440.  *
  441.  * Search for an interface by index. Returns NULL if the device
  442.  * is not found or a pointer to the device. The device returned has 
  443.  * had a reference added and the pointer is safe until the user calls
  444.  * dev_put to indicate they have finished with it.
  445.  */
  446. struct net_device * dev_get_by_index(int ifindex)
  447. {
  448. struct net_device *dev;
  449. read_lock(&dev_base_lock);
  450. dev = __dev_get_by_index(ifindex);
  451. if (dev)
  452. dev_hold(dev);
  453. read_unlock(&dev_base_lock);
  454. return dev;
  455. }
  456. /**
  457.  * dev_getbyhwaddr - find a device by its hardware address
  458.  * @type: media type of device
  459.  * @ha: hardware address
  460.  *
  461.  * Search for an interface by MAC address. Returns NULL if the device
  462.  * is not found or a pointer to the device. The caller must hold the
  463.  * rtnl semaphore. The returned device has not had its ref count increased
  464.  * and the caller must therefore be careful about locking
  465.  *
  466.  * BUGS:
  467.  * If the API was consistent this would be __dev_get_by_hwaddr
  468.  */
  469. struct net_device *dev_getbyhwaddr(unsigned short type, char *ha)
  470. {
  471. struct net_device *dev;
  472. ASSERT_RTNL();
  473. for (dev = dev_base; dev != NULL; dev = dev->next) {
  474. if (dev->type == type &&
  475.     memcmp(dev->dev_addr, ha, dev->addr_len) == 0)
  476. return dev;
  477. }
  478. return NULL;
  479. }
  480. /**
  481.  * dev_alloc_name - allocate a name for a device
  482.  * @dev: device 
  483.  * @name: name format string
  484.  *
  485.  * Passed a format string - eg "lt%d" it will try and find a suitable
  486.  * id. Not efficient for many devices, not called a lot. The caller
  487.  * must hold the dev_base or rtnl lock while allocating the name and
  488.  * adding the device in order to avoid duplicates. Returns the number
  489.  * of the unit assigned or a negative errno code.
  490.  */
  491. int dev_alloc_name(struct net_device *dev, const char *name)
  492. {
  493. int i;
  494. char buf[32];
  495. char *p;
  496. /*
  497.  * Verify the string as this thing may have come from
  498.  * the user.  There must be either one "%d" and no other "%"
  499.  * characters, or no "%" characters at all.
  500.  */
  501. p = strchr(name, '%');
  502. if (p && (p[1] != 'd' || strchr(p+2, '%')))
  503. return -EINVAL;
  504. /*
  505.  * If you need over 100 please also fix the algorithm...
  506.  */
  507. for (i = 0; i < 100; i++) {
  508. snprintf(buf,sizeof(buf),name,i);
  509. if (__dev_get_by_name(buf) == NULL) {
  510. strcpy(dev->name, buf);
  511. return i;
  512. }
  513. }
  514. return -ENFILE; /* Over 100 of the things .. bail out! */
  515. }
  516. /**
  517.  * dev_alloc - allocate a network device and name
  518.  * @name: name format string
  519.  * @err: error return pointer
  520.  *
  521.  * Passed a format string, eg. "lt%d", it will allocate a network device
  522.  * and space for the name. %NULL is returned if no memory is available.
  523.  * If the allocation succeeds then the name is assigned and the 
  524.  * device pointer returned. %NULL is returned if the name allocation
  525.  * failed. The cause of an error is returned as a negative errno code
  526.  * in the variable @err points to.
  527.  *
  528.  * The caller must hold the @dev_base or RTNL locks when doing this in
  529.  * order to avoid duplicate name allocations.
  530.  */
  531. struct net_device *dev_alloc(const char *name, int *err)
  532. {
  533. struct net_device *dev=kmalloc(sizeof(struct net_device), GFP_KERNEL);
  534. if (dev == NULL) {
  535. *err = -ENOBUFS;
  536. return NULL;
  537. }
  538. memset(dev, 0, sizeof(struct net_device));
  539. *err = dev_alloc_name(dev, name);
  540. if (*err < 0) {
  541. kfree(dev);
  542. return NULL;
  543. }
  544. return dev;
  545. }
  546. /**
  547.  * netdev_state_change - device changes state
  548.  * @dev: device to cause notification
  549.  *
  550.  * Called to indicate a device has changed state. This function calls
  551.  * the notifier chains for netdev_chain and sends a NEWLINK message
  552.  * to the routing socket.
  553.  */
  554.  
  555. void netdev_state_change(struct net_device *dev)
  556. {
  557. if (dev->flags&IFF_UP) {
  558. notifier_call_chain(&netdev_chain, NETDEV_CHANGE, dev);
  559. rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
  560. }
  561. }
  562. #ifdef CONFIG_KMOD
  563. /**
  564.  * dev_load  - load a network module
  565.  * @name: name of interface
  566.  *
  567.  * If a network interface is not present and the process has suitable
  568.  * privileges this function loads the module. If module loading is not
  569.  * available in this kernel then it becomes a nop.
  570.  */
  571. void dev_load(const char *name)
  572. {
  573. if (!dev_get(name) && capable(CAP_SYS_MODULE))
  574. request_module(name);
  575. }
  576. #else
  577. extern inline void dev_load(const char *unused){;}
  578. #endif
  579. static int default_rebuild_header(struct sk_buff *skb)
  580. {
  581. printk(KERN_DEBUG "%s: default_rebuild_header called -- BUG!n", skb->dev ? skb->dev->name : "NULL!!!");
  582. kfree_skb(skb);
  583. return 1;
  584. }
  585. /**
  586.  * dev_open - prepare an interface for use. 
  587.  * @dev: device to open
  588.  *
  589.  * Takes a device from down to up state. The device's private open
  590.  * function is invoked and then the multicast lists are loaded. Finally
  591.  * the device is moved into the up state and a %NETDEV_UP message is
  592.  * sent to the netdev notifier chain.
  593.  *
  594.  * Calling this function on an active interface is a nop. On a failure
  595.  * a negative errno code is returned.
  596.  */
  597.  
  598. int dev_open(struct net_device *dev)
  599. {
  600. int ret = 0;
  601. /*
  602.  * Is it already up?
  603.  */
  604. if (dev->flags&IFF_UP)
  605. return 0;
  606. /*
  607.  * Is it even present?
  608.  */
  609. if (!netif_device_present(dev))
  610. return -ENODEV;
  611. /*
  612.  * Call device private open method
  613.  */
  614. if (try_inc_mod_count(dev->owner)) {
  615. if (dev->open) {
  616. ret = dev->open(dev);
  617. if (ret != 0 && dev->owner)
  618. __MOD_DEC_USE_COUNT(dev->owner);
  619. }
  620. } else {
  621. ret = -ENODEV;
  622. }
  623. /*
  624.  * If it went open OK then:
  625.  */
  626.  
  627. if (ret == 0) 
  628. {
  629. /*
  630.  * Set the flags.
  631.  */
  632. dev->flags |= IFF_UP;
  633. set_bit(__LINK_STATE_START, &dev->state);
  634. /*
  635.  * Initialize multicasting status 
  636.  */
  637. dev_mc_upload(dev);
  638. /*
  639.  * Wakeup transmit queue engine
  640.  */
  641. dev_activate(dev);
  642. /*
  643.  * ... and announce new interface.
  644.  */
  645. notifier_call_chain(&netdev_chain, NETDEV_UP, dev);
  646. }
  647. return(ret);
  648. }
  649. #ifdef CONFIG_NET_FASTROUTE
  650. static void dev_do_clear_fastroute(struct net_device *dev)
  651. {
  652. if (dev->accept_fastpath) {
  653. int i;
  654. for (i=0; i<=NETDEV_FASTROUTE_HMASK; i++) {
  655. struct dst_entry *dst;
  656. write_lock_irq(&dev->fastpath_lock);
  657. dst = dev->fastpath[i];
  658. dev->fastpath[i] = NULL;
  659. write_unlock_irq(&dev->fastpath_lock);
  660. dst_release(dst);
  661. }
  662. }
  663. }
  664. void dev_clear_fastroute(struct net_device *dev)
  665. {
  666. if (dev) {
  667. dev_do_clear_fastroute(dev);
  668. } else {
  669. read_lock(&dev_base_lock);
  670. for (dev = dev_base; dev; dev = dev->next)
  671. dev_do_clear_fastroute(dev);
  672. read_unlock(&dev_base_lock);
  673. }
  674. }
  675. #endif
  676. /**
  677.  * dev_close - shutdown an interface.
  678.  * @dev: device to shutdown
  679.  *
  680.  * This function moves an active device into down state. A 
  681.  * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
  682.  * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
  683.  * chain.
  684.  */
  685.  
  686. int dev_close(struct net_device *dev)
  687. {
  688. if (!(dev->flags&IFF_UP))
  689. return 0;
  690. /*
  691.  * Tell people we are going down, so that they can
  692.  * prepare to death, when device is still operating.
  693.  */
  694. notifier_call_chain(&netdev_chain, NETDEV_GOING_DOWN, dev);
  695. dev_deactivate(dev);
  696. clear_bit(__LINK_STATE_START, &dev->state);
  697. /*
  698.  * Call the device specific close. This cannot fail.
  699.  * Only if device is UP
  700.  *
  701.  * We allow it to be called even after a DETACH hot-plug
  702.  * event.
  703.  */
  704.  
  705. if (dev->stop)
  706. dev->stop(dev);
  707. /*
  708.  * Device is now down.
  709.  */
  710. dev->flags &= ~IFF_UP;
  711. #ifdef CONFIG_NET_FASTROUTE
  712. dev_clear_fastroute(dev);
  713. #endif
  714. /*
  715.  * Tell people we are down
  716.  */
  717. notifier_call_chain(&netdev_chain, NETDEV_DOWN, dev);
  718. /*
  719.  * Drop the module refcount
  720.  */
  721. if (dev->owner)
  722. __MOD_DEC_USE_COUNT(dev->owner);
  723. return(0);
  724. }
  725. /*
  726.  * Device change register/unregister. These are not inline or static
  727.  * as we export them to the world.
  728.  */
  729.  
  730. /**
  731.  * register_netdevice_notifier - register a network notifier block
  732.  * @nb: notifier
  733.  *
  734.  * Register a notifier to be called when network device events occur.
  735.  * The notifier passed is linked into the kernel structures and must
  736.  * not be reused until it has been unregistered. A negative errno code
  737.  * is returned on a failure.
  738.  */
  739. int register_netdevice_notifier(struct notifier_block *nb)
  740. {
  741. return notifier_chain_register(&netdev_chain, nb);
  742. }
  743. /**
  744.  * unregister_netdevice_notifier - unregister a network notifier block
  745.  * @nb: notifier
  746.  *
  747.  * Unregister a notifier previously registered by
  748.  * register_netdevice_notifier(). The notifier is unlinked into the
  749.  * kernel structures and may then be reused. A negative errno code
  750.  * is returned on a failure.
  751.  */
  752. int unregister_netdevice_notifier(struct notifier_block *nb)
  753. {
  754. return notifier_chain_unregister(&netdev_chain,nb);
  755. }
  756. /*
  757.  * Support routine. Sends outgoing frames to any network
  758.  * taps currently in use.
  759.  */
  760. void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
  761. {
  762. struct packet_type *ptype;
  763. do_gettimeofday(&skb->stamp);
  764. br_read_lock(BR_NETPROTO_LOCK);
  765. for (ptype = ptype_all; ptype!=NULL; ptype = ptype->next) 
  766. {
  767. /* Never send packets back to the socket
  768.  * they originated from - MvS (miquels@drinkel.ow.org)
  769.  */
  770. if ((ptype->dev == dev || !ptype->dev) &&
  771. ((struct sock *)ptype->data != skb->sk))
  772. {
  773. struct sk_buff *skb2;
  774. if ((skb2 = skb_clone(skb, GFP_ATOMIC)) == NULL)
  775. break;
  776. /* skb->nh should be correctly
  777.    set by sender, so that the second statement is
  778.    just protection against buggy protocols.
  779.  */
  780. skb2->mac.raw = skb2->data;
  781. if (skb2->nh.raw < skb2->data || skb2->nh.raw > skb2->tail) {
  782. if (net_ratelimit())
  783. printk(KERN_DEBUG "protocol %04x is buggy, dev %sn", skb2->protocol, dev->name);
  784. skb2->nh.raw = skb2->data;
  785. }
  786. skb2->h.raw = skb2->nh.raw;
  787. skb2->pkt_type = PACKET_OUTGOING;
  788. ptype->func(skb2, skb->dev, ptype);
  789. }
  790. }
  791. br_read_unlock(BR_NETPROTO_LOCK);
  792. }
  793. /* Calculate csum in the case, when packet is misrouted.
  794.  * If it failed by some reason, ignore and send skb with wrong
  795.  * checksum.
  796.  */
  797. struct sk_buff * skb_checksum_help(struct sk_buff *skb)
  798. {
  799. int offset;
  800. unsigned int csum;
  801. offset = skb->h.raw - skb->data;
  802. if (offset > (int)skb->len)
  803. BUG();
  804. csum = skb_checksum(skb, offset, skb->len-offset, 0);
  805. offset = skb->tail - skb->h.raw;
  806. if (offset <= 0)
  807. BUG();
  808. if (skb->csum+2 > offset)
  809. BUG();
  810. *(u16*)(skb->h.raw + skb->csum) = csum_fold(csum);
  811. skb->ip_summed = CHECKSUM_NONE;
  812. return skb;
  813. }
  814. #ifdef CONFIG_HIGHMEM
  815. /* Actually, we should eliminate this check as soon as we know, that:
  816.  * 1. IOMMU is present and allows to map all the memory.
  817.  * 2. No high memory really exists on this machine.
  818.  */
  819. static inline int
  820. illegal_highdma(struct net_device *dev, struct sk_buff *skb)
  821. {
  822. int i;
  823. if (dev->features&NETIF_F_HIGHDMA)
  824. return 0;
  825. for (i=0; i<skb_shinfo(skb)->nr_frags; i++)
  826. if (skb_shinfo(skb)->frags[i].page >= highmem_start_page)
  827. return 1;
  828. return 0;
  829. }
  830. #else
  831. #define illegal_highdma(dev, skb) (0)
  832. #endif
  833. /**
  834.  * dev_queue_xmit - transmit a buffer
  835.  * @skb: buffer to transmit
  836.  *
  837.  * Queue a buffer for transmission to a network device. The caller must
  838.  * have set the device and priority and built the buffer before calling this 
  839.  * function. The function can be called from an interrupt.
  840.  *
  841.  * A negative errno code is returned on a failure. A success does not
  842.  * guarantee the frame will be transmitted as it may be dropped due
  843.  * to congestion or traffic shaping.
  844.  */
  845. int dev_queue_xmit(struct sk_buff *skb)
  846. {
  847. struct net_device *dev = skb->dev;
  848. struct Qdisc  *q;
  849. if (skb_shinfo(skb)->frag_list &&
  850.     !(dev->features&NETIF_F_FRAGLIST) &&
  851.     skb_linearize(skb, GFP_ATOMIC) != 0) {
  852. kfree_skb(skb);
  853. return -ENOMEM;
  854. }
  855. /* Fragmented skb is linearized if device does not support SG,
  856.  * or if at least one of fragments is in highmem and device
  857.  * does not support DMA from it.
  858.  */
  859. if (skb_shinfo(skb)->nr_frags &&
  860.     (!(dev->features&NETIF_F_SG) || illegal_highdma(dev, skb)) &&
  861.     skb_linearize(skb, GFP_ATOMIC) != 0) {
  862. kfree_skb(skb);
  863. return -ENOMEM;
  864. }
  865. /* If packet is not checksummed and device does not support
  866.  * checksumming for this protocol, complete checksumming here.
  867.  */
  868. if (skb->ip_summed == CHECKSUM_HW &&
  869.     (!(dev->features&(NETIF_F_HW_CSUM|NETIF_F_NO_CSUM)) &&
  870.      (!(dev->features&NETIF_F_IP_CSUM) ||
  871.       skb->protocol != htons(ETH_P_IP)))) {
  872. if ((skb = skb_checksum_help(skb)) == NULL)
  873. return -ENOMEM;
  874. }
  875. /* Grab device queue */
  876. spin_lock_bh(&dev->queue_lock);
  877. q = dev->qdisc;
  878. if (q->enqueue) {
  879. int ret = q->enqueue(skb, q);
  880. qdisc_run(dev);
  881. spin_unlock_bh(&dev->queue_lock);
  882. return ret == NET_XMIT_BYPASS ? NET_XMIT_SUCCESS : ret;
  883. }
  884. /* The device has no queue. Common case for software devices:
  885.    loopback, all the sorts of tunnels...
  886.    Really, it is unlikely that xmit_lock protection is necessary here.
  887.    (f.e. loopback and IP tunnels are clean ignoring statistics counters.)
  888.    However, it is possible, that they rely on protection
  889.    made by us here.
  890.    Check this and shot the lock. It is not prone from deadlocks.
  891.    Either shot noqueue qdisc, it is even simpler 8)
  892.  */
  893. if (dev->flags&IFF_UP) {
  894. int cpu = smp_processor_id();
  895. if (dev->xmit_lock_owner != cpu) {
  896. spin_unlock(&dev->queue_lock);
  897. spin_lock(&dev->xmit_lock);
  898. dev->xmit_lock_owner = cpu;
  899. if (!netif_queue_stopped(dev)) {
  900. if (netdev_nit)
  901. dev_queue_xmit_nit(skb,dev);
  902. if (dev->hard_start_xmit(skb, dev) == 0) {
  903. dev->xmit_lock_owner = -1;
  904. spin_unlock_bh(&dev->xmit_lock);
  905. return 0;
  906. }
  907. }
  908. dev->xmit_lock_owner = -1;
  909. spin_unlock_bh(&dev->xmit_lock);
  910. if (net_ratelimit())
  911. printk(KERN_DEBUG "Virtual device %s asks to queue packet!n", dev->name);
  912. kfree_skb(skb);
  913. return -ENETDOWN;
  914. } else {
  915. /* Recursion is detected! It is possible, unfortunately */
  916. if (net_ratelimit())
  917. printk(KERN_DEBUG "Dead loop on virtual device %s, fix it urgently!n", dev->name);
  918. }
  919. }
  920. spin_unlock_bh(&dev->queue_lock);
  921. kfree_skb(skb);
  922. return -ENETDOWN;
  923. }
  924. /*=======================================================================
  925. Receiver routines
  926.   =======================================================================*/
  927. int netdev_max_backlog = 300;
  928. /* These numbers are selected based on intuition and some
  929.  * experimentatiom, if you have more scientific way of doing this
  930.  * please go ahead and fix things.
  931.  */
  932. int no_cong_thresh = 10;
  933. int no_cong = 20;
  934. int lo_cong = 100;
  935. int mod_cong = 290;
  936. struct netif_rx_stats netdev_rx_stat[NR_CPUS];
  937. #ifdef CONFIG_NET_HW_FLOWCONTROL
  938. atomic_t netdev_dropping = ATOMIC_INIT(0);
  939. static unsigned long netdev_fc_mask = 1;
  940. unsigned long netdev_fc_xoff = 0;
  941. spinlock_t netdev_fc_lock = SPIN_LOCK_UNLOCKED;
  942. static struct
  943. {
  944. void (*stimul)(struct net_device *);
  945. struct net_device *dev;
  946. } netdev_fc_slots[BITS_PER_LONG];
  947. int netdev_register_fc(struct net_device *dev, void (*stimul)(struct net_device *dev))
  948. {
  949. int bit = 0;
  950. unsigned long flags;
  951. spin_lock_irqsave(&netdev_fc_lock, flags);
  952. if (netdev_fc_mask != ~0UL) {
  953. bit = ffz(netdev_fc_mask);
  954. netdev_fc_slots[bit].stimul = stimul;
  955. netdev_fc_slots[bit].dev = dev;
  956. set_bit(bit, &netdev_fc_mask);
  957. clear_bit(bit, &netdev_fc_xoff);
  958. }
  959. spin_unlock_irqrestore(&netdev_fc_lock, flags);
  960. return bit;
  961. }
  962. void netdev_unregister_fc(int bit)
  963. {
  964. unsigned long flags;
  965. spin_lock_irqsave(&netdev_fc_lock, flags);
  966. if (bit > 0) {
  967. netdev_fc_slots[bit].stimul = NULL;
  968. netdev_fc_slots[bit].dev = NULL;
  969. clear_bit(bit, &netdev_fc_mask);
  970. clear_bit(bit, &netdev_fc_xoff);
  971. }
  972. spin_unlock_irqrestore(&netdev_fc_lock, flags);
  973. }
  974. static void netdev_wakeup(void)
  975. {
  976. unsigned long xoff;
  977. spin_lock(&netdev_fc_lock);
  978. xoff = netdev_fc_xoff;
  979. netdev_fc_xoff = 0;
  980. while (xoff) {
  981. int i = ffz(~xoff);
  982. xoff &= ~(1<<i);
  983. netdev_fc_slots[i].stimul(netdev_fc_slots[i].dev);
  984. }
  985. spin_unlock(&netdev_fc_lock);
  986. }
  987. #endif
  988. static void get_sample_stats(int cpu)
  989. {
  990. #ifdef RAND_LIE
  991. unsigned long rd;
  992. int rq;
  993. #endif
  994. int blog = softnet_data[cpu].input_pkt_queue.qlen;
  995. int avg_blog = softnet_data[cpu].avg_blog;
  996. avg_blog = (avg_blog >> 1)+ (blog >> 1);
  997. if (avg_blog > mod_cong) {
  998. /* Above moderate congestion levels. */
  999. softnet_data[cpu].cng_level = NET_RX_CN_HIGH;
  1000. #ifdef RAND_LIE
  1001. rd = net_random();
  1002. rq = rd % netdev_max_backlog;
  1003. if (rq < avg_blog) /* unlucky bastard */
  1004. softnet_data[cpu].cng_level = NET_RX_DROP;
  1005. #endif
  1006. } else if (avg_blog > lo_cong) {
  1007. softnet_data[cpu].cng_level = NET_RX_CN_MOD;
  1008. #ifdef RAND_LIE
  1009. rd = net_random();
  1010. rq = rd % netdev_max_backlog;
  1011. if (rq < avg_blog) /* unlucky bastard */
  1012. softnet_data[cpu].cng_level = NET_RX_CN_HIGH;
  1013. #endif
  1014. } else if (avg_blog > no_cong) 
  1015. softnet_data[cpu].cng_level = NET_RX_CN_LOW;
  1016. else  /* no congestion */
  1017. softnet_data[cpu].cng_level = NET_RX_SUCCESS;
  1018. softnet_data[cpu].avg_blog = avg_blog;
  1019. }
  1020. #ifdef OFFLINE_SAMPLE
  1021. static void sample_queue(unsigned long dummy)
  1022. {
  1023. /* 10 ms 0r 1ms -- i dont care -- JHS */
  1024. int next_tick = 1;
  1025. int cpu = smp_processor_id();
  1026. get_sample_stats(cpu);
  1027. next_tick += jiffies;
  1028. mod_timer(&samp_timer, next_tick);
  1029. }
  1030. #endif
  1031. /**
  1032.  * netif_rx - post buffer to the network code
  1033.  * @skb: buffer to post
  1034.  *
  1035.  * This function receives a packet from a device driver and queues it for
  1036.  * the upper (protocol) levels to process.  It always succeeds. The buffer
  1037.  * may be dropped during processing for congestion control or by the 
  1038.  * protocol layers.
  1039.  *      
  1040.  * return values:
  1041.  * NET_RX_SUCCESS (no congestion)           
  1042.  * NET_RX_CN_LOW     (low congestion) 
  1043.  * NET_RX_CN_MOD     (moderate congestion)
  1044.  * NET_RX_CN_HIGH    (high congestion) 
  1045.  * NET_RX_DROP    (packet was dropped)
  1046.  *      
  1047.  *      
  1048.  */
  1049. int netif_rx(struct sk_buff *skb)
  1050. {
  1051. int this_cpu = smp_processor_id();
  1052. struct softnet_data *queue;
  1053. unsigned long flags;
  1054. if (skb->stamp.tv_sec == 0)
  1055. do_gettimeofday(&skb->stamp);
  1056. /* The code is rearranged so that the path is the most
  1057.    short when CPU is congested, but is still operating.
  1058.  */
  1059. queue = &softnet_data[this_cpu];
  1060. local_irq_save(flags);
  1061. netdev_rx_stat[this_cpu].total++;
  1062. if (queue->input_pkt_queue.qlen <= netdev_max_backlog) {
  1063. if (queue->input_pkt_queue.qlen) {
  1064. if (queue->throttle)
  1065. goto drop;
  1066. enqueue:
  1067. dev_hold(skb->dev);
  1068. __skb_queue_tail(&queue->input_pkt_queue,skb);
  1069. /* Runs from irqs or BH's, no need to wake BH */
  1070. cpu_raise_softirq(this_cpu, NET_RX_SOFTIRQ);
  1071. local_irq_restore(flags);
  1072. #ifndef OFFLINE_SAMPLE
  1073. get_sample_stats(this_cpu);
  1074. #endif
  1075. return softnet_data[this_cpu].cng_level;
  1076. }
  1077. if (queue->throttle) {
  1078. queue->throttle = 0;
  1079. #ifdef CONFIG_NET_HW_FLOWCONTROL
  1080. if (atomic_dec_and_test(&netdev_dropping))
  1081. netdev_wakeup();
  1082. #endif
  1083. }
  1084. goto enqueue;
  1085. }
  1086. if (queue->throttle == 0) {
  1087. queue->throttle = 1;
  1088. netdev_rx_stat[this_cpu].throttled++;
  1089. #ifdef CONFIG_NET_HW_FLOWCONTROL
  1090. atomic_inc(&netdev_dropping);
  1091. #endif
  1092. }
  1093. drop:
  1094. netdev_rx_stat[this_cpu].dropped++;
  1095. local_irq_restore(flags);
  1096. kfree_skb(skb);
  1097. return NET_RX_DROP;
  1098. }
  1099. /* Deliver skb to an old protocol, which is not threaded well
  1100.    or which do not understand shared skbs.
  1101.  */
  1102. static int deliver_to_old_ones(struct packet_type *pt, struct sk_buff *skb, int last)
  1103. {
  1104. static spinlock_t net_bh_lock = SPIN_LOCK_UNLOCKED;
  1105. int ret = NET_RX_DROP;
  1106. if (!last) {
  1107. skb = skb_clone(skb, GFP_ATOMIC);
  1108. if (skb == NULL)
  1109. return ret;
  1110. }
  1111. if (skb_is_nonlinear(skb) && skb_linearize(skb, GFP_ATOMIC) != 0) {
  1112. kfree_skb(skb);
  1113. return ret;
  1114. }
  1115. /* The assumption (correct one) is that old protocols
  1116.    did not depened on BHs different of NET_BH and TIMER_BH.
  1117.  */
  1118. /* Emulate NET_BH with special spinlock */
  1119. spin_lock(&net_bh_lock);
  1120. /* Disable timers and wait for all timers completion */
  1121. tasklet_disable(bh_task_vec+TIMER_BH);
  1122. ret = pt->func(skb, skb->dev, pt);
  1123. tasklet_hi_enable(bh_task_vec+TIMER_BH);
  1124. spin_unlock(&net_bh_lock);
  1125. return ret;
  1126. }
  1127. /* Reparent skb to master device. This function is called
  1128.  * only from net_rx_action under BR_NETPROTO_LOCK. It is misuse
  1129.  * of BR_NETPROTO_LOCK, but it is OK for now.
  1130.  */
  1131. static __inline__ void skb_bond(struct sk_buff *skb)
  1132. {
  1133. struct net_device *dev = skb->dev;
  1134. if (dev->master) {
  1135. dev_hold(dev->master);
  1136. skb->dev = dev->master;
  1137. dev_put(dev);
  1138. }
  1139. }
  1140. static void net_tx_action(struct softirq_action *h)
  1141. {
  1142. int cpu = smp_processor_id();
  1143. if (softnet_data[cpu].completion_queue) {
  1144. struct sk_buff *clist;
  1145. local_irq_disable();
  1146. clist = softnet_data[cpu].completion_queue;
  1147. softnet_data[cpu].completion_queue = NULL;
  1148. local_irq_enable();
  1149. while (clist != NULL) {
  1150. struct sk_buff *skb = clist;
  1151. clist = clist->next;
  1152. BUG_TRAP(atomic_read(&skb->users) == 0);
  1153. __kfree_skb(skb);
  1154. }
  1155. }
  1156. if (softnet_data[cpu].output_queue) {
  1157. struct net_device *head;
  1158. local_irq_disable();
  1159. head = softnet_data[cpu].output_queue;
  1160. softnet_data[cpu].output_queue = NULL;
  1161. local_irq_enable();
  1162. while (head != NULL) {
  1163. struct net_device *dev = head;
  1164. head = head->next_sched;
  1165. smp_mb__before_clear_bit();
  1166. clear_bit(__LINK_STATE_SCHED, &dev->state);
  1167. if (spin_trylock(&dev->queue_lock)) {
  1168. qdisc_run(dev);
  1169. spin_unlock(&dev->queue_lock);
  1170. } else {
  1171. netif_schedule(dev);
  1172. }
  1173. }
  1174. }
  1175. }
  1176. /**
  1177.  * net_call_rx_atomic
  1178.  * @fn: function to call
  1179.  *
  1180.  * Make a function call that is atomic with respect to the protocol
  1181.  * layers.
  1182.  */
  1183.  
  1184. void net_call_rx_atomic(void (*fn)(void))
  1185. {
  1186. br_write_lock_bh(BR_NETPROTO_LOCK);
  1187. fn();
  1188. br_write_unlock_bh(BR_NETPROTO_LOCK);
  1189. }
  1190. #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
  1191. void (*br_handle_frame_hook)(struct sk_buff *skb) = NULL;
  1192. #endif
  1193. static __inline__ int handle_bridge(struct sk_buff *skb,
  1194.      struct packet_type *pt_prev)
  1195. {
  1196. int ret = NET_RX_DROP;
  1197. if (pt_prev) {
  1198. if (!pt_prev->data)
  1199. ret = deliver_to_old_ones(pt_prev, skb, 0);
  1200. else {
  1201. atomic_inc(&skb->users);
  1202. ret = pt_prev->func(skb, skb->dev, pt_prev);
  1203. }
  1204. }
  1205. br_handle_frame_hook(skb);
  1206. return ret;
  1207. }
  1208. #ifdef CONFIG_NET_DIVERT
  1209. static inline void handle_diverter(struct sk_buff *skb)
  1210. {
  1211. /* if diversion is supported on device, then divert */
  1212. if (skb->dev->divert && skb->dev->divert->divert)
  1213. divert_frame(skb);
  1214. }
  1215. #endif   /* CONFIG_NET_DIVERT */
  1216. static void net_rx_action(struct softirq_action *h)
  1217. {
  1218. int this_cpu = smp_processor_id();
  1219. struct softnet_data *queue = &softnet_data[this_cpu];
  1220. unsigned long start_time = jiffies;
  1221. int bugdet = netdev_max_backlog;
  1222. br_read_lock(BR_NETPROTO_LOCK);
  1223. for (;;) {
  1224. struct sk_buff *skb;
  1225. struct net_device *rx_dev;
  1226. local_irq_disable();
  1227. skb = __skb_dequeue(&queue->input_pkt_queue);
  1228. local_irq_enable();
  1229. if (skb == NULL)
  1230. break;
  1231. skb_bond(skb);
  1232. rx_dev = skb->dev;
  1233. #ifdef CONFIG_NET_FASTROUTE
  1234. if (skb->pkt_type == PACKET_FASTROUTE) {
  1235. netdev_rx_stat[this_cpu].fastroute_deferred_out++;
  1236. dev_queue_xmit(skb);
  1237. dev_put(rx_dev);
  1238. continue;
  1239. }
  1240. #endif
  1241. skb->h.raw = skb->nh.raw = skb->data;
  1242. {
  1243. struct packet_type *ptype, *pt_prev;
  1244. unsigned short type = skb->protocol;
  1245. pt_prev = NULL;
  1246. for (ptype = ptype_all; ptype; ptype = ptype->next) {
  1247. if (!ptype->dev || ptype->dev == skb->dev) {
  1248. if (pt_prev) {
  1249. if (!pt_prev->data) {
  1250. deliver_to_old_ones(pt_prev, skb, 0);
  1251. } else {
  1252. atomic_inc(&skb->users);
  1253. pt_prev->func(skb,
  1254.       skb->dev,
  1255.       pt_prev);
  1256. }
  1257. }
  1258. pt_prev = ptype;
  1259. }
  1260. }
  1261. #ifdef CONFIG_NET_DIVERT
  1262. if (skb->dev->divert && skb->dev->divert->divert)
  1263. handle_diverter(skb);
  1264. #endif /* CONFIG_NET_DIVERT */
  1265. #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
  1266. if (skb->dev->br_port != NULL &&
  1267.     br_handle_frame_hook != NULL) {
  1268. handle_bridge(skb, pt_prev);
  1269. dev_put(rx_dev);
  1270. continue;
  1271. }
  1272. #endif
  1273. for (ptype=ptype_base[ntohs(type)&15];ptype;ptype=ptype->next) {
  1274. if (ptype->type == type &&
  1275.     (!ptype->dev || ptype->dev == skb->dev)) {
  1276. if (pt_prev) {
  1277. if (!pt_prev->data)
  1278. deliver_to_old_ones(pt_prev, skb, 0);
  1279. else {
  1280. atomic_inc(&skb->users);
  1281. pt_prev->func(skb,
  1282.       skb->dev,
  1283.       pt_prev);
  1284. }
  1285. }
  1286. pt_prev = ptype;
  1287. }
  1288. }
  1289. if (pt_prev) {
  1290. if (!pt_prev->data)
  1291. deliver_to_old_ones(pt_prev, skb, 1);
  1292. else
  1293. pt_prev->func(skb, skb->dev, pt_prev);
  1294. } else
  1295. kfree_skb(skb);
  1296. }
  1297. dev_put(rx_dev);
  1298. if (bugdet-- < 0 || jiffies - start_time > 1)
  1299. goto softnet_break;
  1300. #ifdef CONFIG_NET_HW_FLOWCONTROL
  1301. if (queue->throttle && queue->input_pkt_queue.qlen < no_cong_thresh ) {
  1302. if (atomic_dec_and_test(&netdev_dropping)) {
  1303. queue->throttle = 0;
  1304. netdev_wakeup();
  1305. goto softnet_break;
  1306. }
  1307. }
  1308. #endif
  1309. }
  1310. br_read_unlock(BR_NETPROTO_LOCK);
  1311. local_irq_disable();
  1312. if (queue->throttle) {
  1313. queue->throttle = 0;
  1314. #ifdef CONFIG_NET_HW_FLOWCONTROL
  1315. if (atomic_dec_and_test(&netdev_dropping))
  1316. netdev_wakeup();
  1317. #endif
  1318. }
  1319. local_irq_enable();
  1320. NET_PROFILE_LEAVE(softnet_process);
  1321. return;
  1322. softnet_break:
  1323. br_read_unlock(BR_NETPROTO_LOCK);
  1324. local_irq_disable();
  1325. netdev_rx_stat[this_cpu].time_squeeze++;
  1326. /* This already runs in BH context, no need to wake up BH's */
  1327. cpu_raise_softirq(this_cpu, NET_RX_SOFTIRQ);
  1328. local_irq_enable();
  1329. NET_PROFILE_LEAVE(softnet_process);
  1330. return;
  1331. }
  1332. static gifconf_func_t * gifconf_list [NPROTO];
  1333. /**
  1334.  * register_gifconf - register a SIOCGIF handler
  1335.  * @family: Address family
  1336.  * @gifconf: Function handler
  1337.  *
  1338.  * Register protocol dependent address dumping routines. The handler
  1339.  * that is passed must not be freed or reused until it has been replaced
  1340.  * by another handler.
  1341.  */
  1342.  
  1343. int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
  1344. {
  1345. if (family>=NPROTO)
  1346. return -EINVAL;
  1347. gifconf_list[family] = gifconf;
  1348. return 0;
  1349. }
  1350. /*
  1351.  * Map an interface index to its name (SIOCGIFNAME)
  1352.  */
  1353. /*
  1354.  * We need this ioctl for efficient implementation of the
  1355.  * if_indextoname() function required by the IPv6 API.  Without
  1356.  * it, we would have to search all the interfaces to find a
  1357.  * match.  --pb
  1358.  */
  1359. static int dev_ifname(struct ifreq *arg)
  1360. {
  1361. struct net_device *dev;
  1362. struct ifreq ifr;
  1363. /*
  1364.  * Fetch the caller's info block. 
  1365.  */
  1366. if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
  1367. return -EFAULT;
  1368. read_lock(&dev_base_lock);
  1369. dev = __dev_get_by_index(ifr.ifr_ifindex);
  1370. if (!dev) {
  1371. read_unlock(&dev_base_lock);
  1372. return -ENODEV;
  1373. }
  1374. strcpy(ifr.ifr_name, dev->name);
  1375. read_unlock(&dev_base_lock);
  1376. if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
  1377. return -EFAULT;
  1378. return 0;
  1379. }
  1380. /*
  1381.  * Perform a SIOCGIFCONF call. This structure will change
  1382.  * size eventually, and there is nothing I can do about it.
  1383.  * Thus we will need a 'compatibility mode'.
  1384.  */
  1385. static int dev_ifconf(char *arg)
  1386. {
  1387. struct ifconf ifc;
  1388. struct net_device *dev;
  1389. char *pos;
  1390. int len;
  1391. int total;
  1392. int i;
  1393. /*
  1394.  * Fetch the caller's info block. 
  1395.  */
  1396. if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
  1397. return -EFAULT;
  1398. pos = ifc.ifc_buf;
  1399. len = ifc.ifc_len;
  1400. /*
  1401.  * Loop over the interfaces, and write an info block for each. 
  1402.  */
  1403. total = 0;
  1404. for (dev = dev_base; dev != NULL; dev = dev->next) {
  1405. for (i=0; i<NPROTO; i++) {
  1406. if (gifconf_list[i]) {
  1407. int done;
  1408. if (pos==NULL) {
  1409. done = gifconf_list[i](dev, NULL, 0);
  1410. } else {
  1411. done = gifconf_list[i](dev, pos+total, len-total);
  1412. }
  1413. if (done<0) {
  1414. return -EFAULT;
  1415. }
  1416. total += done;
  1417. }
  1418. }
  1419.    }
  1420. /*
  1421.  * All done.  Write the updated control block back to the caller. 
  1422.  */
  1423. ifc.ifc_len = total;
  1424. if (copy_to_user(arg, &ifc, sizeof(struct ifconf)))
  1425. return -EFAULT; 
  1426. /* 
  1427.  *  Both BSD and Solaris return 0 here, so we do too.
  1428.  */
  1429. return 0;
  1430. }
  1431. /*
  1432.  * This is invoked by the /proc filesystem handler to display a device
  1433.  * in detail.
  1434.  */
  1435. #ifdef CONFIG_PROC_FS
  1436. static int sprintf_stats(char *buffer, struct net_device *dev)
  1437. {
  1438. struct net_device_stats *stats = (dev->get_stats ? dev->get_stats(dev): NULL);
  1439. int size;
  1440. if (stats)
  1441. size = sprintf(buffer, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu %8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lun",
  1442.      dev->name,
  1443.    stats->rx_bytes,
  1444.    stats->rx_packets, stats->rx_errors,
  1445.    stats->rx_dropped + stats->rx_missed_errors,
  1446.    stats->rx_fifo_errors,
  1447.    stats->rx_length_errors + stats->rx_over_errors
  1448.    + stats->rx_crc_errors + stats->rx_frame_errors,
  1449.    stats->rx_compressed, stats->multicast,
  1450.    stats->tx_bytes,
  1451.    stats->tx_packets, stats->tx_errors, stats->tx_dropped,
  1452.    stats->tx_fifo_errors, stats->collisions,
  1453.    stats->tx_carrier_errors + stats->tx_aborted_errors
  1454.    + stats->tx_window_errors + stats->tx_heartbeat_errors,
  1455.    stats->tx_compressed);
  1456. else
  1457. size = sprintf(buffer, "%6s: No statistics available.n", dev->name);
  1458. return size;
  1459. }
  1460. /*
  1461.  * Called from the PROCfs module. This now uses the new arbitrary sized /proc/net interface
  1462.  * to create /proc/net/dev
  1463.  */
  1464.  
  1465. static int dev_get_info(char *buffer, char **start, off_t offset, int length)
  1466. {
  1467. int len = 0;
  1468. off_t begin = 0;
  1469. off_t pos = 0;
  1470. int size;
  1471. struct net_device *dev;
  1472. size = sprintf(buffer, 
  1473. "Inter-|   Receive                                                |  Transmitn"
  1474. " face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressedn");
  1475. pos += size;
  1476. len += size;
  1477. read_lock(&dev_base_lock);
  1478. for (dev = dev_base; dev != NULL; dev = dev->next) {
  1479. size = sprintf_stats(buffer+len, dev);
  1480. len += size;
  1481. pos = begin + len;
  1482. if (pos < offset) {
  1483. len = 0;
  1484. begin = pos;
  1485. }
  1486. if (pos > offset + length)
  1487. break;
  1488. }
  1489. read_unlock(&dev_base_lock);
  1490. *start = buffer + (offset - begin); /* Start of wanted data */
  1491. len -= (offset - begin); /* Start slop */
  1492. if (len > length)
  1493. len = length; /* Ending slop */
  1494. if (len < 0)
  1495. len = 0;
  1496. return len;
  1497. }
  1498. static int dev_proc_stats(char *buffer, char **start, off_t offset,
  1499.   int length, int *eof, void *data)
  1500. {
  1501. int i, lcpu;
  1502. int len=0;
  1503. for (lcpu=0; lcpu<smp_num_cpus; lcpu++) {
  1504. i = cpu_logical_map(lcpu);
  1505. len += sprintf(buffer+len, "%08x %08x %08x %08x %08x %08x %08x %08x %08xn",
  1506.        netdev_rx_stat[i].total,
  1507.        netdev_rx_stat[i].dropped,
  1508.        netdev_rx_stat[i].time_squeeze,
  1509.        netdev_rx_stat[i].throttled,
  1510.        netdev_rx_stat[i].fastroute_hit,
  1511.        netdev_rx_stat[i].fastroute_success,
  1512.        netdev_rx_stat[i].fastroute_defer,
  1513.        netdev_rx_stat[i].fastroute_deferred_out,
  1514. #if 0
  1515.        netdev_rx_stat[i].fastroute_latency_reduction
  1516. #else
  1517.        netdev_rx_stat[i].cpu_collision
  1518. #endif
  1519.        );
  1520. }
  1521. len -= offset;
  1522. if (len > length)
  1523. len = length;
  1524. if (len < 0)
  1525. len = 0;
  1526. *start = buffer + offset;
  1527. *eof = 1;
  1528. return len;
  1529. }
  1530. #endif /* CONFIG_PROC_FS */
  1531. #ifdef WIRELESS_EXT
  1532. #ifdef CONFIG_PROC_FS
  1533. /*
  1534.  * Print one entry of /proc/net/wireless
  1535.  * This is a clone of /proc/net/dev (just above)
  1536.  */
  1537. static int sprintf_wireless_stats(char *buffer, struct net_device *dev)
  1538. {
  1539. /* Get stats from the driver */
  1540. struct iw_statistics *stats = (dev->get_wireless_stats ?
  1541.        dev->get_wireless_stats(dev) :
  1542.        (struct iw_statistics *) NULL);
  1543. int size;
  1544. if (stats != (struct iw_statistics *) NULL) {
  1545. size = sprintf(buffer,
  1546.        "%6s: %04x  %3d%c  %3d%c  %3d%c  %6d %6d %6d %6d %6d   %6dn",
  1547.        dev->name,
  1548.        stats->status,
  1549.        stats->qual.qual,
  1550.        stats->qual.updated & 1 ? '.' : ' ',
  1551.        stats->qual.level,
  1552.        stats->qual.updated & 2 ? '.' : ' ',
  1553.        stats->qual.noise,
  1554.        stats->qual.updated & 4 ? '.' : ' ',
  1555.        stats->discard.nwid,
  1556.        stats->discard.code,
  1557.        stats->discard.fragment,
  1558.        stats->discard.retries,
  1559.        stats->discard.misc,
  1560.        stats->miss.beacon);
  1561. stats->qual.updated = 0;
  1562. }
  1563. else
  1564. size = 0;
  1565. return size;
  1566. }
  1567. /*
  1568.  * Print info for /proc/net/wireless (print all entries)
  1569.  * This is a clone of /proc/net/dev (just above)
  1570.  */
  1571. static int dev_get_wireless_info(char * buffer, char **start, off_t offset,
  1572.   int length)
  1573. {
  1574. int len = 0;
  1575. off_t begin = 0;
  1576. off_t pos = 0;
  1577. int size;
  1578. struct net_device * dev;
  1579. size = sprintf(buffer,
  1580.        "Inter-| sta-|   Quality        |   Discarded packets               | Missedn"
  1581.        " face | tus | link level noise |  nwid  crypt   frag  retry   misc | beaconn"
  1582. );
  1583. pos += size;
  1584. len += size;
  1585. read_lock(&dev_base_lock);
  1586. for (dev = dev_base; dev != NULL; dev = dev->next) {
  1587. size = sprintf_wireless_stats(buffer + len, dev);
  1588. len += size;
  1589. pos = begin + len;
  1590. if (pos < offset) {
  1591. len = 0;
  1592. begin = pos;
  1593. }
  1594. if (pos > offset + length)
  1595. break;
  1596. }
  1597. read_unlock(&dev_base_lock);
  1598. *start = buffer + (offset - begin); /* Start of wanted data */
  1599. len -= (offset - begin); /* Start slop */
  1600. if (len > length)
  1601. len = length; /* Ending slop */
  1602. if (len < 0)
  1603. len = 0;
  1604. return len;
  1605. }
  1606. #endif /* CONFIG_PROC_FS */
  1607. /*
  1608.  * Allow programatic access to /proc/net/wireless even if /proc
  1609.  * doesn't exist... Also more efficient...
  1610.  */
  1611. static inline int dev_iwstats(struct net_device *dev, struct ifreq *ifr)
  1612. {
  1613. /* Get stats from the driver */
  1614. struct iw_statistics *stats = (dev->get_wireless_stats ?
  1615.        dev->get_wireless_stats(dev) :
  1616.        (struct iw_statistics *) NULL);
  1617. if (stats != (struct iw_statistics *) NULL) {
  1618. struct iwreq * wrq = (struct iwreq *)ifr;
  1619. /* Copy statistics to the user buffer */
  1620. if(copy_to_user(wrq->u.data.pointer, stats,
  1621. sizeof(struct iw_statistics)))
  1622. return -EFAULT;
  1623. /* Check if we need to clear the update flag */
  1624. if(wrq->u.data.flags != 0)
  1625. stats->qual.updated = 0;
  1626. return(0);
  1627. } else
  1628. return -EOPNOTSUPP;
  1629. }
  1630. #endif /* WIRELESS_EXT */
  1631. /**
  1632.  * netdev_set_master - set up master/slave pair
  1633.  * @slave: slave device
  1634.  * @master: new master device
  1635.  *
  1636.  * Changes the master device of the slave. Pass %NULL to break the
  1637.  * bonding. The caller must hold the RTNL semaphore. On a failure
  1638.  * a negative errno code is returned. On success the reference counts
  1639.  * are adjusted, %RTM_NEWLINK is sent to the routing socket and the
  1640.  * function returns zero.
  1641.  */
  1642.  
  1643. int netdev_set_master(struct net_device *slave, struct net_device *master)
  1644. {
  1645. struct net_device *old = slave->master;
  1646. ASSERT_RTNL();
  1647. if (master) {
  1648. if (old)
  1649. return -EBUSY;
  1650. dev_hold(master);
  1651. }
  1652. br_write_lock_bh(BR_NETPROTO_LOCK);
  1653. slave->master = master;
  1654. br_write_unlock_bh(BR_NETPROTO_LOCK);
  1655. if (old)
  1656. dev_put(old);
  1657. if (master)
  1658. slave->flags |= IFF_SLAVE;
  1659. else
  1660. slave->flags &= ~IFF_SLAVE;
  1661. rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
  1662. return 0;
  1663. }
  1664. /**
  1665.  * dev_set_promiscuity - update promiscuity count on a device
  1666.  * @dev: device
  1667.  * @inc: modifier
  1668.  *
  1669.  * Add or remove promsicuity from a device. While the count in the device
  1670.  * remains above zero the interface remains promiscuous. Once it hits zero
  1671.  * the device reverts back to normal filtering operation. A negative inc
  1672.  * value is used to drop promiscuity on the device.
  1673.  */
  1674.  
  1675. void dev_set_promiscuity(struct net_device *dev, int inc)
  1676. {
  1677. unsigned short old_flags = dev->flags;
  1678. dev->flags |= IFF_PROMISC;
  1679. if ((dev->promiscuity += inc) == 0)
  1680. dev->flags &= ~IFF_PROMISC;
  1681. if (dev->flags^old_flags) {
  1682. #ifdef CONFIG_NET_FASTROUTE
  1683. if (dev->flags&IFF_PROMISC) {
  1684. netdev_fastroute_obstacles++;
  1685. dev_clear_fastroute(dev);
  1686. } else
  1687. netdev_fastroute_obstacles--;
  1688. #endif
  1689. dev_mc_upload(dev);
  1690. printk(KERN_INFO "device %s %s promiscuous moden",
  1691.        dev->name, (dev->flags&IFF_PROMISC) ? "entered" : "left");
  1692. }
  1693. }
  1694. /**
  1695.  * dev_set_allmulti - update allmulti count on a device
  1696.  * @dev: device
  1697.  * @inc: modifier
  1698.  *
  1699.  * Add or remove reception of all multicast frames to a device. While the
  1700.  * count in the device remains above zero the interface remains listening
  1701.  * to all interfaces. Once it hits zero the device reverts back to normal
  1702.  * filtering operation. A negative @inc value is used to drop the counter
  1703.  * when releasing a resource needing all multicasts.
  1704.  */
  1705. void dev_set_allmulti(struct net_device *dev, int inc)
  1706. {
  1707. unsigned short old_flags = dev->flags;
  1708. dev->flags |= IFF_ALLMULTI;
  1709. if ((dev->allmulti += inc) == 0)
  1710. dev->flags &= ~IFF_ALLMULTI;
  1711. if (dev->flags^old_flags)
  1712. dev_mc_upload(dev);
  1713. }
  1714. int dev_change_flags(struct net_device *dev, unsigned flags)
  1715. {
  1716. int ret;
  1717. int old_flags = dev->flags;
  1718. /*
  1719.  * Set the flags on our device.
  1720.  */
  1721. dev->flags = (flags & (IFF_DEBUG|IFF_NOTRAILERS|IFF_NOARP|IFF_DYNAMIC|
  1722.        IFF_MULTICAST|IFF_PORTSEL|IFF_AUTOMEDIA)) |
  1723.        (dev->flags & (IFF_UP|IFF_VOLATILE|IFF_PROMISC|IFF_ALLMULTI));
  1724. /*
  1725.  * Load in the correct multicast list now the flags have changed.
  1726.  */
  1727. dev_mc_upload(dev);
  1728. /*
  1729.  * Have we downed the interface. We handle IFF_UP ourselves
  1730.  * according to user attempts to set it, rather than blindly
  1731.  * setting it.
  1732.  */
  1733. ret = 0;
  1734. if ((old_flags^flags)&IFF_UP) /* Bit is different  ? */
  1735. {
  1736. ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
  1737. if (ret == 0) 
  1738. dev_mc_upload(dev);
  1739. }
  1740. if (dev->flags&IFF_UP &&
  1741.     ((old_flags^dev->flags)&~(IFF_UP|IFF_PROMISC|IFF_ALLMULTI|IFF_VOLATILE)))
  1742. notifier_call_chain(&netdev_chain, NETDEV_CHANGE, dev);
  1743. if ((flags^dev->gflags)&IFF_PROMISC) {
  1744. int inc = (flags&IFF_PROMISC) ? +1 : -1;
  1745. dev->gflags ^= IFF_PROMISC;
  1746. dev_set_promiscuity(dev, inc);
  1747. }
  1748. /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
  1749.    is important. Some (broken) drivers set IFF_PROMISC, when
  1750.    IFF_ALLMULTI is requested not asking us and not reporting.
  1751.  */
  1752. if ((flags^dev->gflags)&IFF_ALLMULTI) {
  1753. int inc = (flags&IFF_ALLMULTI) ? +1 : -1;
  1754. dev->gflags ^= IFF_ALLMULTI;
  1755. dev_set_allmulti(dev, inc);
  1756. }
  1757. if (old_flags^dev->flags)
  1758. rtmsg_ifinfo(RTM_NEWLINK, dev, old_flags^dev->flags);
  1759. return ret;
  1760. }
  1761. /*
  1762.  * Perform the SIOCxIFxxx calls. 
  1763.  */
  1764.  
  1765. static int dev_ifsioc(struct ifreq *ifr, unsigned int cmd)
  1766. {
  1767. struct net_device *dev;
  1768. int err;
  1769. if ((dev = __dev_get_by_name(ifr->ifr_name)) == NULL)
  1770. return -ENODEV;
  1771. switch(cmd) 
  1772. {
  1773. case SIOCGIFFLAGS: /* Get interface flags */
  1774. ifr->ifr_flags = (dev->flags&~(IFF_PROMISC|IFF_ALLMULTI|IFF_RUNNING))
  1775. |(dev->gflags&(IFF_PROMISC|IFF_ALLMULTI));
  1776. if (netif_running(dev) && netif_carrier_ok(dev))
  1777. ifr->ifr_flags |= IFF_RUNNING;
  1778. return 0;
  1779. case SIOCSIFFLAGS: /* Set interface flags */
  1780. return dev_change_flags(dev, ifr->ifr_flags);
  1781. case SIOCGIFMETRIC: /* Get the metric on the interface (currently unused) */
  1782. ifr->ifr_metric = 0;
  1783. return 0;
  1784. case SIOCSIFMETRIC: /* Set the metric on the interface (currently unused) */
  1785. return -EOPNOTSUPP;
  1786. case SIOCGIFMTU: /* Get the MTU of a device */
  1787. ifr->ifr_mtu = dev->mtu;
  1788. return 0;
  1789. case SIOCSIFMTU: /* Set the MTU of a device */
  1790. if (ifr->ifr_mtu == dev->mtu)
  1791. return 0;
  1792. /*
  1793.  * MTU must be positive.
  1794.  */
  1795.  
  1796. if (ifr->ifr_mtu<0)
  1797. return -EINVAL;
  1798. if (!netif_device_present(dev))
  1799. return -ENODEV;
  1800. if (dev->change_mtu)
  1801. err = dev->change_mtu(dev, ifr->ifr_mtu);
  1802. else {
  1803. dev->mtu = ifr->ifr_mtu;
  1804. err = 0;
  1805. }
  1806. if (!err && dev->flags&IFF_UP)
  1807. notifier_call_chain(&netdev_chain, NETDEV_CHANGEMTU, dev);
  1808. return err;
  1809. case SIOCGIFHWADDR:
  1810. memcpy(ifr->ifr_hwaddr.sa_data,dev->dev_addr, MAX_ADDR_LEN);
  1811. ifr->ifr_hwaddr.sa_family=dev->type;
  1812. return 0;
  1813. case SIOCSIFHWADDR:
  1814. if (dev->set_mac_address == NULL)
  1815. return -EOPNOTSUPP;
  1816. if (ifr->ifr_hwaddr.sa_family!=dev->type)
  1817. return -EINVAL;
  1818. if (!netif_device_present(dev))
  1819. return -ENODEV;
  1820. err = dev->set_mac_address(dev, &ifr->ifr_hwaddr);
  1821. if (!err)
  1822. notifier_call_chain(&netdev_chain, NETDEV_CHANGEADDR, dev);
  1823. return err;
  1824. case SIOCSIFHWBROADCAST:
  1825. if (ifr->ifr_hwaddr.sa_family!=dev->type)
  1826. return -EINVAL;
  1827. memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data, MAX_ADDR_LEN);
  1828. notifier_call_chain(&netdev_chain, NETDEV_CHANGEADDR, dev);
  1829. return 0;
  1830. case SIOCGIFMAP:
  1831. ifr->ifr_map.mem_start=dev->mem_start;
  1832. ifr->ifr_map.mem_end=dev->mem_end;
  1833. ifr->ifr_map.base_addr=dev->base_addr;
  1834. ifr->ifr_map.irq=dev->irq;
  1835. ifr->ifr_map.dma=dev->dma;
  1836. ifr->ifr_map.port=dev->if_port;
  1837. return 0;
  1838. case SIOCSIFMAP:
  1839. if (dev->set_config) {
  1840. if (!netif_device_present(dev))
  1841. return -ENODEV;
  1842. return dev->set_config(dev,&ifr->ifr_map);
  1843. }
  1844. return -EOPNOTSUPP;
  1845. case SIOCADDMULTI:
  1846. if (dev->set_multicast_list == NULL ||
  1847.     ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
  1848. return -EINVAL;
  1849. if (!netif_device_present(dev))
  1850. return -ENODEV;
  1851. dev_mc_add(dev,ifr->ifr_hwaddr.sa_data, dev->addr_len, 1);
  1852. return 0;
  1853. case SIOCDELMULTI:
  1854. if (dev->set_multicast_list == NULL ||
  1855.     ifr->ifr_hwaddr.sa_family!=AF_UNSPEC)
  1856. return -EINVAL;
  1857. if (!netif_device_present(dev))
  1858. return -ENODEV;
  1859. dev_mc_delete(dev,ifr->ifr_hwaddr.sa_data,dev->addr_len, 1);
  1860. return 0;
  1861. case SIOCGIFINDEX:
  1862. ifr->ifr_ifindex = dev->ifindex;
  1863. return 0;
  1864. case SIOCGIFTXQLEN:
  1865. ifr->ifr_qlen = dev->tx_queue_len;
  1866. return 0;
  1867. case SIOCSIFTXQLEN:
  1868. if (ifr->ifr_qlen<0)
  1869. return -EINVAL;
  1870. dev->tx_queue_len = ifr->ifr_qlen;
  1871. return 0;
  1872. case SIOCSIFNAME:
  1873. if (dev->flags&IFF_UP)
  1874. return -EBUSY;
  1875. if (__dev_get_by_name(ifr->ifr_newname))
  1876. return -EEXIST;
  1877. memcpy(dev->name, ifr->ifr_newname, IFNAMSIZ);
  1878. dev->name[IFNAMSIZ-1] = 0;
  1879. notifier_call_chain(&netdev_chain, NETDEV_CHANGENAME, dev);
  1880. return 0;
  1881. #ifdef WIRELESS_EXT
  1882. case SIOCGIWSTATS:
  1883. return dev_iwstats(dev, ifr);
  1884. #endif /* WIRELESS_EXT */
  1885. /*
  1886.  * Unknown or private ioctl
  1887.  */
  1888. default:
  1889. if ((cmd >= SIOCDEVPRIVATE &&
  1890.     cmd <= SIOCDEVPRIVATE + 15) ||
  1891.     cmd == SIOCBONDENSLAVE ||
  1892.     cmd == SIOCBONDRELEASE ||
  1893.     cmd == SIOCBONDSETHWADDR ||
  1894.     cmd == SIOCBONDSLAVEINFOQUERY ||
  1895.     cmd == SIOCBONDINFOQUERY ||
  1896.     cmd == SIOCBONDCHANGEACTIVE ||
  1897.     cmd == SIOCETHTOOL ||
  1898.     cmd == SIOCGMIIPHY ||
  1899.     cmd == SIOCGMIIREG ||
  1900.     cmd == SIOCSMIIREG) {
  1901. if (dev->do_ioctl) {
  1902. if (!netif_device_present(dev))
  1903. return -ENODEV;
  1904. return dev->do_ioctl(dev, ifr, cmd);
  1905. }
  1906. return -EOPNOTSUPP;
  1907. }
  1908. #ifdef WIRELESS_EXT
  1909. if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
  1910. if (dev->do_ioctl) {
  1911. if (!netif_device_present(dev))
  1912. return -ENODEV;
  1913. return dev->do_ioctl(dev, ifr, cmd);
  1914. }
  1915. return -EOPNOTSUPP;
  1916. }
  1917. #endif /* WIRELESS_EXT */
  1918. }
  1919. return -EINVAL;
  1920. }
  1921. /*
  1922.  * This function handles all "interface"-type I/O control requests. The actual
  1923.  * 'doing' part of this is dev_ifsioc above.
  1924.  */
  1925. /**
  1926.  * dev_ioctl - network device ioctl
  1927.  * @cmd: command to issue
  1928.  * @arg: pointer to a struct ifreq in user space
  1929.  *
  1930.  * Issue ioctl functions to devices. This is normally called by the
  1931.  * user space syscall interfaces but can sometimes be useful for 
  1932.  * other purposes. The return value is the return from the syscall if
  1933.  * positive or a negative errno code on error.
  1934.  */
  1935. int dev_ioctl(unsigned int cmd, void *arg)
  1936. {
  1937. struct ifreq ifr;
  1938. int ret;
  1939. char *colon;
  1940. /* One special case: SIOCGIFCONF takes ifconf argument
  1941.    and requires shared lock, because it sleeps writing
  1942.    to user space.
  1943.  */
  1944.    
  1945. if (cmd == SIOCGIFCONF) {
  1946. rtnl_shlock();
  1947. ret = dev_ifconf((char *) arg);
  1948. rtnl_shunlock();
  1949. return ret;
  1950. }
  1951. if (cmd == SIOCGIFNAME) {
  1952. return dev_ifname((struct ifreq *)arg);
  1953. }
  1954. if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
  1955. return -EFAULT;
  1956. ifr.ifr_name[IFNAMSIZ-1] = 0;
  1957. colon = strchr(ifr.ifr_name, ':');
  1958. if (colon)
  1959. *colon = 0;
  1960. /*
  1961.  * See which interface the caller is talking about. 
  1962.  */
  1963.  
  1964. switch(cmd) 
  1965. {
  1966. /*
  1967.  * These ioctl calls:
  1968.  * - can be done by all.
  1969.  * - atomic and do not require locking.
  1970.  * - return a value
  1971.  */
  1972.  
  1973. case SIOCGIFFLAGS:
  1974. case SIOCGIFMETRIC:
  1975. case SIOCGIFMTU:
  1976. case SIOCGIFHWADDR:
  1977. case SIOCGIFSLAVE:
  1978. case SIOCGIFMAP:
  1979. case SIOCGIFINDEX:
  1980. case SIOCGIFTXQLEN:
  1981. dev_load(ifr.ifr_name);
  1982. read_lock(&dev_base_lock);
  1983. ret = dev_ifsioc(&ifr, cmd);
  1984. read_unlock(&dev_base_lock);
  1985. if (!ret) {
  1986. if (colon)
  1987. *colon = ':';
  1988. if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
  1989. return -EFAULT;
  1990. }
  1991. return ret;
  1992. /*
  1993.  * These ioctl calls:
  1994.  * - require superuser power.
  1995.  * - require strict serialization.
  1996.  * - return a value
  1997.  */
  1998.  
  1999. case SIOCETHTOOL:
  2000. case SIOCGMIIPHY:
  2001. case SIOCGMIIREG:
  2002. if (!capable(CAP_NET_ADMIN))
  2003. return -EPERM;
  2004. dev_load(ifr.ifr_name);
  2005. dev_probe_lock();
  2006. rtnl_lock();
  2007. ret = dev_ifsioc(&ifr, cmd);
  2008. rtnl_unlock();
  2009. dev_probe_unlock();
  2010. if (!ret) {
  2011. if (colon)
  2012. *colon = ':';
  2013. if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
  2014. return -EFAULT;
  2015. }
  2016. return ret;
  2017. /*
  2018.  * These ioctl calls:
  2019.  * - require superuser power.
  2020.  * - require strict serialization.
  2021.  * - do not return a value
  2022.  */
  2023.  
  2024. case SIOCSIFFLAGS:
  2025. case SIOCSIFMETRIC:
  2026. case SIOCSIFMTU:
  2027. case SIOCSIFMAP:
  2028. case SIOCSIFHWADDR:
  2029. case SIOCSIFSLAVE:
  2030. case SIOCADDMULTI:
  2031. case SIOCDELMULTI:
  2032. case SIOCSIFHWBROADCAST:
  2033. case SIOCSIFTXQLEN:
  2034. case SIOCSIFNAME:
  2035. case SIOCSMIIREG:
  2036. case SIOCBONDENSLAVE:
  2037. case SIOCBONDRELEASE:
  2038. case SIOCBONDSETHWADDR:
  2039. case SIOCBONDSLAVEINFOQUERY:
  2040. case SIOCBONDINFOQUERY:
  2041. case SIOCBONDCHANGEACTIVE:
  2042. if (!capable(CAP_NET_ADMIN))
  2043. return -EPERM;
  2044. dev_load(ifr.ifr_name);
  2045. dev_probe_lock();
  2046. rtnl_lock();
  2047. ret = dev_ifsioc(&ifr, cmd);
  2048. rtnl_unlock();
  2049. dev_probe_unlock();
  2050. return ret;
  2051. case SIOCGIFMEM:
  2052. /* Get the per device memory space. We can add this but currently
  2053.    do not support it */
  2054. case SIOCSIFMEM:
  2055. /* Set the per device memory buffer space. Not applicable in our case */
  2056. case SIOCSIFLINK:
  2057. return -EINVAL;
  2058. /*
  2059.  * Unknown or private ioctl.
  2060.  */
  2061.  
  2062. default:
  2063. if (cmd >= SIOCDEVPRIVATE &&
  2064.     cmd <= SIOCDEVPRIVATE + 15) {
  2065. dev_load(ifr.ifr_name);
  2066. dev_probe_lock();
  2067. rtnl_lock();
  2068. ret = dev_ifsioc(&ifr, cmd);
  2069. rtnl_unlock();
  2070. dev_probe_unlock();
  2071. if (!ret && copy_to_user(arg, &ifr, sizeof(struct ifreq)))
  2072. return -EFAULT;
  2073. return ret;
  2074. }
  2075. #ifdef WIRELESS_EXT
  2076. /* Take care of Wireless Extensions */
  2077. if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
  2078. /* If command is `set a parameter', or
  2079.  * `get the encoding parameters', check if
  2080.  * the user has the right to do it */
  2081. if (IW_IS_SET(cmd) || (cmd == SIOCGIWENCODE)) {
  2082. if(!capable(CAP_NET_ADMIN))
  2083. return -EPERM;
  2084. }
  2085. dev_load(ifr.ifr_name);
  2086. rtnl_lock();
  2087. ret = dev_ifsioc(&ifr, cmd);
  2088. rtnl_unlock();
  2089. if (!ret && IW_IS_GET(cmd) &&
  2090.     copy_to_user(arg, &ifr, sizeof(struct ifreq)))
  2091. return -EFAULT;
  2092. return ret;
  2093. }
  2094. #endif /* WIRELESS_EXT */
  2095. return -EINVAL;
  2096. }
  2097. }
  2098. /**
  2099.  * dev_new_index - allocate an ifindex
  2100.  *
  2101.  * Returns a suitable unique value for a new device interface
  2102.  * number.  The caller must hold the rtnl semaphore or the
  2103.  * dev_base_lock to be sure it remains unique.
  2104.  */
  2105.  
  2106. int dev_new_index(void)
  2107. {
  2108. static int ifindex;
  2109. for (;;) {
  2110. if (++ifindex <= 0)
  2111. ifindex=1;
  2112. if (__dev_get_by_index(ifindex) == NULL)
  2113. return ifindex;
  2114. }
  2115. }
  2116. static int dev_boot_phase = 1;
  2117. /**
  2118.  * register_netdevice - register a network device
  2119.  * @dev: device to register
  2120.  *
  2121.  * Take a completed network device structure and add it to the kernel
  2122.  * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
  2123.  * chain. 0 is returned on success. A negative errno code is returned
  2124.  * on a failure to set up the device, or if the name is a duplicate.
  2125.  *
  2126.  * Callers must hold the rtnl semaphore.  See the comment at the
  2127.  * end of Space.c for details about the locking.  You may want
  2128.  * register_netdev() instead of this.
  2129.  *
  2130.  * BUGS:
  2131.  * The locking appears insufficient to guarantee two parallel registers
  2132.  * will not get the same name.
  2133.  */
  2134. int net_dev_init(void);
  2135. int register_netdevice(struct net_device *dev)
  2136. {
  2137. struct net_device *d, **dp;
  2138. #ifdef CONFIG_NET_DIVERT
  2139. int ret;
  2140. #endif
  2141. spin_lock_init(&dev->queue_lock);
  2142. spin_lock_init(&dev->xmit_lock);
  2143. dev->xmit_lock_owner = -1;
  2144. #ifdef CONFIG_NET_FASTROUTE
  2145. dev->fastpath_lock=RW_LOCK_UNLOCKED;
  2146. #endif
  2147. if (dev_boot_phase)
  2148. net_dev_init();
  2149. #ifdef CONFIG_NET_DIVERT
  2150. ret = alloc_divert_blk(dev);
  2151. if (ret)
  2152. return ret;
  2153. #endif /* CONFIG_NET_DIVERT */
  2154. dev->iflink = -1;
  2155. /* Init, if this function is available */
  2156. if (dev->init && dev->init(dev) != 0) {
  2157. #ifdef CONFIG_NET_DIVERT
  2158. free_divert_blk(dev);
  2159. #endif
  2160. return -EIO;
  2161. }
  2162. dev->ifindex = dev_new_index();
  2163. if (dev->iflink == -1)
  2164. dev->iflink = dev->ifindex;
  2165. /* Check for existence, and append to tail of chain */
  2166. for (dp=&dev_base; (d=*dp) != NULL; dp=&d->next) {
  2167. if (d == dev || strcmp(d->name, dev->name) == 0) {
  2168. #ifdef CONFIG_NET_DIVERT
  2169. free_divert_blk(dev);
  2170. #endif
  2171. return -EEXIST;
  2172. }
  2173. }
  2174. /*
  2175.  * nil rebuild_header routine,
  2176.  * that should be never called and used as just bug trap.
  2177.  */
  2178. if (dev->rebuild_header == NULL)
  2179. dev->rebuild_header = default_rebuild_header;
  2180. /*
  2181.  * Default initial state at registry is that the
  2182.  * device is present.
  2183.  */
  2184. set_bit(__LINK_STATE_PRESENT, &dev->state);
  2185. dev->next = NULL;
  2186. dev_init_scheduler(dev);
  2187. write_lock_bh(&dev_base_lock);
  2188. *dp = dev;
  2189. dev_hold(dev);
  2190. dev->deadbeaf = 0;
  2191. write_unlock_bh(&dev_base_lock);
  2192. /* Notify protocols, that a new device appeared. */
  2193. notifier_call_chain(&netdev_chain, NETDEV_REGISTER, dev);
  2194. net_run_sbin_hotplug(dev, "register");
  2195. return 0;
  2196. }
  2197. /**
  2198.  * netdev_finish_unregister - complete unregistration
  2199.  * @dev: device
  2200.  *
  2201.  * Destroy and free a dead device. A value of zero is returned on
  2202.  * success.
  2203.  */
  2204.  
  2205. int netdev_finish_unregister(struct net_device *dev)
  2206. {
  2207. BUG_TRAP(dev->ip_ptr==NULL);
  2208. BUG_TRAP(dev->ip6_ptr==NULL);
  2209. BUG_TRAP(dev->dn_ptr==NULL);
  2210. if (!dev->deadbeaf) {
  2211. printk(KERN_ERR "Freeing alive device %p, %sn", dev, dev->name);
  2212. return 0;
  2213. }
  2214. #ifdef NET_REFCNT_DEBUG
  2215. printk(KERN_DEBUG "netdev_finish_unregister: %s%s.n", dev->name,
  2216.        (dev->features & NETIF_F_DYNALLOC)?"":", old style");
  2217. #endif
  2218. if (dev->destructor)
  2219. dev->destructor(dev);
  2220. if (dev->features & NETIF_F_DYNALLOC)
  2221. kfree(dev);
  2222. return 0;
  2223. }
  2224. /**
  2225.  * unregister_netdevice - remove device from the kernel
  2226.  * @dev: device
  2227.  *
  2228.  * This function shuts down a device interface and removes it
  2229.  * from the kernel tables. On success 0 is returned, on a failure
  2230.  * a negative errno code is returned.
  2231.  *
  2232.  * Callers must hold the rtnl semaphore.  See the comment at the
  2233.  * end of Space.c for details about the locking.  You may want
  2234.  * unregister_netdev() instead of this.
  2235.  */
  2236. int unregister_netdevice(struct net_device *dev)
  2237. {
  2238. unsigned long now, warning_time;
  2239. struct net_device *d, **dp;
  2240. /* If device is running, close it first. */
  2241. if (dev->flags & IFF_UP)
  2242. dev_close(dev);
  2243. BUG_TRAP(dev->deadbeaf==0);
  2244. dev->deadbeaf = 1;
  2245. /* And unlink it from device chain. */
  2246. for (dp = &dev_base; (d=*dp) != NULL; dp=&d->next) {
  2247. if (d == dev) {
  2248. write_lock_bh(&dev_base_lock);
  2249. *dp = d->next;
  2250. write_unlock_bh(&dev_base_lock);
  2251. break;
  2252. }
  2253. }
  2254. if (d == NULL) {
  2255. printk(KERN_DEBUG "unregister_netdevice: device %s/%p never was registeredn", dev->name, dev);
  2256. return -ENODEV;
  2257. }
  2258. /* Synchronize to net_rx_action. */
  2259. br_write_lock_bh(BR_NETPROTO_LOCK);
  2260. br_write_unlock_bh(BR_NETPROTO_LOCK);
  2261. if (dev_boot_phase == 0) {
  2262. #ifdef CONFIG_NET_FASTROUTE
  2263. dev_clear_fastroute(dev);
  2264. #endif
  2265. /* Shutdown queueing discipline. */
  2266. dev_shutdown(dev);
  2267. net_run_sbin_hotplug(dev, "unregister");
  2268. /* Notify protocols, that we are about to destroy
  2269.    this device. They should clean all the things.
  2270.  */
  2271. notifier_call_chain(&netdev_chain, NETDEV_UNREGISTER, dev);
  2272. /*
  2273.  * Flush the multicast chain
  2274.  */
  2275. dev_mc_discard(dev);
  2276. }
  2277. if (dev->uninit)
  2278. dev->uninit(dev);
  2279. /* Notifier chain MUST detach us from master device. */
  2280. BUG_TRAP(dev->master==NULL);
  2281. #ifdef CONFIG_NET_DIVERT
  2282. free_divert_blk(dev);
  2283. #endif
  2284. if (dev->features & NETIF_F_DYNALLOC) {
  2285. #ifdef NET_REFCNT_DEBUG
  2286. if (atomic_read(&dev->refcnt) != 1)
  2287. printk(KERN_DEBUG "unregister_netdevice: holding %s refcnt=%dn", dev->name, atomic_read(&dev->refcnt)-1);
  2288. #endif
  2289. dev_put(dev);
  2290. return 0;
  2291. }
  2292. /* Last reference is our one */
  2293. if (atomic_read(&dev->refcnt) == 1) {
  2294. dev_put(dev);
  2295. return 0;
  2296. }
  2297. #ifdef NET_REFCNT_DEBUG
  2298. printk("unregister_netdevice: waiting %s refcnt=%dn", dev->name, atomic_read(&dev->refcnt));
  2299. #endif
  2300. /* EXPLANATION. If dev->refcnt is not now 1 (our own reference)
  2301.    it means that someone in the kernel still has a reference
  2302.    to this device and we cannot release it.
  2303.    "New style" devices have destructors, hence we can return from this
  2304.    function and destructor will do all the work later.  As of kernel 2.4.0
  2305.    there are very few "New Style" devices.
  2306.    "Old style" devices expect that the device is free of any references
  2307.    upon exit from this function.
  2308.    We cannot return from this function until all such references have
  2309.    fallen away.  This is because the caller of this function will probably
  2310.    immediately kfree(*dev) and then be unloaded via sys_delete_module.
  2311.    So, we linger until all references fall away.  The duration of the
  2312.    linger is basically unbounded! It is driven by, for example, the
  2313.    current setting of sysctl_ipfrag_time.
  2314.    After 1 second, we start to rebroadcast unregister notifications
  2315.    in hope that careless clients will release the device.
  2316.  */
  2317. now = warning_time = jiffies;
  2318. while (atomic_read(&dev->refcnt) != 1) {
  2319. if ((jiffies - now) > 1*HZ) {
  2320. /* Rebroadcast unregister notification */
  2321. notifier_call_chain(&netdev_chain, NETDEV_UNREGISTER, dev);
  2322. }
  2323. current->state = TASK_INTERRUPTIBLE;
  2324. schedule_timeout(HZ/4);
  2325. current->state = TASK_RUNNING;
  2326. if ((jiffies - warning_time) > 10*HZ) {
  2327. printk(KERN_EMERG "unregister_netdevice: waiting for %s to "
  2328. "become free. Usage count = %dn",
  2329. dev->name, atomic_read(&dev->refcnt));
  2330. warning_time = jiffies;
  2331. }
  2332. }
  2333. dev_put(dev);
  2334. return 0;
  2335. }
  2336. /*
  2337.  * Initialize the DEV module. At boot time this walks the device list and
  2338.  * unhooks any devices that fail to initialise (normally hardware not 
  2339.  * present) and leaves us with a valid list of present and active devices.
  2340.  *
  2341.  */
  2342. extern void net_device_init(void);
  2343. extern void ip_auto_config(void);
  2344. #ifdef CONFIG_NET_DIVERT
  2345. extern void dv_init(void);
  2346. #endif /* CONFIG_NET_DIVERT */
  2347. /*
  2348.  *       Callers must hold the rtnl semaphore.  See the comment at the
  2349.  *       end of Space.c for details about the locking.
  2350.  */
  2351. int __init net_dev_init(void)
  2352. {
  2353. struct net_device *dev, **dp;
  2354. int i;
  2355. if (!dev_boot_phase)
  2356. return 0;
  2357. #ifdef CONFIG_NET_DIVERT
  2358. dv_init();
  2359. #endif /* CONFIG_NET_DIVERT */
  2360. /*
  2361.  * Initialise the packet receive queues.
  2362.  */
  2363. for (i = 0; i < NR_CPUS; i++) {
  2364. struct softnet_data *queue;
  2365. queue = &softnet_data[i];
  2366. skb_queue_head_init(&queue->input_pkt_queue);
  2367. queue->throttle = 0;
  2368. queue->cng_level = 0;
  2369. queue->avg_blog = 10; /* arbitrary non-zero */
  2370. queue->completion_queue = NULL;
  2371. }
  2372. #ifdef CONFIG_NET_PROFILE
  2373. net_profile_init();
  2374. NET_PROFILE_REGISTER(dev_queue_xmit);
  2375. NET_PROFILE_REGISTER(softnet_process);
  2376. #endif
  2377. #ifdef OFFLINE_SAMPLE
  2378. samp_timer.expires = jiffies + (10 * HZ);
  2379. add_timer(&samp_timer);
  2380. #endif
  2381. /*
  2382.  * Add the devices.
  2383.  * If the call to dev->init fails, the dev is removed
  2384.  * from the chain disconnecting the device until the
  2385.  * next reboot.
  2386.  *
  2387.  * NB At boot phase networking is dead. No locking is required.
  2388.  * But we still preserve dev_base_lock for sanity.
  2389.  */
  2390. dp = &dev_base;
  2391. while ((dev = *dp) != NULL) {
  2392. spin_lock_init(&dev->queue_lock);
  2393. spin_lock_init(&dev->xmit_lock);
  2394. #ifdef CONFIG_NET_FASTROUTE
  2395. dev->fastpath_lock = RW_LOCK_UNLOCKED;
  2396. #endif
  2397. dev->xmit_lock_owner = -1;
  2398. dev->iflink = -1;
  2399. dev_hold(dev);
  2400. /*
  2401.  * Allocate name. If the init() fails
  2402.  * the name will be reissued correctly.
  2403.  */
  2404. if (strchr(dev->name, '%'))
  2405. dev_alloc_name(dev, dev->name);
  2406. /* 
  2407.  * Check boot time settings for the device.
  2408.  */
  2409. netdev_boot_setup_check(dev);
  2410. if (dev->init && dev->init(dev)) {
  2411. /*
  2412.  * It failed to come up. It will be unhooked later.
  2413.  * dev_alloc_name can now advance to next suitable
  2414.  * name that is checked next.
  2415.  */
  2416. dev->deadbeaf = 1;
  2417. dp = &dev->next;
  2418. } else {
  2419. dp = &dev->next;
  2420. dev->ifindex = dev_new_index();
  2421. if (dev->iflink == -1)
  2422. dev->iflink = dev->ifindex;
  2423. if (dev->rebuild_header == NULL)
  2424. dev->rebuild_header = default_rebuild_header;
  2425. dev_init_scheduler(dev);
  2426. set_bit(__LINK_STATE_PRESENT, &dev->state);
  2427. }
  2428. }
  2429. /*
  2430.  * Unhook devices that failed to come up
  2431.  */
  2432. dp = &dev_base;
  2433. while ((dev = *dp) != NULL) {
  2434. if (dev->deadbeaf) {
  2435. write_lock_bh(&dev_base_lock);
  2436. *dp = dev->next;
  2437. write_unlock_bh(&dev_base_lock);
  2438. dev_put(dev);
  2439. } else {
  2440. dp = &dev->next;
  2441. }
  2442. }
  2443. #ifdef CONFIG_PROC_FS
  2444. proc_net_create("dev", 0, dev_get_info);
  2445. create_proc_read_entry("net/softnet_stat", 0, 0, dev_proc_stats, NULL);
  2446. #ifdef WIRELESS_EXT
  2447. proc_net_create("wireless", 0, dev_get_wireless_info);
  2448. #endif /* WIRELESS_EXT */
  2449. #endif /* CONFIG_PROC_FS */
  2450. dev_boot_phase = 0;
  2451. open_softirq(NET_TX_SOFTIRQ, net_tx_action, NULL);
  2452. open_softirq(NET_RX_SOFTIRQ, net_rx_action, NULL);
  2453. dst_init();
  2454. dev_mcast_init();
  2455. #ifdef CONFIG_NET_SCHED
  2456. pktsched_init();
  2457. #endif
  2458. /*
  2459.  * Initialise network devices
  2460.  */
  2461.  
  2462. net_device_init();
  2463. return 0;
  2464. }
  2465. #ifdef CONFIG_HOTPLUG
  2466. /* Notify userspace when a netdevice event occurs,
  2467.  * by running '/sbin/hotplug net' with certain
  2468.  * environment variables set.
  2469.  */
  2470. static int net_run_sbin_hotplug(struct net_device *dev, char *action)
  2471. {
  2472. char *argv[3], *envp[5], ifname[12 + IFNAMSIZ], action_str[32];
  2473. int i;
  2474. sprintf(ifname, "INTERFACE=%s", dev->name);
  2475. sprintf(action_str, "ACTION=%s", action);
  2476.         i = 0;
  2477.         argv[i++] = hotplug_path;
  2478.         argv[i++] = "net";
  2479.         argv[i] = 0;
  2480. i = 0;
  2481. /* minimal command environment */
  2482. envp [i++] = "HOME=/";
  2483. envp [i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
  2484. envp [i++] = ifname;
  2485. envp [i++] = action_str;
  2486. envp [i] = 0;
  2487. return call_usermodehelper(argv [0], argv, envp);
  2488. }
  2489. #endif