br_sysfs_if.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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. return store_flag(p, v, _mask); \
  40. } \
  41. static BRPORT_ATTR(_name, S_IRUGO | S_IWUSR, \
  42. show_##_name, store_##_name)
  43. static int store_flag(struct net_bridge_port *p, unsigned long v,
  44. unsigned long mask)
  45. {
  46. unsigned long flags;
  47. flags = p->flags;
  48. if (v)
  49. flags |= mask;
  50. else
  51. flags &= ~mask;
  52. if (flags != p->flags) {
  53. p->flags = flags;
  54. br_port_flags_change(p, mask);
  55. br_ifinfo_notify(RTM_NEWLINK, p);
  56. }
  57. return 0;
  58. }
  59. static ssize_t show_path_cost(struct net_bridge_port *p, char *buf)
  60. {
  61. return sprintf(buf, "%d\n", p->path_cost);
  62. }
  63. static BRPORT_ATTR(path_cost, S_IRUGO | S_IWUSR,
  64. show_path_cost, br_stp_set_path_cost);
  65. static ssize_t show_priority(struct net_bridge_port *p, char *buf)
  66. {
  67. return sprintf(buf, "%d\n", p->priority);
  68. }
  69. static BRPORT_ATTR(priority, S_IRUGO | S_IWUSR,
  70. show_priority, br_stp_set_port_priority);
  71. static ssize_t show_designated_root(struct net_bridge_port *p, char *buf)
  72. {
  73. return br_show_bridge_id(buf, &p->designated_root);
  74. }
  75. static BRPORT_ATTR(designated_root, S_IRUGO, show_designated_root, NULL);
  76. static ssize_t show_designated_bridge(struct net_bridge_port *p, char *buf)
  77. {
  78. return br_show_bridge_id(buf, &p->designated_bridge);
  79. }
  80. static BRPORT_ATTR(designated_bridge, S_IRUGO, show_designated_bridge, NULL);
  81. static ssize_t show_designated_port(struct net_bridge_port *p, char *buf)
  82. {
  83. return sprintf(buf, "%d\n", p->designated_port);
  84. }
  85. static BRPORT_ATTR(designated_port, S_IRUGO, show_designated_port, NULL);
  86. static ssize_t show_designated_cost(struct net_bridge_port *p, char *buf)
  87. {
  88. return sprintf(buf, "%d\n", p->designated_cost);
  89. }
  90. static BRPORT_ATTR(designated_cost, S_IRUGO, show_designated_cost, NULL);
  91. static ssize_t show_port_id(struct net_bridge_port *p, char *buf)
  92. {
  93. return sprintf(buf, "0x%x\n", p->port_id);
  94. }
  95. static BRPORT_ATTR(port_id, S_IRUGO, show_port_id, NULL);
  96. static ssize_t show_port_no(struct net_bridge_port *p, char *buf)
  97. {
  98. return sprintf(buf, "0x%x\n", p->port_no);
  99. }
  100. static BRPORT_ATTR(port_no, S_IRUGO, show_port_no, NULL);
  101. static ssize_t show_change_ack(struct net_bridge_port *p, char *buf)
  102. {
  103. return sprintf(buf, "%d\n", p->topology_change_ack);
  104. }
  105. static BRPORT_ATTR(change_ack, S_IRUGO, show_change_ack, NULL);
  106. static ssize_t show_config_pending(struct net_bridge_port *p, char *buf)
  107. {
  108. return sprintf(buf, "%d\n", p->config_pending);
  109. }
  110. static BRPORT_ATTR(config_pending, S_IRUGO, show_config_pending, NULL);
  111. static ssize_t show_port_state(struct net_bridge_port *p, char *buf)
  112. {
  113. return sprintf(buf, "%d\n", p->state);
  114. }
  115. static BRPORT_ATTR(state, S_IRUGO, show_port_state, NULL);
  116. static ssize_t show_message_age_timer(struct net_bridge_port *p,
  117. char *buf)
  118. {
  119. return sprintf(buf, "%ld\n", br_timer_value(&p->message_age_timer));
  120. }
  121. static BRPORT_ATTR(message_age_timer, S_IRUGO, show_message_age_timer, NULL);
  122. static ssize_t show_forward_delay_timer(struct net_bridge_port *p,
  123. char *buf)
  124. {
  125. return sprintf(buf, "%ld\n", br_timer_value(&p->forward_delay_timer));
  126. }
  127. static BRPORT_ATTR(forward_delay_timer, S_IRUGO, show_forward_delay_timer, NULL);
  128. static ssize_t show_hold_timer(struct net_bridge_port *p,
  129. char *buf)
  130. {
  131. return sprintf(buf, "%ld\n", br_timer_value(&p->hold_timer));
  132. }
  133. static BRPORT_ATTR(hold_timer, S_IRUGO, show_hold_timer, NULL);
  134. static int store_flush(struct net_bridge_port *p, unsigned long v)
  135. {
  136. br_fdb_delete_by_port(p->br, p, 0); // Don't delete local entry
  137. return 0;
  138. }
  139. static BRPORT_ATTR(flush, S_IWUSR, NULL, store_flush);
  140. BRPORT_ATTR_FLAG(hairpin_mode, BR_HAIRPIN_MODE);
  141. BRPORT_ATTR_FLAG(bpdu_guard, BR_BPDU_GUARD);
  142. BRPORT_ATTR_FLAG(root_block, BR_ROOT_BLOCK);
  143. BRPORT_ATTR_FLAG(learning, BR_LEARNING);
  144. BRPORT_ATTR_FLAG(unicast_flood, BR_FLOOD);
  145. #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
  146. static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf)
  147. {
  148. return sprintf(buf, "%d\n", p->multicast_router);
  149. }
  150. static int store_multicast_router(struct net_bridge_port *p,
  151. unsigned long v)
  152. {
  153. return br_multicast_set_port_router(p, v);
  154. }
  155. static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router,
  156. store_multicast_router);
  157. BRPORT_ATTR_FLAG(multicast_fast_leave, BR_MULTICAST_FAST_LEAVE);
  158. #endif
  159. static const struct brport_attribute *brport_attrs[] = {
  160. &brport_attr_path_cost,
  161. &brport_attr_priority,
  162. &brport_attr_port_id,
  163. &brport_attr_port_no,
  164. &brport_attr_designated_root,
  165. &brport_attr_designated_bridge,
  166. &brport_attr_designated_port,
  167. &brport_attr_designated_cost,
  168. &brport_attr_state,
  169. &brport_attr_change_ack,
  170. &brport_attr_config_pending,
  171. &brport_attr_message_age_timer,
  172. &brport_attr_forward_delay_timer,
  173. &brport_attr_hold_timer,
  174. &brport_attr_flush,
  175. &brport_attr_hairpin_mode,
  176. &brport_attr_bpdu_guard,
  177. &brport_attr_root_block,
  178. &brport_attr_learning,
  179. &brport_attr_unicast_flood,
  180. #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
  181. &brport_attr_multicast_router,
  182. &brport_attr_multicast_fast_leave,
  183. #endif
  184. NULL
  185. };
  186. #define to_brport_attr(_at) container_of(_at, struct brport_attribute, attr)
  187. #define to_brport(obj) container_of(obj, struct net_bridge_port, kobj)
  188. static ssize_t brport_show(struct kobject *kobj,
  189. struct attribute *attr, char *buf)
  190. {
  191. struct brport_attribute *brport_attr = to_brport_attr(attr);
  192. struct net_bridge_port *p = to_brport(kobj);
  193. return brport_attr->show(p, buf);
  194. }
  195. static ssize_t brport_store(struct kobject *kobj,
  196. struct attribute *attr,
  197. const char *buf, size_t count)
  198. {
  199. struct brport_attribute *brport_attr = to_brport_attr(attr);
  200. struct net_bridge_port *p = to_brport(kobj);
  201. ssize_t ret = -EINVAL;
  202. char *endp;
  203. unsigned long val;
  204. if (!ns_capable(dev_net(p->dev)->user_ns, CAP_NET_ADMIN))
  205. return -EPERM;
  206. val = simple_strtoul(buf, &endp, 0);
  207. if (endp != buf) {
  208. if (!rtnl_trylock())
  209. return restart_syscall();
  210. if (p->dev && p->br && brport_attr->store) {
  211. spin_lock_bh(&p->br->lock);
  212. ret = brport_attr->store(p, val);
  213. spin_unlock_bh(&p->br->lock);
  214. if (ret == 0)
  215. ret = count;
  216. }
  217. rtnl_unlock();
  218. }
  219. return ret;
  220. }
  221. const struct sysfs_ops brport_sysfs_ops = {
  222. .show = brport_show,
  223. .store = brport_store,
  224. };
  225. /*
  226. * Add sysfs entries to ethernet device added to a bridge.
  227. * Creates a brport subdirectory with bridge attributes.
  228. * Puts symlink in bridge's brif subdirectory
  229. */
  230. int br_sysfs_addif(struct net_bridge_port *p)
  231. {
  232. struct net_bridge *br = p->br;
  233. const struct brport_attribute **a;
  234. int err;
  235. err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj,
  236. SYSFS_BRIDGE_PORT_LINK);
  237. if (err)
  238. return err;
  239. for (a = brport_attrs; *a; ++a) {
  240. err = sysfs_create_file(&p->kobj, &((*a)->attr));
  241. if (err)
  242. return err;
  243. }
  244. strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
  245. return sysfs_create_link(br->ifobj, &p->kobj, p->sysfs_name);
  246. }
  247. /* Rename bridge's brif symlink */
  248. int br_sysfs_renameif(struct net_bridge_port *p)
  249. {
  250. struct net_bridge *br = p->br;
  251. int err;
  252. /* If a rename fails, the rollback will cause another
  253. * rename call with the existing name.
  254. */
  255. if (!strncmp(p->sysfs_name, p->dev->name, IFNAMSIZ))
  256. return 0;
  257. err = sysfs_rename_link(br->ifobj, &p->kobj,
  258. p->sysfs_name, p->dev->name);
  259. if (err)
  260. netdev_notice(br->dev, "unable to rename link %s to %s",
  261. p->sysfs_name, p->dev->name);
  262. else
  263. strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
  264. return err;
  265. }