blob: 0d07c6655cce6808d462105d5c55e2dfd237aeda [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 */
Jiri Pirko3d249d42011-11-11 22:16:48 +000010#ifndef _LINUX_IF_TEAM_H_
11#define _LINUX_IF_TEAM_H_
12
Jiri Pirkobd2d0832012-07-17 05:22:36 +000013#include <linux/netpoll.h>
Jiri Pirko6c85f2b2012-07-20 02:28:51 +000014#include <net/sch_generic.h>
Jiri Pirkofc423ff2013-07-20 12:13:52 +020015#include <linux/types.h>
David Howells607ca462012-10-13 10:46:48 +010016#include <uapi/linux/if_team.h>
Jiri Pirkobd2d0832012-07-17 05:22:36 +000017
Jiri Pirko3d249d42011-11-11 22:16:48 +000018struct team_pcpu_stats {
19 u64 rx_packets;
20 u64 rx_bytes;
21 u64 rx_multicast;
22 u64 tx_packets;
23 u64 tx_bytes;
24 struct u64_stats_sync syncp;
25 u32 rx_dropped;
26 u32 tx_dropped;
Jarod Wilsonbb63daf2016-02-01 18:51:06 -050027 u32 rx_nohandler;
Jiri Pirko3d249d42011-11-11 22:16:48 +000028};
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 Pirkoa86fc6b2012-07-27 06:28:54 +000070 s32 priority; /* lower number ~ higher priority */
Jiri Pirko8ff51052012-07-27 06:28:55 +000071 u16 queue_id;
72 struct list_head qom_list; /* node in queue override mapping list */
Jiri Pirkod80b35b2013-06-10 17:42:24 +020073 struct rcu_head rcu;
Jiri Pirko5149ee52012-06-19 05:54:05 +000074 long mode_priv[0];
Jiri Pirko3d249d42011-11-11 22:16:48 +000075};
76
Petr Machata3443b002018-07-10 10:02:57 +030077static inline struct team_port *team_port_get_rcu(const struct net_device *dev)
78{
79 return rcu_dereference(dev->rx_handler_data);
80}
81
Jiri Pirko68c45042012-07-11 05:34:04 +000082static inline bool team_port_enabled(struct team_port *port)
83{
84 return port->index != -1;
85}
86
87static inline bool team_port_txable(struct team_port *port)
88{
89 return port->linkup && team_port_enabled(port);
90}
Jiri Pirko52a4fd72012-06-26 06:52:46 +000091
Jiri Pirkobd2d0832012-07-17 05:22:36 +000092#ifdef CONFIG_NET_POLL_CONTROLLER
93static inline void team_netpoll_send_skb(struct team_port *port,
94 struct sk_buff *skb)
95{
96 struct netpoll *np = port->np;
97
98 if (np)
99 netpoll_send_skb(np, skb);
100}
101#else
102static inline void team_netpoll_send_skb(struct team_port *port,
103 struct sk_buff *skb)
104{
105}
106#endif
107
Jiri Pirko3d249d42011-11-11 22:16:48 +0000108struct team_mode_ops {
109 int (*init)(struct team *team);
110 void (*exit)(struct team *team);
111 rx_handler_result_t (*receive)(struct team *team,
112 struct team_port *port,
113 struct sk_buff *skb);
114 bool (*transmit)(struct team *team, struct sk_buff *skb);
115 int (*port_enter)(struct team *team, struct team_port *port);
116 void (*port_leave)(struct team *team, struct team_port *port);
Jiri Pirko1d76efe2012-08-17 04:00:48 +0000117 void (*port_change_dev_addr)(struct team *team, struct team_port *port);
Jiri Pirko4bccfd12012-06-19 05:54:16 +0000118 void (*port_enabled)(struct team *team, struct team_port *port);
119 void (*port_disabled)(struct team *team, struct team_port *port);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000120};
121
Jiri Pirkoacbba0d2013-03-06 01:31:12 +0000122extern int team_modeop_port_enter(struct team *team, struct team_port *port);
123extern void team_modeop_port_change_dev_addr(struct team *team,
124 struct team_port *port);
125
Jiri Pirko3d249d42011-11-11 22:16:48 +0000126enum team_option_type {
127 TEAM_OPTION_TYPE_U32,
128 TEAM_OPTION_TYPE_STRING,
Jiri Pirko26155982012-04-04 12:16:26 +0000129 TEAM_OPTION_TYPE_BINARY,
Jiri Pirko14f066b2012-04-10 05:15:43 +0000130 TEAM_OPTION_TYPE_BOOL,
Jiri Pirko69821632012-07-27 06:28:53 +0000131 TEAM_OPTION_TYPE_S32,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000132};
133
Jiri Pirko85d59a82012-06-19 05:54:10 +0000134struct team_option_inst_info {
135 u32 array_index;
136 struct team_port *port; /* != NULL if per-port */
137};
138
Jiri Pirko80f7c662012-04-10 05:15:42 +0000139struct team_gsetter_ctx {
140 union {
141 u32 u32_val;
142 const char *str_val;
143 struct {
144 const void *ptr;
145 u32 len;
146 } bin_val;
Jiri Pirko14f066b2012-04-10 05:15:43 +0000147 bool bool_val;
Jiri Pirko69821632012-07-27 06:28:53 +0000148 s32 s32_val;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000149 } data;
Jiri Pirko85d59a82012-06-19 05:54:10 +0000150 struct team_option_inst_info *info;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000151};
152
Jiri Pirko3d249d42011-11-11 22:16:48 +0000153struct team_option {
154 struct list_head list;
155 const char *name;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000156 bool per_port;
Jiri Pirkob1303322012-06-19 05:54:08 +0000157 unsigned int array_size; /* != 0 means the option is array */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000158 enum team_option_type type;
Jiri Pirko85d59a82012-06-19 05:54:10 +0000159 int (*init)(struct team *team, struct team_option_inst_info *info);
Jiri Pirko80f7c662012-04-10 05:15:42 +0000160 int (*getter)(struct team *team, struct team_gsetter_ctx *ctx);
161 int (*setter)(struct team *team, struct team_gsetter_ctx *ctx);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000162};
163
Jiri Pirko0f1aad22012-06-19 05:54:11 +0000164extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info);
165extern void team_options_change_check(struct team *team);
166
Jiri Pirko3d249d42011-11-11 22:16:48 +0000167struct team_mode {
Jiri Pirko3d249d42011-11-11 22:16:48 +0000168 const char *kind;
169 struct module *owner;
170 size_t priv_size;
Jiri Pirko5149ee52012-06-19 05:54:05 +0000171 size_t port_priv_size;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000172 const struct team_mode_ops *ops;
Jiri Pirko8fd72852015-12-03 12:12:13 +0100173 enum netdev_lag_tx_type lag_tx_type;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000174};
175
176#define TEAM_PORT_HASHBITS 4
177#define TEAM_PORT_HASHENTRIES (1 << TEAM_PORT_HASHBITS)
178
179#define TEAM_MODE_PRIV_LONGS 4
180#define TEAM_MODE_PRIV_SIZE (sizeof(long) * TEAM_MODE_PRIV_LONGS)
181
182struct team {
183 struct net_device *dev; /* associated netdevice */
184 struct team_pcpu_stats __percpu *pcpu_stats;
185
Jiri Pirko61dc3462011-11-16 11:09:08 +0000186 struct mutex lock; /* used for overall locking, e.g. port lists write */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000187
188 /*
Jiri Pirko19a0b582012-04-20 04:42:05 +0000189 * List of enabled ports and their count
Jiri Pirko3d249d42011-11-11 22:16:48 +0000190 */
Jiri Pirko19a0b582012-04-20 04:42:05 +0000191 int en_port_count;
192 struct hlist_head en_port_hlist[TEAM_PORT_HASHENTRIES];
193
194 struct list_head port_list; /* list of all ports */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000195
196 struct list_head option_list;
Jiri Pirko80f7c662012-04-10 05:15:42 +0000197 struct list_head option_inst_list; /* list of option instances */
Jiri Pirko3d249d42011-11-11 22:16:48 +0000198
199 const struct team_mode *mode;
200 struct team_mode_ops ops;
Flavio Leitnere1854832013-02-05 09:30:55 +0000201 bool user_carrier_enabled;
Jiri Pirko8ff51052012-07-27 06:28:55 +0000202 bool queue_override_enabled;
203 struct list_head *qom_lists; /* array of queue override mapping lists */
Jiri Pirko9d0d68f2014-05-29 20:46:17 +0200204 bool port_mtu_change_allowed;
Jiri Pirkofc423ff2013-07-20 12:13:52 +0200205 struct {
206 unsigned int count;
207 unsigned int interval; /* in ms */
208 atomic_t count_pending;
209 struct delayed_work dw;
210 } notify_peers;
Jiri Pirko492b2002013-07-20 12:13:54 +0200211 struct {
212 unsigned int count;
213 unsigned int interval; /* in ms */
214 atomic_t count_pending;
215 struct delayed_work dw;
216 } mcast_rejoin;
Jiri Pirko3d249d42011-11-11 22:16:48 +0000217 long mode_priv[TEAM_MODE_PRIV_LONGS];
218};
219
Amerigo Wange15c3c222012-08-10 01:24:45 +0000220static inline int team_dev_queue_xmit(struct team *team, struct team_port *port,
221 struct sk_buff *skb)
222{
223 BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
224 sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping));
225 skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping);
226
227 skb->dev = port->dev;
228 if (unlikely(netpoll_tx_running(team->dev))) {
229 team_netpoll_send_skb(port, skb);
230 return 0;
231 }
232 return dev_queue_xmit(skb);
233}
234
Jiri Pirko3d249d42011-11-11 22:16:48 +0000235static inline struct hlist_head *team_port_index_hash(struct team *team,
236 int port_index)
237{
Jiri Pirko19a0b582012-04-20 04:42:05 +0000238 return &team->en_port_hlist[port_index & (TEAM_PORT_HASHENTRIES - 1)];
Jiri Pirko3d249d42011-11-11 22:16:48 +0000239}
240
241static inline struct team_port *team_get_port_by_index(struct team *team,
242 int port_index)
243{
Jiri Pirko3d249d42011-11-11 22:16:48 +0000244 struct team_port *port;
245 struct hlist_head *head = team_port_index_hash(team, port_index);
246
Sasha Levinb67bfe02013-02-27 17:06:00 -0800247 hlist_for_each_entry(port, head, hlist)
Jiri Pirko3d249d42011-11-11 22:16:48 +0000248 if (port->index == port_index)
249 return port;
250 return NULL;
251}
Jiri Pirko735d3812013-06-10 17:42:25 +0200252
Alex Sidorenko21d96292016-10-07 09:02:33 -0400253static inline int team_num_to_port_index(struct team *team, unsigned int num)
Jiri Pirko735d3812013-06-10 17:42:25 +0200254{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700255 int en_port_count = READ_ONCE(team->en_port_count);
Jiri Pirko735d3812013-06-10 17:42:25 +0200256
257 if (unlikely(!en_port_count))
258 return 0;
259 return num % en_port_count;
260}
261
Jiri Pirko3d249d42011-11-11 22:16:48 +0000262static inline struct team_port *team_get_port_by_index_rcu(struct team *team,
263 int port_index)
264{
Jiri Pirko3d249d42011-11-11 22:16:48 +0000265 struct team_port *port;
266 struct hlist_head *head = team_port_index_hash(team, port_index);
267
Sasha Levinb67bfe02013-02-27 17:06:00 -0800268 hlist_for_each_entry_rcu(port, head, hlist)
Jiri Pirko3d249d42011-11-11 22:16:48 +0000269 if (port->index == port_index)
270 return port;
271 return NULL;
272}
273
Jiri Pirko753f9932013-03-06 01:31:13 +0000274static inline struct team_port *
275team_get_first_port_txable_rcu(struct team *team, struct team_port *port)
276{
277 struct team_port *cur;
278
279 if (likely(team_port_txable(port)))
280 return port;
281 cur = port;
282 list_for_each_entry_continue_rcu(cur, &team->port_list, list)
Jiri Pirkob79462a2013-06-08 15:00:55 +0200283 if (team_port_txable(cur))
Jiri Pirko753f9932013-03-06 01:31:13 +0000284 return cur;
285 list_for_each_entry_rcu(cur, &team->port_list, list) {
286 if (cur == port)
287 break;
Jiri Pirkob79462a2013-06-08 15:00:55 +0200288 if (team_port_txable(cur))
Jiri Pirko753f9932013-03-06 01:31:13 +0000289 return cur;
290 }
291 return NULL;
292}
293
Jiri Pirko358b8382011-11-16 11:09:09 +0000294extern int team_options_register(struct team *team,
295 const struct team_option *option,
296 size_t option_count);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000297extern void team_options_unregister(struct team *team,
Jiri Pirko358b8382011-11-16 11:09:09 +0000298 const struct team_option *option,
Jiri Pirko3d249d42011-11-11 22:16:48 +0000299 size_t option_count);
Jiri Pirko04027882012-06-19 05:54:03 +0000300extern int team_mode_register(const struct team_mode *mode);
301extern void team_mode_unregister(const struct team_mode *mode);
Jiri Pirko3d249d42011-11-11 22:16:48 +0000302
Jiri Pirko6c85f2b2012-07-20 02:28:51 +0000303#define TEAM_DEFAULT_NUM_TX_QUEUES 16
304#define TEAM_DEFAULT_NUM_RX_QUEUES 16
305
Zhang Shengju3a5f8992017-06-01 15:37:02 +0800306#define MODULE_ALIAS_TEAM_MODE(kind) MODULE_ALIAS("team-mode-" kind)
307
Jiri Pirko3d249d42011-11-11 22:16:48 +0000308#endif /* _LINUX_IF_TEAM_H_ */