]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/core/net-sysfs.c
ixgbe: fix ethtool stats
[net-next-2.6.git] / net / core / net-sysfs.c
CommitLineData
1da177e4
LT
1/*
2 * net-sysfs.c - network device class and attributes
3 *
4 * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
4ec93edb 5 *
1da177e4
LT
6 * 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
4fc268d2 12#include <linux/capability.h>
1da177e4
LT
13#include <linux/kernel.h>
14#include <linux/netdevice.h>
15#include <linux/if_arp.h>
5a0e3ad6 16#include <linux/slab.h>
608b4b95 17#include <linux/nsproxy.h>
1da177e4 18#include <net/sock.h>
608b4b95 19#include <net/net_namespace.h>
1da177e4
LT
20#include <linux/rtnetlink.h>
21#include <linux/wireless.h>
fec5e652 22#include <linux/vmalloc.h>
8f1546ca 23#include <net/wext.h>
1da177e4 24
342709ef
PE
25#include "net-sysfs.h"
26
8b41d188 27#ifdef CONFIG_SYSFS
1da177e4 28static const char fmt_hex[] = "%#x\n";
d1102b59 29static const char fmt_long_hex[] = "%#lx\n";
1da177e4
LT
30static const char fmt_dec[] = "%d\n";
31static const char fmt_ulong[] = "%lu\n";
be1f3c2c 32static const char fmt_u64[] = "%llu\n";
1da177e4 33
4ec93edb 34static inline int dev_isalive(const struct net_device *dev)
1da177e4 35{
fe9925b5 36 return dev->reg_state <= NETREG_REGISTERED;
1da177e4
LT
37}
38
39/* use same locking rules as GIF* ioctl's */
43cb76d9
GKH
40static ssize_t netdev_show(const struct device *dev,
41 struct device_attribute *attr, char *buf,
1da177e4
LT
42 ssize_t (*format)(const struct net_device *, char *))
43{
43cb76d9 44 struct net_device *net = to_net_dev(dev);
1da177e4
LT
45 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} \
43cb76d9
GKH
61static ssize_t show_##field(struct device *dev, \
62 struct device_attribute *attr, char *buf) \
1da177e4 63{ \
43cb76d9 64 return netdev_show(dev, attr, buf, format_##field); \
1da177e4
LT
65}
66
67
68/* use same locking and permission rules as SIF* ioctl's */
43cb76d9 69static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
1da177e4
LT
70 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
5a5990d3 85 if (!rtnl_trylock())
336ca57c 86 return restart_syscall();
5a5990d3 87
1da177e4
LT
88 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
9d29672c 97NETDEVICE_SHOW(dev_id, fmt_hex);
fd586bac
KS
98NETDEVICE_SHOW(addr_len, fmt_dec);
99NETDEVICE_SHOW(iflink, fmt_dec);
100NETDEVICE_SHOW(ifindex, fmt_dec);
101NETDEVICE_SHOW(features, fmt_long_hex);
102NETDEVICE_SHOW(type, fmt_dec);
b00055aa 103NETDEVICE_SHOW(link_mode, fmt_dec);
1da177e4
LT
104
105/* use same locking rules as GIFHWADDR ioctl's */
43cb76d9
GKH
106static ssize_t show_address(struct device *dev, struct device_attribute *attr,
107 char *buf)
1da177e4
LT
108{
109 struct net_device *net = to_net_dev(dev);
110 ssize_t ret = -EINVAL;
111
112 read_lock(&dev_base_lock);
113 if (dev_isalive(net))
7ffc49a6 114 ret = sysfs_format_mac(buf, net->dev_addr, net->addr_len);
1da177e4
LT
115 read_unlock(&dev_base_lock);
116 return ret;
117}
118
43cb76d9
GKH
119static ssize_t show_broadcast(struct device *dev,
120 struct device_attribute *attr, char *buf)
1da177e4
LT
121{
122 struct net_device *net = to_net_dev(dev);
123 if (dev_isalive(net))
7ffc49a6 124 return sysfs_format_mac(buf, net->broadcast, net->addr_len);
1da177e4
LT
125 return -EINVAL;
126}
127
43cb76d9
GKH
128static ssize_t show_carrier(struct device *dev,
129 struct device_attribute *attr, char *buf)
1da177e4
LT
130{
131 struct net_device *netdev = to_net_dev(dev);
132 if (netif_running(netdev)) {
133 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
134 }
135 return -EINVAL;
136}
137
d519e17e
AG
138static ssize_t show_speed(struct device *dev,
139 struct device_attribute *attr, char *buf)
140{
141 struct net_device *netdev = to_net_dev(dev);
142 int ret = -EINVAL;
143
144 if (!rtnl_trylock())
145 return restart_syscall();
146
ac5e3af9
ED
147 if (netif_running(netdev) &&
148 netdev->ethtool_ops &&
149 netdev->ethtool_ops->get_settings) {
d519e17e
AG
150 struct ethtool_cmd cmd = { ETHTOOL_GSET };
151
152 if (!netdev->ethtool_ops->get_settings(netdev, &cmd))
153 ret = sprintf(buf, fmt_dec, ethtool_cmd_speed(&cmd));
154 }
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
ac5e3af9
ED
168 if (netif_running(netdev) &&
169 netdev->ethtool_ops &&
170 netdev->ethtool_ops->get_settings) {
d519e17e
AG
171 struct ethtool_cmd cmd = { ETHTOOL_GSET };
172
173 if (!netdev->ethtool_ops->get_settings(netdev, &cmd))
174 ret = sprintf(buf, "%s\n", cmd.duplex ? "full" : "half");
175 }
176 rtnl_unlock();
177 return ret;
178}
179
43cb76d9
GKH
180static ssize_t show_dormant(struct device *dev,
181 struct device_attribute *attr, char *buf)
b00055aa
SR
182{
183 struct net_device *netdev = to_net_dev(dev);
184
185 if (netif_running(netdev))
186 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
187
188 return -EINVAL;
189}
190
36cbd3dc 191static const char *const operstates[] = {
b00055aa
SR
192 "unknown",
193 "notpresent", /* currently unused */
194 "down",
195 "lowerlayerdown",
196 "testing", /* currently unused */
197 "dormant",
198 "up"
199};
200
43cb76d9
GKH
201static ssize_t show_operstate(struct device *dev,
202 struct device_attribute *attr, char *buf)
b00055aa
SR
203{
204 const struct net_device *netdev = to_net_dev(dev);
205 unsigned char operstate;
206
207 read_lock(&dev_base_lock);
208 operstate = netdev->operstate;
209 if (!netif_running(netdev))
210 operstate = IF_OPER_DOWN;
211 read_unlock(&dev_base_lock);
212
e3a5cd9e 213 if (operstate >= ARRAY_SIZE(operstates))
b00055aa
SR
214 return -EINVAL; /* should not happen */
215
216 return sprintf(buf, "%s\n", operstates[operstate]);
217}
218
1da177e4
LT
219/* read-write attributes */
220NETDEVICE_SHOW(mtu, fmt_dec);
221
222static int change_mtu(struct net_device *net, unsigned long new_mtu)
223{
224 return dev_set_mtu(net, (int) new_mtu);
225}
226
43cb76d9
GKH
227static ssize_t store_mtu(struct device *dev, struct device_attribute *attr,
228 const char *buf, size_t len)
1da177e4 229{
43cb76d9 230 return netdev_store(dev, attr, buf, len, change_mtu);
1da177e4
LT
231}
232
1da177e4
LT
233NETDEVICE_SHOW(flags, fmt_hex);
234
235static int change_flags(struct net_device *net, unsigned long new_flags)
236{
237 return dev_change_flags(net, (unsigned) new_flags);
238}
239
43cb76d9
GKH
240static ssize_t store_flags(struct device *dev, struct device_attribute *attr,
241 const char *buf, size_t len)
1da177e4 242{
43cb76d9 243 return netdev_store(dev, attr, buf, len, change_flags);
1da177e4
LT
244}
245
1da177e4
LT
246NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
247
248static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
249{
250 net->tx_queue_len = new_len;
251 return 0;
252}
253
43cb76d9
GKH
254static ssize_t store_tx_queue_len(struct device *dev,
255 struct device_attribute *attr,
256 const char *buf, size_t len)
1da177e4 257{
43cb76d9 258 return netdev_store(dev, attr, buf, len, change_tx_queue_len);
1da177e4
LT
259}
260
0b815a1a
SH
261static ssize_t store_ifalias(struct device *dev, struct device_attribute *attr,
262 const char *buf, size_t len)
263{
264 struct net_device *netdev = to_net_dev(dev);
265 size_t count = len;
266 ssize_t ret;
267
268 if (!capable(CAP_NET_ADMIN))
269 return -EPERM;
270
271 /* ignore trailing newline */
272 if (len > 0 && buf[len - 1] == '\n')
273 --count;
274
336ca57c
EB
275 if (!rtnl_trylock())
276 return restart_syscall();
0b815a1a
SH
277 ret = dev_set_alias(netdev, buf, count);
278 rtnl_unlock();
279
280 return ret < 0 ? ret : len;
281}
282
283static ssize_t show_ifalias(struct device *dev,
284 struct device_attribute *attr, char *buf)
285{
286 const struct net_device *netdev = to_net_dev(dev);
287 ssize_t ret = 0;
288
336ca57c
EB
289 if (!rtnl_trylock())
290 return restart_syscall();
0b815a1a
SH
291 if (netdev->ifalias)
292 ret = sprintf(buf, "%s\n", netdev->ifalias);
293 rtnl_unlock();
294 return ret;
295}
296
43cb76d9 297static struct device_attribute net_class_attributes[] = {
fd586bac 298 __ATTR(addr_len, S_IRUGO, show_addr_len, NULL),
9d29672c 299 __ATTR(dev_id, S_IRUGO, show_dev_id, NULL),
0b815a1a 300 __ATTR(ifalias, S_IRUGO | S_IWUSR, show_ifalias, store_ifalias),
fd586bac
KS
301 __ATTR(iflink, S_IRUGO, show_iflink, NULL),
302 __ATTR(ifindex, S_IRUGO, show_ifindex, NULL),
303 __ATTR(features, S_IRUGO, show_features, NULL),
304 __ATTR(type, S_IRUGO, show_type, NULL),
b00055aa 305 __ATTR(link_mode, S_IRUGO, show_link_mode, NULL),
fd586bac
KS
306 __ATTR(address, S_IRUGO, show_address, NULL),
307 __ATTR(broadcast, S_IRUGO, show_broadcast, NULL),
308 __ATTR(carrier, S_IRUGO, show_carrier, NULL),
d519e17e
AG
309 __ATTR(speed, S_IRUGO, show_speed, NULL),
310 __ATTR(duplex, S_IRUGO, show_duplex, NULL),
b00055aa
SR
311 __ATTR(dormant, S_IRUGO, show_dormant, NULL),
312 __ATTR(operstate, S_IRUGO, show_operstate, NULL),
fd586bac
KS
313 __ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu),
314 __ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags),
315 __ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
316 store_tx_queue_len),
fd586bac 317 {}
1da177e4
LT
318};
319
320/* Show a given an attribute in the statistics group */
43cb76d9
GKH
321static ssize_t netstat_show(const struct device *d,
322 struct device_attribute *attr, char *buf,
1da177e4
LT
323 unsigned long offset)
324{
43cb76d9 325 struct net_device *dev = to_net_dev(d);
1da177e4
LT
326 ssize_t ret = -EINVAL;
327
be1f3c2c
BH
328 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
329 offset % sizeof(u64) != 0);
1da177e4
LT
330
331 read_lock(&dev_base_lock);
96e74088 332 if (dev_isalive(dev)) {
28172739
ED
333 struct rtnl_link_stats64 temp;
334 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
335
be1f3c2c 336 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *) stats) + offset));
96e74088 337 }
1da177e4
LT
338 read_unlock(&dev_base_lock);
339 return ret;
340}
341
342/* generate a read-only statistics attribute */
343#define NETSTAT_ENTRY(name) \
43cb76d9
GKH
344static ssize_t show_##name(struct device *d, \
345 struct device_attribute *attr, char *buf) \
1da177e4 346{ \
43cb76d9 347 return netstat_show(d, attr, buf, \
be1f3c2c 348 offsetof(struct rtnl_link_stats64, name)); \
1da177e4 349} \
43cb76d9 350static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
1da177e4
LT
351
352NETSTAT_ENTRY(rx_packets);
353NETSTAT_ENTRY(tx_packets);
354NETSTAT_ENTRY(rx_bytes);
355NETSTAT_ENTRY(tx_bytes);
356NETSTAT_ENTRY(rx_errors);
357NETSTAT_ENTRY(tx_errors);
358NETSTAT_ENTRY(rx_dropped);
359NETSTAT_ENTRY(tx_dropped);
360NETSTAT_ENTRY(multicast);
361NETSTAT_ENTRY(collisions);
362NETSTAT_ENTRY(rx_length_errors);
363NETSTAT_ENTRY(rx_over_errors);
364NETSTAT_ENTRY(rx_crc_errors);
365NETSTAT_ENTRY(rx_frame_errors);
366NETSTAT_ENTRY(rx_fifo_errors);
367NETSTAT_ENTRY(rx_missed_errors);
368NETSTAT_ENTRY(tx_aborted_errors);
369NETSTAT_ENTRY(tx_carrier_errors);
370NETSTAT_ENTRY(tx_fifo_errors);
371NETSTAT_ENTRY(tx_heartbeat_errors);
372NETSTAT_ENTRY(tx_window_errors);
373NETSTAT_ENTRY(rx_compressed);
374NETSTAT_ENTRY(tx_compressed);
375
376static struct attribute *netstat_attrs[] = {
43cb76d9
GKH
377 &dev_attr_rx_packets.attr,
378 &dev_attr_tx_packets.attr,
379 &dev_attr_rx_bytes.attr,
380 &dev_attr_tx_bytes.attr,
381 &dev_attr_rx_errors.attr,
382 &dev_attr_tx_errors.attr,
383 &dev_attr_rx_dropped.attr,
384 &dev_attr_tx_dropped.attr,
385 &dev_attr_multicast.attr,
386 &dev_attr_collisions.attr,
387 &dev_attr_rx_length_errors.attr,
388 &dev_attr_rx_over_errors.attr,
389 &dev_attr_rx_crc_errors.attr,
390 &dev_attr_rx_frame_errors.attr,
391 &dev_attr_rx_fifo_errors.attr,
392 &dev_attr_rx_missed_errors.attr,
393 &dev_attr_tx_aborted_errors.attr,
394 &dev_attr_tx_carrier_errors.attr,
395 &dev_attr_tx_fifo_errors.attr,
396 &dev_attr_tx_heartbeat_errors.attr,
397 &dev_attr_tx_window_errors.attr,
398 &dev_attr_rx_compressed.attr,
399 &dev_attr_tx_compressed.attr,
1da177e4
LT
400 NULL
401};
402
403
404static struct attribute_group netstat_group = {
405 .name = "statistics",
406 .attrs = netstat_attrs,
407};
408
22bb1be4 409#ifdef CONFIG_WIRELESS_EXT_SYSFS
1da177e4 410/* helper function that does all the locking etc for wireless stats */
43cb76d9 411static ssize_t wireless_show(struct device *d, char *buf,
1da177e4
LT
412 ssize_t (*format)(const struct iw_statistics *,
413 char *))
414{
43cb76d9 415 struct net_device *dev = to_net_dev(d);
8f1546ca 416 const struct iw_statistics *iw;
1da177e4 417 ssize_t ret = -EINVAL;
4ec93edb 418
b8afe641
EB
419 if (!rtnl_trylock())
420 return restart_syscall();
6dd214b5 421 if (dev_isalive(dev)) {
8f1546ca
JB
422 iw = get_wireless_stats(dev);
423 if (iw)
6dd214b5
AB
424 ret = (*format)(iw, buf);
425 }
a160ee69 426 rtnl_unlock();
1da177e4
LT
427
428 return ret;
429}
430
431/* show function template for wireless fields */
432#define WIRELESS_SHOW(name, field, format_string) \
433static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
434{ \
435 return sprintf(buf, format_string, iw->field); \
436} \
43cb76d9
GKH
437static ssize_t show_iw_##name(struct device *d, \
438 struct device_attribute *attr, char *buf) \
1da177e4 439{ \
43cb76d9 440 return wireless_show(d, buf, format_iw_##name); \
1da177e4 441} \
43cb76d9 442static DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
1da177e4
LT
443
444WIRELESS_SHOW(status, status, fmt_hex);
445WIRELESS_SHOW(link, qual.qual, fmt_dec);
446WIRELESS_SHOW(level, qual.level, fmt_dec);
447WIRELESS_SHOW(noise, qual.noise, fmt_dec);
448WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
449WIRELESS_SHOW(crypt, discard.code, fmt_dec);
450WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
451WIRELESS_SHOW(misc, discard.misc, fmt_dec);
452WIRELESS_SHOW(retries, discard.retries, fmt_dec);
453WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
454
455static struct attribute *wireless_attrs[] = {
43cb76d9
GKH
456 &dev_attr_status.attr,
457 &dev_attr_link.attr,
458 &dev_attr_level.attr,
459 &dev_attr_noise.attr,
460 &dev_attr_nwid.attr,
461 &dev_attr_crypt.attr,
462 &dev_attr_fragment.attr,
463 &dev_attr_retries.attr,
464 &dev_attr_misc.attr,
465 &dev_attr_beacon.attr,
1da177e4
LT
466 NULL
467};
468
469static struct attribute_group wireless_group = {
470 .name = "wireless",
471 .attrs = wireless_attrs,
472};
473#endif
d6523ddf 474#endif /* CONFIG_SYSFS */
1da177e4 475
30bde1f5 476#ifdef CONFIG_RPS
0a9627f2
TH
477/*
478 * RX queue sysfs structures and functions.
479 */
480struct rx_queue_attribute {
481 struct attribute attr;
482 ssize_t (*show)(struct netdev_rx_queue *queue,
483 struct rx_queue_attribute *attr, char *buf);
484 ssize_t (*store)(struct netdev_rx_queue *queue,
485 struct rx_queue_attribute *attr, const char *buf, size_t len);
486};
487#define to_rx_queue_attr(_attr) container_of(_attr, \
488 struct rx_queue_attribute, attr)
489
490#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
491
492static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
493 char *buf)
494{
495 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
496 struct netdev_rx_queue *queue = to_rx_queue(kobj);
497
498 if (!attribute->show)
499 return -EIO;
500
501 return attribute->show(queue, attribute, buf);
502}
503
504static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
505 const char *buf, size_t count)
506{
507 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
508 struct netdev_rx_queue *queue = to_rx_queue(kobj);
509
510 if (!attribute->store)
511 return -EIO;
512
513 return attribute->store(queue, attribute, buf, count);
514}
515
516static struct sysfs_ops rx_queue_sysfs_ops = {
517 .show = rx_queue_attr_show,
518 .store = rx_queue_attr_store,
519};
520
521static ssize_t show_rps_map(struct netdev_rx_queue *queue,
522 struct rx_queue_attribute *attribute, char *buf)
523{
524 struct rps_map *map;
525 cpumask_var_t mask;
526 size_t len = 0;
527 int i;
528
529 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
530 return -ENOMEM;
531
532 rcu_read_lock();
533 map = rcu_dereference(queue->rps_map);
534 if (map)
535 for (i = 0; i < map->len; i++)
536 cpumask_set_cpu(map->cpus[i], mask);
537
538 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
539 if (PAGE_SIZE - len < 3) {
540 rcu_read_unlock();
541 free_cpumask_var(mask);
542 return -EINVAL;
543 }
544 rcu_read_unlock();
545
546 free_cpumask_var(mask);
547 len += sprintf(buf + len, "\n");
548 return len;
549}
550
551static void rps_map_release(struct rcu_head *rcu)
552{
553 struct rps_map *map = container_of(rcu, struct rps_map, rcu);
554
555 kfree(map);
556}
557
f5acb907 558static ssize_t store_rps_map(struct netdev_rx_queue *queue,
0a9627f2
TH
559 struct rx_queue_attribute *attribute,
560 const char *buf, size_t len)
561{
562 struct rps_map *old_map, *map;
563 cpumask_var_t mask;
564 int err, cpu, i;
565 static DEFINE_SPINLOCK(rps_map_lock);
566
567 if (!capable(CAP_NET_ADMIN))
568 return -EPERM;
569
570 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
571 return -ENOMEM;
572
573 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
574 if (err) {
575 free_cpumask_var(mask);
576 return err;
577 }
578
579 map = kzalloc(max_t(unsigned,
580 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
581 GFP_KERNEL);
582 if (!map) {
583 free_cpumask_var(mask);
584 return -ENOMEM;
585 }
586
587 i = 0;
588 for_each_cpu_and(cpu, mask, cpu_online_mask)
589 map->cpus[i++] = cpu;
590
591 if (i)
592 map->len = i;
593 else {
594 kfree(map);
595 map = NULL;
596 }
597
598 spin_lock(&rps_map_lock);
599 old_map = queue->rps_map;
600 rcu_assign_pointer(queue->rps_map, map);
601 spin_unlock(&rps_map_lock);
602
603 if (old_map)
604 call_rcu(&old_map->rcu, rps_map_release);
605
606 free_cpumask_var(mask);
607 return len;
608}
609
fec5e652
TH
610static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
611 struct rx_queue_attribute *attr,
612 char *buf)
613{
614 struct rps_dev_flow_table *flow_table;
615 unsigned int val = 0;
616
617 rcu_read_lock();
618 flow_table = rcu_dereference(queue->rps_flow_table);
619 if (flow_table)
620 val = flow_table->mask + 1;
621 rcu_read_unlock();
622
623 return sprintf(buf, "%u\n", val);
624}
625
626static void rps_dev_flow_table_release_work(struct work_struct *work)
627{
628 struct rps_dev_flow_table *table = container_of(work,
629 struct rps_dev_flow_table, free_work);
630
631 vfree(table);
632}
633
634static void rps_dev_flow_table_release(struct rcu_head *rcu)
635{
636 struct rps_dev_flow_table *table = container_of(rcu,
637 struct rps_dev_flow_table, rcu);
638
639 INIT_WORK(&table->free_work, rps_dev_flow_table_release_work);
640 schedule_work(&table->free_work);
641}
642
f5acb907 643static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
fec5e652
TH
644 struct rx_queue_attribute *attr,
645 const char *buf, size_t len)
646{
647 unsigned int count;
648 char *endp;
649 struct rps_dev_flow_table *table, *old_table;
650 static DEFINE_SPINLOCK(rps_dev_flow_lock);
651
652 if (!capable(CAP_NET_ADMIN))
653 return -EPERM;
654
655 count = simple_strtoul(buf, &endp, 0);
656 if (endp == buf)
657 return -EINVAL;
658
659 if (count) {
660 int i;
661
662 if (count > 1<<30) {
663 /* Enforce a limit to prevent overflow */
664 return -EINVAL;
665 }
666 count = roundup_pow_of_two(count);
667 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(count));
668 if (!table)
669 return -ENOMEM;
670
671 table->mask = count - 1;
672 for (i = 0; i < count; i++)
673 table->flows[i].cpu = RPS_NO_CPU;
674 } else
675 table = NULL;
676
677 spin_lock(&rps_dev_flow_lock);
678 old_table = queue->rps_flow_table;
679 rcu_assign_pointer(queue->rps_flow_table, table);
680 spin_unlock(&rps_dev_flow_lock);
681
682 if (old_table)
683 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
684
685 return len;
686}
687
0a9627f2
TH
688static struct rx_queue_attribute rps_cpus_attribute =
689 __ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map);
690
fec5e652
TH
691
692static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute =
693 __ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR,
694 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
695
0a9627f2
TH
696static struct attribute *rx_queue_default_attrs[] = {
697 &rps_cpus_attribute.attr,
fec5e652 698 &rps_dev_flow_table_cnt_attribute.attr,
0a9627f2
TH
699 NULL
700};
701
702static void rx_queue_release(struct kobject *kobj)
703{
704 struct netdev_rx_queue *queue = to_rx_queue(kobj);
0a9627f2
TH
705 struct netdev_rx_queue *first = queue->first;
706
fec5e652
TH
707 if (queue->rps_map)
708 call_rcu(&queue->rps_map->rcu, rps_map_release);
709
710 if (queue->rps_flow_table)
711 call_rcu(&queue->rps_flow_table->rcu,
712 rps_dev_flow_table_release);
0a9627f2
TH
713
714 if (atomic_dec_and_test(&first->count))
715 kfree(first);
716}
717
718static struct kobj_type rx_queue_ktype = {
719 .sysfs_ops = &rx_queue_sysfs_ops,
720 .release = rx_queue_release,
721 .default_attrs = rx_queue_default_attrs,
722};
723
724static int rx_queue_add_kobject(struct net_device *net, int index)
725{
726 struct netdev_rx_queue *queue = net->_rx + index;
727 struct kobject *kobj = &queue->kobj;
728 int error = 0;
729
730 kobj->kset = net->queues_kset;
731 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
732 "rx-%u", index);
733 if (error) {
734 kobject_put(kobj);
735 return error;
736 }
737
738 kobject_uevent(kobj, KOBJ_ADD);
739
740 return error;
741}
742
743static int rx_queue_register_kobjects(struct net_device *net)
744{
745 int i;
746 int error = 0;
747
748 net->queues_kset = kset_create_and_add("queues",
749 NULL, &net->dev.kobj);
750 if (!net->queues_kset)
751 return -ENOMEM;
752 for (i = 0; i < net->num_rx_queues; i++) {
753 error = rx_queue_add_kobject(net, i);
754 if (error)
755 break;
756 }
757
758 if (error)
759 while (--i >= 0)
760 kobject_put(&net->_rx[i].kobj);
761
762 return error;
763}
764
765static void rx_queue_remove_kobjects(struct net_device *net)
766{
767 int i;
768
769 for (i = 0; i < net->num_rx_queues; i++)
770 kobject_put(&net->_rx[i].kobj);
771 kset_unregister(net->queues_kset);
772}
30bde1f5 773#endif /* CONFIG_RPS */
608b4b95
EB
774
775static const void *net_current_ns(void)
776{
777 return current->nsproxy->net_ns;
778}
779
780static const void *net_initial_ns(void)
781{
782 return &init_net;
783}
784
785static const void *net_netlink_ns(struct sock *sk)
786{
787 return sock_net(sk);
788}
789
790static struct kobj_ns_type_operations net_ns_type_operations = {
791 .type = KOBJ_NS_TYPE_NET,
792 .current_ns = net_current_ns,
793 .netlink_ns = net_netlink_ns,
794 .initial_ns = net_initial_ns,
795};
796
797static void net_kobj_ns_exit(struct net *net)
798{
799 kobj_ns_exit(KOBJ_NS_TYPE_NET, net);
800}
801
d6523ddf 802static struct pernet_operations kobj_net_ops = {
608b4b95
EB
803 .exit = net_kobj_ns_exit,
804};
805
8b41d188 806
1da177e4 807#ifdef CONFIG_HOTPLUG
7eff2e7a 808static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
1da177e4 809{
43cb76d9 810 struct net_device *dev = to_net_dev(d);
7eff2e7a 811 int retval;
1da177e4 812
312c004d 813 /* pass interface to uevent. */
7eff2e7a 814 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
bf62456e
ER
815 if (retval)
816 goto exit;
ca2f37db
JT
817
818 /* pass ifindex to uevent.
819 * ifindex is useful as it won't change (interface name may change)
820 * and is what RtNetlink uses natively. */
7eff2e7a 821 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
1da177e4 822
bf62456e 823exit:
bf62456e 824 return retval;
1da177e4
LT
825}
826#endif
827
828/*
4ec93edb 829 * netdev_release -- destroy and free a dead device.
43cb76d9 830 * Called when last reference to device kobject is gone.
1da177e4 831 */
43cb76d9 832static void netdev_release(struct device *d)
1da177e4 833{
43cb76d9 834 struct net_device *dev = to_net_dev(d);
1da177e4
LT
835
836 BUG_ON(dev->reg_state != NETREG_RELEASED);
837
0b815a1a 838 kfree(dev->ifalias);
1da177e4
LT
839 kfree((char *)dev - dev->padded);
840}
841
608b4b95
EB
842static const void *net_namespace(struct device *d)
843{
844 struct net_device *dev;
845 dev = container_of(d, struct net_device, dev);
846 return dev_net(dev);
847}
848
1da177e4
LT
849static struct class net_class = {
850 .name = "net",
43cb76d9 851 .dev_release = netdev_release,
8b41d188 852#ifdef CONFIG_SYSFS
43cb76d9 853 .dev_attrs = net_class_attributes,
8b41d188 854#endif /* CONFIG_SYSFS */
1da177e4 855#ifdef CONFIG_HOTPLUG
43cb76d9 856 .dev_uevent = netdev_uevent,
1da177e4 857#endif
608b4b95
EB
858 .ns_type = &net_ns_type_operations,
859 .namespace = net_namespace,
1da177e4
LT
860};
861
9093bbb2
SH
862/* Delete sysfs entries but hold kobject reference until after all
863 * netdev references are gone.
864 */
8b41d188 865void netdev_unregister_kobject(struct net_device * net)
1da177e4 866{
9093bbb2
SH
867 struct device *dev = &(net->dev);
868
869 kobject_get(&dev->kobj);
3891845e 870
30bde1f5 871#ifdef CONFIG_RPS
0a9627f2 872 rx_queue_remove_kobjects(net);
e880eb6c 873#endif
0a9627f2 874
9093bbb2 875 device_del(dev);
1da177e4
LT
876}
877
878/* Create sysfs entries for network device. */
8b41d188 879int netdev_register_kobject(struct net_device *net)
1da177e4 880{
43cb76d9 881 struct device *dev = &(net->dev);
a4dbd674 882 const struct attribute_group **groups = net->sysfs_groups;
0a9627f2 883 int error = 0;
1da177e4 884
a1b3f594 885 device_initialize(dev);
43cb76d9
GKH
886 dev->class = &net_class;
887 dev->platform_data = net;
888 dev->groups = groups;
1da177e4 889
a2205472 890 dev_set_name(dev, "%s", net->name);
1da177e4 891
8b41d188 892#ifdef CONFIG_SYSFS
0c509a6c
EB
893 /* Allow for a device specific group */
894 if (*groups)
895 groups++;
1da177e4 896
0c509a6c 897 *groups++ = &netstat_group;
22bb1be4 898#ifdef CONFIG_WIRELESS_EXT_SYSFS
3d23e349 899 if (net->ieee80211_ptr)
fe9925b5 900 *groups++ = &wireless_group;
3d23e349
JB
901#ifdef CONFIG_WIRELESS_EXT
902 else if (net->wireless_handlers)
903 *groups++ = &wireless_group;
904#endif
1da177e4 905#endif
8b41d188 906#endif /* CONFIG_SYSFS */
1da177e4 907
0a9627f2
TH
908 error = device_add(dev);
909 if (error)
910 return error;
911
30bde1f5 912#ifdef CONFIG_RPS
0a9627f2
TH
913 error = rx_queue_register_kobjects(net);
914 if (error) {
915 device_del(dev);
916 return error;
917 }
e880eb6c 918#endif
0a9627f2
TH
919
920 return error;
1da177e4
LT
921}
922
b8a9787e
JV
923int netdev_class_create_file(struct class_attribute *class_attr)
924{
925 return class_create_file(&net_class, class_attr);
926}
9e34a5b5 927EXPORT_SYMBOL(netdev_class_create_file);
b8a9787e
JV
928
929void netdev_class_remove_file(struct class_attribute *class_attr)
930{
931 class_remove_file(&net_class, class_attr);
932}
b8a9787e
JV
933EXPORT_SYMBOL(netdev_class_remove_file);
934
8b41d188 935int netdev_kobject_init(void)
1da177e4 936{
608b4b95 937 kobj_ns_type_register(&net_ns_type_operations);
d6523ddf 938 register_pernet_subsys(&kobj_net_ops);
1da177e4
LT
939 return class_register(&net_class);
940}