net-sysfs.c 13 KB

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