bond_3ad.h 9.5 KB

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