dev.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:68k
源码类别:

Linux/Unix编程

开发平台:

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