Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 14 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/netdevice.h> |
| 17 | #include <linux/if_bridge.h> |
| 18 | #include <linux/rtnetlink.h> |
| 19 | #include <linux/spinlock.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 20 | #include <linux/sched/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include "br_private.h" |
| 23 | |
| 24 | struct brport_attribute { |
| 25 | struct attribute attr; |
| 26 | ssize_t (*show)(struct net_bridge_port *, char *); |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 27 | int (*store)(struct net_bridge_port *, unsigned long); |
Nikolay Aleksandrov | a5f3ea5 | 2018-07-23 11:16:58 +0300 | [diff] [blame] | 28 | int (*store_raw)(struct net_bridge_port *, char *); |
| 29 | }; |
| 30 | |
| 31 | #define BRPORT_ATTR_RAW(_name, _mode, _show, _store) \ |
| 32 | const struct brport_attribute brport_attr_##_name = { \ |
| 33 | .attr = {.name = __stringify(_name), \ |
| 34 | .mode = _mode }, \ |
| 35 | .show = _show, \ |
| 36 | .store_raw = _store, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
tanxiaojun | 31a5b83 | 2013-12-19 13:28:12 +0800 | [diff] [blame] | 39 | #define BRPORT_ATTR(_name, _mode, _show, _store) \ |
stephen hemminger | 5a0d513 | 2012-07-30 08:55:49 +0000 | [diff] [blame] | 40 | const struct brport_attribute brport_attr_##_name = { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | .attr = {.name = __stringify(_name), \ |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 42 | .mode = _mode }, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | .show = _show, \ |
| 44 | .store = _store, \ |
| 45 | }; |
| 46 | |
stephen hemminger | cd75373 | 2012-11-13 07:53:06 +0000 | [diff] [blame] | 47 | #define BRPORT_ATTR_FLAG(_name, _mask) \ |
| 48 | static ssize_t show_##_name(struct net_bridge_port *p, char *buf) \ |
| 49 | { \ |
| 50 | return sprintf(buf, "%d\n", !!(p->flags & _mask)); \ |
| 51 | } \ |
| 52 | static int store_##_name(struct net_bridge_port *p, unsigned long v) \ |
| 53 | { \ |
Vlad Yasevich | 63c3a62 | 2014-05-16 09:59:15 -0400 | [diff] [blame] | 54 | return store_flag(p, v, _mask); \ |
stephen hemminger | cd75373 | 2012-11-13 07:53:06 +0000 | [diff] [blame] | 55 | } \ |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 56 | static BRPORT_ATTR(_name, 0644, \ |
stephen hemminger | cd75373 | 2012-11-13 07:53:06 +0000 | [diff] [blame] | 57 | show_##_name, store_##_name) |
| 58 | |
Vlad Yasevich | 63c3a62 | 2014-05-16 09:59:15 -0400 | [diff] [blame] | 59 | static int store_flag(struct net_bridge_port *p, unsigned long v, |
| 60 | unsigned long mask) |
| 61 | { |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 62 | unsigned long flags; |
| 63 | |
| 64 | flags = p->flags; |
Vlad Yasevich | 63c3a62 | 2014-05-16 09:59:15 -0400 | [diff] [blame] | 65 | |
| 66 | if (v) |
| 67 | flags |= mask; |
| 68 | else |
| 69 | flags &= ~mask; |
| 70 | |
| 71 | if (flags != p->flags) { |
| 72 | p->flags = flags; |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 73 | br_port_flags_change(p, mask); |
Vlad Yasevich | 63c3a62 | 2014-05-16 09:59:15 -0400 | [diff] [blame] | 74 | } |
| 75 | return 0; |
| 76 | } |
stephen hemminger | cd75373 | 2012-11-13 07:53:06 +0000 | [diff] [blame] | 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | static ssize_t show_path_cost(struct net_bridge_port *p, char *buf) |
| 79 | { |
| 80 | return sprintf(buf, "%d\n", p->path_cost); |
| 81 | } |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 82 | |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 83 | static BRPORT_ATTR(path_cost, 0644, |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 84 | show_path_cost, br_stp_set_path_cost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | static ssize_t show_priority(struct net_bridge_port *p, char *buf) |
| 87 | { |
| 88 | return sprintf(buf, "%d\n", p->priority); |
| 89 | } |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 90 | |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 91 | static BRPORT_ATTR(priority, 0644, |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 92 | show_priority, br_stp_set_port_priority); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | static ssize_t show_designated_root(struct net_bridge_port *p, char *buf) |
| 95 | { |
| 96 | return br_show_bridge_id(buf, &p->designated_root); |
| 97 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 98 | static BRPORT_ATTR(designated_root, 0444, show_designated_root, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | static ssize_t show_designated_bridge(struct net_bridge_port *p, char *buf) |
| 101 | { |
| 102 | return br_show_bridge_id(buf, &p->designated_bridge); |
| 103 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 104 | static BRPORT_ATTR(designated_bridge, 0444, show_designated_bridge, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | static ssize_t show_designated_port(struct net_bridge_port *p, char *buf) |
| 107 | { |
| 108 | return sprintf(buf, "%d\n", p->designated_port); |
| 109 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 110 | static BRPORT_ATTR(designated_port, 0444, show_designated_port, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | static ssize_t show_designated_cost(struct net_bridge_port *p, char *buf) |
| 113 | { |
| 114 | return sprintf(buf, "%d\n", p->designated_cost); |
| 115 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 116 | static BRPORT_ATTR(designated_cost, 0444, show_designated_cost, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | static ssize_t show_port_id(struct net_bridge_port *p, char *buf) |
| 119 | { |
| 120 | return sprintf(buf, "0x%x\n", p->port_id); |
| 121 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 122 | static BRPORT_ATTR(port_id, 0444, show_port_id, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | static ssize_t show_port_no(struct net_bridge_port *p, char *buf) |
| 125 | { |
| 126 | return sprintf(buf, "0x%x\n", p->port_no); |
| 127 | } |
| 128 | |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 129 | static BRPORT_ATTR(port_no, 0444, show_port_no, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | static ssize_t show_change_ack(struct net_bridge_port *p, char *buf) |
| 132 | { |
| 133 | return sprintf(buf, "%d\n", p->topology_change_ack); |
| 134 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 135 | static BRPORT_ATTR(change_ack, 0444, show_change_ack, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | static ssize_t show_config_pending(struct net_bridge_port *p, char *buf) |
| 138 | { |
| 139 | return sprintf(buf, "%d\n", p->config_pending); |
| 140 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 141 | static BRPORT_ATTR(config_pending, 0444, show_config_pending, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | static ssize_t show_port_state(struct net_bridge_port *p, char *buf) |
| 144 | { |
| 145 | return sprintf(buf, "%d\n", p->state); |
| 146 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 147 | static BRPORT_ATTR(state, 0444, show_port_state, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | static ssize_t show_message_age_timer(struct net_bridge_port *p, |
| 150 | char *buf) |
| 151 | { |
| 152 | return sprintf(buf, "%ld\n", br_timer_value(&p->message_age_timer)); |
| 153 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 154 | static BRPORT_ATTR(message_age_timer, 0444, show_message_age_timer, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | static ssize_t show_forward_delay_timer(struct net_bridge_port *p, |
| 157 | char *buf) |
| 158 | { |
| 159 | return sprintf(buf, "%ld\n", br_timer_value(&p->forward_delay_timer)); |
| 160 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 161 | static BRPORT_ATTR(forward_delay_timer, 0444, show_forward_delay_timer, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
| 163 | static ssize_t show_hold_timer(struct net_bridge_port *p, |
| 164 | char *buf) |
| 165 | { |
| 166 | return sprintf(buf, "%ld\n", br_timer_value(&p->hold_timer)); |
| 167 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 168 | static BRPORT_ATTR(hold_timer, 0444, show_hold_timer, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 170 | static int store_flush(struct net_bridge_port *p, unsigned long v) |
Stephen Hemminger | 9cf6374 | 2007-04-09 12:57:54 -0700 | [diff] [blame] | 171 | { |
Nikolay Aleksandrov | 1ea2d02 | 2015-06-23 05:28:16 -0700 | [diff] [blame] | 172 | br_fdb_delete_by_port(p->br, p, 0, 0); // Don't delete local entry |
Stephen Hemminger | 9cf6374 | 2007-04-09 12:57:54 -0700 | [diff] [blame] | 173 | return 0; |
| 174 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 175 | static BRPORT_ATTR(flush, 0200, NULL, store_flush); |
Stephen Hemminger | 9cf6374 | 2007-04-09 12:57:54 -0700 | [diff] [blame] | 176 | |
Nikolay Aleksandrov | 5af48b5 | 2017-09-27 16:12:44 +0300 | [diff] [blame] | 177 | static ssize_t show_group_fwd_mask(struct net_bridge_port *p, char *buf) |
| 178 | { |
| 179 | return sprintf(buf, "%#x\n", p->group_fwd_mask); |
| 180 | } |
| 181 | |
| 182 | static int store_group_fwd_mask(struct net_bridge_port *p, |
| 183 | unsigned long v) |
| 184 | { |
| 185 | if (v & BR_GROUPFWD_MACPAUSE) |
| 186 | return -EINVAL; |
| 187 | p->group_fwd_mask = v; |
| 188 | |
| 189 | return 0; |
| 190 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 191 | static BRPORT_ATTR(group_fwd_mask, 0644, show_group_fwd_mask, |
Nikolay Aleksandrov | 5af48b5 | 2017-09-27 16:12:44 +0300 | [diff] [blame] | 192 | store_group_fwd_mask); |
| 193 | |
Nikolay Aleksandrov | 2756f68 | 2018-07-23 11:16:59 +0300 | [diff] [blame] | 194 | static ssize_t show_backup_port(struct net_bridge_port *p, char *buf) |
| 195 | { |
| 196 | struct net_bridge_port *backup_p; |
| 197 | int ret = 0; |
| 198 | |
| 199 | rcu_read_lock(); |
| 200 | backup_p = rcu_dereference(p->backup_port); |
| 201 | if (backup_p) |
| 202 | ret = sprintf(buf, "%s\n", backup_p->dev->name); |
| 203 | rcu_read_unlock(); |
| 204 | |
| 205 | return ret; |
| 206 | } |
| 207 | |
| 208 | static int store_backup_port(struct net_bridge_port *p, char *buf) |
| 209 | { |
| 210 | struct net_device *backup_dev = NULL; |
| 211 | char *nl = strchr(buf, '\n'); |
| 212 | |
| 213 | if (nl) |
| 214 | *nl = '\0'; |
| 215 | |
| 216 | if (strlen(buf) > 0) { |
| 217 | backup_dev = __dev_get_by_name(dev_net(p->dev), buf); |
| 218 | if (!backup_dev) |
| 219 | return -ENOENT; |
| 220 | } |
| 221 | |
| 222 | return nbp_backup_change(p, backup_dev); |
| 223 | } |
| 224 | static BRPORT_ATTR_RAW(backup_port, 0644, show_backup_port, store_backup_port); |
| 225 | |
stephen hemminger | cd75373 | 2012-11-13 07:53:06 +0000 | [diff] [blame] | 226 | BRPORT_ATTR_FLAG(hairpin_mode, BR_HAIRPIN_MODE); |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 227 | BRPORT_ATTR_FLAG(bpdu_guard, BR_BPDU_GUARD); |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 228 | BRPORT_ATTR_FLAG(root_block, BR_ROOT_BLOCK); |
Vlad Yasevich | 9ba1889 | 2013-06-05 10:08:00 -0400 | [diff] [blame] | 229 | BRPORT_ATTR_FLAG(learning, BR_LEARNING); |
Vlad Yasevich | 867a594 | 2013-06-05 10:08:01 -0400 | [diff] [blame] | 230 | BRPORT_ATTR_FLAG(unicast_flood, BR_FLOOD); |
Kyeyoon Park | 9585011 | 2014-10-23 14:49:17 -0700 | [diff] [blame] | 231 | BRPORT_ATTR_FLAG(proxyarp, BR_PROXYARP); |
Jouni Malinen | 842a9ae | 2015-03-04 12:54:21 +0200 | [diff] [blame] | 232 | BRPORT_ATTR_FLAG(proxyarp_wifi, BR_PROXYARP_WIFI); |
Nikolay Aleksandrov | b6cb5ac | 2016-08-31 15:36:52 +0200 | [diff] [blame] | 233 | BRPORT_ATTR_FLAG(multicast_flood, BR_MCAST_FLOOD); |
Mike Manning | 99f906e | 2017-04-26 14:48:09 +0100 | [diff] [blame] | 234 | BRPORT_ATTR_FLAG(broadcast_flood, BR_BCAST_FLOOD); |
Roopa Prabhu | 821f1b2 | 2017-10-06 22:12:37 -0700 | [diff] [blame] | 235 | BRPORT_ATTR_FLAG(neigh_suppress, BR_NEIGH_SUPPRESS); |
Nikolay Aleksandrov | 7d850ab | 2018-05-24 11:56:48 +0300 | [diff] [blame] | 236 | BRPORT_ATTR_FLAG(isolated, BR_ISOLATED); |
Fischer, Anna | 3982d3d | 2009-08-13 06:55:16 +0000 | [diff] [blame] | 237 | |
Herbert Xu | 0909e11 | 2010-02-27 19:41:49 +0000 | [diff] [blame] | 238 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
| 239 | static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf) |
| 240 | { |
| 241 | return sprintf(buf, "%d\n", p->multicast_router); |
| 242 | } |
| 243 | |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 244 | static int store_multicast_router(struct net_bridge_port *p, |
Herbert Xu | 0909e11 | 2010-02-27 19:41:49 +0000 | [diff] [blame] | 245 | unsigned long v) |
| 246 | { |
| 247 | return br_multicast_set_port_router(p, v); |
| 248 | } |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 249 | static BRPORT_ATTR(multicast_router, 0644, show_multicast_router, |
Herbert Xu | 0909e11 | 2010-02-27 19:41:49 +0000 | [diff] [blame] | 250 | store_multicast_router); |
Amerigo Wang | 50426b5 | 2012-12-03 23:56:40 +0000 | [diff] [blame] | 251 | |
David S. Miller | c2d3bab | 2012-12-05 16:24:45 -0500 | [diff] [blame] | 252 | BRPORT_ATTR_FLAG(multicast_fast_leave, BR_MULTICAST_FAST_LEAVE); |
Felix Fietkau | 6db6f0e | 2017-01-21 21:01:32 +0100 | [diff] [blame] | 253 | BRPORT_ATTR_FLAG(multicast_to_unicast, BR_MULTICAST_TO_UNICAST); |
Herbert Xu | 0909e11 | 2010-02-27 19:41:49 +0000 | [diff] [blame] | 254 | #endif |
| 255 | |
stephen hemminger | 5a0d513 | 2012-07-30 08:55:49 +0000 | [diff] [blame] | 256 | static const struct brport_attribute *brport_attrs[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | &brport_attr_path_cost, |
| 258 | &brport_attr_priority, |
| 259 | &brport_attr_port_id, |
| 260 | &brport_attr_port_no, |
| 261 | &brport_attr_designated_root, |
| 262 | &brport_attr_designated_bridge, |
| 263 | &brport_attr_designated_port, |
| 264 | &brport_attr_designated_cost, |
| 265 | &brport_attr_state, |
| 266 | &brport_attr_change_ack, |
| 267 | &brport_attr_config_pending, |
| 268 | &brport_attr_message_age_timer, |
| 269 | &brport_attr_forward_delay_timer, |
| 270 | &brport_attr_hold_timer, |
Stephen Hemminger | 9cf6374 | 2007-04-09 12:57:54 -0700 | [diff] [blame] | 271 | &brport_attr_flush, |
Fischer, Anna | 3982d3d | 2009-08-13 06:55:16 +0000 | [diff] [blame] | 272 | &brport_attr_hairpin_mode, |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 273 | &brport_attr_bpdu_guard, |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 274 | &brport_attr_root_block, |
Vlad Yasevich | 9ba1889 | 2013-06-05 10:08:00 -0400 | [diff] [blame] | 275 | &brport_attr_learning, |
Vlad Yasevich | 867a594 | 2013-06-05 10:08:01 -0400 | [diff] [blame] | 276 | &brport_attr_unicast_flood, |
Herbert Xu | 0909e11 | 2010-02-27 19:41:49 +0000 | [diff] [blame] | 277 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
| 278 | &brport_attr_multicast_router, |
Amerigo Wang | 50426b5 | 2012-12-03 23:56:40 +0000 | [diff] [blame] | 279 | &brport_attr_multicast_fast_leave, |
Felix Fietkau | 6db6f0e | 2017-01-21 21:01:32 +0100 | [diff] [blame] | 280 | &brport_attr_multicast_to_unicast, |
Herbert Xu | 0909e11 | 2010-02-27 19:41:49 +0000 | [diff] [blame] | 281 | #endif |
Kyeyoon Park | 9585011 | 2014-10-23 14:49:17 -0700 | [diff] [blame] | 282 | &brport_attr_proxyarp, |
Jouni Malinen | 842a9ae | 2015-03-04 12:54:21 +0200 | [diff] [blame] | 283 | &brport_attr_proxyarp_wifi, |
Nikolay Aleksandrov | 4eb6753 | 2016-10-13 15:20:52 +0200 | [diff] [blame] | 284 | &brport_attr_multicast_flood, |
Mike Manning | 99f906e | 2017-04-26 14:48:09 +0100 | [diff] [blame] | 285 | &brport_attr_broadcast_flood, |
Nikolay Aleksandrov | 5af48b5 | 2017-09-27 16:12:44 +0300 | [diff] [blame] | 286 | &brport_attr_group_fwd_mask, |
Roopa Prabhu | 821f1b2 | 2017-10-06 22:12:37 -0700 | [diff] [blame] | 287 | &brport_attr_neigh_suppress, |
Nikolay Aleksandrov | 7d850ab | 2018-05-24 11:56:48 +0300 | [diff] [blame] | 288 | &brport_attr_isolated, |
Nikolay Aleksandrov | 2756f68 | 2018-07-23 11:16:59 +0300 | [diff] [blame] | 289 | &brport_attr_backup_port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | NULL |
| 291 | }; |
| 292 | |
| 293 | #define to_brport_attr(_at) container_of(_at, struct brport_attribute, attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
tanxiaojun | 56b148e | 2013-12-19 13:28:13 +0800 | [diff] [blame] | 295 | static ssize_t brport_show(struct kobject *kobj, |
| 296 | struct attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
tanxiaojun | 56b148e | 2013-12-19 13:28:13 +0800 | [diff] [blame] | 298 | struct brport_attribute *brport_attr = to_brport_attr(attr); |
Tyler Hicks | 705e0de | 2018-07-20 21:56:54 +0000 | [diff] [blame] | 299 | struct net_bridge_port *p = kobj_to_brport(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Xin Long | 1b12580 | 2018-02-12 17:15:40 +0800 | [diff] [blame] | 301 | if (!brport_attr->show) |
| 302 | return -EINVAL; |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return brport_attr->show(p, buf); |
| 305 | } |
| 306 | |
tanxiaojun | 56b148e | 2013-12-19 13:28:13 +0800 | [diff] [blame] | 307 | static ssize_t brport_store(struct kobject *kobj, |
| 308 | struct attribute *attr, |
| 309 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
tanxiaojun | 56b148e | 2013-12-19 13:28:13 +0800 | [diff] [blame] | 311 | struct brport_attribute *brport_attr = to_brport_attr(attr); |
Tyler Hicks | 705e0de | 2018-07-20 21:56:54 +0000 | [diff] [blame] | 312 | struct net_bridge_port *p = kobj_to_brport(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | ssize_t ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | unsigned long val; |
Nikolay Aleksandrov | a5f3ea5 | 2018-07-23 11:16:58 +0300 | [diff] [blame] | 315 | char *endp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Eric W. Biederman | cb99050 | 2012-11-16 03:03:08 +0000 | [diff] [blame] | 317 | if (!ns_capable(dev_net(p->dev)->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | return -EPERM; |
| 319 | |
Nikolay Aleksandrov | a5f3ea5 | 2018-07-23 11:16:58 +0300 | [diff] [blame] | 320 | if (!rtnl_trylock()) |
| 321 | return restart_syscall(); |
| 322 | |
Nikolay Aleksandrov | a5f3ea5 | 2018-07-23 11:16:58 +0300 | [diff] [blame] | 323 | if (brport_attr->store_raw) { |
| 324 | char *buf_copy; |
| 325 | |
| 326 | buf_copy = kstrndup(buf, count, GFP_KERNEL); |
| 327 | if (!buf_copy) { |
| 328 | ret = -ENOMEM; |
| 329 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
Nikolay Aleksandrov | a5f3ea5 | 2018-07-23 11:16:58 +0300 | [diff] [blame] | 331 | spin_lock_bh(&p->br->lock); |
| 332 | ret = brport_attr->store_raw(p, buf_copy); |
| 333 | spin_unlock_bh(&p->br->lock); |
| 334 | kfree(buf_copy); |
| 335 | } else if (brport_attr->store) { |
| 336 | val = simple_strtoul(buf, &endp, 0); |
| 337 | if (endp == buf) |
| 338 | goto out_unlock; |
| 339 | spin_lock_bh(&p->br->lock); |
| 340 | ret = brport_attr->store(p, val); |
| 341 | spin_unlock_bh(&p->br->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
Nikolay Aleksandrov | a5f3ea5 | 2018-07-23 11:16:58 +0300 | [diff] [blame] | 343 | |
| 344 | if (!ret) { |
| 345 | br_ifinfo_notify(RTM_NEWLINK, NULL, p); |
| 346 | ret = count; |
| 347 | } |
| 348 | out_unlock: |
| 349 | rtnl_unlock(); |
| 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return ret; |
| 352 | } |
| 353 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 354 | const struct sysfs_ops brport_sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | .show = brport_show, |
| 356 | .store = brport_store, |
| 357 | }; |
| 358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | /* |
| 360 | * Add sysfs entries to ethernet device added to a bridge. |
| 361 | * Creates a brport subdirectory with bridge attributes. |
Simon Arlott | e0f4375 | 2010-05-10 09:31:11 +0000 | [diff] [blame] | 362 | * Puts symlink in bridge's brif subdirectory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | */ |
| 364 | int br_sysfs_addif(struct net_bridge_port *p) |
| 365 | { |
| 366 | struct net_bridge *br = p->br; |
stephen hemminger | 5a0d513 | 2012-07-30 08:55:49 +0000 | [diff] [blame] | 367 | const struct brport_attribute **a; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | int err; |
| 369 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 370 | err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | SYSFS_BRIDGE_PORT_LINK); |
| 372 | if (err) |
Simon Arlott | e0f4375 | 2010-05-10 09:31:11 +0000 | [diff] [blame] | 373 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | for (a = brport_attrs; *a; ++a) { |
| 376 | err = sysfs_create_file(&p->kobj, &((*a)->attr)); |
| 377 | if (err) |
Simon Arlott | e0f4375 | 2010-05-10 09:31:11 +0000 | [diff] [blame] | 378 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Simon Arlott | e0f4375 | 2010-05-10 09:31:11 +0000 | [diff] [blame] | 381 | strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ); |
| 382 | return sysfs_create_link(br->ifobj, &p->kobj, p->sysfs_name); |
| 383 | } |
| 384 | |
| 385 | /* Rename bridge's brif symlink */ |
| 386 | int br_sysfs_renameif(struct net_bridge_port *p) |
| 387 | { |
| 388 | struct net_bridge *br = p->br; |
| 389 | int err; |
| 390 | |
| 391 | /* If a rename fails, the rollback will cause another |
| 392 | * rename call with the existing name. |
| 393 | */ |
| 394 | if (!strncmp(p->sysfs_name, p->dev->name, IFNAMSIZ)) |
| 395 | return 0; |
| 396 | |
| 397 | err = sysfs_rename_link(br->ifobj, &p->kobj, |
| 398 | p->sysfs_name, p->dev->name); |
| 399 | if (err) |
| 400 | netdev_notice(br->dev, "unable to rename link %s to %s", |
| 401 | p->sysfs_name, p->dev->name); |
| 402 | else |
| 403 | strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ); |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | return err; |
| 406 | } |