br_sysfs_if.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /*
  2. * Sysfs attributes of bridge ports
  3. * Linux ethernet bridge
  4. *
  5. * Authors:
  6. * Stephen Hemminger <shemminger@osdl.org>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #include <linux/capability.h>
  14. #include <linux/kernel.h>
  15. #include <linux/netdevice.h>
  16. #include <linux/if_bridge.h>
  17. #include <linux/rtnetlink.h>
  18. #include <linux/spinlock.h>
  19. #include "br_private.h"
  20. struct brport_attribute {
  21. struct attribute attr;
  22. ssize_t (*show)(struct net_bridge_port *, char *);
  23. int (*store)(struct net_bridge_port *, unsigned long);
  24. };
  25. #define BRPORT_ATTR(_name,_mode,_show,_store) \
  26. const struct brport_attribute brport_attr_##_name = { \
  27. .attr = {.name = __stringify(_name), \
  28. .mode = _mode }, \
  29. .show = _show, \
  30. .store = _store, \
  31. };
  32. #define BRPORT_ATTR_FLAG(_name, _mask) \
  33. static ssize_t show_##_name(struct net_bridge_port *p, char *buf) \
  34. { \
  35. return sprintf(buf, "%d\n", !!(p->flags & _mask)); \
  36. } \
  37. static int store_##_name(struct net_bridge_port *p, unsigned long v) \
  38. { \
  39. unsigned long flags = p->flags; \
  40. if (v) \
  41. flags |= _mask; \
  42. else \
  43. flags &= ~_mask; \
  44. if (flags != p->flags) { \
  45. p->flags = flags; \
  46. br_ifinfo_notify(RTM_NEWLINK, p); \
  47. } \
  48. return 0; \
  49. } \
  50. static BRPORT_ATTR(_name, S_IRUGO | S_IWUSR, \
  51. show_##_name, store_##_name)
  52. static ssize_t show_path_cost(struct net_bridge_port *p, char *buf)
  53. {
  54. return sprintf(buf, "%d\n", p->path_cost);
  55. }
  56. static BRPORT_ATTR(path_cost, S_IRUGO | S_IWUSR,
  57. show_path_cost, br_stp_set_path_cost);
  58. static ssize_t show_priority(struct net_bridge_port *p, char *buf)
  59. {
  60. return sprintf(buf, "%d\n", p->priority);
  61. }
  62. static BRPORT_ATTR(priority, S_IRUGO | S_IWUSR,
  63. show_priority, br_stp_set_port_priority);
  64. static ssize_t show_designated_root(struct net_bridge_port *p, char *buf)
  65. {
  66. return br_show_bridge_id(buf, &p->designated_root);
  67. }
  68. static BRPORT_ATTR(designated_root, S_IRUGO, show_designated_root, NULL);
  69. static ssize_t show_designated_bridge(struct net_bridge_port *p, char *buf)
  70. {
  71. return br_show_bridge_id(buf, &p->designated_bridge);
  72. }
  73. static BRPORT_ATTR(designated_bridge, S_IRUGO, show_designated_bridge, NULL);
  74. static ssize_t show_designated_port(struct net_bridge_port *p, char *buf)
  75. {
  76. return sprintf(buf, "%d\n", p->designated_port);
  77. }
  78. static BRPORT_ATTR(designated_port, S_IRUGO, show_designated_port, NULL);
  79. static ssize_t show_designated_cost(struct net_bridge_port *p, char *buf)
  80. {
  81. return sprintf(buf, "%d\n", p->designated_cost);
  82. }
  83. static BRPORT_ATTR(designated_cost, S_IRUGO, show_designated_cost, NULL);
  84. static ssize_t show_port_id(struct net_bridge_port *p, char *buf)
  85. {
  86. return sprintf(buf, "0x%x\n", p->port_id);
  87. }
  88. static BRPORT_ATTR(port_id, S_IRUGO, show_port_id, NULL);
  89. static ssize_t show_port_no(struct net_bridge_port *p, char *buf)
  90. {
  91. return sprintf(buf, "0x%x\n", p->port_no);
  92. }
  93. static BRPORT_ATTR(port_no, S_IRUGO, show_port_no, NULL);
  94. static ssize_t show_change_ack(struct net_bridge_port *p, char *buf)
  95. {
  96. return sprintf(buf, "%d\n", p->topology_change_ack);
  97. }
  98. static BRPORT_ATTR(change_ack, S_IRUGO, show_change_ack, NULL);
  99. static ssize_t show_config_pending(struct net_bridge_port *p, char *buf)
  100. {
  101. return sprintf(buf, "%d\n", p->config_pending);
  102. }
  103. static BRPORT_ATTR(config_pending, S_IRUGO, show_config_pending, NULL);
  104. static ssize_t show_port_state(struct net_bridge_port *p, char *buf)
  105. {
  106. return sprintf(buf, "%d\n", p->state);
  107. }
  108. static BRPORT_ATTR(state, S_IRUGO, show_port_state, NULL);
  109. static ssize_t show_message_age_timer(struct net_bridge_port *p,
  110. char *buf)
  111. {
  112. return sprintf(buf, "%ld\n", br_timer_value(&p->message_age_timer));
  113. }
  114. static BRPORT_ATTR(message_age_timer, S_IRUGO, show_message_age_timer, NULL);
  115. static ssize_t show_forward_delay_timer(struct net_bridge_port *p,
  116. char *buf)
  117. {
  118. return sprintf(buf, "%ld\n", br_timer_value(&p->forward_delay_timer));
  119. }
  120. static BRPORT_ATTR(forward_delay_timer, S_IRUGO, show_forward_delay_timer, NULL);
  121. static ssize_t show_hold_timer(struct net_bridge_port *p,
  122. char *buf)
  123. {
  124. return sprintf(buf, "%ld\n", br_timer_value(&p->hold_timer));
  125. }
  126. static BRPORT_ATTR(hold_timer, S_IRUGO, show_hold_timer, NULL);
  127. static int store_flush(struct net_bridge_port *p, unsigned long v)
  128. {
  129. br_fdb_delete_by_port(p->br, p, 0); // Don't delete local entry
  130. return 0;
  131. }
  132. static BRPORT_ATTR(flush, S_IWUSR, NULL, store_flush);
  133. BRPORT_ATTR_FLAG(hairpin_mode, BR_HAIRPIN_MODE);
  134. BRPORT_ATTR_FLAG(bpdu_guard, BR_BPDU_GUARD);
  135. BRPORT_ATTR_FLAG(root_block, BR_ROOT_BLOCK);
  136. #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
  137. static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf)
  138. {
  139. return sprintf(buf, "%d\n", p->multicast_router);
  140. }
  141. static int store_multicast_router(struct net_bridge_port *p,
  142. unsigned long v)
  143. {
  144. return br_multicast_set_port_router(p, v);
  145. }
  146. static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router,
  147. store_multicast_router);
  148. BRPORT_ATTR_FLAG(multicast_fast_leave, BR_MULTICAST_FAST_LEAVE);
  149. #endif
  150. static const struct brport_attribute *brport_attrs[] = {
  151. &brport_attr_path_cost,
  152. &brport_attr_priority,
  153. &brport_attr_port_id,
  154. &brport_attr_port_no,
  155. &brport_attr_designated_root,
  156. &brport_attr_designated_bridge,
  157. &brport_attr_designated_port,
  158. &brport_attr_designated_cost,
  159. &brport_attr_state,
  160. &brport_attr_change_ack,
  161. &brport_attr_config_pending,
  162. &brport_attr_message_age_timer,
  163. &brport_attr_forward_delay_timer,
  164. &brport_attr_hold_timer,
  165. &brport_attr_flush,
  166. &brport_attr_hairpin_mode,
  167. &brport_attr_bpdu_guard,
  168. &brport_attr_root_block,
  169. #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
  170. &brport_attr_multicast_router,
  171. &brport_attr_multicast_fast_leave,
  172. #endif
  173. NULL
  174. };
  175. #define to_brport_attr(_at) container_of(_at, struct brport_attribute, attr)
  176. #define to_brport(obj) container_of(obj, struct net_bridge_port, kobj)
  177. static ssize_t brport_show(struct kobject * kobj,
  178. struct attribute * attr, char * buf)
  179. {
  180. struct brport_attribute * brport_attr = to_brport_attr(attr);
  181. struct net_bridge_port * p = to_brport(kobj);
  182. return brport_attr->show(p, buf);
  183. }
  184. static ssize_t brport_store(struct kobject * kobj,
  185. struct attribute * attr,
  186. const char * buf, size_t count)
  187. {
  188. struct brport_attribute * brport_attr = to_brport_attr(attr);
  189. struct net_bridge_port * p = to_brport(kobj);
  190. ssize_t ret = -EINVAL;
  191. char *endp;
  192. unsigned long val;
  193. if (!ns_capable(dev_net(p->dev)->user_ns, CAP_NET_ADMIN))
  194. return -EPERM;
  195. val = simple_strtoul(buf, &endp, 0);
  196. if (endp != buf) {
  197. if (!rtnl_trylock())
  198. return restart_syscall();
  199. if (p->dev && p->br && brport_attr->store) {
  200. spin_lock_bh(&p->br->lock);
  201. ret = brport_attr->store(p, val);
  202. spin_unlock_bh(&p->br->lock);
  203. if (ret == 0)
  204. ret = count;
  205. }
  206. rtnl_unlock();
  207. }
  208. return ret;
  209. }
  210. const struct sysfs_ops brport_sysfs_ops = {
  211. .show = brport_show,
  212. .store = brport_store,
  213. };
  214. /*
  215. * Add sysfs entries to ethernet device added to a bridge.
  216. * Creates a brport subdirectory with bridge attributes.
  217. * Puts symlink in bridge's brif subdirectory
  218. */
  219. int br_sysfs_addif(struct net_bridge_port *p)
  220. {
  221. struct net_bridge *br = p->br;
  222. const struct brport_attribute **a;
  223. int err;
  224. err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj,
  225. SYSFS_BRIDGE_PORT_LINK);
  226. if (err)
  227. return err;
  228. for (a = brport_attrs; *a; ++a) {
  229. err = sysfs_create_file(&p->kobj, &((*a)->attr));
  230. if (err)
  231. return err;
  232. }
  233. strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
  234. return sysfs_create_link(br->ifobj, &p->kobj, p->sysfs_name);
  235. }
  236. /* Rename bridge's brif symlink */
  237. int br_sysfs_renameif(struct net_bridge_port *p)
  238. {
  239. struct net_bridge *br = p->br;
  240. int err;
  241. /* If a rename fails, the rollback will cause another
  242. * rename call with the existing name.
  243. */
  244. if (!strncmp(p->sysfs_name, p->dev->name, IFNAMSIZ))
  245. return 0;
  246. err = sysfs_rename_link(br->ifobj, &p->kobj,
  247. p->sysfs_name, p->dev->name);
  248. if (err)
  249. netdev_notice(br->dev, "unable to rename link %s to %s",
  250. p->sysfs_name, p->dev->name);
  251. else
  252. strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
  253. return err;
  254. }