blob: 4b4d0b0a3543427d16a4ccd7fe3df39677d485e4 [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>
Tom Herbert114cf582011-11-28 16:33:09 +000024#include <linux/jiffies.h>
Johannes Berg8f1546c2009-09-28 15:26:43 +020025#include <net/wext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Pavel Emelyanov342709e2007-10-23 21:14:45 -070027#include "net-sysfs.h"
28
Eric W. Biederman8b41d182007-09-26 22:02:53 -070029#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static const char fmt_hex[] = "%#x\n";
David S. Millerd1102b52005-05-29 20:28:25 -070031static const char fmt_long_hex[] = "%#lx\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static const char fmt_dec[] = "%d\n";
David Decotigny8ae6daca2011-04-27 18:32:38 +000033static const char fmt_udec[] = "%u\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static const char fmt_ulong[] = "%lu\n";
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +000035static const char fmt_u64[] = "%llu\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090037static inline int dev_isalive(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -070039 return dev->reg_state <= NETREG_REGISTERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
42/* use same locking rules as GIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070043static ssize_t netdev_show(const struct device *dev,
44 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 ssize_t (*format)(const struct net_device *, char *))
46{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070047 struct net_device *net = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 ssize_t ret = -EINVAL;
49
50 read_lock(&dev_base_lock);
51 if (dev_isalive(net))
52 ret = (*format)(net, buf);
53 read_unlock(&dev_base_lock);
54
55 return ret;
56}
57
58/* generate a show function for simple field */
59#define NETDEVICE_SHOW(field, format_string) \
60static ssize_t format_##field(const struct net_device *net, char *buf) \
61{ \
62 return sprintf(buf, format_string, net->field); \
63} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070064static ssize_t show_##field(struct device *dev, \
65 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070067 return netdev_show(dev, attr, buf, format_##field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
70
71/* use same locking and permission rules as SIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070072static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 const char *buf, size_t len,
74 int (*set)(struct net_device *, unsigned long))
75{
76 struct net_device *net = to_net_dev(dev);
77 char *endp;
78 unsigned long new;
79 int ret = -EINVAL;
80
81 if (!capable(CAP_NET_ADMIN))
82 return -EPERM;
83
84 new = simple_strtoul(buf, &endp, 0);
85 if (endp == buf)
86 goto err;
87
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000088 if (!rtnl_trylock())
Eric W. Biederman336ca572009-05-13 16:57:25 +000089 return restart_syscall();
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (dev_isalive(net)) {
92 if ((ret = (*set)(net, new)) == 0)
93 ret = len;
94 }
95 rtnl_unlock();
96 err:
97 return ret;
98}
99
David Woodhouse9d296722008-04-20 16:07:43 -0700100NETDEVICE_SHOW(dev_id, fmt_hex);
Stefan Assmannc1f79422010-07-22 02:50:21 +0000101NETDEVICE_SHOW(addr_assign_type, fmt_dec);
Kay Sieversfd586ba2005-12-19 01:42:56 +0100102NETDEVICE_SHOW(addr_len, fmt_dec);
103NETDEVICE_SHOW(iflink, fmt_dec);
104NETDEVICE_SHOW(ifindex, fmt_dec);
Kay Sieversfd586ba2005-12-19 01:42:56 +0100105NETDEVICE_SHOW(type, fmt_dec);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800106NETDEVICE_SHOW(link_mode, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108/* use same locking rules as GIFHWADDR ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700109static ssize_t show_address(struct device *dev, struct device_attribute *attr,
110 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct net_device *net = to_net_dev(dev);
113 ssize_t ret = -EINVAL;
114
115 read_lock(&dev_base_lock);
116 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800117 ret = sysfs_format_mac(buf, net->dev_addr, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 read_unlock(&dev_base_lock);
119 return ret;
120}
121
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700122static ssize_t show_broadcast(struct device *dev,
123 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct net_device *net = to_net_dev(dev);
126 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800127 return sysfs_format_mac(buf, net->broadcast, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -EINVAL;
129}
130
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700131static ssize_t show_carrier(struct device *dev,
132 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 struct net_device *netdev = to_net_dev(dev);
135 if (netif_running(netdev)) {
136 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
137 }
138 return -EINVAL;
139}
140
Andy Gospodarekd519e172009-10-02 09:26:12 +0000141static ssize_t show_speed(struct device *dev,
142 struct device_attribute *attr, char *buf)
143{
144 struct net_device *netdev = to_net_dev(dev);
145 int ret = -EINVAL;
146
147 if (!rtnl_trylock())
148 return restart_syscall();
149
David Decotigny8ae6daca2011-04-27 18:32:38 +0000150 if (netif_running(netdev)) {
151 struct ethtool_cmd cmd;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000152 if (!__ethtool_get_settings(netdev, &cmd))
David Decotigny8ae6daca2011-04-27 18:32:38 +0000153 ret = sprintf(buf, fmt_udec, ethtool_cmd_speed(&cmd));
Andy Gospodarekd519e172009-10-02 09:26:12 +0000154 }
155 rtnl_unlock();
156 return ret;
157}
158
159static ssize_t show_duplex(struct device *dev,
160 struct device_attribute *attr, char *buf)
161{
162 struct net_device *netdev = to_net_dev(dev);
163 int ret = -EINVAL;
164
165 if (!rtnl_trylock())
166 return restart_syscall();
167
David Decotigny8ae6daca2011-04-27 18:32:38 +0000168 if (netif_running(netdev)) {
169 struct ethtool_cmd cmd;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000170 if (!__ethtool_get_settings(netdev, &cmd))
David Decotigny8ae6daca2011-04-27 18:32:38 +0000171 ret = sprintf(buf, "%s\n",
172 cmd.duplex ? "full" : "half");
Andy Gospodarekd519e172009-10-02 09:26:12 +0000173 }
174 rtnl_unlock();
175 return ret;
176}
177
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700178static ssize_t show_dormant(struct device *dev,
179 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800180{
181 struct net_device *netdev = to_net_dev(dev);
182
183 if (netif_running(netdev))
184 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
185
186 return -EINVAL;
187}
188
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700189static const char *const operstates[] = {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800190 "unknown",
191 "notpresent", /* currently unused */
192 "down",
193 "lowerlayerdown",
194 "testing", /* currently unused */
195 "dormant",
196 "up"
197};
198
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700199static ssize_t show_operstate(struct device *dev,
200 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800201{
202 const struct net_device *netdev = to_net_dev(dev);
203 unsigned char operstate;
204
205 read_lock(&dev_base_lock);
206 operstate = netdev->operstate;
207 if (!netif_running(netdev))
208 operstate = IF_OPER_DOWN;
209 read_unlock(&dev_base_lock);
210
Adrian Bunke3a5cd92006-04-05 22:19:47 -0700211 if (operstate >= ARRAY_SIZE(operstates))
Stefan Rompfb00055a2006-03-20 17:09:11 -0800212 return -EINVAL; /* should not happen */
213
214 return sprintf(buf, "%s\n", operstates[operstate]);
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/* read-write attributes */
218NETDEVICE_SHOW(mtu, fmt_dec);
219
220static int change_mtu(struct net_device *net, unsigned long new_mtu)
221{
222 return dev_set_mtu(net, (int) new_mtu);
223}
224
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700225static ssize_t store_mtu(struct device *dev, struct device_attribute *attr,
226 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700228 return netdev_store(dev, attr, buf, len, change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231NETDEVICE_SHOW(flags, fmt_hex);
232
233static int change_flags(struct net_device *net, unsigned long new_flags)
234{
235 return dev_change_flags(net, (unsigned) new_flags);
236}
237
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700238static ssize_t store_flags(struct device *dev, struct device_attribute *attr,
239 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700241 return netdev_store(dev, attr, buf, len, change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
245
246static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
247{
248 net->tx_queue_len = new_len;
249 return 0;
250}
251
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700252static ssize_t store_tx_queue_len(struct device *dev,
253 struct device_attribute *attr,
254 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700256 return netdev_store(dev, attr, buf, len, change_tx_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700259static ssize_t store_ifalias(struct device *dev, struct device_attribute *attr,
260 const char *buf, size_t len)
261{
262 struct net_device *netdev = to_net_dev(dev);
263 size_t count = len;
264 ssize_t ret;
265
266 if (!capable(CAP_NET_ADMIN))
267 return -EPERM;
268
269 /* ignore trailing newline */
270 if (len > 0 && buf[len - 1] == '\n')
271 --count;
272
Eric W. Biederman336ca572009-05-13 16:57:25 +0000273 if (!rtnl_trylock())
274 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700275 ret = dev_set_alias(netdev, buf, count);
276 rtnl_unlock();
277
278 return ret < 0 ? ret : len;
279}
280
281static ssize_t show_ifalias(struct device *dev,
282 struct device_attribute *attr, char *buf)
283{
284 const struct net_device *netdev = to_net_dev(dev);
285 ssize_t ret = 0;
286
Eric W. Biederman336ca572009-05-13 16:57:25 +0000287 if (!rtnl_trylock())
288 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700289 if (netdev->ifalias)
290 ret = sprintf(buf, "%s\n", netdev->ifalias);
291 rtnl_unlock();
292 return ret;
293}
294
Vlad Dogarua512b922011-01-24 03:37:29 +0000295NETDEVICE_SHOW(group, fmt_dec);
296
297static int change_group(struct net_device *net, unsigned long new_group)
298{
299 dev_set_group(net, (int) new_group);
300 return 0;
301}
302
303static ssize_t store_group(struct device *dev, struct device_attribute *attr,
304 const char *buf, size_t len)
305{
306 return netdev_store(dev, attr, buf, len, change_group);
307}
308
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700309static struct device_attribute net_class_attributes[] = {
Stefan Assmannc1f79422010-07-22 02:50:21 +0000310 __ATTR(addr_assign_type, S_IRUGO, show_addr_assign_type, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100311 __ATTR(addr_len, S_IRUGO, show_addr_len, NULL),
David Woodhouse9d296722008-04-20 16:07:43 -0700312 __ATTR(dev_id, S_IRUGO, show_dev_id, NULL),
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700313 __ATTR(ifalias, S_IRUGO | S_IWUSR, show_ifalias, store_ifalias),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100314 __ATTR(iflink, S_IRUGO, show_iflink, NULL),
315 __ATTR(ifindex, S_IRUGO, show_ifindex, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100316 __ATTR(type, S_IRUGO, show_type, NULL),
Stefan Rompfb00055a2006-03-20 17:09:11 -0800317 __ATTR(link_mode, S_IRUGO, show_link_mode, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100318 __ATTR(address, S_IRUGO, show_address, NULL),
319 __ATTR(broadcast, S_IRUGO, show_broadcast, NULL),
320 __ATTR(carrier, S_IRUGO, show_carrier, NULL),
Andy Gospodarekd519e172009-10-02 09:26:12 +0000321 __ATTR(speed, S_IRUGO, show_speed, NULL),
322 __ATTR(duplex, S_IRUGO, show_duplex, NULL),
Stefan Rompfb00055a2006-03-20 17:09:11 -0800323 __ATTR(dormant, S_IRUGO, show_dormant, NULL),
324 __ATTR(operstate, S_IRUGO, show_operstate, NULL),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100325 __ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu),
326 __ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags),
327 __ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
328 store_tx_queue_len),
Xiaotian Fengb6644cb2011-02-09 19:16:15 -0800329 __ATTR(netdev_group, S_IRUGO | S_IWUSR, show_group, store_group),
Kay Sieversfd586ba2005-12-19 01:42:56 +0100330 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331};
332
333/* Show a given an attribute in the statistics group */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700334static ssize_t netstat_show(const struct device *d,
335 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 unsigned long offset)
337{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700338 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 ssize_t ret = -EINVAL;
340
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000341 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
342 offset % sizeof(u64) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 read_lock(&dev_base_lock);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700345 if (dev_isalive(dev)) {
Eric Dumazet28172732010-07-07 14:58:56 -0700346 struct rtnl_link_stats64 temp;
347 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
348
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000349 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *) stats) + offset));
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 read_unlock(&dev_base_lock);
352 return ret;
353}
354
355/* generate a read-only statistics attribute */
356#define NETSTAT_ENTRY(name) \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700357static ssize_t show_##name(struct device *d, \
358 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700360 return netstat_show(d, attr, buf, \
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000361 offsetof(struct rtnl_link_stats64, name)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700363static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365NETSTAT_ENTRY(rx_packets);
366NETSTAT_ENTRY(tx_packets);
367NETSTAT_ENTRY(rx_bytes);
368NETSTAT_ENTRY(tx_bytes);
369NETSTAT_ENTRY(rx_errors);
370NETSTAT_ENTRY(tx_errors);
371NETSTAT_ENTRY(rx_dropped);
372NETSTAT_ENTRY(tx_dropped);
373NETSTAT_ENTRY(multicast);
374NETSTAT_ENTRY(collisions);
375NETSTAT_ENTRY(rx_length_errors);
376NETSTAT_ENTRY(rx_over_errors);
377NETSTAT_ENTRY(rx_crc_errors);
378NETSTAT_ENTRY(rx_frame_errors);
379NETSTAT_ENTRY(rx_fifo_errors);
380NETSTAT_ENTRY(rx_missed_errors);
381NETSTAT_ENTRY(tx_aborted_errors);
382NETSTAT_ENTRY(tx_carrier_errors);
383NETSTAT_ENTRY(tx_fifo_errors);
384NETSTAT_ENTRY(tx_heartbeat_errors);
385NETSTAT_ENTRY(tx_window_errors);
386NETSTAT_ENTRY(rx_compressed);
387NETSTAT_ENTRY(tx_compressed);
388
389static struct attribute *netstat_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700390 &dev_attr_rx_packets.attr,
391 &dev_attr_tx_packets.attr,
392 &dev_attr_rx_bytes.attr,
393 &dev_attr_tx_bytes.attr,
394 &dev_attr_rx_errors.attr,
395 &dev_attr_tx_errors.attr,
396 &dev_attr_rx_dropped.attr,
397 &dev_attr_tx_dropped.attr,
398 &dev_attr_multicast.attr,
399 &dev_attr_collisions.attr,
400 &dev_attr_rx_length_errors.attr,
401 &dev_attr_rx_over_errors.attr,
402 &dev_attr_rx_crc_errors.attr,
403 &dev_attr_rx_frame_errors.attr,
404 &dev_attr_rx_fifo_errors.attr,
405 &dev_attr_rx_missed_errors.attr,
406 &dev_attr_tx_aborted_errors.attr,
407 &dev_attr_tx_carrier_errors.attr,
408 &dev_attr_tx_fifo_errors.attr,
409 &dev_attr_tx_heartbeat_errors.attr,
410 &dev_attr_tx_window_errors.attr,
411 &dev_attr_rx_compressed.attr,
412 &dev_attr_tx_compressed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 NULL
414};
415
416
417static struct attribute_group netstat_group = {
418 .name = "statistics",
419 .attrs = netstat_attrs,
420};
421
Johannes Berg22bb1be2008-07-10 11:16:47 +0200422#ifdef CONFIG_WIRELESS_EXT_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423/* helper function that does all the locking etc for wireless stats */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700424static ssize_t wireless_show(struct device *d, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 ssize_t (*format)(const struct iw_statistics *,
426 char *))
427{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700428 struct net_device *dev = to_net_dev(d);
Johannes Berg8f1546c2009-09-28 15:26:43 +0200429 const struct iw_statistics *iw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 ssize_t ret = -EINVAL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900431
Eric W. Biedermanb8afe642010-02-19 13:23:47 +0000432 if (!rtnl_trylock())
433 return restart_syscall();
Andrey Borzenkov6dd214b2006-01-09 20:51:28 -0800434 if (dev_isalive(dev)) {
Johannes Berg8f1546c2009-09-28 15:26:43 +0200435 iw = get_wireless_stats(dev);
436 if (iw)
Andrey Borzenkov6dd214b2006-01-09 20:51:28 -0800437 ret = (*format)(iw, buf);
438 }
Johannes Berga160ee62009-10-05 02:22:23 -0700439 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 return ret;
442}
443
444/* show function template for wireless fields */
445#define WIRELESS_SHOW(name, field, format_string) \
446static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
447{ \
448 return sprintf(buf, format_string, iw->field); \
449} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700450static ssize_t show_iw_##name(struct device *d, \
451 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700453 return wireless_show(d, buf, format_iw_##name); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454} \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700455static DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457WIRELESS_SHOW(status, status, fmt_hex);
458WIRELESS_SHOW(link, qual.qual, fmt_dec);
459WIRELESS_SHOW(level, qual.level, fmt_dec);
460WIRELESS_SHOW(noise, qual.noise, fmt_dec);
461WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
462WIRELESS_SHOW(crypt, discard.code, fmt_dec);
463WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
464WIRELESS_SHOW(misc, discard.misc, fmt_dec);
465WIRELESS_SHOW(retries, discard.retries, fmt_dec);
466WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
467
468static struct attribute *wireless_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700469 &dev_attr_status.attr,
470 &dev_attr_link.attr,
471 &dev_attr_level.attr,
472 &dev_attr_noise.attr,
473 &dev_attr_nwid.attr,
474 &dev_attr_crypt.attr,
475 &dev_attr_fragment.attr,
476 &dev_attr_retries.attr,
477 &dev_attr_misc.attr,
478 &dev_attr_beacon.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 NULL
480};
481
482static struct attribute_group wireless_group = {
483 .name = "wireless",
484 .attrs = wireless_attrs,
485};
486#endif
Eric W. Biedermand6523dd2010-05-16 21:59:45 -0700487#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Stephen Rothwell30bde1f2010-03-29 01:00:44 -0700489#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000490/*
491 * RX queue sysfs structures and functions.
492 */
493struct rx_queue_attribute {
494 struct attribute attr;
495 ssize_t (*show)(struct netdev_rx_queue *queue,
496 struct rx_queue_attribute *attr, char *buf);
497 ssize_t (*store)(struct netdev_rx_queue *queue,
498 struct rx_queue_attribute *attr, const char *buf, size_t len);
499};
500#define to_rx_queue_attr(_attr) container_of(_attr, \
501 struct rx_queue_attribute, attr)
502
503#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
504
505static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
506 char *buf)
507{
508 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
509 struct netdev_rx_queue *queue = to_rx_queue(kobj);
510
511 if (!attribute->show)
512 return -EIO;
513
514 return attribute->show(queue, attribute, buf);
515}
516
517static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
518 const char *buf, size_t count)
519{
520 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
521 struct netdev_rx_queue *queue = to_rx_queue(kobj);
522
523 if (!attribute->store)
524 return -EIO;
525
526 return attribute->store(queue, attribute, buf, count);
527}
528
stephen hemmingerfa50d642010-08-31 12:14:13 +0000529static const struct sysfs_ops rx_queue_sysfs_ops = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000530 .show = rx_queue_attr_show,
531 .store = rx_queue_attr_store,
532};
533
534static ssize_t show_rps_map(struct netdev_rx_queue *queue,
535 struct rx_queue_attribute *attribute, char *buf)
536{
537 struct rps_map *map;
538 cpumask_var_t mask;
539 size_t len = 0;
540 int i;
541
542 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
543 return -ENOMEM;
544
545 rcu_read_lock();
546 map = rcu_dereference(queue->rps_map);
547 if (map)
548 for (i = 0; i < map->len; i++)
549 cpumask_set_cpu(map->cpus[i], mask);
550
551 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
552 if (PAGE_SIZE - len < 3) {
553 rcu_read_unlock();
554 free_cpumask_var(mask);
555 return -EINVAL;
556 }
557 rcu_read_unlock();
558
559 free_cpumask_var(mask);
560 len += sprintf(buf + len, "\n");
561 return len;
562}
563
Eric Dumazetf5acb902010-04-19 14:40:57 -0700564static ssize_t store_rps_map(struct netdev_rx_queue *queue,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000565 struct rx_queue_attribute *attribute,
566 const char *buf, size_t len)
567{
568 struct rps_map *old_map, *map;
569 cpumask_var_t mask;
570 int err, cpu, i;
571 static DEFINE_SPINLOCK(rps_map_lock);
572
573 if (!capable(CAP_NET_ADMIN))
574 return -EPERM;
575
576 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
577 return -ENOMEM;
578
579 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
580 if (err) {
581 free_cpumask_var(mask);
582 return err;
583 }
584
585 map = kzalloc(max_t(unsigned,
586 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
587 GFP_KERNEL);
588 if (!map) {
589 free_cpumask_var(mask);
590 return -ENOMEM;
591 }
592
593 i = 0;
594 for_each_cpu_and(cpu, mask, cpu_online_mask)
595 map->cpus[i++] = cpu;
596
597 if (i)
598 map->len = i;
599 else {
600 kfree(map);
601 map = NULL;
602 }
603
604 spin_lock(&rps_map_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000605 old_map = rcu_dereference_protected(queue->rps_map,
606 lockdep_is_held(&rps_map_lock));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000607 rcu_assign_pointer(queue->rps_map, map);
608 spin_unlock(&rps_map_lock);
609
Eric Dumazetadc93002011-11-17 03:13:26 +0000610 if (map)
611 jump_label_inc(&rps_needed);
612 if (old_map) {
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800613 kfree_rcu(old_map, rcu);
Eric Dumazetadc93002011-11-17 03:13:26 +0000614 jump_label_dec(&rps_needed);
615 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000616 free_cpumask_var(mask);
617 return len;
618}
619
Tom Herbertfec5e652010-04-16 16:01:27 -0700620static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
621 struct rx_queue_attribute *attr,
622 char *buf)
623{
624 struct rps_dev_flow_table *flow_table;
625 unsigned int val = 0;
626
627 rcu_read_lock();
628 flow_table = rcu_dereference(queue->rps_flow_table);
629 if (flow_table)
630 val = flow_table->mask + 1;
631 rcu_read_unlock();
632
633 return sprintf(buf, "%u\n", val);
634}
635
636static void rps_dev_flow_table_release_work(struct work_struct *work)
637{
638 struct rps_dev_flow_table *table = container_of(work,
639 struct rps_dev_flow_table, free_work);
640
641 vfree(table);
642}
643
644static void rps_dev_flow_table_release(struct rcu_head *rcu)
645{
646 struct rps_dev_flow_table *table = container_of(rcu,
647 struct rps_dev_flow_table, rcu);
648
649 INIT_WORK(&table->free_work, rps_dev_flow_table_release_work);
650 schedule_work(&table->free_work);
651}
652
Eric Dumazetf5acb902010-04-19 14:40:57 -0700653static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
Tom Herbertfec5e652010-04-16 16:01:27 -0700654 struct rx_queue_attribute *attr,
655 const char *buf, size_t len)
656{
657 unsigned int count;
658 char *endp;
659 struct rps_dev_flow_table *table, *old_table;
660 static DEFINE_SPINLOCK(rps_dev_flow_lock);
661
662 if (!capable(CAP_NET_ADMIN))
663 return -EPERM;
664
665 count = simple_strtoul(buf, &endp, 0);
666 if (endp == buf)
667 return -EINVAL;
668
669 if (count) {
670 int i;
671
Xi Wanga0a129f2011-12-22 13:35:22 +0000672 if (count > INT_MAX)
673 return -EINVAL;
674 count = roundup_pow_of_two(count);
675 if (count > (ULONG_MAX - sizeof(struct rps_dev_flow_table))
676 / sizeof(struct rps_dev_flow)) {
Tom Herbertfec5e652010-04-16 16:01:27 -0700677 /* Enforce a limit to prevent overflow */
678 return -EINVAL;
679 }
Tom Herbertfec5e652010-04-16 16:01:27 -0700680 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(count));
681 if (!table)
682 return -ENOMEM;
683
684 table->mask = count - 1;
685 for (i = 0; i < count; i++)
686 table->flows[i].cpu = RPS_NO_CPU;
687 } else
688 table = NULL;
689
690 spin_lock(&rps_dev_flow_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000691 old_table = rcu_dereference_protected(queue->rps_flow_table,
692 lockdep_is_held(&rps_dev_flow_lock));
Tom Herbertfec5e652010-04-16 16:01:27 -0700693 rcu_assign_pointer(queue->rps_flow_table, table);
694 spin_unlock(&rps_dev_flow_lock);
695
696 if (old_table)
697 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
698
699 return len;
700}
701
Tom Herbert0a9627f2010-03-16 08:03:29 +0000702static struct rx_queue_attribute rps_cpus_attribute =
703 __ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map);
704
Tom Herbertfec5e652010-04-16 16:01:27 -0700705
706static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute =
707 __ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR,
708 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
709
Tom Herbert0a9627f2010-03-16 08:03:29 +0000710static struct attribute *rx_queue_default_attrs[] = {
711 &rps_cpus_attribute.attr,
Tom Herbertfec5e652010-04-16 16:01:27 -0700712 &rps_dev_flow_table_cnt_attribute.attr,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000713 NULL
714};
715
716static void rx_queue_release(struct kobject *kobj)
717{
718 struct netdev_rx_queue *queue = to_rx_queue(kobj);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000719 struct rps_map *map;
720 struct rps_dev_flow_table *flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000721
Tom Herbertfec5e652010-04-16 16:01:27 -0700722
Eric Dumazet33d480c2011-08-11 19:30:52 +0000723 map = rcu_dereference_protected(queue->rps_map, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000724 if (map) {
725 RCU_INIT_POINTER(queue->rps_map, NULL);
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800726 kfree_rcu(map, rcu);
John Fastabend9ea19482010-11-16 06:31:39 +0000727 }
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000728
Eric Dumazet33d480c2011-08-11 19:30:52 +0000729 flow_table = rcu_dereference_protected(queue->rps_flow_table, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000730 if (flow_table) {
731 RCU_INIT_POINTER(queue->rps_flow_table, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000732 call_rcu(&flow_table->rcu, rps_dev_flow_table_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000733 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000734
John Fastabend9ea19482010-11-16 06:31:39 +0000735 memset(kobj, 0, sizeof(*kobj));
Tom Herbertfe822242010-11-09 10:47:38 +0000736 dev_put(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000737}
738
739static struct kobj_type rx_queue_ktype = {
740 .sysfs_ops = &rx_queue_sysfs_ops,
741 .release = rx_queue_release,
742 .default_attrs = rx_queue_default_attrs,
743};
744
745static int rx_queue_add_kobject(struct net_device *net, int index)
746{
747 struct netdev_rx_queue *queue = net->_rx + index;
748 struct kobject *kobj = &queue->kobj;
749 int error = 0;
750
751 kobj->kset = net->queues_kset;
752 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
753 "rx-%u", index);
754 if (error) {
755 kobject_put(kobj);
756 return error;
757 }
758
759 kobject_uevent(kobj, KOBJ_ADD);
Tom Herbertfe822242010-11-09 10:47:38 +0000760 dev_hold(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000761
762 return error;
763}
Tom Herbertbf264142010-11-26 08:36:09 +0000764#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +0000765
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000766int
767net_rx_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000768{
Tom Herbertbf264142010-11-26 08:36:09 +0000769#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000770 int i;
771 int error = 0;
772
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000773 for (i = old_num; i < new_num; i++) {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000774 error = rx_queue_add_kobject(net, i);
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000775 if (error) {
776 new_num = old_num;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000777 break;
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000778 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000779 }
780
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000781 while (--i >= new_num)
782 kobject_put(&net->_rx[i].kobj);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000783
784 return error;
Tom Herbertbf264142010-11-26 08:36:09 +0000785#else
786 return 0;
787#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000788}
789
david decotignyccf5ff62011-11-16 12:15:10 +0000790#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000791/*
792 * netdev_queue sysfs structures and functions.
793 */
794struct netdev_queue_attribute {
795 struct attribute attr;
796 ssize_t (*show)(struct netdev_queue *queue,
797 struct netdev_queue_attribute *attr, char *buf);
798 ssize_t (*store)(struct netdev_queue *queue,
799 struct netdev_queue_attribute *attr, const char *buf, size_t len);
800};
801#define to_netdev_queue_attr(_attr) container_of(_attr, \
802 struct netdev_queue_attribute, attr)
803
804#define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj)
805
806static ssize_t netdev_queue_attr_show(struct kobject *kobj,
807 struct attribute *attr, char *buf)
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000808{
Tom Herbert1d24eb42010-11-21 13:17:27 +0000809 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
810 struct netdev_queue *queue = to_netdev_queue(kobj);
811
812 if (!attribute->show)
813 return -EIO;
814
815 return attribute->show(queue, attribute, buf);
816}
817
818static ssize_t netdev_queue_attr_store(struct kobject *kobj,
819 struct attribute *attr,
820 const char *buf, size_t count)
821{
822 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
823 struct netdev_queue *queue = to_netdev_queue(kobj);
824
825 if (!attribute->store)
826 return -EIO;
827
828 return attribute->store(queue, attribute, buf, count);
829}
830
831static const struct sysfs_ops netdev_queue_sysfs_ops = {
832 .show = netdev_queue_attr_show,
833 .store = netdev_queue_attr_store,
834};
835
david decotignyccf5ff62011-11-16 12:15:10 +0000836static ssize_t show_trans_timeout(struct netdev_queue *queue,
837 struct netdev_queue_attribute *attribute,
838 char *buf)
839{
840 unsigned long trans_timeout;
841
842 spin_lock_irq(&queue->_xmit_lock);
843 trans_timeout = queue->trans_timeout;
844 spin_unlock_irq(&queue->_xmit_lock);
845
846 return sprintf(buf, "%lu", trans_timeout);
847}
848
849static struct netdev_queue_attribute queue_trans_timeout =
850 __ATTR(tx_timeout, S_IRUGO, show_trans_timeout, NULL);
851
Tom Herbert114cf582011-11-28 16:33:09 +0000852#ifdef CONFIG_BQL
853/*
854 * Byte queue limits sysfs structures and functions.
855 */
856static ssize_t bql_show(char *buf, unsigned int value)
857{
858 return sprintf(buf, "%u\n", value);
859}
860
861static ssize_t bql_set(const char *buf, const size_t count,
862 unsigned int *pvalue)
863{
864 unsigned int value;
865 int err;
866
867 if (!strcmp(buf, "max") || !strcmp(buf, "max\n"))
868 value = DQL_MAX_LIMIT;
869 else {
870 err = kstrtouint(buf, 10, &value);
871 if (err < 0)
872 return err;
873 if (value > DQL_MAX_LIMIT)
874 return -EINVAL;
875 }
876
877 *pvalue = value;
878
879 return count;
880}
881
882static ssize_t bql_show_hold_time(struct netdev_queue *queue,
883 struct netdev_queue_attribute *attr,
884 char *buf)
885{
886 struct dql *dql = &queue->dql;
887
888 return sprintf(buf, "%u\n", jiffies_to_msecs(dql->slack_hold_time));
889}
890
891static ssize_t bql_set_hold_time(struct netdev_queue *queue,
892 struct netdev_queue_attribute *attribute,
893 const char *buf, size_t len)
894{
895 struct dql *dql = &queue->dql;
896 unsigned value;
897 int err;
898
899 err = kstrtouint(buf, 10, &value);
900 if (err < 0)
901 return err;
902
903 dql->slack_hold_time = msecs_to_jiffies(value);
904
905 return len;
906}
907
908static struct netdev_queue_attribute bql_hold_time_attribute =
909 __ATTR(hold_time, S_IRUGO | S_IWUSR, bql_show_hold_time,
910 bql_set_hold_time);
911
912static ssize_t bql_show_inflight(struct netdev_queue *queue,
913 struct netdev_queue_attribute *attr,
914 char *buf)
915{
916 struct dql *dql = &queue->dql;
917
918 return sprintf(buf, "%u\n", dql->num_queued - dql->num_completed);
919}
920
921static struct netdev_queue_attribute bql_inflight_attribute =
922 __ATTR(inflight, S_IRUGO | S_IWUSR, bql_show_inflight, NULL);
923
924#define BQL_ATTR(NAME, FIELD) \
925static ssize_t bql_show_ ## NAME(struct netdev_queue *queue, \
926 struct netdev_queue_attribute *attr, \
927 char *buf) \
928{ \
929 return bql_show(buf, queue->dql.FIELD); \
930} \
931 \
932static ssize_t bql_set_ ## NAME(struct netdev_queue *queue, \
933 struct netdev_queue_attribute *attr, \
934 const char *buf, size_t len) \
935{ \
936 return bql_set(buf, len, &queue->dql.FIELD); \
937} \
938 \
939static struct netdev_queue_attribute bql_ ## NAME ## _attribute = \
940 __ATTR(NAME, S_IRUGO | S_IWUSR, bql_show_ ## NAME, \
941 bql_set_ ## NAME);
942
943BQL_ATTR(limit, limit)
944BQL_ATTR(limit_max, max_limit)
945BQL_ATTR(limit_min, min_limit)
946
947static struct attribute *dql_attrs[] = {
948 &bql_limit_attribute.attr,
949 &bql_limit_max_attribute.attr,
950 &bql_limit_min_attribute.attr,
951 &bql_hold_time_attribute.attr,
952 &bql_inflight_attribute.attr,
953 NULL
954};
955
956static struct attribute_group dql_group = {
957 .name = "byte_queue_limits",
958 .attrs = dql_attrs,
959};
960#endif /* CONFIG_BQL */
961
david decotignyccf5ff62011-11-16 12:15:10 +0000962#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000963static inline unsigned int get_netdev_queue_index(struct netdev_queue *queue)
964{
965 struct net_device *dev = queue->dev;
966 int i;
967
968 for (i = 0; i < dev->num_tx_queues; i++)
969 if (queue == &dev->_tx[i])
970 break;
971
972 BUG_ON(i >= dev->num_tx_queues);
973
974 return i;
975}
976
977
978static ssize_t show_xps_map(struct netdev_queue *queue,
979 struct netdev_queue_attribute *attribute, char *buf)
980{
981 struct net_device *dev = queue->dev;
982 struct xps_dev_maps *dev_maps;
983 cpumask_var_t mask;
984 unsigned long index;
985 size_t len = 0;
986 int i;
987
988 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
989 return -ENOMEM;
990
991 index = get_netdev_queue_index(queue);
992
993 rcu_read_lock();
994 dev_maps = rcu_dereference(dev->xps_maps);
995 if (dev_maps) {
996 for_each_possible_cpu(i) {
997 struct xps_map *map =
998 rcu_dereference(dev_maps->cpu_map[i]);
999 if (map) {
1000 int j;
1001 for (j = 0; j < map->len; j++) {
1002 if (map->queues[j] == index) {
1003 cpumask_set_cpu(i, mask);
1004 break;
1005 }
1006 }
1007 }
1008 }
1009 }
1010 rcu_read_unlock();
1011
1012 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
1013 if (PAGE_SIZE - len < 3) {
1014 free_cpumask_var(mask);
1015 return -EINVAL;
1016 }
1017
1018 free_cpumask_var(mask);
1019 len += sprintf(buf + len, "\n");
1020 return len;
1021}
1022
Tom Herbert1d24eb42010-11-21 13:17:27 +00001023static DEFINE_MUTEX(xps_map_mutex);
Eric Dumazeta4177862010-11-28 21:43:02 +00001024#define xmap_dereference(P) \
1025 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
Tom Herbert1d24eb42010-11-21 13:17:27 +00001026
Tom Herbert927fbec2011-11-28 16:33:02 +00001027static void xps_queue_release(struct netdev_queue *queue)
1028{
1029 struct net_device *dev = queue->dev;
1030 struct xps_dev_maps *dev_maps;
1031 struct xps_map *map;
1032 unsigned long index;
1033 int i, pos, nonempty = 0;
1034
1035 index = get_netdev_queue_index(queue);
1036
1037 mutex_lock(&xps_map_mutex);
1038 dev_maps = xmap_dereference(dev->xps_maps);
1039
1040 if (dev_maps) {
1041 for_each_possible_cpu(i) {
1042 map = xmap_dereference(dev_maps->cpu_map[i]);
1043 if (!map)
1044 continue;
1045
1046 for (pos = 0; pos < map->len; pos++)
1047 if (map->queues[pos] == index)
1048 break;
1049
1050 if (pos < map->len) {
1051 if (map->len > 1)
1052 map->queues[pos] =
1053 map->queues[--map->len];
1054 else {
1055 RCU_INIT_POINTER(dev_maps->cpu_map[i],
1056 NULL);
1057 kfree_rcu(map, rcu);
1058 map = NULL;
1059 }
1060 }
1061 if (map)
1062 nonempty = 1;
1063 }
1064
1065 if (!nonempty) {
1066 RCU_INIT_POINTER(dev->xps_maps, NULL);
1067 kfree_rcu(dev_maps, rcu);
1068 }
1069 }
1070 mutex_unlock(&xps_map_mutex);
1071}
1072
Tom Herbert1d24eb42010-11-21 13:17:27 +00001073static ssize_t store_xps_map(struct netdev_queue *queue,
1074 struct netdev_queue_attribute *attribute,
1075 const char *buf, size_t len)
1076{
1077 struct net_device *dev = queue->dev;
1078 cpumask_var_t mask;
1079 int err, i, cpu, pos, map_len, alloc_len, need_set;
1080 unsigned long index;
1081 struct xps_map *map, *new_map;
1082 struct xps_dev_maps *dev_maps, *new_dev_maps;
1083 int nonempty = 0;
david decotigny19b05f82011-11-16 12:15:08 +00001084 int numa_node_id = -2;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001085
1086 if (!capable(CAP_NET_ADMIN))
1087 return -EPERM;
1088
1089 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
1090 return -ENOMEM;
1091
1092 index = get_netdev_queue_index(queue);
1093
1094 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
1095 if (err) {
1096 free_cpumask_var(mask);
1097 return err;
1098 }
1099
1100 new_dev_maps = kzalloc(max_t(unsigned,
1101 XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES), GFP_KERNEL);
1102 if (!new_dev_maps) {
1103 free_cpumask_var(mask);
1104 return -ENOMEM;
1105 }
1106
1107 mutex_lock(&xps_map_mutex);
1108
Eric Dumazeta4177862010-11-28 21:43:02 +00001109 dev_maps = xmap_dereference(dev->xps_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001110
1111 for_each_possible_cpu(cpu) {
Eric Dumazeta4177862010-11-28 21:43:02 +00001112 map = dev_maps ?
1113 xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
1114 new_map = map;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001115 if (map) {
1116 for (pos = 0; pos < map->len; pos++)
1117 if (map->queues[pos] == index)
1118 break;
1119 map_len = map->len;
1120 alloc_len = map->alloc_len;
1121 } else
1122 pos = map_len = alloc_len = 0;
1123
KOSAKI Motohiro2142c132011-05-16 11:53:49 -07001124 need_set = cpumask_test_cpu(cpu, mask) && cpu_online(cpu);
Eric Dumazetf2cd2d32010-11-29 08:14:37 +00001125#ifdef CONFIG_NUMA
1126 if (need_set) {
david decotigny19b05f82011-11-16 12:15:08 +00001127 if (numa_node_id == -2)
1128 numa_node_id = cpu_to_node(cpu);
1129 else if (numa_node_id != cpu_to_node(cpu))
1130 numa_node_id = -1;
Eric Dumazetf2cd2d32010-11-29 08:14:37 +00001131 }
1132#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001133 if (need_set && pos >= map_len) {
1134 /* Need to add queue to this CPU's map */
1135 if (map_len >= alloc_len) {
1136 alloc_len = alloc_len ?
1137 2 * alloc_len : XPS_MIN_MAP_ALLOC;
Eric Dumazetb02038a2010-11-28 05:43:24 +00001138 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len),
1139 GFP_KERNEL,
1140 cpu_to_node(cpu));
Tom Herbert1d24eb42010-11-21 13:17:27 +00001141 if (!new_map)
1142 goto error;
1143 new_map->alloc_len = alloc_len;
1144 for (i = 0; i < map_len; i++)
1145 new_map->queues[i] = map->queues[i];
1146 new_map->len = map_len;
1147 }
1148 new_map->queues[new_map->len++] = index;
1149 } else if (!need_set && pos < map_len) {
1150 /* Need to remove queue from this CPU's map */
1151 if (map_len > 1)
1152 new_map->queues[pos] =
1153 new_map->queues[--new_map->len];
1154 else
1155 new_map = NULL;
1156 }
Eric Dumazeta4177862010-11-28 21:43:02 +00001157 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], new_map);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001158 }
1159
1160 /* Cleanup old maps */
1161 for_each_possible_cpu(cpu) {
Eric Dumazeta4177862010-11-28 21:43:02 +00001162 map = dev_maps ?
1163 xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
1164 if (map && xmap_dereference(new_dev_maps->cpu_map[cpu]) != map)
Lai Jiangshanedc86d82011-03-18 12:02:20 +08001165 kfree_rcu(map, rcu);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001166 if (new_dev_maps->cpu_map[cpu])
1167 nonempty = 1;
1168 }
1169
1170 if (nonempty)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001171 RCU_INIT_POINTER(dev->xps_maps, new_dev_maps);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001172 else {
1173 kfree(new_dev_maps);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001174 RCU_INIT_POINTER(dev->xps_maps, NULL);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001175 }
1176
1177 if (dev_maps)
Lai Jiangshanb55071e2011-03-18 12:02:47 +08001178 kfree_rcu(dev_maps, rcu);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001179
david decotigny19b05f82011-11-16 12:15:08 +00001180 netdev_queue_numa_node_write(queue, (numa_node_id >= 0) ? numa_node_id :
Changli Gaob236da62010-12-14 03:09:15 +00001181 NUMA_NO_NODE);
Eric Dumazetf2cd2d32010-11-29 08:14:37 +00001182
Tom Herbert1d24eb42010-11-21 13:17:27 +00001183 mutex_unlock(&xps_map_mutex);
1184
1185 free_cpumask_var(mask);
1186 return len;
1187
1188error:
1189 mutex_unlock(&xps_map_mutex);
1190
1191 if (new_dev_maps)
1192 for_each_possible_cpu(i)
Eric Dumazeta4177862010-11-28 21:43:02 +00001193 kfree(rcu_dereference_protected(
1194 new_dev_maps->cpu_map[i],
1195 1));
Tom Herbert1d24eb42010-11-21 13:17:27 +00001196 kfree(new_dev_maps);
1197 free_cpumask_var(mask);
1198 return -ENOMEM;
1199}
1200
1201static struct netdev_queue_attribute xps_cpus_attribute =
1202 __ATTR(xps_cpus, S_IRUGO | S_IWUSR, show_xps_map, store_xps_map);
david decotignyccf5ff62011-11-16 12:15:10 +00001203#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001204
1205static struct attribute *netdev_queue_default_attrs[] = {
david decotignyccf5ff62011-11-16 12:15:10 +00001206 &queue_trans_timeout.attr,
1207#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001208 &xps_cpus_attribute.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001209#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001210 NULL
1211};
1212
1213static void netdev_queue_release(struct kobject *kobj)
1214{
1215 struct netdev_queue *queue = to_netdev_queue(kobj);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001216
Tom Herbert114cf582011-11-28 16:33:09 +00001217#ifdef CONFIG_XPS
Tom Herbert927fbec2011-11-28 16:33:02 +00001218 xps_queue_release(queue);
Tom Herbert114cf582011-11-28 16:33:09 +00001219#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001220
1221 memset(kobj, 0, sizeof(*kobj));
1222 dev_put(queue->dev);
1223}
1224
1225static struct kobj_type netdev_queue_ktype = {
1226 .sysfs_ops = &netdev_queue_sysfs_ops,
1227 .release = netdev_queue_release,
1228 .default_attrs = netdev_queue_default_attrs,
1229};
1230
1231static int netdev_queue_add_kobject(struct net_device *net, int index)
1232{
1233 struct netdev_queue *queue = net->_tx + index;
1234 struct kobject *kobj = &queue->kobj;
1235 int error = 0;
1236
1237 kobj->kset = net->queues_kset;
1238 error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL,
1239 "tx-%u", index);
Tom Herbert114cf582011-11-28 16:33:09 +00001240 if (error)
1241 goto exit;
1242
1243#ifdef CONFIG_BQL
1244 error = sysfs_create_group(kobj, &dql_group);
1245 if (error)
1246 goto exit;
1247#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001248
1249 kobject_uevent(kobj, KOBJ_ADD);
1250 dev_hold(queue->dev);
1251
Tom Herbert114cf582011-11-28 16:33:09 +00001252 return 0;
1253exit:
1254 kobject_put(kobj);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001255 return error;
1256}
david decotignyccf5ff62011-11-16 12:15:10 +00001257#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001258
1259int
1260netdev_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
1261{
david decotignyccf5ff62011-11-16 12:15:10 +00001262#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001263 int i;
1264 int error = 0;
1265
1266 for (i = old_num; i < new_num; i++) {
1267 error = netdev_queue_add_kobject(net, i);
1268 if (error) {
1269 new_num = old_num;
1270 break;
1271 }
1272 }
1273
Tom Herbert114cf582011-11-28 16:33:09 +00001274 while (--i >= new_num) {
1275 struct netdev_queue *queue = net->_tx + i;
1276
1277#ifdef CONFIG_BQL
1278 sysfs_remove_group(&queue->kobj, &dql_group);
1279#endif
1280 kobject_put(&queue->kobj);
1281 }
Tom Herbert1d24eb42010-11-21 13:17:27 +00001282
1283 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001284#else
1285 return 0;
david decotignyccf5ff62011-11-16 12:15:10 +00001286#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001287}
1288
1289static int register_queue_kobjects(struct net_device *net)
1290{
Tom Herbertbf264142010-11-26 08:36:09 +00001291 int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001292
david decotignyccf5ff62011-11-16 12:15:10 +00001293#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001294 net->queues_kset = kset_create_and_add("queues",
1295 NULL, &net->dev.kobj);
1296 if (!net->queues_kset)
1297 return -ENOMEM;
Tom Herbertbf264142010-11-26 08:36:09 +00001298#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001299
Tom Herbertbf264142010-11-26 08:36:09 +00001300#ifdef CONFIG_RPS
1301 real_rx = net->real_num_rx_queues;
1302#endif
1303 real_tx = net->real_num_tx_queues;
1304
1305 error = net_rx_queue_update_kobjects(net, 0, real_rx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001306 if (error)
1307 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001308 rxq = real_rx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001309
Tom Herbertbf264142010-11-26 08:36:09 +00001310 error = netdev_queue_update_kobjects(net, 0, real_tx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001311 if (error)
1312 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001313 txq = real_tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001314
1315 return 0;
1316
1317error:
1318 netdev_queue_update_kobjects(net, txq, 0);
1319 net_rx_queue_update_kobjects(net, rxq, 0);
1320 return error;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001321}
1322
Tom Herbert1d24eb42010-11-21 13:17:27 +00001323static void remove_queue_kobjects(struct net_device *net)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001324{
Tom Herbertbf264142010-11-26 08:36:09 +00001325 int real_rx = 0, real_tx = 0;
1326
1327#ifdef CONFIG_RPS
1328 real_rx = net->real_num_rx_queues;
1329#endif
1330 real_tx = net->real_num_tx_queues;
1331
1332 net_rx_queue_update_kobjects(net, real_rx, 0);
1333 netdev_queue_update_kobjects(net, real_tx, 0);
david decotignyccf5ff62011-11-16 12:15:10 +00001334#ifdef CONFIG_SYSFS
Tom Herbert0a9627f2010-03-16 08:03:29 +00001335 kset_unregister(net->queues_kset);
Tom Herbertbf264142010-11-26 08:36:09 +00001336#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001337}
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001338
Al Viroa685e082011-06-08 21:13:01 -04001339static void *net_grab_current_ns(void)
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001340{
Al Viroa685e082011-06-08 21:13:01 -04001341 struct net *ns = current->nsproxy->net_ns;
1342#ifdef CONFIG_NET_NS
1343 if (ns)
1344 atomic_inc(&ns->passive);
1345#endif
1346 return ns;
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001347}
1348
1349static const void *net_initial_ns(void)
1350{
1351 return &init_net;
1352}
1353
1354static const void *net_netlink_ns(struct sock *sk)
1355{
1356 return sock_net(sk);
1357}
1358
Johannes Berg04600792010-08-05 17:45:15 +02001359struct kobj_ns_type_operations net_ns_type_operations = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001360 .type = KOBJ_NS_TYPE_NET,
Al Viroa685e082011-06-08 21:13:01 -04001361 .grab_current_ns = net_grab_current_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001362 .netlink_ns = net_netlink_ns,
1363 .initial_ns = net_initial_ns,
Al Viroa685e082011-06-08 21:13:01 -04001364 .drop_ns = net_drop_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001365};
Johannes Berg04600792010-08-05 17:45:15 +02001366EXPORT_SYMBOL_GPL(net_ns_type_operations);
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001369static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001371 struct net_device *dev = to_net_dev(d);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001372 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Kay Sievers312c0042005-11-16 09:00:00 +01001374 /* pass interface to uevent. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001375 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
Eric Rannaudbf624562007-03-30 22:23:12 -07001376 if (retval)
1377 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001379 /* pass ifindex to uevent.
1380 * ifindex is useful as it won't change (interface name may change)
1381 * and is what RtNetlink uses natively. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001382 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001383
Eric Rannaudbf624562007-03-30 22:23:12 -07001384exit:
Eric Rannaudbf624562007-03-30 22:23:12 -07001385 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387#endif
1388
1389/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001390 * netdev_release -- destroy and free a dead device.
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001391 * Called when last reference to device kobject is gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001393static void netdev_release(struct device *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001395 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 BUG_ON(dev->reg_state != NETREG_RELEASED);
1398
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001399 kfree(dev->ifalias);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 kfree((char *)dev - dev->padded);
1401}
1402
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001403static const void *net_namespace(struct device *d)
1404{
1405 struct net_device *dev;
1406 dev = container_of(d, struct net_device, dev);
1407 return dev_net(dev);
1408}
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410static struct class net_class = {
1411 .name = "net",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001412 .dev_release = netdev_release,
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001413#ifdef CONFIG_SYSFS
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001414 .dev_attrs = net_class_attributes,
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001415#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416#ifdef CONFIG_HOTPLUG
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001417 .dev_uevent = netdev_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418#endif
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001419 .ns_type = &net_ns_type_operations,
1420 .namespace = net_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421};
1422
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001423/* Delete sysfs entries but hold kobject reference until after all
1424 * netdev references are gone.
1425 */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001426void netdev_unregister_kobject(struct net_device * net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001428 struct device *dev = &(net->dev);
1429
1430 kobject_get(&dev->kobj);
Eric W. Biederman38918452008-10-27 17:51:47 -07001431
Tom Herbert1d24eb42010-11-21 13:17:27 +00001432 remove_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001433
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001434 device_del(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
1436
1437/* Create sysfs entries for network device. */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001438int netdev_register_kobject(struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001440 struct device *dev = &(net->dev);
David Brownella4dbd672009-06-24 10:06:31 -07001441 const struct attribute_group **groups = net->sysfs_groups;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001442 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001444 device_initialize(dev);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001445 dev->class = &net_class;
1446 dev->platform_data = net;
1447 dev->groups = groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Stephen Hemmingera2205472009-03-09 13:51:55 +00001449 dev_set_name(dev, "%s", net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001451#ifdef CONFIG_SYSFS
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001452 /* Allow for a device specific group */
1453 if (*groups)
1454 groups++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001456 *groups++ = &netstat_group;
Johannes Berg22bb1be2008-07-10 11:16:47 +02001457#ifdef CONFIG_WIRELESS_EXT_SYSFS
Johannes Berg3d23e342009-09-29 23:27:28 +02001458 if (net->ieee80211_ptr)
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -07001459 *groups++ = &wireless_group;
Johannes Berg3d23e342009-09-29 23:27:28 +02001460#ifdef CONFIG_WIRELESS_EXT
1461 else if (net->wireless_handlers)
1462 *groups++ = &wireless_group;
1463#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464#endif
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001465#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Tom Herbert0a9627f2010-03-16 08:03:29 +00001467 error = device_add(dev);
1468 if (error)
1469 return error;
1470
Tom Herbert1d24eb42010-11-21 13:17:27 +00001471 error = register_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001472 if (error) {
1473 device_del(dev);
1474 return error;
1475 }
1476
1477 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
Jay Vosburghb8a97872008-06-13 18:12:04 -07001480int netdev_class_create_file(struct class_attribute *class_attr)
1481{
1482 return class_create_file(&net_class, class_attr);
1483}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +00001484EXPORT_SYMBOL(netdev_class_create_file);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001485
1486void netdev_class_remove_file(struct class_attribute *class_attr)
1487{
1488 class_remove_file(&net_class, class_attr);
1489}
Jay Vosburghb8a97872008-06-13 18:12:04 -07001490EXPORT_SYMBOL(netdev_class_remove_file);
1491
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001492int netdev_kobject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001494 kobj_ns_type_register(&net_ns_type_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return class_register(&net_class);
1496}