blob: 5ceb257e860c18cbabe352f67cb8760d95bcba84 [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>
Johannes Berg8f1546c2009-09-28 15:26:43 +020023#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Pavel Emelyanov342709e2007-10-23 21:14:45 -070025#include "net-sysfs.h"
26
Eric W. Biederman8b41d182007-09-26 22:02:53 -070027#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static const char fmt_hex[] = "%#x\n";
David S. Millerd1102b52005-05-29 20:28:25 -070029static const char fmt_long_hex[] = "%#lx\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static const char fmt_dec[] = "%d\n";
31static const char fmt_ulong[] = "%lu\n";
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +000032static const char fmt_u64[] = "%llu\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090034static inline int dev_isalive(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -070036 return dev->reg_state <= NETREG_REGISTERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
39/* use same locking rules as GIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070040static ssize_t netdev_show(const struct device *dev,
41 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 ssize_t (*format)(const struct net_device *, char *))
43{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070044 struct net_device *net = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 ssize_t ret = -EINVAL;
46
47 read_lock(&dev_base_lock);
48 if (dev_isalive(net))
49 ret = (*format)(net, buf);
50 read_unlock(&dev_base_lock);
51
52 return ret;
53}
54
55/* generate a show function for simple field */
56#define NETDEVICE_SHOW(field, format_string) \
57static ssize_t format_##field(const struct net_device *net, char *buf) \
58{ \
59 return sprintf(buf, format_string, net->field); \
60} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070061static ssize_t show_##field(struct device *dev, \
62 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070064 return netdev_show(dev, attr, buf, format_##field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67
68/* use same locking and permission rules as SIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070069static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 const char *buf, size_t len,
71 int (*set)(struct net_device *, unsigned long))
72{
73 struct net_device *net = to_net_dev(dev);
74 char *endp;
75 unsigned long new;
76 int ret = -EINVAL;
77
78 if (!capable(CAP_NET_ADMIN))
79 return -EPERM;
80
81 new = simple_strtoul(buf, &endp, 0);
82 if (endp == buf)
83 goto err;
84
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000085 if (!rtnl_trylock())
Eric W. Biederman336ca572009-05-13 16:57:25 +000086 return restart_syscall();
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (dev_isalive(net)) {
89 if ((ret = (*set)(net, new)) == 0)
90 ret = len;
91 }
92 rtnl_unlock();
93 err:
94 return ret;
95}
96
David Woodhouse9d296722008-04-20 16:07:43 -070097NETDEVICE_SHOW(dev_id, fmt_hex);
Stefan Assmannc1f79422010-07-22 02:50:21 +000098NETDEVICE_SHOW(addr_assign_type, fmt_dec);
Kay Sieversfd586ba2005-12-19 01:42:56 +010099NETDEVICE_SHOW(addr_len, fmt_dec);
100NETDEVICE_SHOW(iflink, fmt_dec);
101NETDEVICE_SHOW(ifindex, fmt_dec);
Michał Mirosław04ed3e72011-01-24 15:32:47 -0800102NETDEVICE_SHOW(features, fmt_hex);
Kay Sieversfd586ba2005-12-19 01:42:56 +0100103NETDEVICE_SHOW(type, fmt_dec);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800104NETDEVICE_SHOW(link_mode, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* use same locking rules as GIFHWADDR ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700107static ssize_t show_address(struct device *dev, struct device_attribute *attr,
108 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 struct net_device *net = to_net_dev(dev);
111 ssize_t ret = -EINVAL;
112
113 read_lock(&dev_base_lock);
114 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800115 ret = sysfs_format_mac(buf, net->dev_addr, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 read_unlock(&dev_base_lock);
117 return ret;
118}
119
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700120static ssize_t show_broadcast(struct device *dev,
121 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 struct net_device *net = to_net_dev(dev);
124 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800125 return sysfs_format_mac(buf, net->broadcast, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return -EINVAL;
127}
128
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700129static ssize_t show_carrier(struct device *dev,
130 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 struct net_device *netdev = to_net_dev(dev);
133 if (netif_running(netdev)) {
134 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
135 }
136 return -EINVAL;
137}
138
Andy Gospodarekd519e172009-10-02 09:26:12 +0000139static ssize_t show_speed(struct device *dev,
140 struct device_attribute *attr, char *buf)
141{
142 struct net_device *netdev = to_net_dev(dev);
143 int ret = -EINVAL;
144
145 if (!rtnl_trylock())
146 return restart_syscall();
147
Eric Dumazetac5e3af2009-10-26 01:23:33 +0000148 if (netif_running(netdev) &&
149 netdev->ethtool_ops &&
150 netdev->ethtool_ops->get_settings) {
Andy Gospodarekd519e172009-10-02 09:26:12 +0000151 struct ethtool_cmd cmd = { ETHTOOL_GSET };
152
153 if (!netdev->ethtool_ops->get_settings(netdev, &cmd))
154 ret = sprintf(buf, fmt_dec, ethtool_cmd_speed(&cmd));
155 }
156 rtnl_unlock();
157 return ret;
158}
159
160static ssize_t show_duplex(struct device *dev,
161 struct device_attribute *attr, char *buf)
162{
163 struct net_device *netdev = to_net_dev(dev);
164 int ret = -EINVAL;
165
166 if (!rtnl_trylock())
167 return restart_syscall();
168
Eric Dumazetac5e3af2009-10-26 01:23:33 +0000169 if (netif_running(netdev) &&
170 netdev->ethtool_ops &&
171 netdev->ethtool_ops->get_settings) {
Andy Gospodarekd519e172009-10-02 09:26:12 +0000172 struct ethtool_cmd cmd = { ETHTOOL_GSET };
173
174 if (!netdev->ethtool_ops->get_settings(netdev, &cmd))
175 ret = sprintf(buf, "%s\n", cmd.duplex ? "full" : "half");
176 }
177 rtnl_unlock();
178 return ret;
179}
180
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700181static ssize_t show_dormant(struct device *dev,
182 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800183{
184 struct net_device *netdev = to_net_dev(dev);
185
186 if (netif_running(netdev))
187 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
188
189 return -EINVAL;
190}
191
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700192static const char *const operstates[] = {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800193 "unknown",
194 "notpresent", /* currently unused */
195 "down",
196 "lowerlayerdown",
197 "testing", /* currently unused */
198 "dormant",
199 "up"
200};
201
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700202static ssize_t show_operstate(struct device *dev,
203 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800204{
205 const struct net_device *netdev = to_net_dev(dev);
206 unsigned char operstate;
207
208 read_lock(&dev_base_lock);
209 operstate = netdev->operstate;
210 if (!netif_running(netdev))
211 operstate = IF_OPER_DOWN;
212 read_unlock(&dev_base_lock);
213
Adrian Bunke3a5cd92006-04-05 22:19:47 -0700214 if (operstate >= ARRAY_SIZE(operstates))
Stefan Rompfb00055a2006-03-20 17:09:11 -0800215 return -EINVAL; /* should not happen */
216
217 return sprintf(buf, "%s\n", operstates[operstate]);
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/* read-write attributes */
221NETDEVICE_SHOW(mtu, fmt_dec);
222
223static int change_mtu(struct net_device *net, unsigned long new_mtu)
224{
225 return dev_set_mtu(net, (int) new_mtu);
226}
227
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700228static ssize_t store_mtu(struct device *dev, struct device_attribute *attr,
229 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700231 return netdev_store(dev, attr, buf, len, change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234NETDEVICE_SHOW(flags, fmt_hex);
235
236static int change_flags(struct net_device *net, unsigned long new_flags)
237{
238 return dev_change_flags(net, (unsigned) new_flags);
239}
240
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700241static ssize_t store_flags(struct device *dev, struct device_attribute *attr,
242 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700244 return netdev_store(dev, attr, buf, len, change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
248
249static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
250{
251 net->tx_queue_len = new_len;
252 return 0;
253}
254
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700255static ssize_t store_tx_queue_len(struct device *dev,
256 struct device_attribute *attr,
257 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700259 return netdev_store(dev, attr, buf, len, change_tx_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700262static ssize_t store_ifalias(struct device *dev, struct device_attribute *attr,
263 const char *buf, size_t len)
264{
265 struct net_device *netdev = to_net_dev(dev);
266 size_t count = len;
267 ssize_t ret;
268
269 if (!capable(CAP_NET_ADMIN))
270 return -EPERM;
271
272 /* ignore trailing newline */
273 if (len > 0 && buf[len - 1] == '\n')
274 --count;
275
Eric W. Biederman336ca572009-05-13 16:57:25 +0000276 if (!rtnl_trylock())
277 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700278 ret = dev_set_alias(netdev, buf, count);
279 rtnl_unlock();
280
281 return ret < 0 ? ret : len;
282}
283
284static ssize_t show_ifalias(struct device *dev,
285 struct device_attribute *attr, char *buf)
286{
287 const struct net_device *netdev = to_net_dev(dev);
288 ssize_t ret = 0;
289
Eric W. Biederman336ca572009-05-13 16:57:25 +0000290 if (!rtnl_trylock())
291 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700292 if (netdev->ifalias)
293 ret = sprintf(buf, "%s\n", netdev->ifalias);
294 rtnl_unlock();
295 return ret;
296}
297
Vlad Dogarua512b922011-01-24 03:37:29 +0000298NETDEVICE_SHOW(group, fmt_dec);
299
300static int change_group(struct net_device *net, unsigned long new_group)
301{
302 dev_set_group(net, (int) new_group);
303 return 0;
304}
305
306static ssize_t store_group(struct device *dev, struct device_attribute *attr,
307 const char *buf, size_t len)
308{
309 return netdev_store(dev, attr, buf, len, change_group);
310}
311
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700312static struct device_attribute net_class_attributes[] = {
Stefan Assmannc1f79422010-07-22 02:50:21 +0000313 __ATTR(addr_assign_type, S_IRUGO, show_addr_assign_type, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100314 __ATTR(addr_len, S_IRUGO, show_addr_len, NULL),
David Woodhouse9d296722008-04-20 16:07:43 -0700315 __ATTR(dev_id, S_IRUGO, show_dev_id, NULL),
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700316 __ATTR(ifalias, S_IRUGO | S_IWUSR, show_ifalias, store_ifalias),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100317 __ATTR(iflink, S_IRUGO, show_iflink, NULL),
318 __ATTR(ifindex, S_IRUGO, show_ifindex, NULL),
319 __ATTR(features, S_IRUGO, show_features, NULL),
320 __ATTR(type, S_IRUGO, show_type, NULL),
Stefan Rompfb00055a2006-03-20 17:09:11 -0800321 __ATTR(link_mode, S_IRUGO, show_link_mode, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100322 __ATTR(address, S_IRUGO, show_address, NULL),
323 __ATTR(broadcast, S_IRUGO, show_broadcast, NULL),
324 __ATTR(carrier, S_IRUGO, show_carrier, NULL),
Andy Gospodarekd519e172009-10-02 09:26:12 +0000325 __ATTR(speed, S_IRUGO, show_speed, NULL),
326 __ATTR(duplex, S_IRUGO, show_duplex, NULL),
Stefan Rompfb00055a2006-03-20 17:09:11 -0800327 __ATTR(dormant, S_IRUGO, show_dormant, NULL),
328 __ATTR(operstate, S_IRUGO, show_operstate, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100329 __ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu),
330 __ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags),
331 __ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
332 store_tx_queue_len),
Xiaotian Fengb6644cb2011-02-09 19:16:15 -0800333 __ATTR(netdev_group, S_IRUGO | S_IWUSR, show_group, store_group),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100334 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335};
336
337/* Show a given an attribute in the statistics group */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700338static ssize_t netstat_show(const struct device *d,
339 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 unsigned long offset)
341{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700342 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 ssize_t ret = -EINVAL;
344
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000345 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
346 offset % sizeof(u64) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 read_lock(&dev_base_lock);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700349 if (dev_isalive(dev)) {
Eric Dumazet28172732010-07-07 14:58:56 -0700350 struct rtnl_link_stats64 temp;
351 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
352
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000353 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *) stats) + offset));
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 read_unlock(&dev_base_lock);
356 return ret;
357}
358
359/* generate a read-only statistics attribute */
360#define NETSTAT_ENTRY(name) \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700361static ssize_t show_##name(struct device *d, \
362 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700364 return netstat_show(d, attr, buf, \
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000365 offsetof(struct rtnl_link_stats64, name)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700367static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369NETSTAT_ENTRY(rx_packets);
370NETSTAT_ENTRY(tx_packets);
371NETSTAT_ENTRY(rx_bytes);
372NETSTAT_ENTRY(tx_bytes);
373NETSTAT_ENTRY(rx_errors);
374NETSTAT_ENTRY(tx_errors);
375NETSTAT_ENTRY(rx_dropped);
376NETSTAT_ENTRY(tx_dropped);
377NETSTAT_ENTRY(multicast);
378NETSTAT_ENTRY(collisions);
379NETSTAT_ENTRY(rx_length_errors);
380NETSTAT_ENTRY(rx_over_errors);
381NETSTAT_ENTRY(rx_crc_errors);
382NETSTAT_ENTRY(rx_frame_errors);
383NETSTAT_ENTRY(rx_fifo_errors);
384NETSTAT_ENTRY(rx_missed_errors);
385NETSTAT_ENTRY(tx_aborted_errors);
386NETSTAT_ENTRY(tx_carrier_errors);
387NETSTAT_ENTRY(tx_fifo_errors);
388NETSTAT_ENTRY(tx_heartbeat_errors);
389NETSTAT_ENTRY(tx_window_errors);
390NETSTAT_ENTRY(rx_compressed);
391NETSTAT_ENTRY(tx_compressed);
392
393static struct attribute *netstat_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700394 &dev_attr_rx_packets.attr,
395 &dev_attr_tx_packets.attr,
396 &dev_attr_rx_bytes.attr,
397 &dev_attr_tx_bytes.attr,
398 &dev_attr_rx_errors.attr,
399 &dev_attr_tx_errors.attr,
400 &dev_attr_rx_dropped.attr,
401 &dev_attr_tx_dropped.attr,
402 &dev_attr_multicast.attr,
403 &dev_attr_collisions.attr,
404 &dev_attr_rx_length_errors.attr,
405 &dev_attr_rx_over_errors.attr,
406 &dev_attr_rx_crc_errors.attr,
407 &dev_attr_rx_frame_errors.attr,
408 &dev_attr_rx_fifo_errors.attr,
409 &dev_attr_rx_missed_errors.attr,
410 &dev_attr_tx_aborted_errors.attr,
411 &dev_attr_tx_carrier_errors.attr,
412 &dev_attr_tx_fifo_errors.attr,
413 &dev_attr_tx_heartbeat_errors.attr,
414 &dev_attr_tx_window_errors.attr,
415 &dev_attr_rx_compressed.attr,
416 &dev_attr_tx_compressed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 NULL
418};
419
420
421static struct attribute_group netstat_group = {
422 .name = "statistics",
423 .attrs = netstat_attrs,
424};
425
Johannes Berg22bb1be2008-07-10 11:16:47 +0200426#ifdef CONFIG_WIRELESS_EXT_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/* helper function that does all the locking etc for wireless stats */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700428static ssize_t wireless_show(struct device *d, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 ssize_t (*format)(const struct iw_statistics *,
430 char *))
431{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700432 struct net_device *dev = to_net_dev(d);
Johannes Berg8f1546c2009-09-28 15:26:43 +0200433 const struct iw_statistics *iw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 ssize_t ret = -EINVAL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900435
Eric W. Biedermanb8afe642010-02-19 13:23:47 +0000436 if (!rtnl_trylock())
437 return restart_syscall();
Andrey Borzenkov6dd214b2006-01-09 20:51:28 -0800438 if (dev_isalive(dev)) {
Johannes Berg8f1546c2009-09-28 15:26:43 +0200439 iw = get_wireless_stats(dev);
440 if (iw)
Andrey Borzenkov6dd214b2006-01-09 20:51:28 -0800441 ret = (*format)(iw, buf);
442 }
Johannes Berga160ee62009-10-05 02:22:23 -0700443 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 return ret;
446}
447
448/* show function template for wireless fields */
449#define WIRELESS_SHOW(name, field, format_string) \
450static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
451{ \
452 return sprintf(buf, format_string, iw->field); \
453} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700454static ssize_t show_iw_##name(struct device *d, \
455 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700457 return wireless_show(d, buf, format_iw_##name); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700459static DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461WIRELESS_SHOW(status, status, fmt_hex);
462WIRELESS_SHOW(link, qual.qual, fmt_dec);
463WIRELESS_SHOW(level, qual.level, fmt_dec);
464WIRELESS_SHOW(noise, qual.noise, fmt_dec);
465WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
466WIRELESS_SHOW(crypt, discard.code, fmt_dec);
467WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
468WIRELESS_SHOW(misc, discard.misc, fmt_dec);
469WIRELESS_SHOW(retries, discard.retries, fmt_dec);
470WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
471
472static struct attribute *wireless_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700473 &dev_attr_status.attr,
474 &dev_attr_link.attr,
475 &dev_attr_level.attr,
476 &dev_attr_noise.attr,
477 &dev_attr_nwid.attr,
478 &dev_attr_crypt.attr,
479 &dev_attr_fragment.attr,
480 &dev_attr_retries.attr,
481 &dev_attr_misc.attr,
482 &dev_attr_beacon.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 NULL
484};
485
486static struct attribute_group wireless_group = {
487 .name = "wireless",
488 .attrs = wireless_attrs,
489};
490#endif
Eric W. Biedermand6523dd2010-05-16 21:59:45 -0700491#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Stephen Rothwell30bde1f2010-03-29 01:00:44 -0700493#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000494/*
495 * RX queue sysfs structures and functions.
496 */
497struct rx_queue_attribute {
498 struct attribute attr;
499 ssize_t (*show)(struct netdev_rx_queue *queue,
500 struct rx_queue_attribute *attr, char *buf);
501 ssize_t (*store)(struct netdev_rx_queue *queue,
502 struct rx_queue_attribute *attr, const char *buf, size_t len);
503};
504#define to_rx_queue_attr(_attr) container_of(_attr, \
505 struct rx_queue_attribute, attr)
506
507#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
508
509static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
510 char *buf)
511{
512 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
513 struct netdev_rx_queue *queue = to_rx_queue(kobj);
514
515 if (!attribute->show)
516 return -EIO;
517
518 return attribute->show(queue, attribute, buf);
519}
520
521static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
522 const char *buf, size_t count)
523{
524 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
525 struct netdev_rx_queue *queue = to_rx_queue(kobj);
526
527 if (!attribute->store)
528 return -EIO;
529
530 return attribute->store(queue, attribute, buf, count);
531}
532
stephen hemmingerfa50d642010-08-31 12:14:13 +0000533static const struct sysfs_ops rx_queue_sysfs_ops = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000534 .show = rx_queue_attr_show,
535 .store = rx_queue_attr_store,
536};
537
538static ssize_t show_rps_map(struct netdev_rx_queue *queue,
539 struct rx_queue_attribute *attribute, char *buf)
540{
541 struct rps_map *map;
542 cpumask_var_t mask;
543 size_t len = 0;
544 int i;
545
546 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
547 return -ENOMEM;
548
549 rcu_read_lock();
550 map = rcu_dereference(queue->rps_map);
551 if (map)
552 for (i = 0; i < map->len; i++)
553 cpumask_set_cpu(map->cpus[i], mask);
554
555 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
556 if (PAGE_SIZE - len < 3) {
557 rcu_read_unlock();
558 free_cpumask_var(mask);
559 return -EINVAL;
560 }
561 rcu_read_unlock();
562
563 free_cpumask_var(mask);
564 len += sprintf(buf + len, "\n");
565 return len;
566}
567
568static void rps_map_release(struct rcu_head *rcu)
569{
570 struct rps_map *map = container_of(rcu, struct rps_map, rcu);
571
572 kfree(map);
573}
574
Eric Dumazetf5acb902010-04-19 14:40:57 -0700575static ssize_t store_rps_map(struct netdev_rx_queue *queue,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000576 struct rx_queue_attribute *attribute,
577 const char *buf, size_t len)
578{
579 struct rps_map *old_map, *map;
580 cpumask_var_t mask;
581 int err, cpu, i;
582 static DEFINE_SPINLOCK(rps_map_lock);
583
584 if (!capable(CAP_NET_ADMIN))
585 return -EPERM;
586
587 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
588 return -ENOMEM;
589
590 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
591 if (err) {
592 free_cpumask_var(mask);
593 return err;
594 }
595
596 map = kzalloc(max_t(unsigned,
597 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
598 GFP_KERNEL);
599 if (!map) {
600 free_cpumask_var(mask);
601 return -ENOMEM;
602 }
603
604 i = 0;
605 for_each_cpu_and(cpu, mask, cpu_online_mask)
606 map->cpus[i++] = cpu;
607
608 if (i)
609 map->len = i;
610 else {
611 kfree(map);
612 map = NULL;
613 }
614
615 spin_lock(&rps_map_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000616 old_map = rcu_dereference_protected(queue->rps_map,
617 lockdep_is_held(&rps_map_lock));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000618 rcu_assign_pointer(queue->rps_map, map);
619 spin_unlock(&rps_map_lock);
620
621 if (old_map)
622 call_rcu(&old_map->rcu, rps_map_release);
623
624 free_cpumask_var(mask);
625 return len;
626}
627
Tom Herbertfec5e652010-04-16 16:01:27 -0700628static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
629 struct rx_queue_attribute *attr,
630 char *buf)
631{
632 struct rps_dev_flow_table *flow_table;
633 unsigned int val = 0;
634
635 rcu_read_lock();
636 flow_table = rcu_dereference(queue->rps_flow_table);
637 if (flow_table)
638 val = flow_table->mask + 1;
639 rcu_read_unlock();
640
641 return sprintf(buf, "%u\n", val);
642}
643
644static void rps_dev_flow_table_release_work(struct work_struct *work)
645{
646 struct rps_dev_flow_table *table = container_of(work,
647 struct rps_dev_flow_table, free_work);
648
649 vfree(table);
650}
651
652static void rps_dev_flow_table_release(struct rcu_head *rcu)
653{
654 struct rps_dev_flow_table *table = container_of(rcu,
655 struct rps_dev_flow_table, rcu);
656
657 INIT_WORK(&table->free_work, rps_dev_flow_table_release_work);
658 schedule_work(&table->free_work);
659}
660
Eric Dumazetf5acb902010-04-19 14:40:57 -0700661static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
Tom Herbertfec5e652010-04-16 16:01:27 -0700662 struct rx_queue_attribute *attr,
663 const char *buf, size_t len)
664{
665 unsigned int count;
666 char *endp;
667 struct rps_dev_flow_table *table, *old_table;
668 static DEFINE_SPINLOCK(rps_dev_flow_lock);
669
670 if (!capable(CAP_NET_ADMIN))
671 return -EPERM;
672
673 count = simple_strtoul(buf, &endp, 0);
674 if (endp == buf)
675 return -EINVAL;
676
677 if (count) {
678 int i;
679
680 if (count > 1<<30) {
681 /* Enforce a limit to prevent overflow */
682 return -EINVAL;
683 }
684 count = roundup_pow_of_two(count);
685 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(count));
686 if (!table)
687 return -ENOMEM;
688
689 table->mask = count - 1;
690 for (i = 0; i < count; i++)
691 table->flows[i].cpu = RPS_NO_CPU;
692 } else
693 table = NULL;
694
695 spin_lock(&rps_dev_flow_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000696 old_table = rcu_dereference_protected(queue->rps_flow_table,
697 lockdep_is_held(&rps_dev_flow_lock));
Tom Herbertfec5e652010-04-16 16:01:27 -0700698 rcu_assign_pointer(queue->rps_flow_table, table);
699 spin_unlock(&rps_dev_flow_lock);
700
701 if (old_table)
702 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
703
704 return len;
705}
706
Tom Herbert0a9627f2010-03-16 08:03:29 +0000707static struct rx_queue_attribute rps_cpus_attribute =
708 __ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map);
709
Tom Herbertfec5e652010-04-16 16:01:27 -0700710
711static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute =
712 __ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR,
713 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
714
Tom Herbert0a9627f2010-03-16 08:03:29 +0000715static struct attribute *rx_queue_default_attrs[] = {
716 &rps_cpus_attribute.attr,
Tom Herbertfec5e652010-04-16 16:01:27 -0700717 &rps_dev_flow_table_cnt_attribute.attr,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000718 NULL
719};
720
721static void rx_queue_release(struct kobject *kobj)
722{
723 struct netdev_rx_queue *queue = to_rx_queue(kobj);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000724 struct rps_map *map;
725 struct rps_dev_flow_table *flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000726
Tom Herbertfec5e652010-04-16 16:01:27 -0700727
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000728 map = rcu_dereference_raw(queue->rps_map);
John Fastabend9ea19482010-11-16 06:31:39 +0000729 if (map) {
730 RCU_INIT_POINTER(queue->rps_map, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000731 call_rcu(&map->rcu, rps_map_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000732 }
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000733
734 flow_table = rcu_dereference_raw(queue->rps_flow_table);
John Fastabend9ea19482010-11-16 06:31:39 +0000735 if (flow_table) {
736 RCU_INIT_POINTER(queue->rps_flow_table, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000737 call_rcu(&flow_table->rcu, rps_dev_flow_table_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000738 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000739
John Fastabend9ea19482010-11-16 06:31:39 +0000740 memset(kobj, 0, sizeof(*kobj));
Tom Herbertfe822242010-11-09 10:47:38 +0000741 dev_put(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000742}
743
744static struct kobj_type rx_queue_ktype = {
745 .sysfs_ops = &rx_queue_sysfs_ops,
746 .release = rx_queue_release,
747 .default_attrs = rx_queue_default_attrs,
748};
749
750static int rx_queue_add_kobject(struct net_device *net, int index)
751{
752 struct netdev_rx_queue *queue = net->_rx + index;
753 struct kobject *kobj = &queue->kobj;
754 int error = 0;
755
756 kobj->kset = net->queues_kset;
757 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
758 "rx-%u", index);
759 if (error) {
760 kobject_put(kobj);
761 return error;
762 }
763
764 kobject_uevent(kobj, KOBJ_ADD);
Tom Herbertfe822242010-11-09 10:47:38 +0000765 dev_hold(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000766
767 return error;
768}
Tom Herbertbf264142010-11-26 08:36:09 +0000769#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +0000770
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000771int
772net_rx_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000773{
Tom Herbertbf264142010-11-26 08:36:09 +0000774#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000775 int i;
776 int error = 0;
777
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000778 for (i = old_num; i < new_num; i++) {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000779 error = rx_queue_add_kobject(net, i);
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000780 if (error) {
781 new_num = old_num;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000782 break;
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000783 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000784 }
785
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000786 while (--i >= new_num)
787 kobject_put(&net->_rx[i].kobj);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000788
789 return error;
Tom Herbertbf264142010-11-26 08:36:09 +0000790#else
791 return 0;
792#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000793}
794
Tom Herbertbf264142010-11-26 08:36:09 +0000795#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000796/*
797 * netdev_queue sysfs structures and functions.
798 */
799struct netdev_queue_attribute {
800 struct attribute attr;
801 ssize_t (*show)(struct netdev_queue *queue,
802 struct netdev_queue_attribute *attr, char *buf);
803 ssize_t (*store)(struct netdev_queue *queue,
804 struct netdev_queue_attribute *attr, const char *buf, size_t len);
805};
806#define to_netdev_queue_attr(_attr) container_of(_attr, \
807 struct netdev_queue_attribute, attr)
808
809#define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj)
810
811static ssize_t netdev_queue_attr_show(struct kobject *kobj,
812 struct attribute *attr, char *buf)
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000813{
Tom Herbert1d24eb42010-11-21 13:17:27 +0000814 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
815 struct netdev_queue *queue = to_netdev_queue(kobj);
816
817 if (!attribute->show)
818 return -EIO;
819
820 return attribute->show(queue, attribute, buf);
821}
822
823static ssize_t netdev_queue_attr_store(struct kobject *kobj,
824 struct attribute *attr,
825 const char *buf, size_t count)
826{
827 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
828 struct netdev_queue *queue = to_netdev_queue(kobj);
829
830 if (!attribute->store)
831 return -EIO;
832
833 return attribute->store(queue, attribute, buf, count);
834}
835
836static const struct sysfs_ops netdev_queue_sysfs_ops = {
837 .show = netdev_queue_attr_show,
838 .store = netdev_queue_attr_store,
839};
840
841static inline unsigned int get_netdev_queue_index(struct netdev_queue *queue)
842{
843 struct net_device *dev = queue->dev;
844 int i;
845
846 for (i = 0; i < dev->num_tx_queues; i++)
847 if (queue == &dev->_tx[i])
848 break;
849
850 BUG_ON(i >= dev->num_tx_queues);
851
852 return i;
853}
854
855
856static ssize_t show_xps_map(struct netdev_queue *queue,
857 struct netdev_queue_attribute *attribute, char *buf)
858{
859 struct net_device *dev = queue->dev;
860 struct xps_dev_maps *dev_maps;
861 cpumask_var_t mask;
862 unsigned long index;
863 size_t len = 0;
864 int i;
865
866 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
867 return -ENOMEM;
868
869 index = get_netdev_queue_index(queue);
870
871 rcu_read_lock();
872 dev_maps = rcu_dereference(dev->xps_maps);
873 if (dev_maps) {
874 for_each_possible_cpu(i) {
875 struct xps_map *map =
876 rcu_dereference(dev_maps->cpu_map[i]);
877 if (map) {
878 int j;
879 for (j = 0; j < map->len; j++) {
880 if (map->queues[j] == index) {
881 cpumask_set_cpu(i, mask);
882 break;
883 }
884 }
885 }
886 }
887 }
888 rcu_read_unlock();
889
890 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
891 if (PAGE_SIZE - len < 3) {
892 free_cpumask_var(mask);
893 return -EINVAL;
894 }
895
896 free_cpumask_var(mask);
897 len += sprintf(buf + len, "\n");
898 return len;
899}
900
901static void xps_map_release(struct rcu_head *rcu)
902{
903 struct xps_map *map = container_of(rcu, struct xps_map, rcu);
904
905 kfree(map);
906}
907
908static void xps_dev_maps_release(struct rcu_head *rcu)
909{
910 struct xps_dev_maps *dev_maps =
911 container_of(rcu, struct xps_dev_maps, rcu);
912
913 kfree(dev_maps);
914}
915
916static DEFINE_MUTEX(xps_map_mutex);
Eric Dumazeta4177862010-11-28 21:43:02 +0000917#define xmap_dereference(P) \
918 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
Tom Herbert1d24eb42010-11-21 13:17:27 +0000919
920static ssize_t store_xps_map(struct netdev_queue *queue,
921 struct netdev_queue_attribute *attribute,
922 const char *buf, size_t len)
923{
924 struct net_device *dev = queue->dev;
925 cpumask_var_t mask;
926 int err, i, cpu, pos, map_len, alloc_len, need_set;
927 unsigned long index;
928 struct xps_map *map, *new_map;
929 struct xps_dev_maps *dev_maps, *new_dev_maps;
930 int nonempty = 0;
Eric Dumazetf2cd2d32010-11-29 08:14:37 +0000931 int numa_node = -2;
Tom Herbert1d24eb42010-11-21 13:17:27 +0000932
933 if (!capable(CAP_NET_ADMIN))
934 return -EPERM;
935
936 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
937 return -ENOMEM;
938
939 index = get_netdev_queue_index(queue);
940
941 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
942 if (err) {
943 free_cpumask_var(mask);
944 return err;
945 }
946
947 new_dev_maps = kzalloc(max_t(unsigned,
948 XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES), GFP_KERNEL);
949 if (!new_dev_maps) {
950 free_cpumask_var(mask);
951 return -ENOMEM;
952 }
953
954 mutex_lock(&xps_map_mutex);
955
Eric Dumazeta4177862010-11-28 21:43:02 +0000956 dev_maps = xmap_dereference(dev->xps_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +0000957
958 for_each_possible_cpu(cpu) {
Eric Dumazeta4177862010-11-28 21:43:02 +0000959 map = dev_maps ?
960 xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
961 new_map = map;
Tom Herbert1d24eb42010-11-21 13:17:27 +0000962 if (map) {
963 for (pos = 0; pos < map->len; pos++)
964 if (map->queues[pos] == index)
965 break;
966 map_len = map->len;
967 alloc_len = map->alloc_len;
968 } else
969 pos = map_len = alloc_len = 0;
970
971 need_set = cpu_isset(cpu, *mask) && cpu_online(cpu);
Eric Dumazetf2cd2d32010-11-29 08:14:37 +0000972#ifdef CONFIG_NUMA
973 if (need_set) {
974 if (numa_node == -2)
975 numa_node = cpu_to_node(cpu);
976 else if (numa_node != cpu_to_node(cpu))
977 numa_node = -1;
978 }
979#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +0000980 if (need_set && pos >= map_len) {
981 /* Need to add queue to this CPU's map */
982 if (map_len >= alloc_len) {
983 alloc_len = alloc_len ?
984 2 * alloc_len : XPS_MIN_MAP_ALLOC;
Eric Dumazetb02038a2010-11-28 05:43:24 +0000985 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len),
986 GFP_KERNEL,
987 cpu_to_node(cpu));
Tom Herbert1d24eb42010-11-21 13:17:27 +0000988 if (!new_map)
989 goto error;
990 new_map->alloc_len = alloc_len;
991 for (i = 0; i < map_len; i++)
992 new_map->queues[i] = map->queues[i];
993 new_map->len = map_len;
994 }
995 new_map->queues[new_map->len++] = index;
996 } else if (!need_set && pos < map_len) {
997 /* Need to remove queue from this CPU's map */
998 if (map_len > 1)
999 new_map->queues[pos] =
1000 new_map->queues[--new_map->len];
1001 else
1002 new_map = NULL;
1003 }
Eric Dumazeta4177862010-11-28 21:43:02 +00001004 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], new_map);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001005 }
1006
1007 /* Cleanup old maps */
1008 for_each_possible_cpu(cpu) {
Eric Dumazeta4177862010-11-28 21:43:02 +00001009 map = dev_maps ?
1010 xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
1011 if (map && xmap_dereference(new_dev_maps->cpu_map[cpu]) != map)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001012 call_rcu(&map->rcu, xps_map_release);
1013 if (new_dev_maps->cpu_map[cpu])
1014 nonempty = 1;
1015 }
1016
1017 if (nonempty)
1018 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
1019 else {
1020 kfree(new_dev_maps);
1021 rcu_assign_pointer(dev->xps_maps, NULL);
1022 }
1023
1024 if (dev_maps)
1025 call_rcu(&dev_maps->rcu, xps_dev_maps_release);
1026
Changli Gaob236da62010-12-14 03:09:15 +00001027 netdev_queue_numa_node_write(queue, (numa_node >= 0) ? numa_node :
1028 NUMA_NO_NODE);
Eric Dumazetf2cd2d32010-11-29 08:14:37 +00001029
Tom Herbert1d24eb42010-11-21 13:17:27 +00001030 mutex_unlock(&xps_map_mutex);
1031
1032 free_cpumask_var(mask);
1033 return len;
1034
1035error:
1036 mutex_unlock(&xps_map_mutex);
1037
1038 if (new_dev_maps)
1039 for_each_possible_cpu(i)
Eric Dumazeta4177862010-11-28 21:43:02 +00001040 kfree(rcu_dereference_protected(
1041 new_dev_maps->cpu_map[i],
1042 1));
Tom Herbert1d24eb42010-11-21 13:17:27 +00001043 kfree(new_dev_maps);
1044 free_cpumask_var(mask);
1045 return -ENOMEM;
1046}
1047
1048static struct netdev_queue_attribute xps_cpus_attribute =
1049 __ATTR(xps_cpus, S_IRUGO | S_IWUSR, show_xps_map, store_xps_map);
1050
1051static struct attribute *netdev_queue_default_attrs[] = {
1052 &xps_cpus_attribute.attr,
1053 NULL
1054};
1055
1056static void netdev_queue_release(struct kobject *kobj)
1057{
1058 struct netdev_queue *queue = to_netdev_queue(kobj);
1059 struct net_device *dev = queue->dev;
1060 struct xps_dev_maps *dev_maps;
1061 struct xps_map *map;
1062 unsigned long index;
1063 int i, pos, nonempty = 0;
1064
1065 index = get_netdev_queue_index(queue);
1066
1067 mutex_lock(&xps_map_mutex);
Eric Dumazeta4177862010-11-28 21:43:02 +00001068 dev_maps = xmap_dereference(dev->xps_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001069
1070 if (dev_maps) {
1071 for_each_possible_cpu(i) {
Eric Dumazeta4177862010-11-28 21:43:02 +00001072 map = xmap_dereference(dev_maps->cpu_map[i]);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001073 if (!map)
1074 continue;
1075
1076 for (pos = 0; pos < map->len; pos++)
1077 if (map->queues[pos] == index)
1078 break;
1079
1080 if (pos < map->len) {
1081 if (map->len > 1)
1082 map->queues[pos] =
1083 map->queues[--map->len];
1084 else {
1085 RCU_INIT_POINTER(dev_maps->cpu_map[i],
1086 NULL);
1087 call_rcu(&map->rcu, xps_map_release);
1088 map = NULL;
1089 }
1090 }
1091 if (map)
1092 nonempty = 1;
1093 }
1094
1095 if (!nonempty) {
1096 RCU_INIT_POINTER(dev->xps_maps, NULL);
1097 call_rcu(&dev_maps->rcu, xps_dev_maps_release);
1098 }
1099 }
1100
1101 mutex_unlock(&xps_map_mutex);
1102
1103 memset(kobj, 0, sizeof(*kobj));
1104 dev_put(queue->dev);
1105}
1106
1107static struct kobj_type netdev_queue_ktype = {
1108 .sysfs_ops = &netdev_queue_sysfs_ops,
1109 .release = netdev_queue_release,
1110 .default_attrs = netdev_queue_default_attrs,
1111};
1112
1113static int netdev_queue_add_kobject(struct net_device *net, int index)
1114{
1115 struct netdev_queue *queue = net->_tx + index;
1116 struct kobject *kobj = &queue->kobj;
1117 int error = 0;
1118
1119 kobj->kset = net->queues_kset;
1120 error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL,
1121 "tx-%u", index);
1122 if (error) {
1123 kobject_put(kobj);
1124 return error;
1125 }
1126
1127 kobject_uevent(kobj, KOBJ_ADD);
1128 dev_hold(queue->dev);
1129
1130 return error;
1131}
Tom Herbertbf264142010-11-26 08:36:09 +00001132#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001133
1134int
1135netdev_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
1136{
Tom Herbertbf264142010-11-26 08:36:09 +00001137#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001138 int i;
1139 int error = 0;
1140
1141 for (i = old_num; i < new_num; i++) {
1142 error = netdev_queue_add_kobject(net, i);
1143 if (error) {
1144 new_num = old_num;
1145 break;
1146 }
1147 }
1148
1149 while (--i >= new_num)
1150 kobject_put(&net->_tx[i].kobj);
1151
1152 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001153#else
1154 return 0;
1155#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001156}
1157
1158static int register_queue_kobjects(struct net_device *net)
1159{
Tom Herbertbf264142010-11-26 08:36:09 +00001160 int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001161
Tom Herbertbf264142010-11-26 08:36:09 +00001162#if defined(CONFIG_RPS) || defined(CONFIG_XPS)
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001163 net->queues_kset = kset_create_and_add("queues",
1164 NULL, &net->dev.kobj);
1165 if (!net->queues_kset)
1166 return -ENOMEM;
Tom Herbertbf264142010-11-26 08:36:09 +00001167#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001168
Tom Herbertbf264142010-11-26 08:36:09 +00001169#ifdef CONFIG_RPS
1170 real_rx = net->real_num_rx_queues;
1171#endif
1172 real_tx = net->real_num_tx_queues;
1173
1174 error = net_rx_queue_update_kobjects(net, 0, real_rx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001175 if (error)
1176 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001177 rxq = real_rx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001178
Tom Herbertbf264142010-11-26 08:36:09 +00001179 error = netdev_queue_update_kobjects(net, 0, real_tx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001180 if (error)
1181 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001182 txq = real_tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001183
1184 return 0;
1185
1186error:
1187 netdev_queue_update_kobjects(net, txq, 0);
1188 net_rx_queue_update_kobjects(net, rxq, 0);
1189 return error;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001190}
1191
Tom Herbert1d24eb42010-11-21 13:17:27 +00001192static void remove_queue_kobjects(struct net_device *net)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001193{
Tom Herbertbf264142010-11-26 08:36:09 +00001194 int real_rx = 0, real_tx = 0;
1195
1196#ifdef CONFIG_RPS
1197 real_rx = net->real_num_rx_queues;
1198#endif
1199 real_tx = net->real_num_tx_queues;
1200
1201 net_rx_queue_update_kobjects(net, real_rx, 0);
1202 netdev_queue_update_kobjects(net, real_tx, 0);
1203#if defined(CONFIG_RPS) || defined(CONFIG_XPS)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001204 kset_unregister(net->queues_kset);
Tom Herbertbf264142010-11-26 08:36:09 +00001205#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001206}
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001207
1208static const void *net_current_ns(void)
1209{
1210 return current->nsproxy->net_ns;
1211}
1212
1213static const void *net_initial_ns(void)
1214{
1215 return &init_net;
1216}
1217
1218static const void *net_netlink_ns(struct sock *sk)
1219{
1220 return sock_net(sk);
1221}
1222
Johannes Berg04600792010-08-05 17:45:15 +02001223struct kobj_ns_type_operations net_ns_type_operations = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001224 .type = KOBJ_NS_TYPE_NET,
1225 .current_ns = net_current_ns,
1226 .netlink_ns = net_netlink_ns,
1227 .initial_ns = net_initial_ns,
1228};
Johannes Berg04600792010-08-05 17:45:15 +02001229EXPORT_SYMBOL_GPL(net_ns_type_operations);
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001230
1231static void net_kobj_ns_exit(struct net *net)
1232{
1233 kobj_ns_exit(KOBJ_NS_TYPE_NET, net);
1234}
1235
Eric W. Biedermand6523dd2010-05-16 21:59:45 -07001236static struct pernet_operations kobj_net_ops = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001237 .exit = net_kobj_ns_exit,
1238};
1239
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001242static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001244 struct net_device *dev = to_net_dev(d);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001245 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Kay Sievers312c0042005-11-16 09:00:00 +01001247 /* pass interface to uevent. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001248 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
Eric Rannaudbf624562007-03-30 22:23:12 -07001249 if (retval)
1250 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001252 /* pass ifindex to uevent.
1253 * ifindex is useful as it won't change (interface name may change)
1254 * and is what RtNetlink uses natively. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001255 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001256
Eric Rannaudbf624562007-03-30 22:23:12 -07001257exit:
Eric Rannaudbf624562007-03-30 22:23:12 -07001258 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260#endif
1261
1262/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001263 * netdev_release -- destroy and free a dead device.
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001264 * Called when last reference to device kobject is gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001266static void netdev_release(struct device *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001268 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 BUG_ON(dev->reg_state != NETREG_RELEASED);
1271
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001272 kfree(dev->ifalias);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 kfree((char *)dev - dev->padded);
1274}
1275
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001276static const void *net_namespace(struct device *d)
1277{
1278 struct net_device *dev;
1279 dev = container_of(d, struct net_device, dev);
1280 return dev_net(dev);
1281}
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283static struct class net_class = {
1284 .name = "net",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001285 .dev_release = netdev_release,
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001286#ifdef CONFIG_SYSFS
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001287 .dev_attrs = net_class_attributes,
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001288#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289#ifdef CONFIG_HOTPLUG
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001290 .dev_uevent = netdev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291#endif
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001292 .ns_type = &net_ns_type_operations,
1293 .namespace = net_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294};
1295
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001296/* Delete sysfs entries but hold kobject reference until after all
1297 * netdev references are gone.
1298 */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001299void netdev_unregister_kobject(struct net_device * net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001301 struct device *dev = &(net->dev);
1302
1303 kobject_get(&dev->kobj);
Eric W. Biederman38918452008-10-27 17:51:47 -07001304
Tom Herbert1d24eb42010-11-21 13:17:27 +00001305 remove_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001306
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001307 device_del(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310/* Create sysfs entries for network device. */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001311int netdev_register_kobject(struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001313 struct device *dev = &(net->dev);
David Brownella4dbd672009-06-24 10:06:31 -07001314 const struct attribute_group **groups = net->sysfs_groups;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001315 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001317 device_initialize(dev);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001318 dev->class = &net_class;
1319 dev->platform_data = net;
1320 dev->groups = groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Stephen Hemmingera2205472009-03-09 13:51:55 +00001322 dev_set_name(dev, "%s", net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001324#ifdef CONFIG_SYSFS
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001325 /* Allow for a device specific group */
1326 if (*groups)
1327 groups++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001329 *groups++ = &netstat_group;
Johannes Berg22bb1be2008-07-10 11:16:47 +02001330#ifdef CONFIG_WIRELESS_EXT_SYSFS
Johannes Berg3d23e342009-09-29 23:27:28 +02001331 if (net->ieee80211_ptr)
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -07001332 *groups++ = &wireless_group;
Johannes Berg3d23e342009-09-29 23:27:28 +02001333#ifdef CONFIG_WIRELESS_EXT
1334 else if (net->wireless_handlers)
1335 *groups++ = &wireless_group;
1336#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337#endif
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001338#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Tom Herbert0a9627f2010-03-16 08:03:29 +00001340 error = device_add(dev);
1341 if (error)
1342 return error;
1343
Tom Herbert1d24eb42010-11-21 13:17:27 +00001344 error = register_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001345 if (error) {
1346 device_del(dev);
1347 return error;
1348 }
1349
1350 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Jay Vosburghb8a97872008-06-13 18:12:04 -07001353int netdev_class_create_file(struct class_attribute *class_attr)
1354{
1355 return class_create_file(&net_class, class_attr);
1356}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +00001357EXPORT_SYMBOL(netdev_class_create_file);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001358
1359void netdev_class_remove_file(struct class_attribute *class_attr)
1360{
1361 class_remove_file(&net_class, class_attr);
1362}
Jay Vosburghb8a97872008-06-13 18:12:04 -07001363EXPORT_SYMBOL(netdev_class_remove_file);
1364
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001365int netdev_kobject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001367 kobj_ns_type_register(&net_ns_type_operations);
Eric W. Biedermand6523dd2010-05-16 21:59:45 -07001368 register_pernet_subsys(&kobj_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return class_register(&net_class);
1370}