net-sysfs.c 15 KB

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