net-sysfs.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  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/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. #include "net-sysfs.h"
  20. #ifdef CONFIG_SYSFS
  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 device *dev,
  31. struct device_attribute *attr, char *buf,
  32. ssize_t (*format)(const struct net_device *, char *))
  33. {
  34. struct net_device *net = to_net_dev(dev);
  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 device *dev, \
  49. struct device_attribute *attr, char *buf) \
  50. { \
  51. return netdev_show(dev, attr, buf, format_##field); \
  52. }
  53. /* use same locking and permission rules as SIF* ioctl's */
  54. static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
  55. const char *buf, size_t len,
  56. int (*set)(struct net_device *, unsigned long))
  57. {
  58. struct net_device *net = to_net_dev(dev);
  59. char *endp;
  60. unsigned long new;
  61. int ret = -EINVAL;
  62. if (!capable(CAP_NET_ADMIN))
  63. return -EPERM;
  64. new = simple_strtoul(buf, &endp, 0);
  65. if (endp == buf)
  66. goto err;
  67. if (!rtnl_trylock())
  68. return restart_syscall();
  69. if (dev_isalive(net)) {
  70. if ((ret = (*set)(net, new)) == 0)
  71. ret = len;
  72. }
  73. rtnl_unlock();
  74. err:
  75. return ret;
  76. }
  77. NETDEVICE_SHOW(dev_id, fmt_hex);
  78. NETDEVICE_SHOW(addr_len, fmt_dec);
  79. NETDEVICE_SHOW(iflink, fmt_dec);
  80. NETDEVICE_SHOW(ifindex, fmt_dec);
  81. NETDEVICE_SHOW(features, fmt_long_hex);
  82. NETDEVICE_SHOW(type, fmt_dec);
  83. NETDEVICE_SHOW(link_mode, fmt_dec);
  84. /* use same locking rules as GIFHWADDR ioctl's */
  85. static ssize_t show_address(struct device *dev, struct device_attribute *attr,
  86. char *buf)
  87. {
  88. struct net_device *net = to_net_dev(dev);
  89. ssize_t ret = -EINVAL;
  90. read_lock(&dev_base_lock);
  91. if (dev_isalive(net))
  92. ret = sysfs_format_mac(buf, net->dev_addr, net->addr_len);
  93. read_unlock(&dev_base_lock);
  94. return ret;
  95. }
  96. static ssize_t show_broadcast(struct device *dev,
  97. struct device_attribute *attr, char *buf)
  98. {
  99. struct net_device *net = to_net_dev(dev);
  100. if (dev_isalive(net))
  101. return sysfs_format_mac(buf, net->broadcast, net->addr_len);
  102. return -EINVAL;
  103. }
  104. static ssize_t show_carrier(struct device *dev,
  105. struct device_attribute *attr, char *buf)
  106. {
  107. struct net_device *netdev = to_net_dev(dev);
  108. if (netif_running(netdev)) {
  109. return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
  110. }
  111. return -EINVAL;
  112. }
  113. static ssize_t show_dormant(struct device *dev,
  114. struct device_attribute *attr, char *buf)
  115. {
  116. struct net_device *netdev = to_net_dev(dev);
  117. if (netif_running(netdev))
  118. return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
  119. return -EINVAL;
  120. }
  121. static const char *operstates[] = {
  122. "unknown",
  123. "notpresent", /* currently unused */
  124. "down",
  125. "lowerlayerdown",
  126. "testing", /* currently unused */
  127. "dormant",
  128. "up"
  129. };
  130. static ssize_t show_operstate(struct device *dev,
  131. struct device_attribute *attr, char *buf)
  132. {
  133. const struct net_device *netdev = to_net_dev(dev);
  134. unsigned char operstate;
  135. read_lock(&dev_base_lock);
  136. operstate = netdev->operstate;
  137. if (!netif_running(netdev))
  138. operstate = IF_OPER_DOWN;
  139. read_unlock(&dev_base_lock);
  140. if (operstate >= ARRAY_SIZE(operstates))
  141. return -EINVAL; /* should not happen */
  142. return sprintf(buf, "%s\n", operstates[operstate]);
  143. }
  144. /* read-write attributes */
  145. NETDEVICE_SHOW(mtu, fmt_dec);
  146. static int change_mtu(struct net_device *net, unsigned long new_mtu)
  147. {
  148. return dev_set_mtu(net, (int) new_mtu);
  149. }
  150. static ssize_t store_mtu(struct device *dev, struct device_attribute *attr,
  151. const char *buf, size_t len)
  152. {
  153. return netdev_store(dev, attr, 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 device *dev, struct device_attribute *attr,
  161. const char *buf, size_t len)
  162. {
  163. return netdev_store(dev, attr, buf, len, change_flags);
  164. }
  165. NETDEVICE_SHOW(tx_queue_len, fmt_ulong);
  166. static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
  167. {
  168. net->tx_queue_len = new_len;
  169. return 0;
  170. }
  171. static ssize_t store_tx_queue_len(struct device *dev,
  172. struct device_attribute *attr,
  173. const char *buf, size_t len)
  174. {
  175. return netdev_store(dev, attr, buf, len, change_tx_queue_len);
  176. }
  177. static ssize_t store_ifalias(struct device *dev, struct device_attribute *attr,
  178. const char *buf, size_t len)
  179. {
  180. struct net_device *netdev = to_net_dev(dev);
  181. size_t count = len;
  182. ssize_t ret;
  183. if (!capable(CAP_NET_ADMIN))
  184. return -EPERM;
  185. /* ignore trailing newline */
  186. if (len > 0 && buf[len - 1] == '\n')
  187. --count;
  188. if (!rtnl_trylock())
  189. return restart_syscall();
  190. ret = dev_set_alias(netdev, buf, count);
  191. rtnl_unlock();
  192. return ret < 0 ? ret : len;
  193. }
  194. static ssize_t show_ifalias(struct device *dev,
  195. struct device_attribute *attr, char *buf)
  196. {
  197. const struct net_device *netdev = to_net_dev(dev);
  198. ssize_t ret = 0;
  199. if (!rtnl_trylock())
  200. return restart_syscall();
  201. if (netdev->ifalias)
  202. ret = sprintf(buf, "%s\n", netdev->ifalias);
  203. rtnl_unlock();
  204. return ret;
  205. }
  206. static struct device_attribute net_class_attributes[] = {
  207. __ATTR(addr_len, S_IRUGO, show_addr_len, NULL),
  208. __ATTR(dev_id, S_IRUGO, show_dev_id, NULL),
  209. __ATTR(ifalias, S_IRUGO | S_IWUSR, show_ifalias, store_ifalias),
  210. __ATTR(iflink, S_IRUGO, show_iflink, NULL),
  211. __ATTR(ifindex, S_IRUGO, show_ifindex, NULL),
  212. __ATTR(features, S_IRUGO, show_features, NULL),
  213. __ATTR(type, S_IRUGO, show_type, NULL),
  214. __ATTR(link_mode, S_IRUGO, show_link_mode, NULL),
  215. __ATTR(address, S_IRUGO, show_address, NULL),
  216. __ATTR(broadcast, S_IRUGO, show_broadcast, NULL),
  217. __ATTR(carrier, S_IRUGO, show_carrier, NULL),
  218. __ATTR(dormant, S_IRUGO, show_dormant, NULL),
  219. __ATTR(operstate, S_IRUGO, show_operstate, NULL),
  220. __ATTR(mtu, S_IRUGO | S_IWUSR, show_mtu, store_mtu),
  221. __ATTR(flags, S_IRUGO | S_IWUSR, show_flags, store_flags),
  222. __ATTR(tx_queue_len, S_IRUGO | S_IWUSR, show_tx_queue_len,
  223. store_tx_queue_len),
  224. {}
  225. };
  226. /* Show a given an attribute in the statistics group */
  227. static ssize_t netstat_show(const struct device *d,
  228. struct device_attribute *attr, char *buf,
  229. unsigned long offset)
  230. {
  231. struct net_device *dev = to_net_dev(d);
  232. ssize_t ret = -EINVAL;
  233. WARN_ON(offset > sizeof(struct net_device_stats) ||
  234. offset % sizeof(unsigned long) != 0);
  235. read_lock(&dev_base_lock);
  236. if (dev_isalive(dev)) {
  237. const struct net_device_stats *stats = dev_get_stats(dev);
  238. ret = sprintf(buf, fmt_ulong,
  239. *(unsigned long *)(((u8 *) stats) + offset));
  240. }
  241. read_unlock(&dev_base_lock);
  242. return ret;
  243. }
  244. /* generate a read-only statistics attribute */
  245. #define NETSTAT_ENTRY(name) \
  246. static ssize_t show_##name(struct device *d, \
  247. struct device_attribute *attr, char *buf) \
  248. { \
  249. return netstat_show(d, attr, buf, \
  250. offsetof(struct net_device_stats, name)); \
  251. } \
  252. static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
  253. NETSTAT_ENTRY(rx_packets);
  254. NETSTAT_ENTRY(tx_packets);
  255. NETSTAT_ENTRY(rx_bytes);
  256. NETSTAT_ENTRY(tx_bytes);
  257. NETSTAT_ENTRY(rx_errors);
  258. NETSTAT_ENTRY(tx_errors);
  259. NETSTAT_ENTRY(rx_dropped);
  260. NETSTAT_ENTRY(tx_dropped);
  261. NETSTAT_ENTRY(multicast);
  262. NETSTAT_ENTRY(collisions);
  263. NETSTAT_ENTRY(rx_length_errors);
  264. NETSTAT_ENTRY(rx_over_errors);
  265. NETSTAT_ENTRY(rx_crc_errors);
  266. NETSTAT_ENTRY(rx_frame_errors);
  267. NETSTAT_ENTRY(rx_fifo_errors);
  268. NETSTAT_ENTRY(rx_missed_errors);
  269. NETSTAT_ENTRY(tx_aborted_errors);
  270. NETSTAT_ENTRY(tx_carrier_errors);
  271. NETSTAT_ENTRY(tx_fifo_errors);
  272. NETSTAT_ENTRY(tx_heartbeat_errors);
  273. NETSTAT_ENTRY(tx_window_errors);
  274. NETSTAT_ENTRY(rx_compressed);
  275. NETSTAT_ENTRY(tx_compressed);
  276. static struct attribute *netstat_attrs[] = {
  277. &dev_attr_rx_packets.attr,
  278. &dev_attr_tx_packets.attr,
  279. &dev_attr_rx_bytes.attr,
  280. &dev_attr_tx_bytes.attr,
  281. &dev_attr_rx_errors.attr,
  282. &dev_attr_tx_errors.attr,
  283. &dev_attr_rx_dropped.attr,
  284. &dev_attr_tx_dropped.attr,
  285. &dev_attr_multicast.attr,
  286. &dev_attr_collisions.attr,
  287. &dev_attr_rx_length_errors.attr,
  288. &dev_attr_rx_over_errors.attr,
  289. &dev_attr_rx_crc_errors.attr,
  290. &dev_attr_rx_frame_errors.attr,
  291. &dev_attr_rx_fifo_errors.attr,
  292. &dev_attr_rx_missed_errors.attr,
  293. &dev_attr_tx_aborted_errors.attr,
  294. &dev_attr_tx_carrier_errors.attr,
  295. &dev_attr_tx_fifo_errors.attr,
  296. &dev_attr_tx_heartbeat_errors.attr,
  297. &dev_attr_tx_window_errors.attr,
  298. &dev_attr_rx_compressed.attr,
  299. &dev_attr_tx_compressed.attr,
  300. NULL
  301. };
  302. static struct attribute_group netstat_group = {
  303. .name = "statistics",
  304. .attrs = netstat_attrs,
  305. };
  306. #ifdef CONFIG_WIRELESS_EXT_SYSFS
  307. /* helper function that does all the locking etc for wireless stats */
  308. static ssize_t wireless_show(struct device *d, char *buf,
  309. ssize_t (*format)(const struct iw_statistics *,
  310. char *))
  311. {
  312. struct net_device *dev = to_net_dev(d);
  313. const struct iw_statistics *iw = NULL;
  314. ssize_t ret = -EINVAL;
  315. read_lock(&dev_base_lock);
  316. if (dev_isalive(dev)) {
  317. if (dev->wireless_handlers &&
  318. dev->wireless_handlers->get_wireless_stats)
  319. iw = dev->wireless_handlers->get_wireless_stats(dev);
  320. if (iw != NULL)
  321. ret = (*format)(iw, buf);
  322. }
  323. read_unlock(&dev_base_lock);
  324. return ret;
  325. }
  326. /* show function template for wireless fields */
  327. #define WIRELESS_SHOW(name, field, format_string) \
  328. static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \
  329. { \
  330. return sprintf(buf, format_string, iw->field); \
  331. } \
  332. static ssize_t show_iw_##name(struct device *d, \
  333. struct device_attribute *attr, char *buf) \
  334. { \
  335. return wireless_show(d, buf, format_iw_##name); \
  336. } \
  337. static DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL)
  338. WIRELESS_SHOW(status, status, fmt_hex);
  339. WIRELESS_SHOW(link, qual.qual, fmt_dec);
  340. WIRELESS_SHOW(level, qual.level, fmt_dec);
  341. WIRELESS_SHOW(noise, qual.noise, fmt_dec);
  342. WIRELESS_SHOW(nwid, discard.nwid, fmt_dec);
  343. WIRELESS_SHOW(crypt, discard.code, fmt_dec);
  344. WIRELESS_SHOW(fragment, discard.fragment, fmt_dec);
  345. WIRELESS_SHOW(misc, discard.misc, fmt_dec);
  346. WIRELESS_SHOW(retries, discard.retries, fmt_dec);
  347. WIRELESS_SHOW(beacon, miss.beacon, fmt_dec);
  348. static struct attribute *wireless_attrs[] = {
  349. &dev_attr_status.attr,
  350. &dev_attr_link.attr,
  351. &dev_attr_level.attr,
  352. &dev_attr_noise.attr,
  353. &dev_attr_nwid.attr,
  354. &dev_attr_crypt.attr,
  355. &dev_attr_fragment.attr,
  356. &dev_attr_retries.attr,
  357. &dev_attr_misc.attr,
  358. &dev_attr_beacon.attr,
  359. NULL
  360. };
  361. static struct attribute_group wireless_group = {
  362. .name = "wireless",
  363. .attrs = wireless_attrs,
  364. };
  365. #endif
  366. #endif /* CONFIG_SYSFS */
  367. #ifdef CONFIG_HOTPLUG
  368. static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
  369. {
  370. struct net_device *dev = to_net_dev(d);
  371. int retval;
  372. if (!net_eq(dev_net(dev), &init_net))
  373. return 0;
  374. /* pass interface to uevent. */
  375. retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
  376. if (retval)
  377. goto exit;
  378. /* pass ifindex to uevent.
  379. * ifindex is useful as it won't change (interface name may change)
  380. * and is what RtNetlink uses natively. */
  381. retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
  382. exit:
  383. return retval;
  384. }
  385. #endif
  386. /*
  387. * netdev_release -- destroy and free a dead device.
  388. * Called when last reference to device kobject is gone.
  389. */
  390. static void netdev_release(struct device *d)
  391. {
  392. struct net_device *dev = to_net_dev(d);
  393. BUG_ON(dev->reg_state != NETREG_RELEASED);
  394. kfree(dev->ifalias);
  395. kfree((char *)dev - dev->padded);
  396. }
  397. static struct class net_class = {
  398. .name = "net",
  399. .dev_release = netdev_release,
  400. #ifdef CONFIG_SYSFS
  401. .dev_attrs = net_class_attributes,
  402. #endif /* CONFIG_SYSFS */
  403. #ifdef CONFIG_HOTPLUG
  404. .dev_uevent = netdev_uevent,
  405. #endif
  406. };
  407. /* Delete sysfs entries but hold kobject reference until after all
  408. * netdev references are gone.
  409. */
  410. void netdev_unregister_kobject(struct net_device * net)
  411. {
  412. struct device *dev = &(net->dev);
  413. kobject_get(&dev->kobj);
  414. if (dev_net(net) != &init_net)
  415. return;
  416. device_del(dev);
  417. }
  418. /* Create sysfs entries for network device. */
  419. int netdev_register_kobject(struct net_device *net)
  420. {
  421. struct device *dev = &(net->dev);
  422. struct attribute_group **groups = net->sysfs_groups;
  423. dev->class = &net_class;
  424. dev->platform_data = net;
  425. dev->groups = groups;
  426. dev_set_name(dev, "%s", net->name);
  427. #ifdef CONFIG_SYSFS
  428. *groups++ = &netstat_group;
  429. #ifdef CONFIG_WIRELESS_EXT_SYSFS
  430. if (net->wireless_handlers && net->wireless_handlers->get_wireless_stats)
  431. *groups++ = &wireless_group;
  432. #endif
  433. #endif /* CONFIG_SYSFS */
  434. if (dev_net(net) != &init_net)
  435. return 0;
  436. return device_add(dev);
  437. }
  438. int netdev_class_create_file(struct class_attribute *class_attr)
  439. {
  440. return class_create_file(&net_class, class_attr);
  441. }
  442. void netdev_class_remove_file(struct class_attribute *class_attr)
  443. {
  444. class_remove_file(&net_class, class_attr);
  445. }
  446. EXPORT_SYMBOL(netdev_class_create_file);
  447. EXPORT_SYMBOL(netdev_class_remove_file);
  448. void netdev_initialize_kobject(struct net_device *net)
  449. {
  450. struct device *device = &(net->dev);
  451. device_initialize(device);
  452. }
  453. int netdev_kobject_init(void)
  454. {
  455. return class_register(&net_class);
  456. }