Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 2 | /* |
| 3 | * include/linux/if_team.h - Network team device driver header |
| 4 | * Copyright (c) 2011 Jiri Pirko <jpirko@redhat.com> |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 5 | */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 6 | #ifndef _LINUX_IF_TEAM_H_ |
| 7 | #define _LINUX_IF_TEAM_H_ |
| 8 | |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 9 | #include <linux/netpoll.h> |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 10 | #include <net/sch_generic.h> |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 11 | #include <linux/types.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 12 | #include <uapi/linux/if_team.h> |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 13 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 14 | struct team_pcpu_stats { |
| 15 | u64 rx_packets; |
| 16 | u64 rx_bytes; |
| 17 | u64 rx_multicast; |
| 18 | u64 tx_packets; |
| 19 | u64 tx_bytes; |
| 20 | struct u64_stats_sync syncp; |
| 21 | u32 rx_dropped; |
| 22 | u32 tx_dropped; |
Jarod Wilson | bb63daf | 2016-02-01 18:51:06 -0500 | [diff] [blame] | 23 | u32 rx_nohandler; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | struct team; |
| 27 | |
| 28 | struct team_port { |
| 29 | struct net_device *dev; |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 30 | struct hlist_node hlist; /* node in enabled ports hash list */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 31 | struct list_head list; /* node in ordinary list */ |
| 32 | struct team *team; |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 33 | int index; /* index of enabled port. If disabled, it's set to -1 */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 34 | |
Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 35 | bool linkup; /* either state.linkup or user.linkup */ |
| 36 | |
| 37 | struct { |
| 38 | bool linkup; |
| 39 | u32 speed; |
| 40 | u8 duplex; |
| 41 | } state; |
| 42 | |
| 43 | /* Values set by userspace */ |
| 44 | struct { |
| 45 | bool linkup; |
| 46 | bool linkup_enabled; |
| 47 | } user; |
| 48 | |
| 49 | /* Custom gennetlink interface related flags */ |
| 50 | bool changed; |
| 51 | bool removed; |
| 52 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 53 | /* |
| 54 | * A place for storing original values of the device before it |
| 55 | * become a port. |
| 56 | */ |
| 57 | struct { |
| 58 | unsigned char dev_addr[MAX_ADDR_LEN]; |
| 59 | unsigned int mtu; |
| 60 | } orig; |
| 61 | |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 62 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 63 | struct netpoll *np; |
| 64 | #endif |
| 65 | |
Jiri Pirko | a86fc6b | 2012-07-27 06:28:54 +0000 | [diff] [blame] | 66 | s32 priority; /* lower number ~ higher priority */ |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 67 | u16 queue_id; |
| 68 | struct list_head qom_list; /* node in queue override mapping list */ |
Jiri Pirko | d80b35b | 2013-06-10 17:42:24 +0200 | [diff] [blame] | 69 | struct rcu_head rcu; |
Jiri Pirko | 5149ee5 | 2012-06-19 05:54:05 +0000 | [diff] [blame] | 70 | long mode_priv[0]; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
Petr Machata | 3443b00 | 2018-07-10 10:02:57 +0300 | [diff] [blame] | 73 | static inline struct team_port *team_port_get_rcu(const struct net_device *dev) |
| 74 | { |
| 75 | return rcu_dereference(dev->rx_handler_data); |
| 76 | } |
| 77 | |
Jiri Pirko | 68c4504 | 2012-07-11 05:34:04 +0000 | [diff] [blame] | 78 | static inline bool team_port_enabled(struct team_port *port) |
| 79 | { |
| 80 | return port->index != -1; |
| 81 | } |
| 82 | |
| 83 | static inline bool team_port_txable(struct team_port *port) |
| 84 | { |
| 85 | return port->linkup && team_port_enabled(port); |
| 86 | } |
Jiri Pirko | 52a4fd7 | 2012-06-26 06:52:46 +0000 | [diff] [blame] | 87 | |
Petr Machata | eeed992 | 2018-07-10 10:02:58 +0300 | [diff] [blame] | 88 | static inline bool team_port_dev_txable(const struct net_device *port_dev) |
| 89 | { |
| 90 | struct team_port *port; |
| 91 | bool txable; |
| 92 | |
| 93 | rcu_read_lock(); |
| 94 | port = team_port_get_rcu(port_dev); |
| 95 | txable = port ? team_port_txable(port) : false; |
| 96 | rcu_read_unlock(); |
| 97 | |
| 98 | return txable; |
| 99 | } |
| 100 | |
Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 101 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 102 | static inline void team_netpoll_send_skb(struct team_port *port, |
| 103 | struct sk_buff *skb) |
| 104 | { |
| 105 | struct netpoll *np = port->np; |
| 106 | |
| 107 | if (np) |
| 108 | netpoll_send_skb(np, skb); |
| 109 | } |
| 110 | #else |
| 111 | static inline void team_netpoll_send_skb(struct team_port *port, |
| 112 | struct sk_buff *skb) |
| 113 | { |
| 114 | } |
| 115 | #endif |
| 116 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 117 | struct team_mode_ops { |
| 118 | int (*init)(struct team *team); |
| 119 | void (*exit)(struct team *team); |
| 120 | rx_handler_result_t (*receive)(struct team *team, |
| 121 | struct team_port *port, |
| 122 | struct sk_buff *skb); |
| 123 | bool (*transmit)(struct team *team, struct sk_buff *skb); |
| 124 | int (*port_enter)(struct team *team, struct team_port *port); |
| 125 | void (*port_leave)(struct team *team, struct team_port *port); |
Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 126 | void (*port_change_dev_addr)(struct team *team, struct team_port *port); |
Jiri Pirko | 4bccfd1 | 2012-06-19 05:54:16 +0000 | [diff] [blame] | 127 | void (*port_enabled)(struct team *team, struct team_port *port); |
| 128 | void (*port_disabled)(struct team *team, struct team_port *port); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 129 | }; |
| 130 | |
Jiri Pirko | acbba0d | 2013-03-06 01:31:12 +0000 | [diff] [blame] | 131 | extern int team_modeop_port_enter(struct team *team, struct team_port *port); |
| 132 | extern void team_modeop_port_change_dev_addr(struct team *team, |
| 133 | struct team_port *port); |
| 134 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 135 | enum team_option_type { |
| 136 | TEAM_OPTION_TYPE_U32, |
| 137 | TEAM_OPTION_TYPE_STRING, |
Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 138 | TEAM_OPTION_TYPE_BINARY, |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 139 | TEAM_OPTION_TYPE_BOOL, |
Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 140 | TEAM_OPTION_TYPE_S32, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 141 | }; |
| 142 | |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 143 | struct team_option_inst_info { |
| 144 | u32 array_index; |
| 145 | struct team_port *port; /* != NULL if per-port */ |
| 146 | }; |
| 147 | |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 148 | struct team_gsetter_ctx { |
| 149 | union { |
| 150 | u32 u32_val; |
| 151 | const char *str_val; |
| 152 | struct { |
| 153 | const void *ptr; |
| 154 | u32 len; |
| 155 | } bin_val; |
Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 156 | bool bool_val; |
Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 157 | s32 s32_val; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 158 | } data; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 159 | struct team_option_inst_info *info; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 160 | }; |
| 161 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 162 | struct team_option { |
| 163 | struct list_head list; |
| 164 | const char *name; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 165 | bool per_port; |
Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 166 | unsigned int array_size; /* != 0 means the option is array */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 167 | enum team_option_type type; |
Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 168 | int (*init)(struct team *team, struct team_option_inst_info *info); |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 169 | int (*getter)(struct team *team, struct team_gsetter_ctx *ctx); |
| 170 | int (*setter)(struct team *team, struct team_gsetter_ctx *ctx); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 171 | }; |
| 172 | |
Jiri Pirko | 0f1aad2 | 2012-06-19 05:54:11 +0000 | [diff] [blame] | 173 | extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info); |
| 174 | extern void team_options_change_check(struct team *team); |
| 175 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 176 | struct team_mode { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 177 | const char *kind; |
| 178 | struct module *owner; |
| 179 | size_t priv_size; |
Jiri Pirko | 5149ee5 | 2012-06-19 05:54:05 +0000 | [diff] [blame] | 180 | size_t port_priv_size; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 181 | const struct team_mode_ops *ops; |
Jiri Pirko | 8fd7285 | 2015-12-03 12:12:13 +0100 | [diff] [blame] | 182 | enum netdev_lag_tx_type lag_tx_type; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 183 | }; |
| 184 | |
| 185 | #define TEAM_PORT_HASHBITS 4 |
| 186 | #define TEAM_PORT_HASHENTRIES (1 << TEAM_PORT_HASHBITS) |
| 187 | |
| 188 | #define TEAM_MODE_PRIV_LONGS 4 |
| 189 | #define TEAM_MODE_PRIV_SIZE (sizeof(long) * TEAM_MODE_PRIV_LONGS) |
| 190 | |
| 191 | struct team { |
| 192 | struct net_device *dev; /* associated netdevice */ |
| 193 | struct team_pcpu_stats __percpu *pcpu_stats; |
| 194 | |
Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 195 | struct mutex lock; /* used for overall locking, e.g. port lists write */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 196 | |
| 197 | /* |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 198 | * List of enabled ports and their count |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 199 | */ |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 200 | int en_port_count; |
| 201 | struct hlist_head en_port_hlist[TEAM_PORT_HASHENTRIES]; |
| 202 | |
| 203 | struct list_head port_list; /* list of all ports */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 204 | |
| 205 | struct list_head option_list; |
Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 206 | struct list_head option_inst_list; /* list of option instances */ |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 207 | |
| 208 | const struct team_mode *mode; |
| 209 | struct team_mode_ops ops; |
Flavio Leitner | e185483 | 2013-02-05 09:30:55 +0000 | [diff] [blame] | 210 | bool user_carrier_enabled; |
Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 211 | bool queue_override_enabled; |
| 212 | struct list_head *qom_lists; /* array of queue override mapping lists */ |
Jiri Pirko | 9d0d68f | 2014-05-29 20:46:17 +0200 | [diff] [blame] | 213 | bool port_mtu_change_allowed; |
Jiri Pirko | fc423ff | 2013-07-20 12:13:52 +0200 | [diff] [blame] | 214 | struct { |
| 215 | unsigned int count; |
| 216 | unsigned int interval; /* in ms */ |
| 217 | atomic_t count_pending; |
| 218 | struct delayed_work dw; |
| 219 | } notify_peers; |
Jiri Pirko | 492b200 | 2013-07-20 12:13:54 +0200 | [diff] [blame] | 220 | struct { |
| 221 | unsigned int count; |
| 222 | unsigned int interval; /* in ms */ |
| 223 | atomic_t count_pending; |
| 224 | struct delayed_work dw; |
| 225 | } mcast_rejoin; |
Taehee Yoo | 369f61b | 2019-10-21 18:47:54 +0000 | [diff] [blame] | 226 | struct lock_class_key team_lock_key; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 227 | long mode_priv[TEAM_MODE_PRIV_LONGS]; |
| 228 | }; |
| 229 | |
Amerigo Wang | e15c3c22 | 2012-08-10 01:24:45 +0000 | [diff] [blame] | 230 | static inline int team_dev_queue_xmit(struct team *team, struct team_port *port, |
| 231 | struct sk_buff *skb) |
| 232 | { |
| 233 | BUILD_BUG_ON(sizeof(skb->queue_mapping) != |
| 234 | sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping)); |
| 235 | skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping); |
| 236 | |
| 237 | skb->dev = port->dev; |
| 238 | if (unlikely(netpoll_tx_running(team->dev))) { |
| 239 | team_netpoll_send_skb(port, skb); |
| 240 | return 0; |
| 241 | } |
| 242 | return dev_queue_xmit(skb); |
| 243 | } |
| 244 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 245 | static inline struct hlist_head *team_port_index_hash(struct team *team, |
| 246 | int port_index) |
| 247 | { |
Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 248 | return &team->en_port_hlist[port_index & (TEAM_PORT_HASHENTRIES - 1)]; |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | static inline struct team_port *team_get_port_by_index(struct team *team, |
| 252 | int port_index) |
| 253 | { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 254 | struct team_port *port; |
| 255 | struct hlist_head *head = team_port_index_hash(team, port_index); |
| 256 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 257 | hlist_for_each_entry(port, head, hlist) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 258 | if (port->index == port_index) |
| 259 | return port; |
| 260 | return NULL; |
| 261 | } |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 262 | |
Alex Sidorenko | 21d9629 | 2016-10-07 09:02:33 -0400 | [diff] [blame] | 263 | static inline int team_num_to_port_index(struct team *team, unsigned int num) |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 264 | { |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 265 | int en_port_count = READ_ONCE(team->en_port_count); |
Jiri Pirko | 735d381 | 2013-06-10 17:42:25 +0200 | [diff] [blame] | 266 | |
| 267 | if (unlikely(!en_port_count)) |
| 268 | return 0; |
| 269 | return num % en_port_count; |
| 270 | } |
| 271 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 272 | static inline struct team_port *team_get_port_by_index_rcu(struct team *team, |
| 273 | int port_index) |
| 274 | { |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 275 | struct team_port *port; |
| 276 | struct hlist_head *head = team_port_index_hash(team, port_index); |
| 277 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 278 | hlist_for_each_entry_rcu(port, head, hlist) |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 279 | if (port->index == port_index) |
| 280 | return port; |
| 281 | return NULL; |
| 282 | } |
| 283 | |
Jiri Pirko | 753f993 | 2013-03-06 01:31:13 +0000 | [diff] [blame] | 284 | static inline struct team_port * |
| 285 | team_get_first_port_txable_rcu(struct team *team, struct team_port *port) |
| 286 | { |
| 287 | struct team_port *cur; |
| 288 | |
| 289 | if (likely(team_port_txable(port))) |
| 290 | return port; |
| 291 | cur = port; |
| 292 | list_for_each_entry_continue_rcu(cur, &team->port_list, list) |
Jiri Pirko | b79462a | 2013-06-08 15:00:55 +0200 | [diff] [blame] | 293 | if (team_port_txable(cur)) |
Jiri Pirko | 753f993 | 2013-03-06 01:31:13 +0000 | [diff] [blame] | 294 | return cur; |
| 295 | list_for_each_entry_rcu(cur, &team->port_list, list) { |
| 296 | if (cur == port) |
| 297 | break; |
Jiri Pirko | b79462a | 2013-06-08 15:00:55 +0200 | [diff] [blame] | 298 | if (team_port_txable(cur)) |
Jiri Pirko | 753f993 | 2013-03-06 01:31:13 +0000 | [diff] [blame] | 299 | return cur; |
| 300 | } |
| 301 | return NULL; |
| 302 | } |
| 303 | |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 304 | extern int team_options_register(struct team *team, |
| 305 | const struct team_option *option, |
| 306 | size_t option_count); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 307 | extern void team_options_unregister(struct team *team, |
Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 308 | const struct team_option *option, |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 309 | size_t option_count); |
Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 310 | extern int team_mode_register(const struct team_mode *mode); |
| 311 | extern void team_mode_unregister(const struct team_mode *mode); |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 312 | |
Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 313 | #define TEAM_DEFAULT_NUM_TX_QUEUES 16 |
| 314 | #define TEAM_DEFAULT_NUM_RX_QUEUES 16 |
| 315 | |
Zhang Shengju | 3a5f899 | 2017-06-01 15:37:02 +0800 | [diff] [blame] | 316 | #define MODULE_ALIAS_TEAM_MODE(kind) MODULE_ALIAS("team-mode-" kind) |
| 317 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 318 | #endif /* _LINUX_IF_TEAM_H_ */ |