net-sysfs.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. /*
  2. * net-sysfs.c - network device class and attributes
  3. *
  4. * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
  5. *
  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. #include <linux/config.h>
  12. #include <linux/kernel.h>
  13. #include <linux/netdevice.h>
  14. #include <linux/if_arp.h>
  15. #include <net/sock.h>
  16. #include <linux/rtnetlink.h>
  17. #include <linux/wireless.h>
  18. #define to_class_dev(obj) container_of(obj,struct class_device,kobj)
  19. #define to_net_dev(class) container_of(class, struct net_device, class_dev)
  20. static const char fmt_hex[] = "%#x\n";
  21. static const char fmt_dec[] = "%d\n";
  22. static const char fmt_ulong[] = "%lu\n";
  23. static inline int dev_isalive(const struct net_device *dev)
  24. {
  25. return dev->reg_state == NETREG_REGISTERED;
  26. }
  27. /* use same locking rules as GIF* ioctl's */
  28. static ssize_t netdev_show(const struct class_device *cd, char *buf,
  29. ssize_t (*format)(const struct net_device *, char *))
  30. {
  31. struct net_device *net = to_net_dev(cd);
  32. ssize_t ret = -EINVAL;
  33. read_lock(&dev_base_lock);
  34. if (dev_isalive(net))
  35. ret = (*format)(net, buf);
  36. read_unlock(&dev_base_lock);
  37. return ret;
  38. }
  39. /* generate a show function for simple field */
  40. #define NETDEVICE_SHOW(field, format_string) \
  41. static ssize_t format_##field(const struct net_device *net, char *buf) \
  42. { \
  43. return sprintf(buf, format_string, net->field); \
  44. } \
  45. static ssize_t show_##field(struct class_device *cd, char *buf) \
  46. { \
  47. return netdev_show(cd, buf, format_##field); \
  48. }
  49. /* use same locking and permission rules as SIF* ioctl's */
  50. static ssize_t netdev_store(struct class_device *dev,
  51. const char *buf, size_t len,
  52. int (*set)(struct net_device *, unsigned long))
  53. {
  54. struct net_device *net = to_net_dev(dev);
  55. char *endp;
  56. unsigned long new;
  57. int ret = -EINVAL;
  58. if (!capable(CAP_NET_ADMIN))
  59. return -EPERM;
  60. new = simple_strtoul(buf, &endp, 0);
  61. if (endp == buf)
  62. goto err;
  63. rtnl_lock();
  64. if (dev_isalive(net)) {
  65. if ((ret = (*set)(net, new)) == 0)
  66. ret = len;
  67. }
  68. rtnl_unlock();
  69. err:
  70. return ret;
  71. }
  72. /* generate a read-only network device class attribute */
  73. #define NETDEVICE_ATTR(field, format_string) \
  74. NETDEVICE_SHOW(field, format_string) \
  75. static CLASS_DEVICE_ATTR(field, S_IRUGO, show_##field, NULL) \
  76. NETDEVICE_ATTR(addr_len, fmt_dec);
  77. NETDEVICE_ATTR(iflink, fmt_dec);
  78. NETDEVICE_ATTR(ifindex, fmt_dec);
  79. NETDEVICE_ATTR(features, fmt_hex);
  80. NETDEVICE_ATTR(type, fmt_dec);
  81. /* use same locking rules as GIFHWADDR ioctl's */
  82. static ssize_t format_addr(char *buf, const unsigned char *addr, int len)
  83. {
  84. int i;
  85. char *cp = buf;
  86. for (i = 0; i < len; i++)
  87. cp += sprintf(cp, "%02x%c", addr[i],
  88. i == (len - 1) ? '\n' : ':');
  89. return cp - buf;
  90. }
  91. static ssize_t show_address(struct class_device *dev, char *buf)
  92. {
  93. struct net_device *net = to_net_dev(dev);
  94. ssize_t ret = -EINVAL;
  95. read_lock(&dev_base_lock);
  96. if (dev_isalive(net))
  97. ret = format_addr(buf, net->dev_addr, net->addr_len);
  98. read_unlock(&dev_base_lock);
  99. return ret;
  100. }
  101. static ssize_t show_broadcast(struct class_device *dev, char *buf)
  102. {
  103. struct net_device *net = to_net_dev(dev);
  104. if (dev_isalive(net))
  105. return format_addr(buf, net->broadcast, net->addr_len);
  106. return -EINVAL;
  107. }
  108. static ssize_t show_carrier(struct class_device *dev, char *buf)
  109. {
  110. struct net_device *netdev = to_net_dev(dev);
  111. if (netif_running(netdev)) {
  112. return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
  113. }
  114. return -EINVAL;
  115. }
  116. static CLASS_DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
  117. static CLASS_DEVICE_ATTR(broadcast, S_IRUGO, show_broadcast, NULL);
  118. static CLASS_DEVICE_ATTR(carrier, S_IRUGO, show_carrier, NULL);
  119. /* read-write attributes */
  120. NETDEVICE_SHOW(mtu, fmt_dec);
  121. static int change_mtu(struct net_device *net, unsigned long new_mtu)
  122. {
  123. return dev_set_mtu(net, (int) new_mtu);
  124. }
  125. static ssize_t store_mtu(struct class_device *dev, const char *buf, size_t len)
  126. {
  127. return netdev_store(dev, buf, len, change_mtu);
  128. }
  129. static CLASS_DEVICE_ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu);
  130. NETDEVICE_SHOW(flags, fmt_hex);
  131. static int change_flags(struct net_device *net, unsigned long new_flags)
  132. {
  133. return dev_change_flags(net, (unsigned) new_flags);
  134. }
  135. static ssize_t store_flags(struct class_device *dev, const char *buf, size_t len)
  136. {
  137. return netdev_store(dev, buf, len, change_flags);
  138. }
  139. static CLASS_DEVICE_ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags);
  140. NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
  141. static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
  142. {
  143. net->tx_queue_len = new_len;
  144. return 0;
  145. }
  146. static ssize_t store_tx_queue_len(struct class_device *dev, const char *buf, size_t len)
  147. {
  148. return netdev_store(dev, buf, len, change_tx_queue_len);
  149. }
  150. static CLASS_DEVICE_ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
  151. store_tx_queue_len);
  152. static struct class_device_attribute *net_class_attributes[] = {
  153. &class_device_attr_ifindex,
  154. &class_device_attr_iflink,
  155. &class_device_attr_addr_len,
  156. &class_device_attr_tx_queue_len,
  157. &class_device_attr_features,
  158. &class_device_attr_mtu,
  159. &class_device_attr_flags,
  160. &class_device_attr_type,
  161. &class_device_attr_address,
  162. &class_device_attr_broadcast,
  163. &class_device_attr_carrier,
  164. NULL
  165. };
  166. /* Show a given an attribute in the statistics group */
  167. static ssize_t netstat_show(const struct class_device *cd, char *buf,
  168. unsigned long offset)
  169. {
  170. struct net_device *dev = to_net_dev(cd);
  171. struct net_device_stats *stats;
  172. ssize_t ret = -EINVAL;
  173. if (offset > sizeof(struct net_device_stats) ||
  174. offset % sizeof(unsigned long) != 0)
  175. WARN_ON(1);
  176. read_lock(&dev_base_lock);
  177. if (dev_isalive(dev) && dev->get_stats &&
  178. (stats = (*dev->get_stats)(dev)))
  179. ret = sprintf(buf, fmt_ulong,
  180. *(unsigned long *)(((u8 *) stats) + offset));
  181. read_unlock(&dev_base_lock);
  182. return ret;
  183. }
  184. /* generate a read-only statistics attribute */
  185. #define NETSTAT_ENTRY(name) \
  186. static ssize_t show_##name(struct class_device *cd, char *buf) \
  187. { \
  188. return netstat_show(cd, buf, \
  189. offsetof(struct net_device_stats, name)); \
  190. } \
  191. static CLASS_DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
  192. NETSTAT_ENTRY(rx_packets);
  193. NETSTAT_ENTRY(tx_packets);
  194. NETSTAT_ENTRY(rx_bytes);
  195. NETSTAT_ENTRY(tx_bytes);
  196. NETSTAT_ENTRY(rx_errors);
  197. NETSTAT_ENTRY(tx_errors);
  198. NETSTAT_ENTRY(rx_dropped);
  199. NETSTAT_ENTRY(tx_dropped);
  200. NETSTAT_ENTRY(multicast);
  201. NETSTAT_ENTRY(collisions);
  202. NETSTAT_ENTRY(rx_length_errors);
  203. NETSTAT_ENTRY(rx_over_errors);
  204. NETSTAT_ENTRY(rx_crc_errors);
  205. NETSTAT_ENTRY(rx_frame_errors);
  206. NETSTAT_ENTRY(rx_fifo_errors);
  207. NETSTAT_ENTRY(rx_missed_errors);
  208. NETSTAT_ENTRY(tx_aborted_errors);
  209. NETSTAT_ENTRY(tx_carrier_errors);
  210. NETSTAT_ENTRY(tx_fifo_errors);
  211. NETSTAT_ENTRY(tx_heartbeat_errors);
  212. NETSTAT_ENTRY(tx_window_errors);
  213. NETSTAT_ENTRY(rx_compressed);
  214. NETSTAT_ENTRY(tx_compressed);
  215. static struct attribute *netstat_attrs[] = {
  216. &class_device_attr_rx_packets.attr,
  217. &class_device_attr_tx_packets.attr,
  218. &class_device_attr_rx_bytes.attr,
  219. &class_device_attr_tx_bytes.attr,
  220. &class_device_attr_rx_errors.attr,
  221. &class_device_attr_tx_errors.attr,
  222. &class_device_attr_rx_dropped.attr,
  223. &class_device_attr_tx_dropped.attr,
  224. &class_device_attr_multicast.attr,
  225. &class_device_attr_collisions.attr,
  226. &class_device_attr_rx_length_errors.attr,
  227. &class_device_attr_rx_over_errors.attr,
  228. &class_device_attr_rx_crc_errors.attr,
  229. &class_device_attr_rx_frame_errors.attr,
  230. &class_device_attr_rx_fifo_errors.attr,
  231. &class_device_attr_rx_missed_errors.attr,
  232. &class_device_attr_tx_aborted_errors.attr,
  233. &class_device_attr_tx_carrier_errors.attr,
  234. &class_device_attr_tx_fifo_errors.attr,
  235. &class_device_attr_tx_heartbeat_errors.attr,
  236. &class_device_attr_tx_window_errors.attr,
  237. &class_device_attr_rx_compressed.attr,
  238. &class_device_attr_tx_compressed.attr,
  239. NULL
  240. };
  241. static struct attribute_group netstat_group = {
  242. .name = "statistics",
  243. .attrs = netstat_attrs,
  244. };
  245. #ifdef WIRELESS_EXT
  246. /* helper function that does all the locking etc for wireless stats */
  247. static ssize_t wireless_show(struct class_device *cd, char *buf,
  248. ssize_t (*format)(const struct iw_statistics *,
  249. char *))
  250. {
  251. struct net_device *dev = to_net_dev(cd);
  252. const struct iw_statistics *iw;
  253. ssize_t ret = -EINVAL;
  254. read_lock(&dev_base_lock);
  255. if (dev_isalive(dev) && dev->get_wireless_stats
  256. && (iw = dev->get_wireless_stats(dev)) != NULL)
  257. ret = (*format)(iw, buf);
  258. read_unlock(&dev_base_lock);
  259. return ret;
  260. }
  261. /* show function template for wireless fields */
  262. #define WIRELESS_SHOW(name, field, format_string) \
  263. static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
  264. { \
  265. return sprintf(buf, format_string, iw->field); \
  266. } \
  267. static ssize_t show_iw_##name(struct class_device *cd, char *buf) \
  268. { \
  269. return wireless_show(cd, buf, format_iw_##name); \
  270. } \
  271. static CLASS_DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
  272. WIRELESS_SHOW(status, status, fmt_hex);
  273. WIRELESS_SHOW(link, qual.qual, fmt_dec);
  274. WIRELESS_SHOW(level, qual.level, fmt_dec);
  275. WIRELESS_SHOW(noise, qual.noise, fmt_dec);
  276. WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
  277. WIRELESS_SHOW(crypt, discard.code, fmt_dec);
  278. WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
  279. WIRELESS_SHOW(misc, discard.misc, fmt_dec);
  280. WIRELESS_SHOW(retries, discard.retries, fmt_dec);
  281. WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
  282. static struct attribute *wireless_attrs[] = {
  283. &class_device_attr_status.attr,
  284. &class_device_attr_link.attr,
  285. &class_device_attr_level.attr,
  286. &class_device_attr_noise.attr,
  287. &class_device_attr_nwid.attr,
  288. &class_device_attr_crypt.attr,
  289. &class_device_attr_fragment.attr,
  290. &class_device_attr_retries.attr,
  291. &class_device_attr_misc.attr,
  292. &class_device_attr_beacon.attr,
  293. NULL
  294. };
  295. static struct attribute_group wireless_group = {
  296. .name = "wireless",
  297. .attrs = wireless_attrs,
  298. };
  299. #endif
  300. #ifdef CONFIG_HOTPLUG
  301. static int netdev_hotplug(struct class_device *cd, char **envp,
  302. int num_envp, char *buf, int size)
  303. {
  304. struct net_device *dev = to_net_dev(cd);
  305. int i = 0;
  306. int n;
  307. /* pass interface in env to hotplug. */
  308. envp[i++] = buf;
  309. n = snprintf(buf, size, "INTERFACE=%s", dev->name) + 1;
  310. buf += n;
  311. size -= n;
  312. if ((size <= 0) || (i >= num_envp))
  313. return -ENOMEM;
  314. envp[i] = NULL;
  315. return 0;
  316. }
  317. #endif
  318. /*
  319. * netdev_release -- destroy and free a dead device.
  320. * Called when last reference to class_device kobject is gone.
  321. */
  322. static void netdev_release(struct class_device *cd)
  323. {
  324. struct net_device *dev
  325. = container_of(cd, struct net_device, class_dev);
  326. BUG_ON(dev->reg_state != NETREG_RELEASED);
  327. kfree((char *)dev - dev->padded);
  328. }
  329. static struct class net_class = {
  330. .name = "net",
  331. .release = netdev_release,
  332. #ifdef CONFIG_HOTPLUG
  333. .hotplug = netdev_hotplug,
  334. #endif
  335. };
  336. void netdev_unregister_sysfs(struct net_device * net)
  337. {
  338. struct class_device * class_dev = &(net->class_dev);
  339. if (net->get_stats)
  340. sysfs_remove_group(&class_dev->kobj, &netstat_group);
  341. #ifdef WIRELESS_EXT
  342. if (net->get_wireless_stats)
  343. sysfs_remove_group(&class_dev->kobj, &wireless_group);
  344. #endif
  345. class_device_del(class_dev);
  346. }
  347. /* Create sysfs entries for network device. */
  348. int netdev_register_sysfs(struct net_device *net)
  349. {
  350. struct class_device *class_dev = &(net->class_dev);
  351. int i;
  352. struct class_device_attribute *attr;
  353. int ret;
  354. class_dev->class = &net_class;
  355. class_dev->class_data = net;
  356. strlcpy(class_dev->class_id, net->name, BUS_ID_SIZE);
  357. if ((ret = class_device_register(class_dev)))
  358. goto out;
  359. for (i = 0; (attr = net_class_attributes[i]) != NULL; i++) {
  360. if ((ret = class_device_create_file(class_dev, attr)))
  361. goto out_unreg;
  362. }
  363. if (net->get_stats &&
  364. (ret = sysfs_create_group(&class_dev->kobj, &netstat_group)))
  365. goto out_unreg;
  366. #ifdef WIRELESS_EXT
  367. if (net->get_wireless_stats &&
  368. (ret = sysfs_create_group(&class_dev->kobj, &wireless_group)))
  369. goto out_cleanup;
  370. return 0;
  371. out_cleanup:
  372. if (net->get_stats)
  373. sysfs_remove_group(&class_dev->kobj, &netstat_group);
  374. #else
  375. return 0;
  376. #endif
  377. out_unreg:
  378. printk(KERN_WARNING "%s: sysfs attribute registration failed %d\n",
  379. net->name, ret);
  380. class_device_unregister(class_dev);
  381. out:
  382. return ret;
  383. }
  384. int netdev_sysfs_init(void)
  385. {
  386. return class_register(&net_class);
  387. }