blob: e5571c4208000b14356015e8c76e9059ce6b28ae [file] [log] [blame]
Jiri Pirko3d249d42011-11-11 22:16:48 +00001/*
2 * include/linux/if_team.h - Network team device driver header
3 * Copyright (c) 2011 Jiri Pirko <jpirko@redhat.com>
4 *
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.
9 */
10
11#ifndef _LINUX_IF_TEAM_H_
12#define _LINUX_IF_TEAM_H_
13
14#ifdef __KERNEL__
15
Jiri Pirkobd2d0832012-07-17 05:22:36 +000016#include <linux/netpoll.h>
Jiri Pirko6c85f2b2012-07-20 02:28:51 +000017#include <net/sch_generic.h>
Jiri Pirkobd2d0832012-07-17 05:22:36 +000018
Jiri Pirko3d249d42011-11-11 22:16:48 +000019struct team_pcpu_stats {
20 u64 rx_packets;
21 u64 rx_bytes;
22 u64 rx_multicast;
23 u64 tx_packets;
24 u64 tx_bytes;
25 struct u64_stats_sync syncp;
26 u32 rx_dropped;
27 u32 tx_dropped;
28};
29
30struct team;
31
32struct team_port {
33 struct net_device *dev;
Jiri Pirko19a0b582012-04-20 04:42:05 +000034 struct hlist_node hlist; /* node in enabled ports hash list */
Jiri Pirko3d249d42011-11-11 22:16:48 +000035 struct list_head list; /* node in ordinary list */
36 struct team *team;
Jiri Pirko19a0b582012-04-20 04:42:05 +000037 int index; /* index of enabled port. If disabled, it's set to -1 */
Jiri Pirko3d249d42011-11-11 22:16:48 +000038
Jiri Pirko71472ec2012-04-10 05:15:44 +000039 bool linkup; /* either state.linkup or user.linkup */
40
41 struct {
42 bool linkup;
43 u32 speed;
44 u8 duplex;
45 } state;
46
47 /* Values set by userspace */
48 struct {
49 bool linkup;
50 bool linkup_enabled;
51 } user;
52
53 /* Custom gennetlink interface related flags */
54 bool changed;
55 bool removed;
56
Jiri Pirko3d249d42011-11-11 22:16:48 +000057 /*
58 * A place for storing original values of the device before it
59 * become a port.
60 */
61 struct {
62 unsigned char dev_addr[MAX_ADDR_LEN];
63 unsigned int mtu;
64 } orig;
65
Jiri Pirkobd2d0832012-07-17 05:22:36 +000066#ifdef CONFIG_NET_POLL_CONTROLLER
67 struct netpoll *np;
68#endif
69
Jiri Pirko5149ee52012-06-19 05:54:05 +000070 long mode_priv[0];
Jiri Pirko3d249d42011-11-11 22:16:48 +000071};
72
Jiri Pirko68c45042012-07-11 05:34:04 +000073static inline bool team_port_enabled(struct team_port *port)
74{
75 return port->index != -1;
76}
77
78static inline bool team_port_txable(struct team_port *port)
79{
80 return port->linkup && team_port_enabled(port);
81}
Jiri Pirko52a4fd72012-06-26 06:52:46 +000082
Jiri Pirkobd2d0832012-07-17 05:22:36 +000083#ifdef CONFIG_NET_POLL_CONTROLLER
84static inline void team_netpoll_send_skb(struct team_port *port,
85 struct sk_buff *skb)
86{
87 struct netpoll *np = port->np;
88
89 if (np)
90 netpoll_send_skb(np, skb);
91}
92#else
93static inline void team_netpoll_send_skb(struct team_port *port,
94 struct sk_buff *skb)
95{
96}
97#endif
98
99static inline int team_dev_queue_xmit(struct team *team, struct team_port *port,
100 struct sk_buff *skb)
101{
Jiri Pirko6c85f2b2012-07-20 02:28:51 +0000102 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);
105
Jiri Pirkobd2d0832012-07-17 05:22:36 +0000106 skb->dev = port->dev;
107 if (unlikely(netpoll_tx_running(port->dev))) {
108 team_netpoll_send_skb(port, skb);
109 return 0;
110 }
111 return dev_queue_xmit(skb);
112}
113
Jiri Pirko3d249d42011-11-11 22:16:48 +0000114struct 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);
Jiri Pirko4bccfd12012-06-19 05:54:16 +0000124 void (*port_enabled)(struct team *team, struct team_port *port);
125 void (*port_disabled)(struct team *team, struct team_port *port);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000126};
127
128enum team_option_type {
129 TEAM_OPTION_TYPE_U32,
130 TEAM_OPTION_TYPE_STRING,
Jiri Pirko26155982012-04-04 12:16:26 +0000131 TEAM_OPTION_TYPE_BINARY,
Jiri Pirko14f066b2012-04-10 05:15:43 +0000132 TEAM_OPTION_TYPE_BOOL,
Jiri Pirko69821632012-07-27 06:28:53 +0000133 TEAM_OPTION_TYPE_S32,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000134};
135
Jiri Pirko85d59a82012-06-19 05:54:10 +0000136struct team_option_inst_info {
137 u32 array_index;
138 struct team_port *port; /* != NULL if per-port */
139};
140
Jiri Pirko80f7c662012-04-10 05:15:42 +0000141struct team_gsetter_ctx {
142 union {
143 u32 u32_val;
144 const char *str_val;
145 struct {
146 const void *ptr;
147 u32 len;
148 } bin_val;
Jiri Pirko14f066b2012-04-10 05:15:43 +0000149 bool bool_val;
Jiri Pirko69821632012-07-27 06:28:53 +0000150 s32 s32_val;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000151 } data;
Jiri Pirko85d59a82012-06-19 05:54:10 +0000152 struct team_option_inst_info *info;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000153};
154
Jiri Pirko3d249d42011-11-11 22:16:48 +0000155struct team_option {
156 struct list_head list;
157 const char *name;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000158 bool per_port;
Jiri Pirkob1303322012-06-19 05:54:08 +0000159 unsigned int array_size; /* != 0 means the option is array */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000160 enum team_option_type type;
Jiri Pirko85d59a82012-06-19 05:54:10 +0000161 int (*init)(struct team *team, struct team_option_inst_info *info);
Jiri Pirko80f7c662012-04-10 05:15:42 +0000162 int (*getter)(struct team *team, struct team_gsetter_ctx *ctx);
163 int (*setter)(struct team *team, struct team_gsetter_ctx *ctx);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000164};
165
Jiri Pirko0f1aad22012-06-19 05:54:11 +0000166extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info);
167extern void team_options_change_check(struct team *team);
168
Jiri Pirko3d249d42011-11-11 22:16:48 +0000169struct team_mode {
Jiri Pirko3d249d42011-11-11 22:16:48 +0000170 const char *kind;
171 struct module *owner;
172 size_t priv_size;
Jiri Pirko5149ee52012-06-19 05:54:05 +0000173 size_t port_priv_size;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000174 const struct team_mode_ops *ops;
175};
176
177#define TEAM_PORT_HASHBITS 4
178#define TEAM_PORT_HASHENTRIES (1 << TEAM_PORT_HASHBITS)
179
180#define TEAM_MODE_PRIV_LONGS 4
181#define TEAM_MODE_PRIV_SIZE (sizeof(long) * TEAM_MODE_PRIV_LONGS)
182
183struct team {
184 struct net_device *dev; /* associated netdevice */
185 struct team_pcpu_stats __percpu *pcpu_stats;
186
Jiri Pirko61dc3462011-11-16 11:09:08 +0000187 struct mutex lock; /* used for overall locking, e.g. port lists write */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000188
189 /*
Jiri Pirko19a0b582012-04-20 04:42:05 +0000190 * List of enabled ports and their count
Jiri Pirko3d249d42011-11-11 22:16:48 +0000191 */
Jiri Pirko19a0b582012-04-20 04:42:05 +0000192 int en_port_count;
193 struct hlist_head en_port_hlist[TEAM_PORT_HASHENTRIES];
194
195 struct list_head port_list; /* list of all ports */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000196
197 struct list_head option_list;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000198 struct list_head option_inst_list; /* list of option instances */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000199
200 const struct team_mode *mode;
201 struct team_mode_ops ops;
202 long mode_priv[TEAM_MODE_PRIV_LONGS];
203};
204
205static inline struct hlist_head *team_port_index_hash(struct team *team,
206 int port_index)
207{
Jiri Pirko19a0b582012-04-20 04:42:05 +0000208 return &team->en_port_hlist[port_index & (TEAM_PORT_HASHENTRIES - 1)];
Jiri Pirko3d249d42011-11-11 22:16:48 +0000209}
210
211static inline struct team_port *team_get_port_by_index(struct team *team,
212 int port_index)
213{
214 struct hlist_node *p;
215 struct team_port *port;
216 struct hlist_head *head = team_port_index_hash(team, port_index);
217
218 hlist_for_each_entry(port, p, head, hlist)
219 if (port->index == port_index)
220 return port;
221 return NULL;
222}
223static inline struct team_port *team_get_port_by_index_rcu(struct team *team,
224 int port_index)
225{
226 struct hlist_node *p;
227 struct team_port *port;
228 struct hlist_head *head = team_port_index_hash(team, port_index);
229
230 hlist_for_each_entry_rcu(port, p, head, hlist)
231 if (port->index == port_index)
232 return port;
233 return NULL;
234}
235
236extern int team_port_set_team_mac(struct team_port *port);
Jiri Pirko358b8382011-11-16 11:09:09 +0000237extern int team_options_register(struct team *team,
238 const struct team_option *option,
239 size_t option_count);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000240extern void team_options_unregister(struct team *team,
Jiri Pirko358b8382011-11-16 11:09:09 +0000241 const struct team_option *option,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000242 size_t option_count);
Jiri Pirko04027882012-06-19 05:54:03 +0000243extern int team_mode_register(const struct team_mode *mode);
244extern void team_mode_unregister(const struct team_mode *mode);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000245
Jiri Pirko6c85f2b2012-07-20 02:28:51 +0000246#define TEAM_DEFAULT_NUM_TX_QUEUES 16
247#define TEAM_DEFAULT_NUM_RX_QUEUES 16
248
Jiri Pirko3d249d42011-11-11 22:16:48 +0000249#endif /* __KERNEL__ */
250
251#define TEAM_STRING_MAX_LEN 32
252
253/**********************************
254 * NETLINK_GENERIC netlink family.
255 **********************************/
256
257enum {
258 TEAM_CMD_NOOP,
259 TEAM_CMD_OPTIONS_SET,
260 TEAM_CMD_OPTIONS_GET,
261 TEAM_CMD_PORT_LIST_GET,
262
263 __TEAM_CMD_MAX,
264 TEAM_CMD_MAX = (__TEAM_CMD_MAX - 1),
265};
266
267enum {
268 TEAM_ATTR_UNSPEC,
269 TEAM_ATTR_TEAM_IFINDEX, /* u32 */
270 TEAM_ATTR_LIST_OPTION, /* nest */
271 TEAM_ATTR_LIST_PORT, /* nest */
272
273 __TEAM_ATTR_MAX,
274 TEAM_ATTR_MAX = __TEAM_ATTR_MAX - 1,
275};
276
277/* Nested layout of get/set msg:
278 *
279 * [TEAM_ATTR_LIST_OPTION]
280 * [TEAM_ATTR_ITEM_OPTION]
281 * [TEAM_ATTR_OPTION_*], ...
282 * [TEAM_ATTR_ITEM_OPTION]
283 * [TEAM_ATTR_OPTION_*], ...
284 * ...
285 * [TEAM_ATTR_LIST_PORT]
286 * [TEAM_ATTR_ITEM_PORT]
287 * [TEAM_ATTR_PORT_*], ...
288 * [TEAM_ATTR_ITEM_PORT]
289 * [TEAM_ATTR_PORT_*], ...
290 * ...
291 */
292
293enum {
294 TEAM_ATTR_ITEM_OPTION_UNSPEC,
295 TEAM_ATTR_ITEM_OPTION, /* nest */
296
297 __TEAM_ATTR_ITEM_OPTION_MAX,
298 TEAM_ATTR_ITEM_OPTION_MAX = __TEAM_ATTR_ITEM_OPTION_MAX - 1,
299};
300
301enum {
302 TEAM_ATTR_OPTION_UNSPEC,
303 TEAM_ATTR_OPTION_NAME, /* string */
304 TEAM_ATTR_OPTION_CHANGED, /* flag */
305 TEAM_ATTR_OPTION_TYPE, /* u8 */
306 TEAM_ATTR_OPTION_DATA, /* dynamic */
Jiri Pirkob82b9182012-01-24 05:16:00 +0000307 TEAM_ATTR_OPTION_REMOVED, /* flag */
Jiri Pirko80f7c662012-04-10 05:15:42 +0000308 TEAM_ATTR_OPTION_PORT_IFINDEX, /* u32 */ /* for per-port options */
Jiri Pirkob1303322012-06-19 05:54:08 +0000309 TEAM_ATTR_OPTION_ARRAY_INDEX, /* u32 */ /* for array options */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000310
311 __TEAM_ATTR_OPTION_MAX,
312 TEAM_ATTR_OPTION_MAX = __TEAM_ATTR_OPTION_MAX - 1,
313};
314
315enum {
316 TEAM_ATTR_ITEM_PORT_UNSPEC,
317 TEAM_ATTR_ITEM_PORT, /* nest */
318
319 __TEAM_ATTR_ITEM_PORT_MAX,
320 TEAM_ATTR_ITEM_PORT_MAX = __TEAM_ATTR_ITEM_PORT_MAX - 1,
321};
322
323enum {
324 TEAM_ATTR_PORT_UNSPEC,
325 TEAM_ATTR_PORT_IFINDEX, /* u32 */
326 TEAM_ATTR_PORT_CHANGED, /* flag */
327 TEAM_ATTR_PORT_LINKUP, /* flag */
328 TEAM_ATTR_PORT_SPEED, /* u32 */
329 TEAM_ATTR_PORT_DUPLEX, /* u8 */
Jiri Pirkob82b9182012-01-24 05:16:00 +0000330 TEAM_ATTR_PORT_REMOVED, /* flag */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000331
332 __TEAM_ATTR_PORT_MAX,
333 TEAM_ATTR_PORT_MAX = __TEAM_ATTR_PORT_MAX - 1,
334};
335
336/*
337 * NETLINK_GENERIC related info
338 */
339#define TEAM_GENL_NAME "team"
340#define TEAM_GENL_VERSION 0x1
341#define TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME "change_event"
342
343#endif /* _LINUX_IF_TEAM_H_ */