bond_3ad.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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. * Changes:
  23. *
  24. * 2003/05/01 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
  25. * Amir Noam <amir.noam at intel dot com>
  26. * - Added support for lacp_rate module param.
  27. *
  28. * 2003/05/01 - Shmulik Hen <shmulik.hen at intel dot com>
  29. * - Renamed bond_3ad_link_status_changed() to
  30. * bond_3ad_handle_link_change() for compatibility with TLB.
  31. *
  32. * 2003/12/01 - Shmulik Hen <shmulik.hen at intel dot com>
  33. * - Code cleanup and style changes
  34. */
  35. #ifndef __BOND_3AD_H__
  36. #define __BOND_3AD_H__
  37. #include <asm/byteorder.h>
  38. #include <linux/skbuff.h>
  39. #include <linux/netdevice.h>
  40. // General definitions
  41. #define BOND_ETH_P_LACPDU 0x8809
  42. #define PKT_TYPE_LACPDU __constant_htons(BOND_ETH_P_LACPDU)
  43. #define AD_TIMER_INTERVAL 100 /*msec*/
  44. #define MULTICAST_LACPDU_ADDR {0x01, 0x80, 0xC2, 0x00, 0x00, 0x02}
  45. #define AD_MULTICAST_LACPDU_ADDR {MULTICAST_LACPDU_ADDR}
  46. #define AD_LACP_SLOW 0
  47. #define AD_LACP_FAST 1
  48. typedef struct mac_addr {
  49. u8 mac_addr_value[ETH_ALEN];
  50. } mac_addr_t;
  51. typedef enum {
  52. AD_BANDWIDTH = 0,
  53. AD_COUNT
  54. } agg_selection_t;
  55. // rx machine states(43.4.11 in the 802.3ad standard)
  56. typedef enum {
  57. AD_RX_DUMMY,
  58. AD_RX_INITIALIZE, // rx Machine
  59. AD_RX_PORT_DISABLED, // rx Machine
  60. AD_RX_LACP_DISABLED, // rx Machine
  61. AD_RX_EXPIRED, // rx Machine
  62. AD_RX_DEFAULTED, // rx Machine
  63. AD_RX_CURRENT // rx Machine
  64. } rx_states_t;
  65. // periodic machine states(43.4.12 in the 802.3ad standard)
  66. typedef enum {
  67. AD_PERIODIC_DUMMY,
  68. AD_NO_PERIODIC, // periodic machine
  69. AD_FAST_PERIODIC, // periodic machine
  70. AD_SLOW_PERIODIC, // periodic machine
  71. AD_PERIODIC_TX // periodic machine
  72. } periodic_states_t;
  73. // mux machine states(43.4.13 in the 802.3ad standard)
  74. typedef enum {
  75. AD_MUX_DUMMY,
  76. AD_MUX_DETACHED, // mux machine
  77. AD_MUX_WAITING, // mux machine
  78. AD_MUX_ATTACHED, // mux machine
  79. AD_MUX_COLLECTING_DISTRIBUTING // mux machine
  80. } mux_states_t;
  81. // tx machine states(43.4.15 in the 802.3ad standard)
  82. typedef enum {
  83. AD_TX_DUMMY,
  84. AD_TRANSMIT // tx Machine
  85. } tx_states_t;
  86. // rx indication types
  87. typedef enum {
  88. AD_TYPE_LACPDU = 1, // type lacpdu
  89. AD_TYPE_MARKER // type marker
  90. } pdu_type_t;
  91. // rx marker indication types
  92. typedef enum {
  93. AD_MARKER_INFORMATION_SUBTYPE = 1, // marker imformation subtype
  94. AD_MARKER_RESPONSE_SUBTYPE // marker response subtype
  95. } marker_subtype_t;
  96. // timers types(43.4.9 in the 802.3ad standard)
  97. typedef enum {
  98. AD_CURRENT_WHILE_TIMER,
  99. AD_ACTOR_CHURN_TIMER,
  100. AD_PERIODIC_TIMER,
  101. AD_PARTNER_CHURN_TIMER,
  102. AD_WAIT_WHILE_TIMER
  103. } ad_timers_t;
  104. #pragma pack(1)
  105. typedef struct ad_header {
  106. struct mac_addr destination_address;
  107. struct mac_addr source_address;
  108. u16 length_type;
  109. } ad_header_t;
  110. // Link Aggregation Control Protocol(LACP) data unit structure(43.4.2.2 in the 802.3ad standard)
  111. typedef struct lacpdu {
  112. u8 subtype; // = LACP(= 0x01)
  113. u8 version_number;
  114. u8 tlv_type_actor_info; // = actor information(type/length/value)
  115. u8 actor_information_length; // = 20
  116. u16 actor_system_priority;
  117. struct mac_addr actor_system;
  118. u16 actor_key;
  119. u16 actor_port_priority;
  120. u16 actor_port;
  121. u8 actor_state;
  122. u8 reserved_3_1[3]; // = 0
  123. u8 tlv_type_partner_info; // = partner information
  124. u8 partner_information_length; // = 20
  125. u16 partner_system_priority;
  126. struct mac_addr partner_system;
  127. u16 partner_key;
  128. u16 partner_port_priority;
  129. u16 partner_port;
  130. u8 partner_state;
  131. u8 reserved_3_2[3]; // = 0
  132. u8 tlv_type_collector_info; // = collector information
  133. u8 collector_information_length; // = 16
  134. u16 collector_max_delay;
  135. u8 reserved_12[12];
  136. u8 tlv_type_terminator; // = terminator
  137. u8 terminator_length; // = 0
  138. u8 reserved_50[50]; // = 0
  139. } lacpdu_t;
  140. typedef struct lacpdu_header {
  141. struct ad_header ad_header;
  142. struct lacpdu lacpdu;
  143. } lacpdu_header_t;
  144. // Marker Protocol Data Unit(PDU) structure(43.5.3.2 in the 802.3ad standard)
  145. typedef struct marker {
  146. u8 subtype; // = 0x02 (marker PDU)
  147. u8 version_number; // = 0x01
  148. u8 tlv_type; // = 0x01 (marker information)
  149. // = 0x02 (marker response information)
  150. u8 marker_length; // = 0x16
  151. u16 requester_port; // The number assigned to the port by the requester
  152. struct mac_addr requester_system; // The requester's system id
  153. u32 requester_transaction_id; // The transaction id allocated by the requester,
  154. u16 pad; // = 0
  155. u8 tlv_type_terminator; // = 0x00
  156. u8 terminator_length; // = 0x00
  157. u8 reserved_90[90]; // = 0
  158. } marker_t;
  159. typedef struct marker_header {
  160. struct ad_header ad_header;
  161. struct marker marker;
  162. } marker_header_t;
  163. #pragma pack()
  164. struct slave;
  165. struct bonding;
  166. struct ad_info;
  167. struct port;
  168. #ifdef __ia64__
  169. #pragma pack(8)
  170. #endif
  171. // aggregator structure(43.4.5 in the 802.3ad standard)
  172. typedef struct aggregator {
  173. struct mac_addr aggregator_mac_address;
  174. u16 aggregator_identifier;
  175. u16 is_individual; // BOOLEAN
  176. u16 actor_admin_aggregator_key;
  177. u16 actor_oper_aggregator_key;
  178. struct mac_addr partner_system;
  179. u16 partner_system_priority;
  180. u16 partner_oper_aggregator_key;
  181. u16 receive_state; // BOOLEAN
  182. u16 transmit_state; // BOOLEAN
  183. struct port *lag_ports;
  184. // ****** PRIVATE PARAMETERS ******
  185. struct slave *slave; // pointer to the bond slave that this aggregator belongs to
  186. u16 is_active; // BOOLEAN. Indicates if this aggregator is active
  187. u16 num_of_ports;
  188. } aggregator_t;
  189. // port structure(43.4.6 in the 802.3ad standard)
  190. typedef struct port {
  191. u16 actor_port_number;
  192. u16 actor_port_priority;
  193. struct mac_addr actor_system; // This parameter is added here although it is not specified in the standard, just for simplification
  194. u16 actor_system_priority; // This parameter is added here although it is not specified in the standard, just for simplification
  195. u16 actor_port_aggregator_identifier;
  196. u16 ntt; // BOOLEAN
  197. u16 actor_admin_port_key;
  198. u16 actor_oper_port_key;
  199. u8 actor_admin_port_state;
  200. u8 actor_oper_port_state;
  201. struct mac_addr partner_admin_system;
  202. struct mac_addr partner_oper_system;
  203. u16 partner_admin_system_priority;
  204. u16 partner_oper_system_priority;
  205. u16 partner_admin_key;
  206. u16 partner_oper_key;
  207. u16 partner_admin_port_number;
  208. u16 partner_oper_port_number;
  209. u16 partner_admin_port_priority;
  210. u16 partner_oper_port_priority;
  211. u8 partner_admin_port_state;
  212. u8 partner_oper_port_state;
  213. u16 is_enabled; // BOOLEAN
  214. // ****** PRIVATE PARAMETERS ******
  215. u16 sm_vars; // all state machines variables for this port
  216. rx_states_t sm_rx_state; // state machine rx state
  217. u16 sm_rx_timer_counter; // state machine rx timer counter
  218. periodic_states_t sm_periodic_state;// state machine periodic state
  219. u16 sm_periodic_timer_counter; // state machine periodic timer counter
  220. mux_states_t sm_mux_state; // state machine mux state
  221. u16 sm_mux_timer_counter; // state machine mux timer counter
  222. tx_states_t sm_tx_state; // state machine tx state
  223. u16 sm_tx_timer_counter; // state machine tx timer counter(allways on - enter to transmit state 3 time per second)
  224. struct slave *slave; // pointer to the bond slave that this port belongs to
  225. struct aggregator *aggregator; // pointer to an aggregator that this port related to
  226. struct port *next_port_in_aggregator; // Next port on the linked list of the parent aggregator
  227. u32 transaction_id; // continuous number for identification of Marker PDU's;
  228. struct lacpdu lacpdu; // the lacpdu that will be sent for this port
  229. } port_t;
  230. // system structure
  231. typedef struct ad_system {
  232. u16 sys_priority;
  233. struct mac_addr sys_mac_addr;
  234. } ad_system_t;
  235. #ifdef __ia64__
  236. #pragma pack()
  237. #endif
  238. // ================= AD Exported structures to the main bonding code ==================
  239. #define BOND_AD_INFO(bond) ((bond)->ad_info)
  240. #define SLAVE_AD_INFO(slave) ((slave)->ad_info)
  241. struct ad_bond_info {
  242. ad_system_t system; // 802.3ad system structure
  243. u32 agg_select_timer; // Timer to select aggregator after all adapter's hand shakes
  244. u32 agg_select_mode; // Mode of selection of active aggregator(bandwidth/count)
  245. int lacp_fast; /* whether fast periodic tx should be
  246. * requested
  247. */
  248. struct timer_list ad_timer;
  249. struct packet_type ad_pkt_type;
  250. };
  251. struct ad_slave_info {
  252. struct aggregator aggregator; // 802.3ad aggregator structure
  253. struct port port; // 802.3ad port structure
  254. spinlock_t rx_machine_lock; // To avoid race condition between callback and receive interrupt
  255. u16 id;
  256. };
  257. // ================= AD Exported functions to the main bonding code ==================
  258. void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution, int lacp_fast);
  259. int bond_3ad_bind_slave(struct slave *slave);
  260. void bond_3ad_unbind_slave(struct slave *slave);
  261. void bond_3ad_state_machine_handler(struct bonding *bond);
  262. void bond_3ad_adapter_speed_changed(struct slave *slave);
  263. void bond_3ad_adapter_duplex_changed(struct slave *slave);
  264. void bond_3ad_handle_link_change(struct slave *slave, char link);
  265. int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info);
  266. int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev);
  267. int bond_3ad_lacpdu_recv(struct sk_buff *skb, struct net_device *dev, struct packet_type* ptype, struct net_device *orig_dev);
  268. #endif //__BOND_3AD_H__