net-sysfs.c 13 KB

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