2 * net-sysfs.c - network device class and attributes
4 * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
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.
12 #include <linux/config.h>
13 #include <linux/kernel.h>
14 #include <linux/netdevice.h>
15 #include <linux/if_arp.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/wireless.h>
20 #define to_class_dev(obj) container_of(obj,struct class_device,kobj)
21 #define to_net_dev(class) container_of(class, struct net_device, class_dev)
23 static const char fmt_hex[] = "%#x\n";
24 static const char fmt_long_hex[] = "%#lx\n";
25 static const char fmt_dec[] = "%d\n";
26 static const char fmt_ulong[] = "%lu\n";
28 static inline int dev_isalive(const struct net_device *dev)
30 return dev->reg_state == NETREG_REGISTERED;
33 /* use same locking rules as GIF* ioctl's */
34 static ssize_t netdev_show(const struct class_device *cd, char *buf,
35 ssize_t (*format)(const struct net_device *, char *))
37 struct net_device *net = to_net_dev(cd);
38 ssize_t ret = -EINVAL;
40 read_lock(&dev_base_lock);
42 ret = (*format)(net, buf);
43 read_unlock(&dev_base_lock);
48 /* generate a show function for simple field */
49 #define NETDEVICE_SHOW(field, format_string) \
50 static ssize_t format_##field(const struct net_device *net, char *buf) \
52 return sprintf(buf, format_string, net->field); \
54 static ssize_t show_##field(struct class_device *cd, char *buf) \
56 return netdev_show(cd, buf, format_##field); \
60 /* use same locking and permission rules as SIF* ioctl's */
61 static ssize_t netdev_store(struct class_device *dev,
62 const char *buf, size_t len,
63 int (*set)(struct net_device *, unsigned long))
65 struct net_device *net = to_net_dev(dev);
70 if (!capable(CAP_NET_ADMIN))
73 new = simple_strtoul(buf, &endp, 0);
78 if (dev_isalive(net)) {
79 if ((ret = (*set)(net, new)) == 0)
87 /* generate a read-only network device class attribute */
88 #define NETDEVICE_ATTR(field, format_string) \
89 NETDEVICE_SHOW(field, format_string) \
90 static CLASS_DEVICE_ATTR(field, S_IRUGO, show_##field, NULL) \
92 NETDEVICE_ATTR(addr_len, fmt_dec);
93 NETDEVICE_ATTR(iflink, fmt_dec);
94 NETDEVICE_ATTR(ifindex, fmt_dec);
95 NETDEVICE_ATTR(features, fmt_long_hex);
96 NETDEVICE_ATTR(type, fmt_dec);
98 /* use same locking rules as GIFHWADDR ioctl's */
99 static ssize_t format_addr(char *buf, const unsigned char *addr, int len)
104 for (i = 0; i < len; i++)
105 cp += sprintf(cp, "%02x%c", addr[i],
106 i == (len - 1) ? '\n' : ':');
110 static ssize_t show_address(struct class_device *dev, char *buf)
112 struct net_device *net = to_net_dev(dev);
113 ssize_t ret = -EINVAL;
115 read_lock(&dev_base_lock);
116 if (dev_isalive(net))
117 ret = format_addr(buf, net->dev_addr, net->addr_len);
118 read_unlock(&dev_base_lock);
122 static ssize_t show_broadcast(struct class_device *dev, char *buf)
124 struct net_device *net = to_net_dev(dev);
125 if (dev_isalive(net))
126 return format_addr(buf, net->broadcast, net->addr_len);
130 static ssize_t show_carrier(struct class_device *dev, char *buf)
132 struct net_device *netdev = to_net_dev(dev);
133 if (netif_running(netdev)) {
134 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
139 static CLASS_DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
140 static CLASS_DEVICE_ATTR(broadcast, S_IRUGO, show_broadcast, NULL);
141 static CLASS_DEVICE_ATTR(carrier, S_IRUGO, show_carrier, NULL);
143 /* read-write attributes */
144 NETDEVICE_SHOW(mtu, fmt_dec);
146 static int change_mtu(struct net_device *net, unsigned long new_mtu)
148 return dev_set_mtu(net, (int) new_mtu);
151 static ssize_t store_mtu(struct class_device *dev, const char *buf, size_t len)
153 return netdev_store(dev, buf, len, change_mtu);
156 static CLASS_DEVICE_ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu);
158 NETDEVICE_SHOW(flags, fmt_hex);
160 static int change_flags(struct net_device *net, unsigned long new_flags)
162 return dev_change_flags(net, (unsigned) new_flags);
165 static ssize_t store_flags(struct class_device *dev, const char *buf, size_t len)
167 return netdev_store(dev, buf, len, change_flags);
170 static CLASS_DEVICE_ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags);
172 NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
174 static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
176 net->tx_queue_len = new_len;
180 static ssize_t store_tx_queue_len(struct class_device *dev, const char *buf, size_t len)
182 return netdev_store(dev, buf, len, change_tx_queue_len);
185 static CLASS_DEVICE_ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
189 static struct class_device_attribute *net_class_attributes[] = {
190 &class_device_attr_ifindex,
191 &class_device_attr_iflink,
192 &class_device_attr_addr_len,
193 &class_device_attr_tx_queue_len,
194 &class_device_attr_features,
195 &class_device_attr_mtu,
196 &class_device_attr_flags,
197 &class_device_attr_type,
198 &class_device_attr_address,
199 &class_device_attr_broadcast,
200 &class_device_attr_carrier,
204 /* Show a given an attribute in the statistics group */
205 static ssize_t netstat_show(const struct class_device *cd, char *buf,
206 unsigned long offset)
208 struct net_device *dev = to_net_dev(cd);
209 struct net_device_stats *stats;
210 ssize_t ret = -EINVAL;
212 if (offset > sizeof(struct net_device_stats) ||
213 offset % sizeof(unsigned long) != 0)
216 read_lock(&dev_base_lock);
217 if (dev_isalive(dev) && dev->get_stats &&
218 (stats = (*dev->get_stats)(dev)))
219 ret = sprintf(buf, fmt_ulong,
220 *(unsigned long *)(((u8 *) stats) + offset));
222 read_unlock(&dev_base_lock);
226 /* generate a read-only statistics attribute */
227 #define NETSTAT_ENTRY(name) \
228 static ssize_t show_##name(struct class_device *cd, char *buf) \
230 return netstat_show(cd, buf, \
231 offsetof(struct net_device_stats, name)); \
233 static CLASS_DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
235 NETSTAT_ENTRY(rx_packets);
236 NETSTAT_ENTRY(tx_packets);
237 NETSTAT_ENTRY(rx_bytes);
238 NETSTAT_ENTRY(tx_bytes);
239 NETSTAT_ENTRY(rx_errors);
240 NETSTAT_ENTRY(tx_errors);
241 NETSTAT_ENTRY(rx_dropped);
242 NETSTAT_ENTRY(tx_dropped);
243 NETSTAT_ENTRY(multicast);
244 NETSTAT_ENTRY(collisions);
245 NETSTAT_ENTRY(rx_length_errors);
246 NETSTAT_ENTRY(rx_over_errors);
247 NETSTAT_ENTRY(rx_crc_errors);
248 NETSTAT_ENTRY(rx_frame_errors);
249 NETSTAT_ENTRY(rx_fifo_errors);
250 NETSTAT_ENTRY(rx_missed_errors);
251 NETSTAT_ENTRY(tx_aborted_errors);
252 NETSTAT_ENTRY(tx_carrier_errors);
253 NETSTAT_ENTRY(tx_fifo_errors);
254 NETSTAT_ENTRY(tx_heartbeat_errors);
255 NETSTAT_ENTRY(tx_window_errors);
256 NETSTAT_ENTRY(rx_compressed);
257 NETSTAT_ENTRY(tx_compressed);
259 static struct attribute *netstat_attrs[] = {
260 &class_device_attr_rx_packets.attr,
261 &class_device_attr_tx_packets.attr,
262 &class_device_attr_rx_bytes.attr,
263 &class_device_attr_tx_bytes.attr,
264 &class_device_attr_rx_errors.attr,
265 &class_device_attr_tx_errors.attr,
266 &class_device_attr_rx_dropped.attr,
267 &class_device_attr_tx_dropped.attr,
268 &class_device_attr_multicast.attr,
269 &class_device_attr_collisions.attr,
270 &class_device_attr_rx_length_errors.attr,
271 &class_device_attr_rx_over_errors.attr,
272 &class_device_attr_rx_crc_errors.attr,
273 &class_device_attr_rx_frame_errors.attr,
274 &class_device_attr_rx_fifo_errors.attr,
275 &class_device_attr_rx_missed_errors.attr,
276 &class_device_attr_tx_aborted_errors.attr,
277 &class_device_attr_tx_carrier_errors.attr,
278 &class_device_attr_tx_fifo_errors.attr,
279 &class_device_attr_tx_heartbeat_errors.attr,
280 &class_device_attr_tx_window_errors.attr,
281 &class_device_attr_rx_compressed.attr,
282 &class_device_attr_tx_compressed.attr,
287 static struct attribute_group netstat_group = {
288 .name = "statistics",
289 .attrs = netstat_attrs,
293 /* helper function that does all the locking etc for wireless stats */
294 static ssize_t wireless_show(struct class_device *cd, char *buf,
295 ssize_t (*format)(const struct iw_statistics *,
298 struct net_device *dev = to_net_dev(cd);
299 const struct iw_statistics *iw;
300 ssize_t ret = -EINVAL;
302 read_lock(&dev_base_lock);
303 if (dev_isalive(dev) && dev->get_wireless_stats
304 && (iw = dev->get_wireless_stats(dev)) != NULL)
305 ret = (*format)(iw, buf);
306 read_unlock(&dev_base_lock);
311 /* show function template for wireless fields */
312 #define WIRELESS_SHOW(name, field, format_string) \
313 static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
315 return sprintf(buf, format_string, iw->field); \
317 static ssize_t show_iw_##name(struct class_device *cd, char *buf) \
319 return wireless_show(cd, buf, format_iw_##name); \
321 static CLASS_DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
323 WIRELESS_SHOW(status, status, fmt_hex);
324 WIRELESS_SHOW(link, qual.qual, fmt_dec);
325 WIRELESS_SHOW(level, qual.level, fmt_dec);
326 WIRELESS_SHOW(noise, qual.noise, fmt_dec);
327 WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
328 WIRELESS_SHOW(crypt, discard.code, fmt_dec);
329 WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
330 WIRELESS_SHOW(misc, discard.misc, fmt_dec);
331 WIRELESS_SHOW(retries, discard.retries, fmt_dec);
332 WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
334 static struct attribute *wireless_attrs[] = {
335 &class_device_attr_status.attr,
336 &class_device_attr_link.attr,
337 &class_device_attr_level.attr,
338 &class_device_attr_noise.attr,
339 &class_device_attr_nwid.attr,
340 &class_device_attr_crypt.attr,
341 &class_device_attr_fragment.attr,
342 &class_device_attr_retries.attr,
343 &class_device_attr_misc.attr,
344 &class_device_attr_beacon.attr,
348 static struct attribute_group wireless_group = {
350 .attrs = wireless_attrs,
354 #ifdef CONFIG_HOTPLUG
355 static int netdev_hotplug(struct class_device *cd, char **envp,
356 int num_envp, char *buf, int size)
358 struct net_device *dev = to_net_dev(cd);
362 /* pass interface in env to hotplug. */
364 n = snprintf(buf, size, "INTERFACE=%s", dev->name) + 1;
368 if ((size <= 0) || (i >= num_envp))
377 * netdev_release -- destroy and free a dead device.
378 * Called when last reference to class_device kobject is gone.
380 static void netdev_release(struct class_device *cd)
382 struct net_device *dev
383 = container_of(cd, struct net_device, class_dev);
385 BUG_ON(dev->reg_state != NETREG_RELEASED);
387 kfree((char *)dev - dev->padded);
390 static struct class net_class = {
392 .release = netdev_release,
393 #ifdef CONFIG_HOTPLUG
394 .hotplug = netdev_hotplug,
398 void netdev_unregister_sysfs(struct net_device * net)
400 struct class_device * class_dev = &(net->class_dev);
403 sysfs_remove_group(&class_dev->kobj, &netstat_group);
406 if (net->get_wireless_stats)
407 sysfs_remove_group(&class_dev->kobj, &wireless_group);
409 class_device_del(class_dev);
413 /* Create sysfs entries for network device. */
414 int netdev_register_sysfs(struct net_device *net)
416 struct class_device *class_dev = &(net->class_dev);
418 struct class_device_attribute *attr;
421 class_dev->class = &net_class;
422 class_dev->class_data = net;
424 strlcpy(class_dev->class_id, net->name, BUS_ID_SIZE);
425 if ((ret = class_device_register(class_dev)))
428 for (i = 0; (attr = net_class_attributes[i]) != NULL; i++) {
429 if ((ret = class_device_create_file(class_dev, attr)))
434 if (net->get_stats &&
435 (ret = sysfs_create_group(&class_dev->kobj, &netstat_group)))
439 if (net->get_wireless_stats &&
440 (ret = sysfs_create_group(&class_dev->kobj, &wireless_group)))
446 sysfs_remove_group(&class_dev->kobj, &netstat_group);
452 printk(KERN_WARNING "%s: sysfs attribute registration failed %d\n",
454 class_device_unregister(class_dev);
459 int netdev_sysfs_init(void)
461 return class_register(&net_class);