net-sysfs.c 12 KB

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