bond_3ad.h 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. /*
  2. * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc., 59
  16. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. */
  22. #ifndef _NET_BOND_3AD_H
  23. #define _NET_BOND_3AD_H
  24. #include <asm/byteorder.h>
  25. #include <linux/skbuff.h>
  26. #include <linux/netdevice.h>
  27. #include <linux/if_ether.h>
  28. /* General definitions */
  29. #define PKT_TYPE_LACPDU cpu_to_be16(ETH_P_SLOW)
  30. #define AD_TIMER_INTERVAL 100 /*msec*/
  31. #define MULTICAST_LACPDU_ADDR {0x01, 0x80, 0xC2, 0x00, 0x00, 0x02}
  32. #define AD_LACP_SLOW 0
  33. #define AD_LACP_FAST 1
  34. typedef struct mac_addr {
  35. u8 mac_addr_value[ETH_ALEN];
  36. } __packed mac_addr_t;
  37. enum {
  38. BOND_AD_STABLE = 0,
  39. BOND_AD_BANDWIDTH = 1,
  40. BOND_AD_COUNT = 2,
  41. };
  42. /* rx machine states(43.4.11 in the 802.3ad standard) */
  43. typedef enum {
  44. AD_RX_DUMMY,
  45. AD_RX_INITIALIZE, /* rx Machine */
  46. AD_RX_PORT_DISABLED, /* rx Machine */
  47. AD_RX_LACP_DISABLED, /* rx Machine */
  48. AD_RX_EXPIRED, /* rx Machine */
  49. AD_RX_DEFAULTED, /* rx Machine */
  50. AD_RX_CURRENT /* rx Machine */
  51. } rx_states_t;
  52. /* periodic machine states(43.4.12 in the 802.3ad standard) */
  53. typedef enum {
  54. AD_PERIODIC_DUMMY,
  55. AD_NO_PERIODIC, /* periodic machine */
  56. AD_FAST_PERIODIC, /* periodic machine */
  57. AD_SLOW_PERIODIC, /* periodic machine */
  58. AD_PERIODIC_TX /* periodic machine */
  59. } periodic_states_t;
  60. /* mux machine states(43.4.13 in the 802.3ad standard) */
  61. typedef enum {
  62. AD_MUX_DUMMY,
  63. AD_MUX_DETACHED, /* mux machine */
  64. AD_MUX_WAITING, /* mux machine */
  65. AD_MUX_ATTACHED, /* mux machine */
  66. AD_MUX_COLLECTING_DISTRIBUTING /* mux machine */
  67. } mux_states_t;
  68. /* tx machine states(43.4.15 in the 802.3ad standard) */
  69. typedef enum {
  70. AD_TX_DUMMY,
  71. AD_TRANSMIT /* tx Machine */
  72. } tx_states_t;
  73. /* churn machine states(43.4.17 in the 802.3ad standard) */
  74. typedef enum {
  75. AD_CHURN_MONITOR, /* monitoring for churn */
  76. AD_CHURN, /* churn detected (error) */
  77. AD_NO_CHURN /* no churn (no error) */
  78. } churn_state_t;
  79. /* rx indication types */
  80. typedef enum {
  81. AD_TYPE_LACPDU = 1, /* type lacpdu */
  82. AD_TYPE_MARKER /* type marker */
  83. } pdu_type_t;
  84. /* rx marker indication types */
  85. typedef enum {
  86. AD_MARKER_INFORMATION_SUBTYPE = 1, /* marker imformation subtype */
  87. AD_MARKER_RESPONSE_SUBTYPE /* marker response subtype */
  88. } bond_marker_subtype_t;
  89. /* timers types(43.4.9 in the 802.3ad standard) */
  90. typedef enum {
  91. AD_CURRENT_WHILE_TIMER,
  92. AD_ACTOR_CHURN_TIMER,
  93. AD_PERIODIC_TIMER,
  94. AD_PARTNER_CHURN_TIMER,
  95. AD_WAIT_WHILE_TIMER
  96. } ad_timers_t;
  97. #pragma pack(1)
  98. /* Link Aggregation Control Protocol(LACP) data unit structure(43.4.2.2 in the 802.3ad standard) */
  99. typedef struct lacpdu {
  100. u8 subtype; /* = LACP(= 0x01) */
  101. u8 version_number;
  102. u8 tlv_type_actor_info; /* = actor information(type/length/value) */
  103. u8 actor_information_length; /* = 20 */
  104. __be16 actor_system_priority;
  105. struct mac_addr actor_system;
  106. __be16 actor_key;
  107. __be16 actor_port_priority;
  108. __be16 actor_port;
  109. u8 actor_state;
  110. u8 reserved_3_1[3]; /* = 0 */
  111. u8 tlv_type_partner_info; /* = partner information */
  112. u8 partner_information_length; /* = 20 */
  113. __be16 partner_system_priority;
  114. struct mac_addr partner_system;
  115. __be16 partner_key;
  116. __be16 partner_port_priority;
  117. __be16 partner_port;
  118. u8 partner_state;
  119. u8 reserved_3_2[3]; /* = 0 */
  120. u8 tlv_type_collector_info; /* = collector information */
  121. u8 collector_information_length;/* = 16 */
  122. __be16 collector_max_delay;
  123. u8 reserved_12[12];
  124. u8 tlv_type_terminator; /* = terminator */
  125. u8 terminator_length; /* = 0 */
  126. u8 reserved_50[50]; /* = 0 */
  127. } __packed lacpdu_t;
  128. typedef struct lacpdu_header {
  129. struct ethhdr hdr;
  130. struct lacpdu lacpdu;
  131. } __packed lacpdu_header_t;
  132. /* Marker Protocol Data Unit(PDU) structure(43.5.3.2 in the 802.3ad standard) */
  133. typedef struct bond_marker {
  134. u8 subtype; /* = 0x02 (marker PDU) */
  135. u8 version_number; /* = 0x01 */
  136. u8 tlv_type; /* = 0x01 (marker information) */
  137. /* = 0x02 (marker response information) */
  138. u8 marker_length; /* = 0x16 */
  139. u16 requester_port; /* The number assigned to the port by the requester */
  140. struct mac_addr requester_system; /* The requester's system id */
  141. u32 requester_transaction_id; /* The transaction id allocated by the requester, */
  142. u16 pad; /* = 0 */
  143. u8 tlv_type_terminator; /* = 0x00 */
  144. u8 terminator_length; /* = 0x00 */
  145. u8 reserved_90[90]; /* = 0 */
  146. } __packed bond_marker_t;
  147. typedef struct bond_marker_header {
  148. struct ethhdr hdr;
  149. struct bond_marker marker;
  150. } __packed bond_marker_header_t;
  151. #pragma pack()
  152. struct slave;
  153. struct bonding;
  154. struct ad_info;
  155. struct port;
  156. #ifdef __ia64__
  157. #pragma pack(8)
  158. #endif
  159. /* aggregator structure(43.4.5 in the 802.3ad standard) */
  160. typedef struct aggregator {
  161. struct mac_addr aggregator_mac_address;
  162. u16 aggregator_identifier;
  163. bool is_individual;
  164. u16 actor_admin_aggregator_key;
  165. u16 actor_oper_aggregator_key;
  166. struct mac_addr partner_system;
  167. u16 partner_system_priority;
  168. u16 partner_oper_aggregator_key;
  169. u16 receive_state; /* BOOLEAN */
  170. u16 transmit_state; /* BOOLEAN */
  171. struct port *lag_ports;
  172. /* ****** PRIVATE PARAMETERS ****** */
  173. struct slave *slave; /* pointer to the bond slave that this aggregator belongs to */
  174. u16 is_active; /* BOOLEAN. Indicates if this aggregator is active */
  175. u16 num_of_ports;
  176. } aggregator_t;
  177. struct port_params {
  178. struct mac_addr system;
  179. u16 system_priority;
  180. u16 key;
  181. u16 port_number;
  182. u16 port_priority;
  183. u16 port_state;
  184. };
  185. /* port structure(43.4.6 in the 802.3ad standard) */
  186. typedef struct port {
  187. u16 actor_port_number;
  188. u16 actor_port_priority;
  189. struct mac_addr actor_system; /* This parameter is added here although it is not specified in the standard, just for simplification */
  190. u16 actor_system_priority; /* This parameter is added here although it is not specified in the standard, just for simplification */
  191. u16 actor_port_aggregator_identifier;
  192. bool ntt;
  193. u16 actor_admin_port_key;
  194. u16 actor_oper_port_key;
  195. u8 actor_admin_port_state;
  196. u8 actor_oper_port_state;
  197. struct port_params partner_admin;
  198. struct port_params partner_oper;
  199. bool is_enabled;
  200. /* ****** PRIVATE PARAMETERS ****** */
  201. u16 sm_vars; /* all state machines variables for this port */
  202. rx_states_t sm_rx_state; /* state machine rx state */
  203. u16 sm_rx_timer_counter; /* state machine rx timer counter */
  204. periodic_states_t sm_periodic_state; /* state machine periodic state */
  205. u16 sm_periodic_timer_counter; /* state machine periodic timer counter */
  206. mux_states_t sm_mux_state; /* state machine mux state */
  207. u16 sm_mux_timer_counter; /* state machine mux timer counter */
  208. tx_states_t sm_tx_state; /* state machine tx state */
  209. u16 sm_tx_timer_counter; /* state machine tx timer counter(allways on - enter to transmit state 3 time per second) */
  210. u16 sm_churn_actor_timer_counter;
  211. u16 sm_churn_partner_timer_counter;
  212. u32 churn_actor_count;
  213. u32 churn_partner_count;
  214. churn_state_t sm_churn_actor_state;
  215. churn_state_t sm_churn_partner_state;
  216. struct slave *slave; /* pointer to the bond slave that this port belongs to */
  217. struct aggregator *aggregator; /* pointer to an aggregator that this port related to */
  218. struct port *next_port_in_aggregator; /* Next port on the linked list of the parent aggregator */
  219. u32 transaction_id; /* continuous number for identification of Marker PDU's; */
  220. struct lacpdu lacpdu; /* the lacpdu that will be sent for this port */
  221. } port_t;
  222. /* system structure */
  223. struct ad_system {
  224. u16 sys_priority;
  225. struct mac_addr sys_mac_addr;
  226. };
  227. #ifdef __ia64__
  228. #pragma pack()
  229. #endif
  230. /* ========== AD Exported structures to the main bonding code ========== */
  231. #define BOND_AD_INFO(bond) ((bond)->ad_info)
  232. #define SLAVE_AD_INFO(slave) ((slave)->ad_info)
  233. struct ad_bond_info {
  234. struct ad_system system; /* 802.3ad system structure */
  235. u32 agg_select_timer; /* Timer to select aggregator after all adapter's hand shakes */
  236. u16 aggregator_identifier;
  237. };
  238. struct ad_slave_info {
  239. struct aggregator aggregator; /* 802.3ad aggregator structure */
  240. struct port port; /* 802.3ad port structure */
  241. u16 id;
  242. };
  243. static inline const char *bond_3ad_churn_desc(churn_state_t state)
  244. {
  245. static const char *const churn_description[] = {
  246. "monitoring",
  247. "churned",
  248. "none",
  249. "unknown"
  250. };
  251. int max_size = sizeof(churn_description) / sizeof(churn_description[0]);
  252. if (state >= max_size)
  253. state = max_size - 1;
  254. return churn_description[state];
  255. }
  256. /* ========== AD Exported functions to the main bonding code ========== */
  257. void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution);
  258. void bond_3ad_bind_slave(struct slave *slave);
  259. void bond_3ad_unbind_slave(struct slave *slave);
  260. void bond_3ad_state_machine_handler(struct work_struct *);
  261. void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout);
  262. void bond_3ad_adapter_speed_duplex_changed(struct slave *slave);
  263. void bond_3ad_handle_link_change(struct slave *slave, char link);
  264. int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info);
  265. int __bond_3ad_get_active_agg_info(struct bonding *bond,
  266. struct ad_info *ad_info);
  267. int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
  268. struct slave *slave);
  269. int bond_3ad_set_carrier(struct bonding *bond);
  270. void bond_3ad_update_lacp_rate(struct bonding *bond);
  271. #endif /* _NET_BOND_3AD_H */