blob: 602b1419998cae123527735926af7e77e6a17c91 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net-sysfs.c - network device class and attributes
3 *
4 * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/netdevice.h>
15#include <linux/if_arp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070017#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <net/sock.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070019#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/rtnetlink.h>
21#include <linux/wireless.h>
Tom Herbertfec5e652010-04-16 16:01:27 -070022#include <linux/vmalloc.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040023#include <linux/export.h>
Johannes Berg8f1546c2009-09-28 15:26:43 +020024#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Pavel Emelyanov342709e2007-10-23 21:14:45 -070026#include "net-sysfs.h"
27
Eric W. Biederman8b41d182007-09-26 22:02:53 -070028#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static const char fmt_hex[] = "%#x\n";
David S. Millerd1102b52005-05-29 20:28:25 -070030static const char fmt_long_hex[] = "%#lx\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static const char fmt_dec[] = "%d\n";
David Decotigny8ae6dac2011-04-27 18:32:38 +000032static const char fmt_udec[] = "%u\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static const char fmt_ulong[] = "%lu\n";
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +000034static const char fmt_u64[] = "%llu\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090036static inline int dev_isalive(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -070038 return dev->reg_state <= NETREG_REGISTERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41/* use same locking rules as GIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070042static ssize_t netdev_show(const struct device *dev,
43 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 ssize_t (*format)(const struct net_device *, char *))
45{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070046 struct net_device *net = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 ssize_t ret = -EINVAL;
48
49 read_lock(&dev_base_lock);
50 if (dev_isalive(net))
51 ret = (*format)(net, buf);
52 read_unlock(&dev_base_lock);
53
54 return ret;
55}
56
57/* generate a show function for simple field */
58#define NETDEVICE_SHOW(field, format_string) \
59static ssize_t format_##field(const struct net_device *net, char *buf) \
60{ \
61 return sprintf(buf, format_string, net->field); \
62} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070063static ssize_t show_##field(struct device *dev, \
64 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070066 return netdev_show(dev, attr, buf, format_##field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69
70/* use same locking and permission rules as SIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070071static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 const char *buf, size_t len,
73 int (*set)(struct net_device *, unsigned long))
74{
75 struct net_device *net = to_net_dev(dev);
76 char *endp;
77 unsigned long new;
78 int ret = -EINVAL;
79
80 if (!capable(CAP_NET_ADMIN))
81 return -EPERM;
82
83 new = simple_strtoul(buf, &endp, 0);
84 if (endp == buf)
85 goto err;
86
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000087 if (!rtnl_trylock())
Eric W. Biederman336ca572009-05-13 16:57:25 +000088 return restart_syscall();
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (dev_isalive(net)) {
91 if ((ret = (*set)(net, new)) == 0)
92 ret = len;
93 }
94 rtnl_unlock();
95 err:
96 return ret;
97}
98
David Woodhouse9d296722008-04-20 16:07:43 -070099NETDEVICE_SHOW(dev_id, fmt_hex);
Stefan Assmannc1f79422010-07-22 02:50:21 +0000100NETDEVICE_SHOW(addr_assign_type, fmt_dec);
Kay Sieversfd586ba2005-12-19 01:42:56 +0100101NETDEVICE_SHOW(addr_len, fmt_dec);
102NETDEVICE_SHOW(iflink, fmt_dec);
103NETDEVICE_SHOW(ifindex, fmt_dec);
Kay Sieversfd586ba2005-12-19 01:42:56 +0100104NETDEVICE_SHOW(type, fmt_dec);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800105NETDEVICE_SHOW(link_mode, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/* use same locking rules as GIFHWADDR ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700108static ssize_t show_address(struct device *dev, struct device_attribute *attr,
109 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct net_device *net = to_net_dev(dev);
112 ssize_t ret = -EINVAL;
113
114 read_lock(&dev_base_lock);
115 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800116 ret = sysfs_format_mac(buf, net->dev_addr, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 read_unlock(&dev_base_lock);
118 return ret;
119}
120
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700121static ssize_t show_broadcast(struct device *dev,
122 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct net_device *net = to_net_dev(dev);
125 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800126 return sysfs_format_mac(buf, net->broadcast, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return -EINVAL;
128}
129
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700130static ssize_t show_carrier(struct device *dev,
131 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct net_device *netdev = to_net_dev(dev);
134 if (netif_running(netdev)) {
135 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
136 }
137 return -EINVAL;
138}
139
Andy Gospodarekd519e172009-10-02 09:26:12 +0000140static ssize_t show_speed(struct device *dev,
141 struct device_attribute *attr, char *buf)
142{
143 struct net_device *netdev = to_net_dev(dev);
144 int ret = -EINVAL;
145
146 if (!rtnl_trylock())
147 return restart_syscall();
148
David Decotigny8ae6dac2011-04-27 18:32:38 +0000149 if (netif_running(netdev)) {
150 struct ethtool_cmd cmd;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000151 if (!__ethtool_get_settings(netdev, &cmd))
David Decotigny8ae6dac2011-04-27 18:32:38 +0000152 ret = sprintf(buf, fmt_udec, ethtool_cmd_speed(&cmd));
Andy Gospodarekd519e172009-10-02 09:26:12 +0000153 }
154 rtnl_unlock();
155 return ret;
156}
157
158static ssize_t show_duplex(struct device *dev,
159 struct device_attribute *attr, char *buf)
160{
161 struct net_device *netdev = to_net_dev(dev);
162 int ret = -EINVAL;
163
164 if (!rtnl_trylock())
165 return restart_syscall();
166
David Decotigny8ae6dac2011-04-27 18:32:38 +0000167 if (netif_running(netdev)) {
168 struct ethtool_cmd cmd;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000169 if (!__ethtool_get_settings(netdev, &cmd))
David Decotigny8ae6dac2011-04-27 18:32:38 +0000170 ret = sprintf(buf, "%s\n",
171 cmd.duplex ? "full" : "half");
Andy Gospodarekd519e172009-10-02 09:26:12 +0000172 }
173 rtnl_unlock();
174 return ret;
175}
176
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700177static ssize_t show_dormant(struct device *dev,
178 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800179{
180 struct net_device *netdev = to_net_dev(dev);
181
182 if (netif_running(netdev))
183 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
184
185 return -EINVAL;
186}
187
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700188static const char *const operstates[] = {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800189 "unknown",
190 "notpresent", /* currently unused */
191 "down",
192 "lowerlayerdown",
193 "testing", /* currently unused */
194 "dormant",
195 "up"
196};
197
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700198static ssize_t show_operstate(struct device *dev,
199 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800200{
201 const struct net_device *netdev = to_net_dev(dev);
202 unsigned char operstate;
203
204 read_lock(&dev_base_lock);
205 operstate = netdev->operstate;
206 if (!netif_running(netdev))
207 operstate = IF_OPER_DOWN;
208 read_unlock(&dev_base_lock);
209
Adrian Bunke3a5cd92006-04-05 22:19:47 -0700210 if (operstate >= ARRAY_SIZE(operstates))
Stefan Rompfb00055a2006-03-20 17:09:11 -0800211 return -EINVAL; /* should not happen */
212
213 return sprintf(buf, "%s\n", operstates[operstate]);
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/* read-write attributes */
217NETDEVICE_SHOW(mtu, fmt_dec);
218
219static int change_mtu(struct net_device *net, unsigned long new_mtu)
220{
221 return dev_set_mtu(net, (int) new_mtu);
222}
223
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700224static ssize_t store_mtu(struct device *dev, struct device_attribute *attr,
225 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700227 return netdev_store(dev, attr, buf, len, change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230NETDEVICE_SHOW(flags, fmt_hex);
231
232static int change_flags(struct net_device *net, unsigned long new_flags)
233{
234 return dev_change_flags(net, (unsigned) new_flags);
235}
236
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700237static ssize_t store_flags(struct device *dev, struct device_attribute *attr,
238 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700240 return netdev_store(dev, attr, buf, len, change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
244
245static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
246{
247 net->tx_queue_len = new_len;
248 return 0;
249}
250
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700251static ssize_t store_tx_queue_len(struct device *dev,
252 struct device_attribute *attr,
253 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700255 return netdev_store(dev, attr, buf, len, change_tx_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700258static ssize_t store_ifalias(struct device *dev, struct device_attribute *attr,
259 const char *buf, size_t len)
260{
261 struct net_device *netdev = to_net_dev(dev);
262 size_t count = len;
263 ssize_t ret;
264
265 if (!capable(CAP_NET_ADMIN))
266 return -EPERM;
267
268 /* ignore trailing newline */
269 if (len > 0 && buf[len - 1] == '\n')
270 --count;
271
Eric W. Biederman336ca572009-05-13 16:57:25 +0000272 if (!rtnl_trylock())
273 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700274 ret = dev_set_alias(netdev, buf, count);
275 rtnl_unlock();
276
277 return ret < 0 ? ret : len;
278}
279
280static ssize_t show_ifalias(struct device *dev,
281 struct device_attribute *attr, char *buf)
282{
283 const struct net_device *netdev = to_net_dev(dev);
284 ssize_t ret = 0;
285
Eric W. Biederman336ca572009-05-13 16:57:25 +0000286 if (!rtnl_trylock())
287 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700288 if (netdev->ifalias)
289 ret = sprintf(buf, "%s\n", netdev->ifalias);
290 rtnl_unlock();
291 return ret;
292}
293
Vlad Dogarua512b922011-01-24 03:37:29 +0000294NETDEVICE_SHOW(group, fmt_dec);
295
296static int change_group(struct net_device *net, unsigned long new_group)
297{
298 dev_set_group(net, (int) new_group);
299 return 0;
300}
301
302static ssize_t store_group(struct device *dev, struct device_attribute *attr,
303 const char *buf, size_t len)
304{
305 return netdev_store(dev, attr, buf, len, change_group);
306}
307
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700308static struct device_attribute net_class_attributes[] = {
Stefan Assmannc1f79422010-07-22 02:50:21 +0000309 __ATTR(addr_assign_type, S_IRUGO, show_addr_assign_type, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100310 __ATTR(addr_len, S_IRUGO, show_addr_len, NULL),
David Woodhouse9d296722008-04-20 16:07:43 -0700311 __ATTR(dev_id, S_IRUGO, show_dev_id, NULL),
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700312 __ATTR(ifalias, S_IRUGO | S_IWUSR, show_ifalias, store_ifalias),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100313 __ATTR(iflink, S_IRUGO, show_iflink, NULL),
314 __ATTR(ifindex, S_IRUGO, show_ifindex, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100315 __ATTR(type, S_IRUGO, show_type, NULL),
Stefan Rompfb00055a2006-03-20 17:09:11 -0800316 __ATTR(link_mode, S_IRUGO, show_link_mode, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100317 __ATTR(address, S_IRUGO, show_address, NULL),
318 __ATTR(broadcast, S_IRUGO, show_broadcast, NULL),
319 __ATTR(carrier, S_IRUGO, show_carrier, NULL),
Andy Gospodarekd519e172009-10-02 09:26:12 +0000320 __ATTR(speed, S_IRUGO, show_speed, NULL),
321 __ATTR(duplex, S_IRUGO, show_duplex, NULL),
Stefan Rompfb00055a2006-03-20 17:09:11 -0800322 __ATTR(dormant, S_IRUGO, show_dormant, NULL),
323 __ATTR(operstate, S_IRUGO, show_operstate, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100324 __ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu),
325 __ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags),
326 __ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
327 store_tx_queue_len),
Xiaotian Fengb6644cb2011-02-09 19:16:15 -0800328 __ATTR(netdev_group, S_IRUGO | S_IWUSR, show_group, store_group),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100329 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330};
331
332/* Show a given an attribute in the statistics group */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700333static ssize_t netstat_show(const struct device *d,
334 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 unsigned long offset)
336{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700337 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ssize_t ret = -EINVAL;
339
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000340 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
341 offset % sizeof(u64) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 read_lock(&dev_base_lock);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700344 if (dev_isalive(dev)) {
Eric Dumazet28172732010-07-07 14:58:56 -0700345 struct rtnl_link_stats64 temp;
346 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
347
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000348 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *) stats) + offset));
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 read_unlock(&dev_base_lock);
351 return ret;
352}
353
354/* generate a read-only statistics attribute */
355#define NETSTAT_ENTRY(name) \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700356static ssize_t show_##name(struct device *d, \
357 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700359 return netstat_show(d, attr, buf, \
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000360 offsetof(struct rtnl_link_stats64, name)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700362static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364NETSTAT_ENTRY(rx_packets);
365NETSTAT_ENTRY(tx_packets);
366NETSTAT_ENTRY(rx_bytes);
367NETSTAT_ENTRY(tx_bytes);
368NETSTAT_ENTRY(rx_errors);
369NETSTAT_ENTRY(tx_errors);
370NETSTAT_ENTRY(rx_dropped);
371NETSTAT_ENTRY(tx_dropped);
372NETSTAT_ENTRY(multicast);
373NETSTAT_ENTRY(collisions);
374NETSTAT_ENTRY(rx_length_errors);
375NETSTAT_ENTRY(rx_over_errors);
376NETSTAT_ENTRY(rx_crc_errors);
377NETSTAT_ENTRY(rx_frame_errors);
378NETSTAT_ENTRY(rx_fifo_errors);
379NETSTAT_ENTRY(rx_missed_errors);
380NETSTAT_ENTRY(tx_aborted_errors);
381NETSTAT_ENTRY(tx_carrier_errors);
382NETSTAT_ENTRY(tx_fifo_errors);
383NETSTAT_ENTRY(tx_heartbeat_errors);
384NETSTAT_ENTRY(tx_window_errors);
385NETSTAT_ENTRY(rx_compressed);
386NETSTAT_ENTRY(tx_compressed);
387
388static struct attribute *netstat_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700389 &dev_attr_rx_packets.attr,
390 &dev_attr_tx_packets.attr,
391 &dev_attr_rx_bytes.attr,
392 &dev_attr_tx_bytes.attr,
393 &dev_attr_rx_errors.attr,
394 &dev_attr_tx_errors.attr,
395 &dev_attr_rx_dropped.attr,
396 &dev_attr_tx_dropped.attr,
397 &dev_attr_multicast.attr,
398 &dev_attr_collisions.attr,
399 &dev_attr_rx_length_errors.attr,
400 &dev_attr_rx_over_errors.attr,
401 &dev_attr_rx_crc_errors.attr,
402 &dev_attr_rx_frame_errors.attr,
403 &dev_attr_rx_fifo_errors.attr,
404 &dev_attr_rx_missed_errors.attr,
405 &dev_attr_tx_aborted_errors.attr,
406 &dev_attr_tx_carrier_errors.attr,
407 &dev_attr_tx_fifo_errors.attr,
408 &dev_attr_tx_heartbeat_errors.attr,
409 &dev_attr_tx_window_errors.attr,
410 &dev_attr_rx_compressed.attr,
411 &dev_attr_tx_compressed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 NULL
413};
414
415
416static struct attribute_group netstat_group = {
417 .name = "statistics",
418 .attrs = netstat_attrs,
419};
420
Johannes Berg22bb1be2008-07-10 11:16:47 +0200421#ifdef CONFIG_WIRELESS_EXT_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/* helper function that does all the locking etc for wireless stats */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700423static ssize_t wireless_show(struct device *d, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 ssize_t (*format)(const struct iw_statistics *,
425 char *))
426{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700427 struct net_device *dev = to_net_dev(d);
Johannes Berg8f1546c2009-09-28 15:26:43 +0200428 const struct iw_statistics *iw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 ssize_t ret = -EINVAL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900430
Eric W. Biedermanb8afe642010-02-19 13:23:47 +0000431 if (!rtnl_trylock())
432 return restart_syscall();
Andrey Borzenkov6dd214b2006-01-09 20:51:28 -0800433 if (dev_isalive(dev)) {
Johannes Berg8f1546c2009-09-28 15:26:43 +0200434 iw = get_wireless_stats(dev);
435 if (iw)
Andrey Borzenkov6dd214b2006-01-09 20:51:28 -0800436 ret = (*format)(iw, buf);
437 }
Johannes Berga160ee62009-10-05 02:22:23 -0700438 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 return ret;
441}
442
443/* show function template for wireless fields */
444#define WIRELESS_SHOW(name, field, format_string) \
445static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
446{ \
447 return sprintf(buf, format_string, iw->field); \
448} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700449static ssize_t show_iw_##name(struct device *d, \
450 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700452 return wireless_show(d, buf, format_iw_##name); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700454static DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456WIRELESS_SHOW(status, status, fmt_hex);
457WIRELESS_SHOW(link, qual.qual, fmt_dec);
458WIRELESS_SHOW(level, qual.level, fmt_dec);
459WIRELESS_SHOW(noise, qual.noise, fmt_dec);
460WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
461WIRELESS_SHOW(crypt, discard.code, fmt_dec);
462WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
463WIRELESS_SHOW(misc, discard.misc, fmt_dec);
464WIRELESS_SHOW(retries, discard.retries, fmt_dec);
465WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
466
467static struct attribute *wireless_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700468 &dev_attr_status.attr,
469 &dev_attr_link.attr,
470 &dev_attr_level.attr,
471 &dev_attr_noise.attr,
472 &dev_attr_nwid.attr,
473 &dev_attr_crypt.attr,
474 &dev_attr_fragment.attr,
475 &dev_attr_retries.attr,
476 &dev_attr_misc.attr,
477 &dev_attr_beacon.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 NULL
479};
480
481static struct attribute_group wireless_group = {
482 .name = "wireless",
483 .attrs = wireless_attrs,
484};
485#endif
Eric W. Biedermand6523dd2010-05-16 21:59:45 -0700486#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Stephen Rothwell30bde1f2010-03-29 01:00:44 -0700488#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000489/*
490 * RX queue sysfs structures and functions.
491 */
492struct rx_queue_attribute {
493 struct attribute attr;
494 ssize_t (*show)(struct netdev_rx_queue *queue,
495 struct rx_queue_attribute *attr, char *buf);
496 ssize_t (*store)(struct netdev_rx_queue *queue,
497 struct rx_queue_attribute *attr, const char *buf, size_t len);
498};
499#define to_rx_queue_attr(_attr) container_of(_attr, \
500 struct rx_queue_attribute, attr)
501
502#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
503
504static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
505 char *buf)
506{
507 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
508 struct netdev_rx_queue *queue = to_rx_queue(kobj);
509
510 if (!attribute->show)
511 return -EIO;
512
513 return attribute->show(queue, attribute, buf);
514}
515
516static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
517 const char *buf, size_t count)
518{
519 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
520 struct netdev_rx_queue *queue = to_rx_queue(kobj);
521
522 if (!attribute->store)
523 return -EIO;
524
525 return attribute->store(queue, attribute, buf, count);
526}
527
stephen hemmingerfa50d642010-08-31 12:14:13 +0000528static const struct sysfs_ops rx_queue_sysfs_ops = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000529 .show = rx_queue_attr_show,
530 .store = rx_queue_attr_store,
531};
532
533static ssize_t show_rps_map(struct netdev_rx_queue *queue,
534 struct rx_queue_attribute *attribute, char *buf)
535{
536 struct rps_map *map;
537 cpumask_var_t mask;
538 size_t len = 0;
539 int i;
540
541 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
542 return -ENOMEM;
543
544 rcu_read_lock();
545 map = rcu_dereference(queue->rps_map);
546 if (map)
547 for (i = 0; i < map->len; i++)
548 cpumask_set_cpu(map->cpus[i], mask);
549
550 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
551 if (PAGE_SIZE - len < 3) {
552 rcu_read_unlock();
553 free_cpumask_var(mask);
554 return -EINVAL;
555 }
556 rcu_read_unlock();
557
558 free_cpumask_var(mask);
559 len += sprintf(buf + len, "\n");
560 return len;
561}
562
Eric Dumazetf5acb902010-04-19 14:40:57 -0700563static ssize_t store_rps_map(struct netdev_rx_queue *queue,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000564 struct rx_queue_attribute *attribute,
565 const char *buf, size_t len)
566{
567 struct rps_map *old_map, *map;
568 cpumask_var_t mask;
569 int err, cpu, i;
570 static DEFINE_SPINLOCK(rps_map_lock);
571
572 if (!capable(CAP_NET_ADMIN))
573 return -EPERM;
574
575 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
576 return -ENOMEM;
577
578 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
579 if (err) {
580 free_cpumask_var(mask);
581 return err;
582 }
583
584 map = kzalloc(max_t(unsigned,
585 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
586 GFP_KERNEL);
587 if (!map) {
588 free_cpumask_var(mask);
589 return -ENOMEM;
590 }
591
592 i = 0;
593 for_each_cpu_and(cpu, mask, cpu_online_mask)
594 map->cpus[i++] = cpu;
595
596 if (i)
597 map->len = i;
598 else {
599 kfree(map);
600 map = NULL;
601 }
602
603 spin_lock(&rps_map_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000604 old_map = rcu_dereference_protected(queue->rps_map,
605 lockdep_is_held(&rps_map_lock));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000606 rcu_assign_pointer(queue->rps_map, map);
607 spin_unlock(&rps_map_lock);
608
609 if (old_map)
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800610 kfree_rcu(old_map, rcu);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000611
612 free_cpumask_var(mask);
613 return len;
614}
615
Tom Herbertfec5e652010-04-16 16:01:27 -0700616static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
617 struct rx_queue_attribute *attr,
618 char *buf)
619{
620 struct rps_dev_flow_table *flow_table;
621 unsigned int val = 0;
622
623 rcu_read_lock();
624 flow_table = rcu_dereference(queue->rps_flow_table);
625 if (flow_table)
626 val = flow_table->mask + 1;
627 rcu_read_unlock();
628
629 return sprintf(buf, "%u\n", val);
630}
631
632static void rps_dev_flow_table_release_work(struct work_struct *work)
633{
634 struct rps_dev_flow_table *table = container_of(work,
635 struct rps_dev_flow_table, free_work);
636
637 vfree(table);
638}
639
640static void rps_dev_flow_table_release(struct rcu_head *rcu)
641{
642 struct rps_dev_flow_table *table = container_of(rcu,
643 struct rps_dev_flow_table, rcu);
644
645 INIT_WORK(&table->free_work, rps_dev_flow_table_release_work);
646 schedule_work(&table->free_work);
647}
648
Eric Dumazetf5acb902010-04-19 14:40:57 -0700649static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
Tom Herbertfec5e652010-04-16 16:01:27 -0700650 struct rx_queue_attribute *attr,
651 const char *buf, size_t len)
652{
653 unsigned int count;
654 char *endp;
655 struct rps_dev_flow_table *table, *old_table;
656 static DEFINE_SPINLOCK(rps_dev_flow_lock);
657
658 if (!capable(CAP_NET_ADMIN))
659 return -EPERM;
660
661 count = simple_strtoul(buf, &endp, 0);
662 if (endp == buf)
663 return -EINVAL;
664
665 if (count) {
666 int i;
667
668 if (count > 1<<30) {
669 /* Enforce a limit to prevent overflow */
670 return -EINVAL;
671 }
672 count = roundup_pow_of_two(count);
673 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(count));
674 if (!table)
675 return -ENOMEM;
676
677 table->mask = count - 1;
678 for (i = 0; i < count; i++)
679 table->flows[i].cpu = RPS_NO_CPU;
680 } else
681 table = NULL;
682
683 spin_lock(&rps_dev_flow_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000684 old_table = rcu_dereference_protected(queue->rps_flow_table,
685 lockdep_is_held(&rps_dev_flow_lock));
Tom Herbertfec5e652010-04-16 16:01:27 -0700686 rcu_assign_pointer(queue->rps_flow_table, table);
687 spin_unlock(&rps_dev_flow_lock);
688
689 if (old_table)
690 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
691
692 return len;
693}
694
Tom Herbert0a9627f2010-03-16 08:03:29 +0000695static struct rx_queue_attribute rps_cpus_attribute =
696 __ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map);
697
Tom Herbertfec5e652010-04-16 16:01:27 -0700698
699static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute =
700 __ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR,
701 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
702
Tom Herbert0a9627f2010-03-16 08:03:29 +0000703static struct attribute *rx_queue_default_attrs[] = {
704 &rps_cpus_attribute.attr,
Tom Herbertfec5e652010-04-16 16:01:27 -0700705 &rps_dev_flow_table_cnt_attribute.attr,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000706 NULL
707};
708
709static void rx_queue_release(struct kobject *kobj)
710{
711 struct netdev_rx_queue *queue = to_rx_queue(kobj);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000712 struct rps_map *map;
713 struct rps_dev_flow_table *flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000714
Tom Herbertfec5e652010-04-16 16:01:27 -0700715
Eric Dumazet33d480c2011-08-11 19:30:52 +0000716 map = rcu_dereference_protected(queue->rps_map, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000717 if (map) {
718 RCU_INIT_POINTER(queue->rps_map, NULL);
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800719 kfree_rcu(map, rcu);
John Fastabend9ea19482010-11-16 06:31:39 +0000720 }
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000721
Eric Dumazet33d480c2011-08-11 19:30:52 +0000722 flow_table = rcu_dereference_protected(queue->rps_flow_table, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000723 if (flow_table) {
724 RCU_INIT_POINTER(queue->rps_flow_table, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000725 call_rcu(&flow_table->rcu, rps_dev_flow_table_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000726 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000727
John Fastabend9ea19482010-11-16 06:31:39 +0000728 memset(kobj, 0, sizeof(*kobj));
Tom Herbertfe822242010-11-09 10:47:38 +0000729 dev_put(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000730}
731
732static struct kobj_type rx_queue_ktype = {
733 .sysfs_ops = &rx_queue_sysfs_ops,
734 .release = rx_queue_release,
735 .default_attrs = rx_queue_default_attrs,
736};
737
738static int rx_queue_add_kobject(struct net_device *net, int index)
739{
740 struct netdev_rx_queue *queue = net->_rx + index;
741 struct kobject *kobj = &queue->kobj;
742 int error = 0;
743
744 kobj->kset = net->queues_kset;
745 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
746 "rx-%u", index);
747 if (error) {
748 kobject_put(kobj);
749 return error;
750 }
751
752 kobject_uevent(kobj, KOBJ_ADD);
Tom Herbertfe822242010-11-09 10:47:38 +0000753 dev_hold(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000754
755 return error;
756}
Tom Herbertbf264142010-11-26 08:36:09 +0000757#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +0000758
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000759int
760net_rx_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000761{
Tom Herbertbf264142010-11-26 08:36:09 +0000762#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000763 int i;
764 int error = 0;
765
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000766 for (i = old_num; i < new_num; i++) {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000767 error = rx_queue_add_kobject(net, i);
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000768 if (error) {
769 new_num = old_num;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000770 break;
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000771 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000772 }
773
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000774 while (--i >= new_num)
775 kobject_put(&net->_rx[i].kobj);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000776
777 return error;
Tom Herbertbf264142010-11-26 08:36:09 +0000778#else
779 return 0;
780#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000781}
782
david decotignyccf5ff62011-11-16 12:15:10 +0000783#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000784/*
785 * netdev_queue sysfs structures and functions.
786 */
787struct netdev_queue_attribute {
788 struct attribute attr;
789 ssize_t (*show)(struct netdev_queue *queue,
790 struct netdev_queue_attribute *attr, char *buf);
791 ssize_t (*store)(struct netdev_queue *queue,
792 struct netdev_queue_attribute *attr, const char *buf, size_t len);
793};
794#define to_netdev_queue_attr(_attr) container_of(_attr, \
795 struct netdev_queue_attribute, attr)
796
797#define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj)
798
799static ssize_t netdev_queue_attr_show(struct kobject *kobj,
800 struct attribute *attr, char *buf)
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000801{
Tom Herbert1d24eb42010-11-21 13:17:27 +0000802 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
803 struct netdev_queue *queue = to_netdev_queue(kobj);
804
805 if (!attribute->show)
806 return -EIO;
807
808 return attribute->show(queue, attribute, buf);
809}
810
811static ssize_t netdev_queue_attr_store(struct kobject *kobj,
812 struct attribute *attr,
813 const char *buf, size_t count)
814{
815 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
816 struct netdev_queue *queue = to_netdev_queue(kobj);
817
818 if (!attribute->store)
819 return -EIO;
820
821 return attribute->store(queue, attribute, buf, count);
822}
823
824static const struct sysfs_ops netdev_queue_sysfs_ops = {
825 .show = netdev_queue_attr_show,
826 .store = netdev_queue_attr_store,
827};
828
david decotignyccf5ff62011-11-16 12:15:10 +0000829static ssize_t show_trans_timeout(struct netdev_queue *queue,
830 struct netdev_queue_attribute *attribute,
831 char *buf)
832{
833 unsigned long trans_timeout;
834
835 spin_lock_irq(&queue->_xmit_lock);
836 trans_timeout = queue->trans_timeout;
837 spin_unlock_irq(&queue->_xmit_lock);
838
839 return sprintf(buf, "%lu", trans_timeout);
840}
841
842static struct netdev_queue_attribute queue_trans_timeout =
843 __ATTR(tx_timeout, S_IRUGO, show_trans_timeout, NULL);
844
845#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000846static inline unsigned int get_netdev_queue_index(struct netdev_queue *queue)
847{
848 struct net_device *dev = queue->dev;
849 int i;
850
851 for (i = 0; i < dev->num_tx_queues; i++)
852 if (queue == &dev->_tx[i])
853 break;
854
855 BUG_ON(i >= dev->num_tx_queues);
856
857 return i;
858}
859
860
861static ssize_t show_xps_map(struct netdev_queue *queue,
862 struct netdev_queue_attribute *attribute, char *buf)
863{
864 struct net_device *dev = queue->dev;
865 struct xps_dev_maps *dev_maps;
866 cpumask_var_t mask;
867 unsigned long index;
868 size_t len = 0;
869 int i;
870
871 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
872 return -ENOMEM;
873
874 index = get_netdev_queue_index(queue);
875
876 rcu_read_lock();
877 dev_maps = rcu_dereference(dev->xps_maps);
878 if (dev_maps) {
879 for_each_possible_cpu(i) {
880 struct xps_map *map =
881 rcu_dereference(dev_maps->cpu_map[i]);
882 if (map) {
883 int j;
884 for (j = 0; j < map->len; j++) {
885 if (map->queues[j] == index) {
886 cpumask_set_cpu(i, mask);
887 break;
888 }
889 }
890 }
891 }
892 }
893 rcu_read_unlock();
894
895 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
896 if (PAGE_SIZE - len < 3) {
897 free_cpumask_var(mask);
898 return -EINVAL;
899 }
900
901 free_cpumask_var(mask);
902 len += sprintf(buf + len, "\n");
903 return len;
904}
905
Tom Herbert1d24eb42010-11-21 13:17:27 +0000906static DEFINE_MUTEX(xps_map_mutex);
Eric Dumazeta4177862010-11-28 21:43:02 +0000907#define xmap_dereference(P) \
908 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
Tom Herbert1d24eb42010-11-21 13:17:27 +0000909
910static ssize_t store_xps_map(struct netdev_queue *queue,
911 struct netdev_queue_attribute *attribute,
912 const char *buf, size_t len)
913{
914 struct net_device *dev = queue->dev;
915 cpumask_var_t mask;
916 int err, i, cpu, pos, map_len, alloc_len, need_set;
917 unsigned long index;
918 struct xps_map *map, *new_map;
919 struct xps_dev_maps *dev_maps, *new_dev_maps;
920 int nonempty = 0;
david decotigny19b05f82011-11-16 12:15:08 +0000921 int numa_node_id = -2;
Tom Herbert1d24eb42010-11-21 13:17:27 +0000922
923 if (!capable(CAP_NET_ADMIN))
924 return -EPERM;
925
926 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
927 return -ENOMEM;
928
929 index = get_netdev_queue_index(queue);
930
931 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
932 if (err) {
933 free_cpumask_var(mask);
934 return err;
935 }
936
937 new_dev_maps = kzalloc(max_t(unsigned,
938 XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES), GFP_KERNEL);
939 if (!new_dev_maps) {
940 free_cpumask_var(mask);
941 return -ENOMEM;
942 }
943
944 mutex_lock(&xps_map_mutex);
945
Eric Dumazeta4177862010-11-28 21:43:02 +0000946 dev_maps = xmap_dereference(dev->xps_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +0000947
948 for_each_possible_cpu(cpu) {
Eric Dumazeta4177862010-11-28 21:43:02 +0000949 map = dev_maps ?
950 xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
951 new_map = map;
Tom Herbert1d24eb42010-11-21 13:17:27 +0000952 if (map) {
953 for (pos = 0; pos < map->len; pos++)
954 if (map->queues[pos] == index)
955 break;
956 map_len = map->len;
957 alloc_len = map->alloc_len;
958 } else
959 pos = map_len = alloc_len = 0;
960
KOSAKI Motohiro2142c132011-05-16 11:53:49 -0700961 need_set = cpumask_test_cpu(cpu, mask) && cpu_online(cpu);
Eric Dumazetf2cd2d32010-11-29 08:14:37 +0000962#ifdef CONFIG_NUMA
963 if (need_set) {
david decotigny19b05f82011-11-16 12:15:08 +0000964 if (numa_node_id == -2)
965 numa_node_id = cpu_to_node(cpu);
966 else if (numa_node_id != cpu_to_node(cpu))
967 numa_node_id = -1;
Eric Dumazetf2cd2d32010-11-29 08:14:37 +0000968 }
969#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +0000970 if (need_set && pos >= map_len) {
971 /* Need to add queue to this CPU's map */
972 if (map_len >= alloc_len) {
973 alloc_len = alloc_len ?
974 2 * alloc_len : XPS_MIN_MAP_ALLOC;
Eric Dumazetb02038a2010-11-28 05:43:24 +0000975 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len),
976 GFP_KERNEL,
977 cpu_to_node(cpu));
Tom Herbert1d24eb42010-11-21 13:17:27 +0000978 if (!new_map)
979 goto error;
980 new_map->alloc_len = alloc_len;
981 for (i = 0; i < map_len; i++)
982 new_map->queues[i] = map->queues[i];
983 new_map->len = map_len;
984 }
985 new_map->queues[new_map->len++] = index;
986 } else if (!need_set && pos < map_len) {
987 /* Need to remove queue from this CPU's map */
988 if (map_len > 1)
989 new_map->queues[pos] =
990 new_map->queues[--new_map->len];
991 else
992 new_map = NULL;
993 }
Eric Dumazeta4177862010-11-28 21:43:02 +0000994 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], new_map);
Tom Herbert1d24eb42010-11-21 13:17:27 +0000995 }
996
997 /* Cleanup old maps */
998 for_each_possible_cpu(cpu) {
Eric Dumazeta4177862010-11-28 21:43:02 +0000999 map = dev_maps ?
1000 xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
1001 if (map && xmap_dereference(new_dev_maps->cpu_map[cpu]) != map)
Lai Jiangshanedc86d82011-03-18 12:02:20 +08001002 kfree_rcu(map, rcu);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001003 if (new_dev_maps->cpu_map[cpu])
1004 nonempty = 1;
1005 }
1006
1007 if (nonempty)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001008 RCU_INIT_POINTER(dev->xps_maps, new_dev_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001009 else {
1010 kfree(new_dev_maps);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001011 RCU_INIT_POINTER(dev->xps_maps, NULL);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001012 }
1013
1014 if (dev_maps)
Lai Jiangshanb55071e2011-03-18 12:02:47 +08001015 kfree_rcu(dev_maps, rcu);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001016
david decotigny19b05f82011-11-16 12:15:08 +00001017 netdev_queue_numa_node_write(queue, (numa_node_id >= 0) ? numa_node_id :
Changli Gaob236da62010-12-14 03:09:15 +00001018 NUMA_NO_NODE);
Eric Dumazetf2cd2d32010-11-29 08:14:37 +00001019
Tom Herbert1d24eb42010-11-21 13:17:27 +00001020 mutex_unlock(&xps_map_mutex);
1021
1022 free_cpumask_var(mask);
1023 return len;
1024
1025error:
1026 mutex_unlock(&xps_map_mutex);
1027
1028 if (new_dev_maps)
1029 for_each_possible_cpu(i)
Eric Dumazeta4177862010-11-28 21:43:02 +00001030 kfree(rcu_dereference_protected(
1031 new_dev_maps->cpu_map[i],
1032 1));
Tom Herbert1d24eb42010-11-21 13:17:27 +00001033 kfree(new_dev_maps);
1034 free_cpumask_var(mask);
1035 return -ENOMEM;
1036}
1037
1038static struct netdev_queue_attribute xps_cpus_attribute =
1039 __ATTR(xps_cpus, S_IRUGO | S_IWUSR, show_xps_map, store_xps_map);
david decotignyccf5ff62011-11-16 12:15:10 +00001040#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001041
1042static struct attribute *netdev_queue_default_attrs[] = {
david decotignyccf5ff62011-11-16 12:15:10 +00001043 &queue_trans_timeout.attr,
1044#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001045 &xps_cpus_attribute.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001046#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001047 NULL
1048};
1049
david decotignyccf5ff62011-11-16 12:15:10 +00001050#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001051static void netdev_queue_release(struct kobject *kobj)
1052{
1053 struct netdev_queue *queue = to_netdev_queue(kobj);
1054 struct net_device *dev = queue->dev;
1055 struct xps_dev_maps *dev_maps;
1056 struct xps_map *map;
1057 unsigned long index;
1058 int i, pos, nonempty = 0;
1059
1060 index = get_netdev_queue_index(queue);
1061
1062 mutex_lock(&xps_map_mutex);
Eric Dumazeta4177862010-11-28 21:43:02 +00001063 dev_maps = xmap_dereference(dev->xps_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001064
1065 if (dev_maps) {
1066 for_each_possible_cpu(i) {
Eric Dumazeta4177862010-11-28 21:43:02 +00001067 map = xmap_dereference(dev_maps->cpu_map[i]);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001068 if (!map)
1069 continue;
1070
1071 for (pos = 0; pos < map->len; pos++)
1072 if (map->queues[pos] == index)
1073 break;
1074
1075 if (pos < map->len) {
1076 if (map->len > 1)
1077 map->queues[pos] =
1078 map->queues[--map->len];
1079 else {
1080 RCU_INIT_POINTER(dev_maps->cpu_map[i],
1081 NULL);
Lai Jiangshanedc86d82011-03-18 12:02:20 +08001082 kfree_rcu(map, rcu);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001083 map = NULL;
1084 }
1085 }
1086 if (map)
1087 nonempty = 1;
1088 }
1089
1090 if (!nonempty) {
1091 RCU_INIT_POINTER(dev->xps_maps, NULL);
Lai Jiangshanb55071e2011-03-18 12:02:47 +08001092 kfree_rcu(dev_maps, rcu);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001093 }
1094 }
1095
1096 mutex_unlock(&xps_map_mutex);
1097
1098 memset(kobj, 0, sizeof(*kobj));
1099 dev_put(queue->dev);
1100}
david decotignyccf5ff62011-11-16 12:15:10 +00001101#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001102
1103static struct kobj_type netdev_queue_ktype = {
1104 .sysfs_ops = &netdev_queue_sysfs_ops,
david decotignyccf5ff62011-11-16 12:15:10 +00001105#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001106 .release = netdev_queue_release,
david decotignyccf5ff62011-11-16 12:15:10 +00001107#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001108 .default_attrs = netdev_queue_default_attrs,
1109};
1110
1111static int netdev_queue_add_kobject(struct net_device *net, int index)
1112{
1113 struct netdev_queue *queue = net->_tx + index;
1114 struct kobject *kobj = &queue->kobj;
1115 int error = 0;
1116
1117 kobj->kset = net->queues_kset;
1118 error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL,
1119 "tx-%u", index);
1120 if (error) {
1121 kobject_put(kobj);
1122 return error;
1123 }
1124
1125 kobject_uevent(kobj, KOBJ_ADD);
1126 dev_hold(queue->dev);
1127
1128 return error;
1129}
david decotignyccf5ff62011-11-16 12:15:10 +00001130#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001131
1132int
1133netdev_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
1134{
david decotignyccf5ff62011-11-16 12:15:10 +00001135#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001136 int i;
1137 int error = 0;
1138
1139 for (i = old_num; i < new_num; i++) {
1140 error = netdev_queue_add_kobject(net, i);
1141 if (error) {
1142 new_num = old_num;
1143 break;
1144 }
1145 }
1146
1147 while (--i >= new_num)
1148 kobject_put(&net->_tx[i].kobj);
1149
1150 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001151#else
1152 return 0;
david decotignyccf5ff62011-11-16 12:15:10 +00001153#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001154}
1155
1156static int register_queue_kobjects(struct net_device *net)
1157{
Tom Herbertbf264142010-11-26 08:36:09 +00001158 int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001159
david decotignyccf5ff62011-11-16 12:15:10 +00001160#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001161 net->queues_kset = kset_create_and_add("queues",
1162 NULL, &net->dev.kobj);
1163 if (!net->queues_kset)
1164 return -ENOMEM;
Tom Herbertbf264142010-11-26 08:36:09 +00001165#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001166
Tom Herbertbf264142010-11-26 08:36:09 +00001167#ifdef CONFIG_RPS
1168 real_rx = net->real_num_rx_queues;
1169#endif
1170 real_tx = net->real_num_tx_queues;
1171
1172 error = net_rx_queue_update_kobjects(net, 0, real_rx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001173 if (error)
1174 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001175 rxq = real_rx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001176
Tom Herbertbf264142010-11-26 08:36:09 +00001177 error = netdev_queue_update_kobjects(net, 0, real_tx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001178 if (error)
1179 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001180 txq = real_tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001181
1182 return 0;
1183
1184error:
1185 netdev_queue_update_kobjects(net, txq, 0);
1186 net_rx_queue_update_kobjects(net, rxq, 0);
1187 return error;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001188}
1189
Tom Herbert1d24eb42010-11-21 13:17:27 +00001190static void remove_queue_kobjects(struct net_device *net)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001191{
Tom Herbertbf264142010-11-26 08:36:09 +00001192 int real_rx = 0, real_tx = 0;
1193
1194#ifdef CONFIG_RPS
1195 real_rx = net->real_num_rx_queues;
1196#endif
1197 real_tx = net->real_num_tx_queues;
1198
1199 net_rx_queue_update_kobjects(net, real_rx, 0);
1200 netdev_queue_update_kobjects(net, real_tx, 0);
david decotignyccf5ff62011-11-16 12:15:10 +00001201#ifdef CONFIG_SYSFS
Tom Herbert0a9627f2010-03-16 08:03:29 +00001202 kset_unregister(net->queues_kset);
Tom Herbertbf264142010-11-26 08:36:09 +00001203#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001204}
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001205
Al Viroa685e082011-06-08 21:13:01 -04001206static void *net_grab_current_ns(void)
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001207{
Al Viroa685e082011-06-08 21:13:01 -04001208 struct net *ns = current->nsproxy->net_ns;
1209#ifdef CONFIG_NET_NS
1210 if (ns)
1211 atomic_inc(&ns->passive);
1212#endif
1213 return ns;
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001214}
1215
1216static const void *net_initial_ns(void)
1217{
1218 return &init_net;
1219}
1220
1221static const void *net_netlink_ns(struct sock *sk)
1222{
1223 return sock_net(sk);
1224}
1225
Johannes Berg04600792010-08-05 17:45:15 +02001226struct kobj_ns_type_operations net_ns_type_operations = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001227 .type = KOBJ_NS_TYPE_NET,
Al Viroa685e082011-06-08 21:13:01 -04001228 .grab_current_ns = net_grab_current_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001229 .netlink_ns = net_netlink_ns,
1230 .initial_ns = net_initial_ns,
Al Viroa685e082011-06-08 21:13:01 -04001231 .drop_ns = net_drop_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001232};
Johannes Berg04600792010-08-05 17:45:15 +02001233EXPORT_SYMBOL_GPL(net_ns_type_operations);
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001236static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001238 struct net_device *dev = to_net_dev(d);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001239 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Kay Sievers312c0042005-11-16 09:00:00 +01001241 /* pass interface to uevent. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001242 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
Eric Rannaudbf624562007-03-30 22:23:12 -07001243 if (retval)
1244 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001246 /* pass ifindex to uevent.
1247 * ifindex is useful as it won't change (interface name may change)
1248 * and is what RtNetlink uses natively. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001249 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001250
Eric Rannaudbf624562007-03-30 22:23:12 -07001251exit:
Eric Rannaudbf624562007-03-30 22:23:12 -07001252 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254#endif
1255
1256/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001257 * netdev_release -- destroy and free a dead device.
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001258 * Called when last reference to device kobject is gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001260static void netdev_release(struct device *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001262 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 BUG_ON(dev->reg_state != NETREG_RELEASED);
1265
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001266 kfree(dev->ifalias);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 kfree((char *)dev - dev->padded);
1268}
1269
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001270static const void *net_namespace(struct device *d)
1271{
1272 struct net_device *dev;
1273 dev = container_of(d, struct net_device, dev);
1274 return dev_net(dev);
1275}
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static struct class net_class = {
1278 .name = "net",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001279 .dev_release = netdev_release,
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001280#ifdef CONFIG_SYSFS
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001281 .dev_attrs = net_class_attributes,
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001282#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283#ifdef CONFIG_HOTPLUG
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001284 .dev_uevent = netdev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285#endif
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001286 .ns_type = &net_ns_type_operations,
1287 .namespace = net_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288};
1289
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001290/* Delete sysfs entries but hold kobject reference until after all
1291 * netdev references are gone.
1292 */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001293void netdev_unregister_kobject(struct net_device * net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001295 struct device *dev = &(net->dev);
1296
1297 kobject_get(&dev->kobj);
Eric W. Biederman38918452008-10-27 17:51:47 -07001298
Tom Herbert1d24eb42010-11-21 13:17:27 +00001299 remove_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001300
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001301 device_del(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
1304/* Create sysfs entries for network device. */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001305int netdev_register_kobject(struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001307 struct device *dev = &(net->dev);
David Brownella4dbd672009-06-24 10:06:31 -07001308 const struct attribute_group **groups = net->sysfs_groups;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001309 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001311 device_initialize(dev);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001312 dev->class = &net_class;
1313 dev->platform_data = net;
1314 dev->groups = groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Stephen Hemmingera2205472009-03-09 13:51:55 +00001316 dev_set_name(dev, "%s", net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001318#ifdef CONFIG_SYSFS
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001319 /* Allow for a device specific group */
1320 if (*groups)
1321 groups++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001323 *groups++ = &netstat_group;
Johannes Berg22bb1be2008-07-10 11:16:47 +02001324#ifdef CONFIG_WIRELESS_EXT_SYSFS
Johannes Berg3d23e342009-09-29 23:27:28 +02001325 if (net->ieee80211_ptr)
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -07001326 *groups++ = &wireless_group;
Johannes Berg3d23e342009-09-29 23:27:28 +02001327#ifdef CONFIG_WIRELESS_EXT
1328 else if (net->wireless_handlers)
1329 *groups++ = &wireless_group;
1330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331#endif
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001332#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Tom Herbert0a9627f2010-03-16 08:03:29 +00001334 error = device_add(dev);
1335 if (error)
1336 return error;
1337
Tom Herbert1d24eb42010-11-21 13:17:27 +00001338 error = register_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001339 if (error) {
1340 device_del(dev);
1341 return error;
1342 }
1343
1344 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
Jay Vosburghb8a97872008-06-13 18:12:04 -07001347int netdev_class_create_file(struct class_attribute *class_attr)
1348{
1349 return class_create_file(&net_class, class_attr);
1350}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +00001351EXPORT_SYMBOL(netdev_class_create_file);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001352
1353void netdev_class_remove_file(struct class_attribute *class_attr)
1354{
1355 class_remove_file(&net_class, class_attr);
1356}
Jay Vosburghb8a97872008-06-13 18:12:04 -07001357EXPORT_SYMBOL(netdev_class_remove_file);
1358
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001359int netdev_kobject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001361 kobj_ns_type_register(&net_ns_type_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return class_register(&net_class);
1363}