10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 51537Snd99603 * Common Development and Distribution License (the "License"). 61537Snd99603 * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 210Sstevel@tonic-gate /* 225895Syz147064 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate * Use is subject to license terms. 240Sstevel@tonic-gate */ 250Sstevel@tonic-gate 260Sstevel@tonic-gate #ifndef _SYS_AGGR_IMPL_H 270Sstevel@tonic-gate #define _SYS_AGGR_IMPL_H 280Sstevel@tonic-gate 290Sstevel@tonic-gate #include <sys/types.h> 300Sstevel@tonic-gate #include <sys/mac.h> 312311Sseb #include <sys/mac_ether.h> 320Sstevel@tonic-gate #include <sys/aggr_lacp.h> 330Sstevel@tonic-gate 340Sstevel@tonic-gate #ifdef __cplusplus 350Sstevel@tonic-gate extern "C" { 360Sstevel@tonic-gate #endif 370Sstevel@tonic-gate 380Sstevel@tonic-gate #ifdef _KERNEL 390Sstevel@tonic-gate 40269Sericheng #define AGGR_MINOR_CTL 1 /* control interface minor */ 410Sstevel@tonic-gate 420Sstevel@tonic-gate /* flags for aggr_grp_modify() */ 430Sstevel@tonic-gate #define AGGR_MODIFY_POLICY 0x01 440Sstevel@tonic-gate #define AGGR_MODIFY_MAC 0x02 450Sstevel@tonic-gate #define AGGR_MODIFY_LACP_MODE 0x04 460Sstevel@tonic-gate #define AGGR_MODIFY_LACP_TIMER 0x08 470Sstevel@tonic-gate 480Sstevel@tonic-gate /* 490Sstevel@tonic-gate * A link aggregation MAC port. 500Sstevel@tonic-gate * Note that lp_next is protected by the lg_lock of the group the 510Sstevel@tonic-gate * port is part of. 520Sstevel@tonic-gate */ 530Sstevel@tonic-gate typedef struct aggr_port_s { 540Sstevel@tonic-gate struct aggr_port_s *lp_next; 550Sstevel@tonic-gate struct aggr_grp_s *lp_grp; /* back ptr to group */ 565895Syz147064 datalink_id_t lp_linkid; 575102Syz147064 uint16_t lp_portid; 580Sstevel@tonic-gate uint8_t lp_addr[ETHERADDRL]; /* port MAC address */ 590Sstevel@tonic-gate uint32_t lp_refs; /* refcount */ 600Sstevel@tonic-gate aggr_port_state_t lp_state; 610Sstevel@tonic-gate uint32_t lp_started : 1, 620Sstevel@tonic-gate lp_tx_enabled : 1, 630Sstevel@tonic-gate lp_collector_enabled : 1, 640Sstevel@tonic-gate lp_promisc_on : 1, 655895Syz147064 lp_no_link_update : 1, 665895Syz147064 lp_pad_bits : 27; 671852Syz147064 uint32_t lp_closing; 680Sstevel@tonic-gate mac_handle_t lp_mh; 690Sstevel@tonic-gate const mac_info_t *lp_mip; 700Sstevel@tonic-gate mac_notify_handle_t lp_mnh; 710Sstevel@tonic-gate mac_rx_handle_t lp_mrh; 720Sstevel@tonic-gate krwlock_t lp_lock; 730Sstevel@tonic-gate uint_t lp_tx_idx; /* idx in group's tx array */ 740Sstevel@tonic-gate uint64_t lp_ifspeed; 750Sstevel@tonic-gate link_state_t lp_link_state; 760Sstevel@tonic-gate link_duplex_t lp_link_duplex; 770Sstevel@tonic-gate uint64_t lp_stat[MAC_NSTAT]; 782311Sseb uint64_t lp_ether_stat[ETHER_NSTAT]; 790Sstevel@tonic-gate aggr_lacp_port_t lp_lacp; /* LACP state */ 800Sstevel@tonic-gate lacp_stats_t lp_lacp_stats; 8156Smeem const mac_txinfo_t *lp_txinfo; 825895Syz147064 uint32_t lp_margin; 830Sstevel@tonic-gate } aggr_port_t; 840Sstevel@tonic-gate 857085Sudpa typedef struct lg_mcst_addr_s lg_mcst_addr_t; 867085Sudpa struct lg_mcst_addr_s { 877085Sudpa lg_mcst_addr_t *lg_mcst_nextp; 887085Sudpa uint8_t lg_mcst_addr[MAXMACADDRLEN]; 897085Sudpa }; 907085Sudpa 910Sstevel@tonic-gate /* 920Sstevel@tonic-gate * A link aggregation group. 930Sstevel@tonic-gate * 940Sstevel@tonic-gate * The following per-group flags are defined: 950Sstevel@tonic-gate * 960Sstevel@tonic-gate * - lg_addr_fixed: set when the MAC address has been explicitely set 970Sstevel@tonic-gate * when the group was created, or by a m_unicst_set() request. 980Sstevel@tonic-gate * If this flag is not set, the MAC address of the group will be 990Sstevel@tonic-gate * set to the first port that is added to the group. 1000Sstevel@tonic-gate * 1010Sstevel@tonic-gate * - lg_add_set: used only when lg_addr_fixed is not set. Captures whether 1020Sstevel@tonic-gate * the MAC address was initialized according to the members of the group. 1030Sstevel@tonic-gate * When set, the lg_port field points to the port from which the 1040Sstevel@tonic-gate * MAC address was initialized. 1050Sstevel@tonic-gate * 1060Sstevel@tonic-gate */ 1070Sstevel@tonic-gate typedef struct aggr_grp_s { 1080Sstevel@tonic-gate krwlock_t lg_lock; 1095895Syz147064 datalink_id_t lg_linkid; 1100Sstevel@tonic-gate uint16_t lg_key; /* key (group port number) */ 1110Sstevel@tonic-gate uint32_t lg_refs; /* refcount */ 1120Sstevel@tonic-gate uint16_t lg_nports; /* number of MAC ports */ 1130Sstevel@tonic-gate uint8_t lg_addr[ETHERADDRL]; /* group MAC address */ 1140Sstevel@tonic-gate uint16_t 1152047Syz147064 lg_closing : 1, 1160Sstevel@tonic-gate lg_addr_fixed : 1, /* fixed MAC address? */ 1170Sstevel@tonic-gate lg_started : 1, /* group started? */ 1180Sstevel@tonic-gate lg_promisc : 1, /* in promiscuous mode? */ 1192311Sseb lg_gldv3_polling : 1, 1205895Syz147064 lg_zcopy : 1, 1215895Syz147064 lg_vlan : 1, 1225895Syz147064 lg_force : 1, 1235895Syz147064 lg_pad_bits : 8; 1240Sstevel@tonic-gate aggr_port_t *lg_ports; /* list of configured ports */ 1250Sstevel@tonic-gate aggr_port_t *lg_mac_addr_port; 1262311Sseb mac_handle_t lg_mh; 1270Sstevel@tonic-gate uint_t lg_rx_resources; 1280Sstevel@tonic-gate uint_t lg_nattached_ports; 1290Sstevel@tonic-gate uint_t lg_ntx_ports; 1300Sstevel@tonic-gate aggr_port_t **lg_tx_ports; /* array of tx ports */ 1310Sstevel@tonic-gate uint_t lg_tx_ports_size; /* size of lg_tx_ports */ 1320Sstevel@tonic-gate uint32_t lg_tx_policy; /* outbound policy */ 1330Sstevel@tonic-gate uint64_t lg_ifspeed; 1340Sstevel@tonic-gate link_state_t lg_link_state; 1350Sstevel@tonic-gate link_duplex_t lg_link_duplex; 1360Sstevel@tonic-gate uint64_t lg_stat[MAC_NSTAT]; 1372311Sseb uint64_t lg_ether_stat[ETHER_NSTAT]; 1380Sstevel@tonic-gate aggr_lacp_mode_t lg_lacp_mode; /* off, active, or passive */ 1390Sstevel@tonic-gate Agg_t aggr; /* 802.3ad data */ 1402311Sseb uint32_t lg_hcksum_txflags; 1412803Snd99603 uint_t lg_max_sdu; 1425895Syz147064 uint32_t lg_margin; 1437085Sudpa lg_mcst_addr_t *lg_mcst_list; /* A list of multicast addresses */ 1440Sstevel@tonic-gate } aggr_grp_t; 1450Sstevel@tonic-gate 1460Sstevel@tonic-gate #define AGGR_LACP_LOCK(grp) mutex_enter(&(grp)->aggr.gl_lock); 1470Sstevel@tonic-gate #define AGGR_LACP_UNLOCK(grp) mutex_exit(&(grp)->aggr.gl_lock); 1480Sstevel@tonic-gate #define AGGR_LACP_LOCK_HELD(grp) MUTEX_HELD(&(grp)->aggr.gl_lock) 1490Sstevel@tonic-gate 1500Sstevel@tonic-gate #define AGGR_GRP_REFHOLD(grp) { \ 1510Sstevel@tonic-gate atomic_add_32(&(grp)->lg_refs, 1); \ 1520Sstevel@tonic-gate ASSERT((grp)->lg_refs != 0); \ 1530Sstevel@tonic-gate } 1540Sstevel@tonic-gate 1550Sstevel@tonic-gate #define AGGR_GRP_REFRELE(grp) { \ 1560Sstevel@tonic-gate ASSERT((grp)->lg_refs != 0); \ 1570Sstevel@tonic-gate membar_exit(); \ 1580Sstevel@tonic-gate if (atomic_add_32_nv(&(grp)->lg_refs, -1) == 0) \ 1590Sstevel@tonic-gate aggr_grp_free(grp); \ 1600Sstevel@tonic-gate } 1610Sstevel@tonic-gate 1620Sstevel@tonic-gate #define AGGR_PORT_REFHOLD(port) { \ 1630Sstevel@tonic-gate atomic_add_32(&(port)->lp_refs, 1); \ 1640Sstevel@tonic-gate ASSERT((port)->lp_refs != 0); \ 1650Sstevel@tonic-gate } 1660Sstevel@tonic-gate 1670Sstevel@tonic-gate #define AGGR_PORT_REFRELE(port) { \ 1680Sstevel@tonic-gate ASSERT((port)->lp_refs != 0); \ 1690Sstevel@tonic-gate membar_exit(); \ 1700Sstevel@tonic-gate if (atomic_add_32_nv(&(port)->lp_refs, -1) == 0) \ 1710Sstevel@tonic-gate aggr_port_free(port); \ 1720Sstevel@tonic-gate } 1730Sstevel@tonic-gate 1740Sstevel@tonic-gate extern dev_info_t *aggr_dip; 175*7408SSebastien.Roy@Sun.COM extern int aggr_ioc_init(void); 176*7408SSebastien.Roy@Sun.COM extern void aggr_ioc_fini(void); 1770Sstevel@tonic-gate 1785895Syz147064 typedef int (*aggr_grp_info_new_grp_fn_t)(void *, datalink_id_t, uint32_t, 1795895Syz147064 uchar_t *, boolean_t, boolean_t, uint32_t, uint32_t, aggr_lacp_mode_t, 1805895Syz147064 aggr_lacp_timer_t); 1815895Syz147064 typedef int (*aggr_grp_info_new_port_fn_t)(void *, datalink_id_t, uchar_t *, 1822311Sseb aggr_port_state_t, aggr_lacp_state_t *); 1830Sstevel@tonic-gate 1840Sstevel@tonic-gate extern void aggr_grp_init(void); 1851804Sericheng extern void aggr_grp_fini(void); 1865895Syz147064 extern int aggr_grp_create(datalink_id_t, uint32_t, uint_t, laioc_port_t *, 1875895Syz147064 uint32_t, boolean_t, boolean_t, uchar_t *, aggr_lacp_mode_t, 1885895Syz147064 aggr_lacp_timer_t); 1895895Syz147064 extern int aggr_grp_delete(datalink_id_t); 1900Sstevel@tonic-gate extern void aggr_grp_free(aggr_grp_t *); 1910Sstevel@tonic-gate 1925895Syz147064 extern int aggr_grp_info(datalink_id_t, void *, aggr_grp_info_new_grp_fn_t, 1935895Syz147064 aggr_grp_info_new_port_fn_t); 1940Sstevel@tonic-gate extern void aggr_grp_notify(aggr_grp_t *, uint32_t); 1950Sstevel@tonic-gate extern boolean_t aggr_grp_attach_port(aggr_grp_t *, aggr_port_t *); 1960Sstevel@tonic-gate extern boolean_t aggr_grp_detach_port(aggr_grp_t *, aggr_port_t *); 1972047Syz147064 extern void aggr_grp_port_mac_changed(aggr_grp_t *, aggr_port_t *, 1982047Syz147064 boolean_t *, boolean_t *); 1995895Syz147064 extern int aggr_grp_add_ports(datalink_id_t, uint_t, boolean_t, 2005895Syz147064 laioc_port_t *); 2015895Syz147064 extern int aggr_grp_rem_ports(datalink_id_t, uint_t, laioc_port_t *); 2022047Syz147064 extern boolean_t aggr_grp_update_ports_mac(aggr_grp_t *); 2035895Syz147064 extern int aggr_grp_modify(datalink_id_t, aggr_grp_t *, uint8_t, uint32_t, 2040Sstevel@tonic-gate boolean_t, const uchar_t *, aggr_lacp_mode_t, aggr_lacp_timer_t); 2050Sstevel@tonic-gate extern void aggr_grp_multicst_port(aggr_port_t *, boolean_t); 206269Sericheng extern uint_t aggr_grp_count(void); 2070Sstevel@tonic-gate 2080Sstevel@tonic-gate extern void aggr_port_init(void); 2091804Sericheng extern void aggr_port_fini(void); 2105895Syz147064 extern int aggr_port_create(const datalink_id_t, boolean_t, aggr_port_t **); 2110Sstevel@tonic-gate extern void aggr_port_delete(aggr_port_t *); 2120Sstevel@tonic-gate extern void aggr_port_free(aggr_port_t *); 2130Sstevel@tonic-gate extern int aggr_port_start(aggr_port_t *); 2140Sstevel@tonic-gate extern void aggr_port_stop(aggr_port_t *); 2150Sstevel@tonic-gate extern int aggr_port_promisc(aggr_port_t *, boolean_t); 2160Sstevel@tonic-gate extern int aggr_port_unicst(aggr_port_t *, uint8_t *); 2170Sstevel@tonic-gate extern int aggr_port_multicst(void *, boolean_t, const uint8_t *); 2182311Sseb extern uint64_t aggr_port_stat(aggr_port_t *, uint_t); 2192163Syz147064 extern boolean_t aggr_port_notify_link(aggr_grp_t *, aggr_port_t *, boolean_t); 2202163Syz147064 extern void aggr_port_init_callbacks(aggr_port_t *); 2210Sstevel@tonic-gate 2220Sstevel@tonic-gate extern void aggr_recv_cb(void *, mac_resource_handle_t, mblk_t *); 2230Sstevel@tonic-gate 2240Sstevel@tonic-gate extern mblk_t *aggr_m_tx(void *, mblk_t *); 2250Sstevel@tonic-gate extern void aggr_send_port_enable(aggr_port_t *); 2260Sstevel@tonic-gate extern void aggr_send_port_disable(aggr_port_t *); 2270Sstevel@tonic-gate extern void aggr_send_update_policy(aggr_grp_t *, uint32_t); 2280Sstevel@tonic-gate 2291537Snd99603 extern void aggr_lacp_init(void); 2301537Snd99603 extern void aggr_lacp_fini(void); 2310Sstevel@tonic-gate extern void aggr_lacp_init_port(aggr_port_t *); 2320Sstevel@tonic-gate extern void aggr_lacp_init_grp(aggr_grp_t *); 2330Sstevel@tonic-gate extern void aggr_lacp_set_mode(aggr_grp_t *, aggr_lacp_mode_t, 2340Sstevel@tonic-gate aggr_lacp_timer_t); 2350Sstevel@tonic-gate extern void aggr_lacp_update_mode(aggr_grp_t *, aggr_lacp_mode_t); 2360Sstevel@tonic-gate extern void aggr_lacp_update_timer(aggr_grp_t *, aggr_lacp_timer_t); 2370Sstevel@tonic-gate extern void aggr_lacp_rx(aggr_port_t *, mblk_t *); 2380Sstevel@tonic-gate extern void aggr_lacp_port_attached(aggr_port_t *); 2390Sstevel@tonic-gate extern void aggr_lacp_port_detached(aggr_port_t *); 2400Sstevel@tonic-gate extern void aggr_lacp_policy_changed(aggr_grp_t *); 2410Sstevel@tonic-gate 2420Sstevel@tonic-gate #endif /* _KERNEL */ 2430Sstevel@tonic-gate 2440Sstevel@tonic-gate #ifdef __cplusplus 2450Sstevel@tonic-gate } 2460Sstevel@tonic-gate #endif 2470Sstevel@tonic-gate 2480Sstevel@tonic-gate #endif /* _SYS_AGGR_IMPL_H */ 249