2 * include/linux/if_team.h - Network team device driver header
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
11 #ifndef _LINUX_IF_TEAM_H_
12 #define _LINUX_IF_TEAM_H_
16 #include <linux/netpoll.h>
17 #include <net/sch_generic.h>
19 struct team_pcpu_stats {
25 struct u64_stats_sync syncp;
33 struct net_device *dev;
34 struct hlist_node hlist; /* node in enabled ports hash list */
35 struct list_head list; /* node in ordinary list */
37 int index; /* index of enabled port. If disabled, it's set to -1 */
39 bool linkup; /* either state.linkup or user.linkup */
47 /* Values set by userspace */
53 /* Custom gennetlink interface related flags */
58 * A place for storing original values of the device before it
62 unsigned char dev_addr[MAX_ADDR_LEN];
66 #ifdef CONFIG_NET_POLL_CONTROLLER
73 static inline bool team_port_enabled(struct team_port *port)
75 return port->index != -1;
78 static inline bool team_port_txable(struct team_port *port)
80 return port->linkup && team_port_enabled(port);
83 #ifdef CONFIG_NET_POLL_CONTROLLER
84 static inline void team_netpoll_send_skb(struct team_port *port,
87 struct netpoll *np = port->np;
90 netpoll_send_skb(np, skb);
93 static inline void team_netpoll_send_skb(struct team_port *port,
99 static inline int team_dev_queue_xmit(struct team *team, struct team_port *port,
102 BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
103 sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping));
104 skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping);
106 skb->dev = port->dev;
107 if (unlikely(netpoll_tx_running(port->dev))) {
108 team_netpoll_send_skb(port, skb);
111 return dev_queue_xmit(skb);
114 struct team_mode_ops {
115 int (*init)(struct team *team);
116 void (*exit)(struct team *team);
117 rx_handler_result_t (*receive)(struct team *team,
118 struct team_port *port,
119 struct sk_buff *skb);
120 bool (*transmit)(struct team *team, struct sk_buff *skb);
121 int (*port_enter)(struct team *team, struct team_port *port);
122 void (*port_leave)(struct team *team, struct team_port *port);
123 void (*port_change_mac)(struct team *team, struct team_port *port);
124 void (*port_enabled)(struct team *team, struct team_port *port);
125 void (*port_disabled)(struct team *team, struct team_port *port);
128 enum team_option_type {
129 TEAM_OPTION_TYPE_U32,
130 TEAM_OPTION_TYPE_STRING,
131 TEAM_OPTION_TYPE_BINARY,
132 TEAM_OPTION_TYPE_BOOL,
135 struct team_option_inst_info {
137 struct team_port *port; /* != NULL if per-port */
140 struct team_gsetter_ctx {
150 struct team_option_inst_info *info;
154 struct list_head list;
157 unsigned int array_size; /* != 0 means the option is array */
158 enum team_option_type type;
159 int (*init)(struct team *team, struct team_option_inst_info *info);
160 int (*getter)(struct team *team, struct team_gsetter_ctx *ctx);
161 int (*setter)(struct team *team, struct team_gsetter_ctx *ctx);
164 extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info);
165 extern void team_options_change_check(struct team *team);
169 struct module *owner;
171 size_t port_priv_size;
172 const struct team_mode_ops *ops;
175 #define TEAM_PORT_HASHBITS 4
176 #define TEAM_PORT_HASHENTRIES (1 << TEAM_PORT_HASHBITS)
178 #define TEAM_MODE_PRIV_LONGS 4
179 #define TEAM_MODE_PRIV_SIZE (sizeof(long) * TEAM_MODE_PRIV_LONGS)
182 struct net_device *dev; /* associated netdevice */
183 struct team_pcpu_stats __percpu *pcpu_stats;
185 struct mutex lock; /* used for overall locking, e.g. port lists write */
188 * List of enabled ports and their count
191 struct hlist_head en_port_hlist[TEAM_PORT_HASHENTRIES];
193 struct list_head port_list; /* list of all ports */
195 struct list_head option_list;
196 struct list_head option_inst_list; /* list of option instances */
198 const struct team_mode *mode;
199 struct team_mode_ops ops;
200 long mode_priv[TEAM_MODE_PRIV_LONGS];
203 static inline struct hlist_head *team_port_index_hash(struct team *team,
206 return &team->en_port_hlist[port_index & (TEAM_PORT_HASHENTRIES - 1)];
209 static inline struct team_port *team_get_port_by_index(struct team *team,
212 struct hlist_node *p;
213 struct team_port *port;
214 struct hlist_head *head = team_port_index_hash(team, port_index);
216 hlist_for_each_entry(port, p, head, hlist)
217 if (port->index == port_index)
221 static inline struct team_port *team_get_port_by_index_rcu(struct team *team,
224 struct hlist_node *p;
225 struct team_port *port;
226 struct hlist_head *head = team_port_index_hash(team, port_index);
228 hlist_for_each_entry_rcu(port, p, head, hlist)
229 if (port->index == port_index)
234 extern int team_port_set_team_mac(struct team_port *port);
235 extern int team_options_register(struct team *team,
236 const struct team_option *option,
237 size_t option_count);
238 extern void team_options_unregister(struct team *team,
239 const struct team_option *option,
240 size_t option_count);
241 extern int team_mode_register(const struct team_mode *mode);
242 extern void team_mode_unregister(const struct team_mode *mode);
244 #define TEAM_DEFAULT_NUM_TX_QUEUES 16
245 #define TEAM_DEFAULT_NUM_RX_QUEUES 16
247 #endif /* __KERNEL__ */
249 #define TEAM_STRING_MAX_LEN 32
251 /**********************************
252 * NETLINK_GENERIC netlink family.
253 **********************************/
257 TEAM_CMD_OPTIONS_SET,
258 TEAM_CMD_OPTIONS_GET,
259 TEAM_CMD_PORT_LIST_GET,
262 TEAM_CMD_MAX = (__TEAM_CMD_MAX - 1),
267 TEAM_ATTR_TEAM_IFINDEX, /* u32 */
268 TEAM_ATTR_LIST_OPTION, /* nest */
269 TEAM_ATTR_LIST_PORT, /* nest */
272 TEAM_ATTR_MAX = __TEAM_ATTR_MAX - 1,
275 /* Nested layout of get/set msg:
277 * [TEAM_ATTR_LIST_OPTION]
278 * [TEAM_ATTR_ITEM_OPTION]
279 * [TEAM_ATTR_OPTION_*], ...
280 * [TEAM_ATTR_ITEM_OPTION]
281 * [TEAM_ATTR_OPTION_*], ...
283 * [TEAM_ATTR_LIST_PORT]
284 * [TEAM_ATTR_ITEM_PORT]
285 * [TEAM_ATTR_PORT_*], ...
286 * [TEAM_ATTR_ITEM_PORT]
287 * [TEAM_ATTR_PORT_*], ...
292 TEAM_ATTR_ITEM_OPTION_UNSPEC,
293 TEAM_ATTR_ITEM_OPTION, /* nest */
295 __TEAM_ATTR_ITEM_OPTION_MAX,
296 TEAM_ATTR_ITEM_OPTION_MAX = __TEAM_ATTR_ITEM_OPTION_MAX - 1,
300 TEAM_ATTR_OPTION_UNSPEC,
301 TEAM_ATTR_OPTION_NAME, /* string */
302 TEAM_ATTR_OPTION_CHANGED, /* flag */
303 TEAM_ATTR_OPTION_TYPE, /* u8 */
304 TEAM_ATTR_OPTION_DATA, /* dynamic */
305 TEAM_ATTR_OPTION_REMOVED, /* flag */
306 TEAM_ATTR_OPTION_PORT_IFINDEX, /* u32 */ /* for per-port options */
307 TEAM_ATTR_OPTION_ARRAY_INDEX, /* u32 */ /* for array options */
309 __TEAM_ATTR_OPTION_MAX,
310 TEAM_ATTR_OPTION_MAX = __TEAM_ATTR_OPTION_MAX - 1,
314 TEAM_ATTR_ITEM_PORT_UNSPEC,
315 TEAM_ATTR_ITEM_PORT, /* nest */
317 __TEAM_ATTR_ITEM_PORT_MAX,
318 TEAM_ATTR_ITEM_PORT_MAX = __TEAM_ATTR_ITEM_PORT_MAX - 1,
322 TEAM_ATTR_PORT_UNSPEC,
323 TEAM_ATTR_PORT_IFINDEX, /* u32 */
324 TEAM_ATTR_PORT_CHANGED, /* flag */
325 TEAM_ATTR_PORT_LINKUP, /* flag */
326 TEAM_ATTR_PORT_SPEED, /* u32 */
327 TEAM_ATTR_PORT_DUPLEX, /* u8 */
328 TEAM_ATTR_PORT_REMOVED, /* flag */
330 __TEAM_ATTR_PORT_MAX,
331 TEAM_ATTR_PORT_MAX = __TEAM_ATTR_PORT_MAX - 1,
335 * NETLINK_GENERIC related info
337 #define TEAM_GENL_NAME "team"
338 #define TEAM_GENL_VERSION 0x1
339 #define TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME "change_event"
341 #endif /* _LINUX_IF_TEAM_H_ */