The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/drivers/net/bonding/bond_3ad.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: e84f708f157aeacf200fd079e53c5f65


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.