| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 1 | /* | 
|  | 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 Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 10 | #ifndef _LINUX_IF_TEAM_H_ | 
|  | 11 | #define _LINUX_IF_TEAM_H_ | 
|  | 12 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 13 |  | 
| Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 14 | #include <linux/netpoll.h> | 
| Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 15 | #include <net/sch_generic.h> | 
| David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 16 | #include <uapi/linux/if_team.h> | 
| Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 17 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 18 | struct 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; | 
|  | 27 | }; | 
|  | 28 |  | 
|  | 29 | struct team; | 
|  | 30 |  | 
|  | 31 | struct team_port { | 
|  | 32 | struct net_device *dev; | 
| Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 33 | struct hlist_node hlist; /* node in enabled ports hash list */ | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 34 | struct list_head list; /* node in ordinary list */ | 
|  | 35 | struct team *team; | 
| Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 36 | 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] | 37 |  | 
| Jiri Pirko | 71472ec | 2012-04-10 05:15:44 +0000 | [diff] [blame] | 38 | bool linkup; /* either state.linkup or user.linkup */ | 
|  | 39 |  | 
|  | 40 | struct { | 
|  | 41 | bool linkup; | 
|  | 42 | u32 speed; | 
|  | 43 | u8 duplex; | 
|  | 44 | } state; | 
|  | 45 |  | 
|  | 46 | /* Values set by userspace */ | 
|  | 47 | struct { | 
|  | 48 | bool linkup; | 
|  | 49 | bool linkup_enabled; | 
|  | 50 | } user; | 
|  | 51 |  | 
|  | 52 | /* Custom gennetlink interface related flags */ | 
|  | 53 | bool changed; | 
|  | 54 | bool removed; | 
|  | 55 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 56 | /* | 
|  | 57 | * A place for storing original values of the device before it | 
|  | 58 | * become a port. | 
|  | 59 | */ | 
|  | 60 | struct { | 
|  | 61 | unsigned char dev_addr[MAX_ADDR_LEN]; | 
|  | 62 | unsigned int mtu; | 
|  | 63 | } orig; | 
|  | 64 |  | 
| Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 65 | #ifdef CONFIG_NET_POLL_CONTROLLER | 
|  | 66 | struct netpoll *np; | 
|  | 67 | #endif | 
|  | 68 |  | 
| Jiri Pirko | a86fc6b | 2012-07-27 06:28:54 +0000 | [diff] [blame] | 69 | s32 priority; /* lower number ~ higher priority */ | 
| Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 70 | u16 queue_id; | 
|  | 71 | struct list_head qom_list; /* node in queue override mapping list */ | 
| Jiri Pirko | 5149ee5 | 2012-06-19 05:54:05 +0000 | [diff] [blame] | 72 | long mode_priv[0]; | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 73 | }; | 
|  | 74 |  | 
| Jiri Pirko | 68c4504 | 2012-07-11 05:34:04 +0000 | [diff] [blame] | 75 | static inline bool team_port_enabled(struct team_port *port) | 
|  | 76 | { | 
|  | 77 | return port->index != -1; | 
|  | 78 | } | 
|  | 79 |  | 
|  | 80 | static inline bool team_port_txable(struct team_port *port) | 
|  | 81 | { | 
|  | 82 | return port->linkup && team_port_enabled(port); | 
|  | 83 | } | 
| Jiri Pirko | 52a4fd7 | 2012-06-26 06:52:46 +0000 | [diff] [blame] | 84 |  | 
| Jiri Pirko | bd2d083 | 2012-07-17 05:22:36 +0000 | [diff] [blame] | 85 | #ifdef CONFIG_NET_POLL_CONTROLLER | 
|  | 86 | static inline void team_netpoll_send_skb(struct team_port *port, | 
|  | 87 | struct sk_buff *skb) | 
|  | 88 | { | 
|  | 89 | struct netpoll *np = port->np; | 
|  | 90 |  | 
|  | 91 | if (np) | 
|  | 92 | netpoll_send_skb(np, skb); | 
|  | 93 | } | 
|  | 94 | #else | 
|  | 95 | static inline void team_netpoll_send_skb(struct team_port *port, | 
|  | 96 | struct sk_buff *skb) | 
|  | 97 | { | 
|  | 98 | } | 
|  | 99 | #endif | 
|  | 100 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 101 | struct team_mode_ops { | 
|  | 102 | int (*init)(struct team *team); | 
|  | 103 | void (*exit)(struct team *team); | 
|  | 104 | rx_handler_result_t (*receive)(struct team *team, | 
|  | 105 | struct team_port *port, | 
|  | 106 | struct sk_buff *skb); | 
|  | 107 | bool (*transmit)(struct team *team, struct sk_buff *skb); | 
|  | 108 | int (*port_enter)(struct team *team, struct team_port *port); | 
|  | 109 | void (*port_leave)(struct team *team, struct team_port *port); | 
| Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 110 | void (*port_change_dev_addr)(struct team *team, struct team_port *port); | 
| Jiri Pirko | 4bccfd1 | 2012-06-19 05:54:16 +0000 | [diff] [blame] | 111 | void (*port_enabled)(struct team *team, struct team_port *port); | 
|  | 112 | void (*port_disabled)(struct team *team, struct team_port *port); | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 113 | }; | 
|  | 114 |  | 
|  | 115 | enum team_option_type { | 
|  | 116 | TEAM_OPTION_TYPE_U32, | 
|  | 117 | TEAM_OPTION_TYPE_STRING, | 
| Jiri Pirko | 2615598 | 2012-04-04 12:16:26 +0000 | [diff] [blame] | 118 | TEAM_OPTION_TYPE_BINARY, | 
| Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 119 | TEAM_OPTION_TYPE_BOOL, | 
| Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 120 | TEAM_OPTION_TYPE_S32, | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 121 | }; | 
|  | 122 |  | 
| Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 123 | struct team_option_inst_info { | 
|  | 124 | u32 array_index; | 
|  | 125 | struct team_port *port; /* != NULL if per-port */ | 
|  | 126 | }; | 
|  | 127 |  | 
| Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 128 | struct team_gsetter_ctx { | 
|  | 129 | union { | 
|  | 130 | u32 u32_val; | 
|  | 131 | const char *str_val; | 
|  | 132 | struct { | 
|  | 133 | const void *ptr; | 
|  | 134 | u32 len; | 
|  | 135 | } bin_val; | 
| Jiri Pirko | 14f066b | 2012-04-10 05:15:43 +0000 | [diff] [blame] | 136 | bool bool_val; | 
| Jiri Pirko | 6982163 | 2012-07-27 06:28:53 +0000 | [diff] [blame] | 137 | s32 s32_val; | 
| Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 138 | } data; | 
| Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 139 | struct team_option_inst_info *info; | 
| Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 140 | }; | 
|  | 141 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 142 | struct team_option { | 
|  | 143 | struct list_head list; | 
|  | 144 | const char *name; | 
| Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 145 | bool per_port; | 
| Jiri Pirko | b130332 | 2012-06-19 05:54:08 +0000 | [diff] [blame] | 146 | unsigned int array_size; /* != 0 means the option is array */ | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 147 | enum team_option_type type; | 
| Jiri Pirko | 85d59a8 | 2012-06-19 05:54:10 +0000 | [diff] [blame] | 148 | int (*init)(struct team *team, struct team_option_inst_info *info); | 
| Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 149 | int (*getter)(struct team *team, struct team_gsetter_ctx *ctx); | 
|  | 150 | int (*setter)(struct team *team, struct team_gsetter_ctx *ctx); | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 151 | }; | 
|  | 152 |  | 
| Jiri Pirko | 0f1aad2 | 2012-06-19 05:54:11 +0000 | [diff] [blame] | 153 | extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info); | 
|  | 154 | extern void team_options_change_check(struct team *team); | 
|  | 155 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 156 | struct team_mode { | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 157 | const char *kind; | 
|  | 158 | struct module *owner; | 
|  | 159 | size_t priv_size; | 
| Jiri Pirko | 5149ee5 | 2012-06-19 05:54:05 +0000 | [diff] [blame] | 160 | size_t port_priv_size; | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 161 | const struct team_mode_ops *ops; | 
|  | 162 | }; | 
|  | 163 |  | 
|  | 164 | #define TEAM_PORT_HASHBITS 4 | 
|  | 165 | #define TEAM_PORT_HASHENTRIES (1 << TEAM_PORT_HASHBITS) | 
|  | 166 |  | 
|  | 167 | #define TEAM_MODE_PRIV_LONGS 4 | 
|  | 168 | #define TEAM_MODE_PRIV_SIZE (sizeof(long) * TEAM_MODE_PRIV_LONGS) | 
|  | 169 |  | 
|  | 170 | struct team { | 
|  | 171 | struct net_device *dev; /* associated netdevice */ | 
|  | 172 | struct team_pcpu_stats __percpu *pcpu_stats; | 
|  | 173 |  | 
| Jiri Pirko | 61dc346 | 2011-11-16 11:09:08 +0000 | [diff] [blame] | 174 | struct mutex lock; /* used for overall locking, e.g. port lists write */ | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 175 |  | 
|  | 176 | /* | 
| Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 177 | * List of enabled ports and their count | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 178 | */ | 
| Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 179 | int en_port_count; | 
|  | 180 | struct hlist_head en_port_hlist[TEAM_PORT_HASHENTRIES]; | 
|  | 181 |  | 
|  | 182 | struct list_head port_list; /* list of all ports */ | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 183 |  | 
|  | 184 | struct list_head option_list; | 
| Jiri Pirko | 80f7c66 | 2012-04-10 05:15:42 +0000 | [diff] [blame] | 185 | struct list_head option_inst_list; /* list of option instances */ | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 186 |  | 
|  | 187 | const struct team_mode *mode; | 
|  | 188 | struct team_mode_ops ops; | 
| Jiri Pirko | 8ff5105 | 2012-07-27 06:28:55 +0000 | [diff] [blame] | 189 | bool queue_override_enabled; | 
|  | 190 | struct list_head *qom_lists; /* array of queue override mapping lists */ | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 191 | long mode_priv[TEAM_MODE_PRIV_LONGS]; | 
|  | 192 | }; | 
|  | 193 |  | 
| Amerigo Wang | e15c3c2 | 2012-08-10 01:24:45 +0000 | [diff] [blame] | 194 | static inline int team_dev_queue_xmit(struct team *team, struct team_port *port, | 
|  | 195 | struct sk_buff *skb) | 
|  | 196 | { | 
|  | 197 | BUILD_BUG_ON(sizeof(skb->queue_mapping) != | 
|  | 198 | sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping)); | 
|  | 199 | skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping); | 
|  | 200 |  | 
|  | 201 | skb->dev = port->dev; | 
|  | 202 | if (unlikely(netpoll_tx_running(team->dev))) { | 
|  | 203 | team_netpoll_send_skb(port, skb); | 
|  | 204 | return 0; | 
|  | 205 | } | 
|  | 206 | return dev_queue_xmit(skb); | 
|  | 207 | } | 
|  | 208 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 209 | static inline struct hlist_head *team_port_index_hash(struct team *team, | 
|  | 210 | int port_index) | 
|  | 211 | { | 
| Jiri Pirko | 19a0b58 | 2012-04-20 04:42:05 +0000 | [diff] [blame] | 212 | return &team->en_port_hlist[port_index & (TEAM_PORT_HASHENTRIES - 1)]; | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 213 | } | 
|  | 214 |  | 
|  | 215 | static inline struct team_port *team_get_port_by_index(struct team *team, | 
|  | 216 | int port_index) | 
|  | 217 | { | 
|  | 218 | struct hlist_node *p; | 
|  | 219 | struct team_port *port; | 
|  | 220 | struct hlist_head *head = team_port_index_hash(team, port_index); | 
|  | 221 |  | 
|  | 222 | hlist_for_each_entry(port, p, head, hlist) | 
|  | 223 | if (port->index == port_index) | 
|  | 224 | return port; | 
|  | 225 | return NULL; | 
|  | 226 | } | 
|  | 227 | static inline struct team_port *team_get_port_by_index_rcu(struct team *team, | 
|  | 228 | int port_index) | 
|  | 229 | { | 
|  | 230 | struct hlist_node *p; | 
|  | 231 | struct team_port *port; | 
|  | 232 | struct hlist_head *head = team_port_index_hash(team, port_index); | 
|  | 233 |  | 
|  | 234 | hlist_for_each_entry_rcu(port, p, head, hlist) | 
|  | 235 | if (port->index == port_index) | 
|  | 236 | return port; | 
|  | 237 | return NULL; | 
|  | 238 | } | 
|  | 239 |  | 
| Jiri Pirko | 1d76efe | 2012-08-17 04:00:48 +0000 | [diff] [blame] | 240 | extern int team_port_set_team_dev_addr(struct team_port *port); | 
| Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 241 | extern int team_options_register(struct team *team, | 
|  | 242 | const struct team_option *option, | 
|  | 243 | size_t option_count); | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 244 | extern void team_options_unregister(struct team *team, | 
| Jiri Pirko | 358b838 | 2011-11-16 11:09:09 +0000 | [diff] [blame] | 245 | const struct team_option *option, | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 246 | size_t option_count); | 
| Jiri Pirko | 0402788 | 2012-06-19 05:54:03 +0000 | [diff] [blame] | 247 | extern int team_mode_register(const struct team_mode *mode); | 
|  | 248 | extern void team_mode_unregister(const struct team_mode *mode); | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 249 |  | 
| Jiri Pirko | 6c85f2b | 2012-07-20 02:28:51 +0000 | [diff] [blame] | 250 | #define TEAM_DEFAULT_NUM_TX_QUEUES 16 | 
|  | 251 | #define TEAM_DEFAULT_NUM_RX_QUEUES 16 | 
|  | 252 |  | 
| Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 253 | #endif /* _LINUX_IF_TEAM_H_ */ |