Skip to content
Snippets Groups Projects
dev.c 90.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • Linus Torvalds's avatar
    Linus Torvalds committed
    			if (dev->quota < 0)
    				dev->quota += dev->weight;
    			else
    				dev->quota = dev->weight;
    		} else {
    
    			netpoll_poll_unlock(have);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    			dev_put(dev);
    			local_irq_disable();
    		}
    	}
    out:
    
    #ifdef CONFIG_NET_DMA
    	/*
    	 * There may not be any more sk_buffs coming right now, so push
    	 * any pending DMA copies to hardware
    	 */
    	if (net_dma_client) {
    		struct dma_chan *chan;
    		rcu_read_lock();
    		list_for_each_entry_rcu(chan, &net_dma_client->channels, client_node)
    			dma_async_memcpy_issue_pending(chan);
    		rcu_read_unlock();
    	}
    #endif
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	local_irq_enable();
    	return;
    
    softnet_break:
    	__get_cpu_var(netdev_rx_stat).time_squeeze++;
    	__raise_softirq_irqoff(NET_RX_SOFTIRQ);
    	goto out;
    }
    
    static gifconf_func_t * gifconf_list [NPROTO];
    
    /**
     *	register_gifconf	-	register a SIOCGIF handler
     *	@family: Address family
     *	@gifconf: Function handler
     *
     *	Register protocol dependent address dumping routines. The handler
     *	that is passed must not be freed or reused until it has been replaced
     *	by another handler.
     */
    int register_gifconf(unsigned int family, gifconf_func_t * gifconf)
    {
    	if (family >= NPROTO)
    		return -EINVAL;
    	gifconf_list[family] = gifconf;
    	return 0;
    }
    
    
    /*
     *	Map an interface index to its name (SIOCGIFNAME)
     */
    
    /*
     *	We need this ioctl for efficient implementation of the
     *	if_indextoname() function required by the IPv6 API.  Without
     *	it, we would have to search all the interfaces to find a
     *	match.  --pb
     */
    
    static int dev_ifname(struct ifreq __user *arg)
    {
    	struct net_device *dev;
    	struct ifreq ifr;
    
    	/*
    	 *	Fetch the caller's info block.
    	 */
    
    	if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
    		return -EFAULT;
    
    	read_lock(&dev_base_lock);
    	dev = __dev_get_by_index(ifr.ifr_ifindex);
    	if (!dev) {
    		read_unlock(&dev_base_lock);
    		return -ENODEV;
    	}
    
    	strcpy(ifr.ifr_name, dev->name);
    	read_unlock(&dev_base_lock);
    
    	if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
    		return -EFAULT;
    	return 0;
    }
    
    /*
     *	Perform a SIOCGIFCONF call. This structure will change
     *	size eventually, and there is nothing I can do about it.
     *	Thus we will need a 'compatibility mode'.
     */
    
    static int dev_ifconf(char __user *arg)
    {
    	struct ifconf ifc;
    	struct net_device *dev;
    	char __user *pos;
    	int len;
    	int total;
    	int i;
    
    	/*
    	 *	Fetch the caller's info block.
    	 */
    
    	if (copy_from_user(&ifc, arg, sizeof(struct ifconf)))
    		return -EFAULT;
    
    	pos = ifc.ifc_buf;
    	len = ifc.ifc_len;
    
    	/*
    	 *	Loop over the interfaces, and write an info block for each.
    	 */
    
    	total = 0;
    
    	for_each_netdev(dev) {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		for (i = 0; i < NPROTO; i++) {
    			if (gifconf_list[i]) {
    				int done;
    				if (!pos)
    					done = gifconf_list[i](dev, NULL, 0);
    				else
    					done = gifconf_list[i](dev, pos + total,
    							       len - total);
    				if (done < 0)
    					return -EFAULT;
    				total += done;
    			}
    		}
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    	/*
    	 *	All done.  Write the updated control block back to the caller.
    	 */
    	ifc.ifc_len = total;
    
    	/*
    	 * 	Both BSD and Solaris return 0 here, so we do too.
    	 */
    	return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0;
    }
    
    #ifdef CONFIG_PROC_FS
    /*
     *	This is invoked by the /proc filesystem handler to display a device
     *	in detail.
     */
    
    void *dev_seq_start(struct seq_file *seq, loff_t *pos)
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	struct net_device *dev;
    
    
    	read_lock(&dev_base_lock);
    	if (!*pos)
    		return SEQ_START_TOKEN;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    
    	off = 1;
    	for_each_netdev(dev)
    		if (off++ == *pos)
    			return dev;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    }
    
    void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
    {
    	++*pos;
    
    	return v == SEQ_START_TOKEN ?
    		first_net_device() : next_net_device((struct net_device *)v);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    }
    
    void dev_seq_stop(struct seq_file *seq, void *v)
    {
    	read_unlock(&dev_base_lock);
    }
    
    static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
    {
    
    	struct net_device_stats *stats = dev->get_stats(dev);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    
    	seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu "
    		   "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n",
    		   dev->name, stats->rx_bytes, stats->rx_packets,
    		   stats->rx_errors,
    		   stats->rx_dropped + stats->rx_missed_errors,
    		   stats->rx_fifo_errors,
    		   stats->rx_length_errors + stats->rx_over_errors +
    		    stats->rx_crc_errors + stats->rx_frame_errors,
    		   stats->rx_compressed, stats->multicast,
    		   stats->tx_bytes, stats->tx_packets,
    		   stats->tx_errors, stats->tx_dropped,
    		   stats->tx_fifo_errors, stats->collisions,
    		   stats->tx_carrier_errors +
    		    stats->tx_aborted_errors +
    		    stats->tx_window_errors +
    		    stats->tx_heartbeat_errors,
    		   stats->tx_compressed);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    }
    
    /*
     *	Called from the PROCfs module. This now uses the new arbitrary sized
     *	/proc/net interface to create /proc/net/dev
     */
    static int dev_seq_show(struct seq_file *seq, void *v)
    {
    	if (v == SEQ_START_TOKEN)
    		seq_puts(seq, "Inter-|   Receive                            "
    			      "                    |  Transmit\n"
    			      " face |bytes    packets errs drop fifo frame "
    			      "compressed multicast|bytes    packets errs "
    			      "drop fifo colls carrier compressed\n");
    	else
    		dev_seq_printf_stats(seq, v);
    	return 0;
    }
    
    static struct netif_rx_stats *softnet_get_online(loff_t *pos)
    {
    	struct netif_rx_stats *rc = NULL;
    
    	while (*pos < NR_CPUS)
    
    		if (cpu_online(*pos)) {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    			rc = &per_cpu(netdev_rx_stat, *pos);
    			break;
    		} else
    			++*pos;
    	return rc;
    }
    
    static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
    {
    	return softnet_get_online(pos);
    }
    
    static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
    {
    	++*pos;
    	return softnet_get_online(pos);
    }
    
    static void softnet_seq_stop(struct seq_file *seq, void *v)
    {
    }
    
    static int softnet_seq_show(struct seq_file *seq, void *v)
    {
    	struct netif_rx_stats *s = v;
    
    	seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
    
    		   s->total, s->dropped, s->time_squeeze, 0,
    
    		   0, 0, 0, 0, /* was fastroute */
    		   s->cpu_collision );
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	return 0;
    }
    
    
    static const struct seq_operations dev_seq_ops = {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	.start = dev_seq_start,
    	.next  = dev_seq_next,
    	.stop  = dev_seq_stop,
    	.show  = dev_seq_show,
    };
    
    static int dev_seq_open(struct inode *inode, struct file *file)
    {
    	return seq_open(file, &dev_seq_ops);
    }
    
    
    static const struct file_operations dev_seq_fops = {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	.owner	 = THIS_MODULE,
    	.open    = dev_seq_open,
    	.read    = seq_read,
    	.llseek  = seq_lseek,
    	.release = seq_release,
    };
    
    
    static const struct seq_operations softnet_seq_ops = {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	.start = softnet_seq_start,
    	.next  = softnet_seq_next,
    	.stop  = softnet_seq_stop,
    	.show  = softnet_seq_show,
    };
    
    static int softnet_seq_open(struct inode *inode, struct file *file)
    {
    	return seq_open(file, &softnet_seq_ops);
    }
    
    
    static const struct file_operations softnet_seq_fops = {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	.owner	 = THIS_MODULE,
    	.open    = softnet_seq_open,
    	.read    = seq_read,
    	.llseek  = seq_lseek,
    	.release = seq_release,
    };
    
    
    static void *ptype_get_idx(loff_t pos)
    {
    	struct packet_type *pt = NULL;
    	loff_t i = 0;
    	int t;
    
    	list_for_each_entry_rcu(pt, &ptype_all, list) {
    		if (i == pos)
    			return pt;
    		++i;
    	}
    
    	for (t = 0; t < 16; t++) {
    		list_for_each_entry_rcu(pt, &ptype_base[t], list) {
    			if (i == pos)
    				return pt;
    			++i;
    		}
    	}
    	return NULL;
    }
    
    static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
    {
    	rcu_read_lock();
    	return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
    }
    
    static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
    {
    	struct packet_type *pt;
    	struct list_head *nxt;
    	int hash;
    
    	++*pos;
    	if (v == SEQ_START_TOKEN)
    		return ptype_get_idx(0);
    
    	pt = v;
    	nxt = pt->list.next;
    	if (pt->type == htons(ETH_P_ALL)) {
    		if (nxt != &ptype_all)
    			goto found;
    		hash = 0;
    		nxt = ptype_base[0].next;
    	} else
    		hash = ntohs(pt->type) & 15;
    
    	while (nxt == &ptype_base[hash]) {
    		if (++hash >= 16)
    			return NULL;
    		nxt = ptype_base[hash].next;
    	}
    found:
    	return list_entry(nxt, struct packet_type, list);
    }
    
    static void ptype_seq_stop(struct seq_file *seq, void *v)
    {
    	rcu_read_unlock();
    }
    
    static void ptype_seq_decode(struct seq_file *seq, void *sym)
    {
    #ifdef CONFIG_KALLSYMS
    	unsigned long offset = 0, symsize;
    	const char *symname;
    	char *modname;
    	char namebuf[128];
    
    	symname = kallsyms_lookup((unsigned long)sym, &symsize, &offset,
    				  &modname, namebuf);
    
    	if (symname) {
    		char *delim = ":";
    
    		if (!modname)
    			modname = delim = "";
    		seq_printf(seq, "%s%s%s%s+0x%lx", delim, modname, delim,
    			   symname, offset);
    		return;
    	}
    #endif
    
    	seq_printf(seq, "[%p]", sym);
    }
    
    static int ptype_seq_show(struct seq_file *seq, void *v)
    {
    	struct packet_type *pt = v;
    
    	if (v == SEQ_START_TOKEN)
    		seq_puts(seq, "Type Device      Function\n");
    	else {
    		if (pt->type == htons(ETH_P_ALL))
    			seq_puts(seq, "ALL ");
    		else
    			seq_printf(seq, "%04x", ntohs(pt->type));
    
    		seq_printf(seq, " %-8s ",
    			   pt->dev ? pt->dev->name : "");
    		ptype_seq_decode(seq,  pt->func);
    		seq_putc(seq, '\n');
    	}
    
    	return 0;
    }
    
    static const struct seq_operations ptype_seq_ops = {
    	.start = ptype_seq_start,
    	.next  = ptype_seq_next,
    	.stop  = ptype_seq_stop,
    	.show  = ptype_seq_show,
    };
    
    static int ptype_seq_open(struct inode *inode, struct file *file)
    {
    	return seq_open(file, &ptype_seq_ops);
    }
    
    static const struct file_operations ptype_seq_fops = {
    	.owner	 = THIS_MODULE,
    	.open    = ptype_seq_open,
    	.read    = seq_read,
    	.llseek  = seq_lseek,
    	.release = seq_release,
    };
    
    
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    static int __init dev_proc_init(void)
    {
    	int rc = -ENOMEM;
    
    	if (!proc_net_fops_create("dev", S_IRUGO, &dev_seq_fops))
    		goto out;
    	if (!proc_net_fops_create("softnet_stat", S_IRUGO, &softnet_seq_fops))
    		goto out_dev;
    
    	if (!proc_net_fops_create("ptype", S_IRUGO, &ptype_seq_fops))
    		goto out_dev2;
    
    
    	if (wext_proc_init())
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		goto out_softnet;
    	rc = 0;
    out:
    	return rc;
    out_softnet:
    
    	proc_net_remove("ptype");
    
    out_dev2:
    	proc_net_remove("softnet_stat");
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    out_dev:
    	proc_net_remove("dev");
    	goto out;
    }
    #else
    #define dev_proc_init() 0
    #endif	/* CONFIG_PROC_FS */
    
    
    /**
     *	netdev_set_master	-	set up master/slave pair
     *	@slave: slave device
     *	@master: new master device
     *
     *	Changes the master device of the slave. Pass %NULL to break the
     *	bonding. The caller must hold the RTNL semaphore. On a failure
     *	a negative errno code is returned. On success the reference counts
     *	are adjusted, %RTM_NEWLINK is sent to the routing socket and the
     *	function returns zero.
     */
    int netdev_set_master(struct net_device *slave, struct net_device *master)
    {
    	struct net_device *old = slave->master;
    
    	ASSERT_RTNL();
    
    	if (master) {
    		if (old)
    			return -EBUSY;
    		dev_hold(master);
    	}
    
    	slave->master = master;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	synchronize_net();
    
    	if (old)
    		dev_put(old);
    
    	if (master)
    		slave->flags |= IFF_SLAVE;
    	else
    		slave->flags &= ~IFF_SLAVE;
    
    	rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE);
    	return 0;
    }
    
    /**
     *	dev_set_promiscuity	- update promiscuity count on a device
     *	@dev: device
     *	@inc: modifier
     *
    
     *	Add or remove promiscuity from a device. While the count in the device
    
    Linus Torvalds's avatar
    Linus Torvalds committed
     *	remains above zero the interface remains promiscuous. Once it hits zero
     *	the device reverts back to normal filtering operation. A negative inc
     *	value is used to drop promiscuity on the device.
     */
    void dev_set_promiscuity(struct net_device *dev, int inc)
    {
    	unsigned short old_flags = dev->flags;
    
    	if ((dev->promiscuity += inc) == 0)
    		dev->flags &= ~IFF_PROMISC;
    
    	else
    		dev->flags |= IFF_PROMISC;
    	if (dev->flags != old_flags) {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		dev_mc_upload(dev);
    		printk(KERN_INFO "device %s %s promiscuous mode\n",
    		       dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
    
    Steve Grubb's avatar
    Steve Grubb committed
    		audit_log(current->audit_context, GFP_ATOMIC,
    			AUDIT_ANOM_PROMISCUOUS,
    			"dev=%s prom=%d old_prom=%d auid=%u",
    			dev->name, (dev->flags & IFF_PROMISC),
    			(old_flags & IFF_PROMISC),
    
    			audit_get_loginuid(current->audit_context));
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	}
    }
    
    /**
     *	dev_set_allmulti	- update allmulti count on a device
     *	@dev: device
     *	@inc: modifier
     *
     *	Add or remove reception of all multicast frames to a device. While the
     *	count in the device remains above zero the interface remains listening
     *	to all interfaces. Once it hits zero the device reverts back to normal
     *	filtering operation. A negative @inc value is used to drop the counter
     *	when releasing a resource needing all multicasts.
     */
    
    void dev_set_allmulti(struct net_device *dev, int inc)
    {
    	unsigned short old_flags = dev->flags;
    
    	dev->flags |= IFF_ALLMULTI;
    	if ((dev->allmulti += inc) == 0)
    		dev->flags &= ~IFF_ALLMULTI;
    	if (dev->flags ^ old_flags)
    		dev_mc_upload(dev);
    }
    
    unsigned dev_get_flags(const struct net_device *dev)
    {
    	unsigned flags;
    
    	flags = (dev->flags & ~(IFF_PROMISC |
    				IFF_ALLMULTI |
    
    				IFF_RUNNING |
    				IFF_LOWER_UP |
    				IFF_DORMANT)) |
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		(dev->gflags & (IFF_PROMISC |
    				IFF_ALLMULTI));
    
    
    	if (netif_running(dev)) {
    		if (netif_oper_up(dev))
    			flags |= IFF_RUNNING;
    		if (netif_carrier_ok(dev))
    			flags |= IFF_LOWER_UP;
    		if (netif_dormant(dev))
    			flags |= IFF_DORMANT;
    	}
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    	return flags;
    }
    
    int dev_change_flags(struct net_device *dev, unsigned flags)
    {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	int old_flags = dev->flags;
    
    	/*
    	 *	Set the flags on our device.
    	 */
    
    	dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
    			       IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
    			       IFF_AUTOMEDIA)) |
    		     (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
    				    IFF_ALLMULTI));
    
    	/*
    	 *	Load in the correct multicast list now the flags have changed.
    	 */
    
    	dev_mc_upload(dev);
    
    	/*
    	 *	Have we downed the interface. We handle IFF_UP ourselves
    	 *	according to user attempts to set it, rather than blindly
    	 *	setting it.
    	 */
    
    	ret = 0;
    	if ((old_flags ^ flags) & IFF_UP) {	/* Bit is different  ? */
    		ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev);
    
    		if (!ret)
    			dev_mc_upload(dev);
    	}
    
    	if (dev->flags & IFF_UP &&
    	    ((old_flags ^ dev->flags) &~ (IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
    					  IFF_VOLATILE)))
    
    		raw_notifier_call_chain(&netdev_chain,
    
    				NETDEV_CHANGE, dev);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    	if ((flags ^ dev->gflags) & IFF_PROMISC) {
    		int inc = (flags & IFF_PROMISC) ? +1 : -1;
    		dev->gflags ^= IFF_PROMISC;
    		dev_set_promiscuity(dev, inc);
    	}
    
    	/* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
    	   is important. Some (broken) drivers set IFF_PROMISC, when
    	   IFF_ALLMULTI is requested not asking us and not reporting.
    	 */
    	if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
    		int inc = (flags & IFF_ALLMULTI) ? +1 : -1;
    		dev->gflags ^= IFF_ALLMULTI;
    		dev_set_allmulti(dev, inc);
    	}
    
    
    	/* Exclude state transition flags, already notified */
    	changes = (old_flags ^ dev->flags) & ~(IFF_UP | IFF_RUNNING);
    	if (changes)
    		rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    	return ret;
    }
    
    int dev_set_mtu(struct net_device *dev, int new_mtu)
    {
    	int err;
    
    	if (new_mtu == dev->mtu)
    		return 0;
    
    	/*	MTU must be positive.	 */
    	if (new_mtu < 0)
    		return -EINVAL;
    
    	if (!netif_device_present(dev))
    		return -ENODEV;
    
    	err = 0;
    	if (dev->change_mtu)
    		err = dev->change_mtu(dev, new_mtu);
    	else
    		dev->mtu = new_mtu;
    	if (!err && dev->flags & IFF_UP)
    
    		raw_notifier_call_chain(&netdev_chain,
    
    				NETDEV_CHANGEMTU, dev);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	return err;
    }
    
    int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
    {
    	int err;
    
    	if (!dev->set_mac_address)
    		return -EOPNOTSUPP;
    	if (sa->sa_family != dev->type)
    		return -EINVAL;
    	if (!netif_device_present(dev))
    		return -ENODEV;
    	err = dev->set_mac_address(dev, sa);
    	if (!err)
    
    		raw_notifier_call_chain(&netdev_chain,
    
    				NETDEV_CHANGEADDR, dev);
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	return err;
    }
    
    /*
     *	Perform the SIOCxIFxxx calls.
     */
    static int dev_ifsioc(struct ifreq *ifr, unsigned int cmd)
    {
    	int err;
    	struct net_device *dev = __dev_get_by_name(ifr->ifr_name);
    
    	if (!dev)
    		return -ENODEV;
    
    	switch (cmd) {
    		case SIOCGIFFLAGS:	/* Get interface flags */
    			ifr->ifr_flags = dev_get_flags(dev);
    			return 0;
    
    		case SIOCSIFFLAGS:	/* Set interface flags */
    			return dev_change_flags(dev, ifr->ifr_flags);
    
    		case SIOCGIFMETRIC:	/* Get the metric on the interface
    					   (currently unused) */
    			ifr->ifr_metric = 0;
    			return 0;
    
    		case SIOCSIFMETRIC:	/* Set the metric on the interface
    					   (currently unused) */
    			return -EOPNOTSUPP;
    
    		case SIOCGIFMTU:	/* Get the MTU of a device */
    			ifr->ifr_mtu = dev->mtu;
    			return 0;
    
    		case SIOCSIFMTU:	/* Set the MTU of a device */
    			return dev_set_mtu(dev, ifr->ifr_mtu);
    
    		case SIOCGIFHWADDR:
    			if (!dev->addr_len)
    				memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data);
    			else
    				memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr,
    				       min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
    			ifr->ifr_hwaddr.sa_family = dev->type;
    			return 0;
    
    		case SIOCSIFHWADDR:
    			return dev_set_mac_address(dev, &ifr->ifr_hwaddr);
    
    		case SIOCSIFHWBROADCAST:
    			if (ifr->ifr_hwaddr.sa_family != dev->type)
    				return -EINVAL;
    			memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
    			       min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len));
    
    			raw_notifier_call_chain(&netdev_chain,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    					    NETDEV_CHANGEADDR, dev);
    			return 0;
    
    		case SIOCGIFMAP:
    			ifr->ifr_map.mem_start = dev->mem_start;
    			ifr->ifr_map.mem_end   = dev->mem_end;
    			ifr->ifr_map.base_addr = dev->base_addr;
    			ifr->ifr_map.irq       = dev->irq;
    			ifr->ifr_map.dma       = dev->dma;
    			ifr->ifr_map.port      = dev->if_port;
    			return 0;
    
    		case SIOCSIFMAP:
    			if (dev->set_config) {
    				if (!netif_device_present(dev))
    					return -ENODEV;
    				return dev->set_config(dev, &ifr->ifr_map);
    			}
    			return -EOPNOTSUPP;
    
    		case SIOCADDMULTI:
    			if (!dev->set_multicast_list ||
    			    ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
    				return -EINVAL;
    			if (!netif_device_present(dev))
    				return -ENODEV;
    			return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data,
    					  dev->addr_len, 1);
    
    		case SIOCDELMULTI:
    			if (!dev->set_multicast_list ||
    			    ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
    				return -EINVAL;
    			if (!netif_device_present(dev))
    				return -ENODEV;
    			return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data,
    					     dev->addr_len, 1);
    
    		case SIOCGIFINDEX:
    			ifr->ifr_ifindex = dev->ifindex;
    			return 0;
    
    		case SIOCGIFTXQLEN:
    			ifr->ifr_qlen = dev->tx_queue_len;
    			return 0;
    
    		case SIOCSIFTXQLEN:
    			if (ifr->ifr_qlen < 0)
    				return -EINVAL;
    			dev->tx_queue_len = ifr->ifr_qlen;
    			return 0;
    
    		case SIOCSIFNAME:
    			ifr->ifr_newname[IFNAMSIZ-1] = '\0';
    			return dev_change_name(dev, ifr->ifr_newname);
    
    		/*
    		 *	Unknown or private ioctl
    		 */
    
    		default:
    			if ((cmd >= SIOCDEVPRIVATE &&
    			    cmd <= SIOCDEVPRIVATE + 15) ||
    			    cmd == SIOCBONDENSLAVE ||
    			    cmd == SIOCBONDRELEASE ||
    			    cmd == SIOCBONDSETHWADDR ||
    			    cmd == SIOCBONDSLAVEINFOQUERY ||
    			    cmd == SIOCBONDINFOQUERY ||
    			    cmd == SIOCBONDCHANGEACTIVE ||
    			    cmd == SIOCGMIIPHY ||
    			    cmd == SIOCGMIIREG ||
    			    cmd == SIOCSMIIREG ||
    			    cmd == SIOCBRADDIF ||
    			    cmd == SIOCBRDELIF ||
    			    cmd == SIOCWANDEV) {
    				err = -EOPNOTSUPP;
    				if (dev->do_ioctl) {
    					if (netif_device_present(dev))
    						err = dev->do_ioctl(dev, ifr,
    								    cmd);
    					else
    						err = -ENODEV;
    				}
    			} else
    				err = -EINVAL;
    
    	}
    	return err;
    }
    
    /*
     *	This function handles all "interface"-type I/O control requests. The actual
     *	'doing' part of this is dev_ifsioc above.
     */
    
    /**
     *	dev_ioctl	-	network device ioctl
     *	@cmd: command to issue
     *	@arg: pointer to a struct ifreq in user space
     *
     *	Issue ioctl functions to devices. This is normally called by the
     *	user space syscall interfaces but can sometimes be useful for
     *	other purposes. The return value is the return from the syscall if
     *	positive or a negative errno code on error.
     */
    
    int dev_ioctl(unsigned int cmd, void __user *arg)
    {
    	struct ifreq ifr;
    	int ret;
    	char *colon;
    
    	/* One special case: SIOCGIFCONF takes ifconf argument
    	   and requires shared lock, because it sleeps writing
    	   to user space.
    	 */
    
    	if (cmd == SIOCGIFCONF) {
    
    		rtnl_lock();
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		ret = dev_ifconf((char __user *) arg);
    
    		rtnl_unlock();
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		return ret;
    	}
    	if (cmd == SIOCGIFNAME)
    		return dev_ifname((struct ifreq __user *)arg);
    
    	if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
    		return -EFAULT;
    
    	ifr.ifr_name[IFNAMSIZ-1] = 0;
    
    	colon = strchr(ifr.ifr_name, ':');
    	if (colon)
    		*colon = 0;
    
    	/*
    	 *	See which interface the caller is talking about.
    	 */
    
    	switch (cmd) {
    		/*
    		 *	These ioctl calls:
    		 *	- can be done by all.
    		 *	- atomic and do not require locking.
    		 *	- return a value
    		 */
    		case SIOCGIFFLAGS:
    		case SIOCGIFMETRIC:
    		case SIOCGIFMTU:
    		case SIOCGIFHWADDR:
    		case SIOCGIFSLAVE:
    		case SIOCGIFMAP:
    		case SIOCGIFINDEX:
    		case SIOCGIFTXQLEN:
    			dev_load(ifr.ifr_name);
    			read_lock(&dev_base_lock);
    			ret = dev_ifsioc(&ifr, cmd);
    			read_unlock(&dev_base_lock);
    			if (!ret) {
    				if (colon)
    					*colon = ':';
    				if (copy_to_user(arg, &ifr,
    						 sizeof(struct ifreq)))
    					ret = -EFAULT;
    			}
    			return ret;
    
    		case SIOCETHTOOL:
    			dev_load(ifr.ifr_name);
    			rtnl_lock();
    			ret = dev_ethtool(&ifr);
    			rtnl_unlock();
    			if (!ret) {
    				if (colon)
    					*colon = ':';
    				if (copy_to_user(arg, &ifr,
    						 sizeof(struct ifreq)))
    					ret = -EFAULT;
    			}
    			return ret;
    
    		/*
    		 *	These ioctl calls:
    		 *	- require superuser power.
    		 *	- require strict serialization.
    		 *	- return a value
    		 */
    		case SIOCGMIIPHY:
    		case SIOCGMIIREG:
    		case SIOCSIFNAME:
    			if (!capable(CAP_NET_ADMIN))
    				return -EPERM;
    			dev_load(ifr.ifr_name);
    			rtnl_lock();
    			ret = dev_ifsioc(&ifr, cmd);
    			rtnl_unlock();
    			if (!ret) {
    				if (colon)
    					*colon = ':';
    				if (copy_to_user(arg, &ifr,
    						 sizeof(struct ifreq)))
    					ret = -EFAULT;
    			}
    			return ret;
    
    		/*
    		 *	These ioctl calls:
    		 *	- require superuser power.
    		 *	- require strict serialization.
    		 *	- do not return a value
    		 */
    		case SIOCSIFFLAGS:
    		case SIOCSIFMETRIC:
    		case SIOCSIFMTU:
    		case SIOCSIFMAP:
    		case SIOCSIFHWADDR:
    		case SIOCSIFSLAVE:
    		case SIOCADDMULTI:
    		case SIOCDELMULTI:
    		case SIOCSIFHWBROADCAST:
    		case SIOCSIFTXQLEN:
    		case SIOCSMIIREG:
    		case SIOCBONDENSLAVE:
    		case SIOCBONDRELEASE:
    		case SIOCBONDSETHWADDR:
    		case SIOCBONDCHANGEACTIVE:
    		case SIOCBRADDIF:
    		case SIOCBRDELIF:
    			if (!capable(CAP_NET_ADMIN))
    				return -EPERM;
    
    			/* fall through */
    		case SIOCBONDSLAVEINFOQUERY:
    		case SIOCBONDINFOQUERY:
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    			dev_load(ifr.ifr_name);
    			rtnl_lock();
    			ret = dev_ifsioc(&ifr, cmd);
    			rtnl_unlock();
    			return ret;
    
    		case SIOCGIFMEM:
    			/* Get the per device memory space. We can add this but
    			 * currently do not support it */
    		case SIOCSIFMEM:
    			/* Set the per device memory buffer space.
    			 * Not applicable in our case */
    		case SIOCSIFLINK:
    			return -EINVAL;
    
    		/*
    		 *	Unknown or private ioctl.
    		 */
    		default:
    			if (cmd == SIOCWANDEV ||
    			    (cmd >= SIOCDEVPRIVATE &&
    			     cmd <= SIOCDEVPRIVATE + 15)) {
    				dev_load(ifr.ifr_name);
    				rtnl_lock();
    				ret = dev_ifsioc(&ifr, cmd);
    				rtnl_unlock();
    				if (!ret && copy_to_user(arg, &ifr,
    							 sizeof(struct ifreq)))
    					ret = -EFAULT;
    				return ret;