dld_proto.c revision 210db2243d3b5ca39c96a4c34c6d9453ddfbeaa9
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Data-Link Driver
*/
#include <sys/types.h>
#include <sys/debug.h>
#include <sys/sysmacros.h>
#include <sys/stream.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/strsun.h>
#include <sys/dlpi.h>
#include <netinet/in.h>
#include <sys/sdt.h>
#include <sys/strsubr.h>
#include <sys/vlan.h>
#include <sys/mac.h>
#include <sys/dls.h>
#include <sys/dld.h>
#include <sys/dld_impl.h>
typedef boolean_t proto_reqfunc_t(dld_str_t *, union DL_primitives *, mblk_t *);
static proto_reqfunc_t proto_info_req, proto_attach_req, proto_detach_req,
proto_bind_req, proto_unbind_req, proto_promiscon_req, proto_promiscoff_req,
proto_enabmulti_req, proto_disabmulti_req, proto_physaddr_req,
proto_setphysaddr_req, proto_udqos_req, proto_req, proto_capability_req,
proto_notify_req, proto_unitdata_req, proto_passive_req;
static void proto_poll_disable(dld_str_t *);
static boolean_t proto_poll_enable(dld_str_t *, dl_capab_poll_t *);
static boolean_t proto_capability_advertise(dld_str_t *, mblk_t *);
#define DL_ACK_PENDING(state) \
((state) == DL_ATTACH_PENDING || \
(state) == DL_DETACH_PENDING || \
(state) == DL_BIND_PENDING || \
(state) == DL_UNBIND_PENDING)
/*
* Process a DLPI protocol message.
* The primitives DL_BIND_REQ, DL_ENABMULTI_REQ, DL_PROMISCON_REQ,
* DL_SET_PHYS_ADDR_REQ put the data link below our dld_str_t into an
* 'active' state. The primitive DL_PASSIVE_REQ marks our dld_str_t
* as 'passive' and forbids it from being subsequently made 'active'
* by the above primitives.
*/
void
dld_proto(dld_str_t *dsp, mblk_t *mp)
{
union DL_primitives *udlp;
t_uscalar_t prim;
if (MBLKL(mp) < sizeof (t_uscalar_t)) {
freemsg(mp);
return;
}
udlp = (union DL_primitives *)mp->b_rptr;
prim = udlp->dl_primitive;
switch (prim) {
case DL_INFO_REQ:
(void) proto_info_req(dsp, udlp, mp);
break;
case DL_BIND_REQ:
(void) proto_bind_req(dsp, udlp, mp);
break;
case DL_UNBIND_REQ:
(void) proto_unbind_req(dsp, udlp, mp);
break;
case DL_UNITDATA_REQ:
(void) proto_unitdata_req(dsp, udlp, mp);
break;
case DL_UDQOS_REQ:
(void) proto_udqos_req(dsp, udlp, mp);
break;
case DL_ATTACH_REQ:
(void) proto_attach_req(dsp, udlp, mp);
break;
case DL_DETACH_REQ:
(void) proto_detach_req(dsp, udlp, mp);
break;
case DL_ENABMULTI_REQ:
(void) proto_enabmulti_req(dsp, udlp, mp);
break;
case DL_DISABMULTI_REQ:
(void) proto_disabmulti_req(dsp, udlp, mp);
break;
case DL_PROMISCON_REQ:
(void) proto_promiscon_req(dsp, udlp, mp);
break;
case DL_PROMISCOFF_REQ:
(void) proto_promiscoff_req(dsp, udlp, mp);
break;
case DL_PHYS_ADDR_REQ:
(void) proto_physaddr_req(dsp, udlp, mp);
break;
case DL_SET_PHYS_ADDR_REQ:
(void) proto_setphysaddr_req(dsp, udlp, mp);
break;
case DL_NOTIFY_REQ:
(void) proto_notify_req(dsp, udlp, mp);
break;
case DL_CAPABILITY_REQ:
(void) proto_capability_req(dsp, udlp, mp);
break;
case DL_PASSIVE_REQ:
(void) proto_passive_req(dsp, udlp, mp);
break;
default:
(void) proto_req(dsp, udlp, mp);
break;
}
}
/*
* Finish any pending operations. At this moment we are single-threaded,
* hence there is no need to hold ds_lock as writer because we're already
* exclusive.
*/
void
dld_finish_pending_ops(dld_str_t *dsp)
{
ASSERT(MUTEX_HELD(&dsp->ds_thr_lock));
ASSERT(dsp->ds_thr == 0);
/* Pending DL_DETACH_REQ? */
if (dsp->ds_detach_req != NULL) {
mblk_t *mp;
ASSERT(dsp->ds_dlstate == DL_DETACH_PENDING);
dld_str_detach(dsp);
mp = dsp->ds_detach_req;
dsp->ds_detach_req = NULL;
mutex_exit(&dsp->ds_thr_lock);
dlokack(dsp->ds_wq, mp, DL_DETACH_REQ);
} else {
mutex_exit(&dsp->ds_thr_lock);
}
}
#define NEG(x) -(x)
typedef struct dl_info_ack_wrapper {
dl_info_ack_t dl_info;
uint8_t dl_addr[MAXADDRLEN + sizeof (uint16_t)];
uint8_t dl_brdcst_addr[MAXADDRLEN];
dl_qos_cl_range1_t dl_qos_range1;
dl_qos_cl_sel1_t dl_qos_sel1;
} dl_info_ack_wrapper_t;
/*
* DL_INFO_REQ
*/
/*ARGSUSED*/
static boolean_t
proto_info_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_info_ack_wrapper_t *dlwp;
dl_info_ack_t *dlp;
dl_qos_cl_sel1_t *selp;
dl_qos_cl_range1_t *rangep;
uint8_t *addr;
uint8_t *brdcst_addr;
uint_t addr_length;
uint_t sap_length;
mac_info_t minfo;
mac_info_t *minfop;
queue_t *q = dsp->ds_wq;
/*
* Swap the request message for one large enough to contain the
* wrapper structure defined above.
*/
if ((mp = mexchange(q, mp, sizeof (dl_info_ack_wrapper_t),
M_PCPROTO, 0)) == NULL)
return (B_FALSE);
rw_enter(&dsp->ds_lock, RW_READER);
bzero(mp->b_rptr, sizeof (dl_info_ack_wrapper_t));
dlwp = (dl_info_ack_wrapper_t *)mp->b_rptr;
dlp = &(dlwp->dl_info);
ASSERT(dlp == (dl_info_ack_t *)mp->b_rptr);
dlp->dl_primitive = DL_INFO_ACK;
/*
* Set up the sub-structure pointers.
*/
addr = dlwp->dl_addr;
brdcst_addr = dlwp->dl_brdcst_addr;
rangep = &(dlwp->dl_qos_range1);
selp = &(dlwp->dl_qos_sel1);
/*
* This driver supports only version 2 connectionless DLPI provider
* nodes.
*/
dlp->dl_service_mode = DL_CLDLS;
dlp->dl_version = DL_VERSION_2;
/*
* Set the style of the provider
*/
dlp->dl_provider_style = dsp->ds_style;
ASSERT(dlp->dl_provider_style == DL_STYLE1 ||
dlp->dl_provider_style == DL_STYLE2);
/*
* Set the current DLPI state.
*/
dlp->dl_current_state = dsp->ds_dlstate;
/*
* Gratuitously set the media type. This is to deal with modules
* that assume the media type is known prior to DL_ATTACH_REQ
* being completed.
*/
dlp->dl_mac_type = DL_ETHER;
/*
* If the stream is not at least attached we try to retrieve the
* mac_info using mac_info_get()
*/
if (dsp->ds_dlstate == DL_UNATTACHED ||
dsp->ds_dlstate == DL_ATTACH_PENDING ||
dsp->ds_dlstate == DL_DETACH_PENDING) {
if (!mac_info_get(ddi_major_to_name(dsp->ds_major), &minfo)) {
/*
* Cannot find mac_info. giving up.
*/
goto done;
}
minfop = &minfo;
} else {
minfop = (mac_info_t *)dsp->ds_mip;
}
/*
* Set the media type (properly this time).
*/
dlp->dl_mac_type = minfop->mi_media;
/*
* Set the DLSAP length. We only support 16 bit values and they
* appear after the MAC address portion of DLSAP addresses.
*/
sap_length = sizeof (uint16_t);
dlp->dl_sap_length = NEG(sap_length);
/*
* Set the minimum and maximum payload sizes.
*/
dlp->dl_min_sdu = minfop->mi_sdu_min;
dlp->dl_max_sdu = minfop->mi_sdu_max;
addr_length = minfop->mi_addr_length;
ASSERT(addr_length != 0);
/*
* Copy in the media broadcast address.
*/
dlp->dl_brdcst_addr_offset = (uintptr_t)brdcst_addr - (uintptr_t)dlp;
bcopy(minfop->mi_brdcst_addr, brdcst_addr, addr_length);
dlp->dl_brdcst_addr_length = addr_length;
/*
* We only support QoS information for VLAN interfaces.
*/
if (dsp->ds_vid != VLAN_ID_NONE) {
dlp->dl_qos_range_offset = (uintptr_t)rangep - (uintptr_t)dlp;
dlp->dl_qos_range_length = sizeof (dl_qos_cl_range1_t);
rangep->dl_qos_type = DL_QOS_CL_RANGE1;
rangep->dl_trans_delay.dl_target_value = DL_UNKNOWN;
rangep->dl_trans_delay.dl_accept_value = DL_UNKNOWN;
rangep->dl_protection.dl_min = DL_UNKNOWN;
rangep->dl_protection.dl_max = DL_UNKNOWN;
rangep->dl_residual_error = DL_UNKNOWN;
/*
* Specify the supported range of priorities.
*/
rangep->dl_priority.dl_min = 0;
rangep->dl_priority.dl_max = (1 << VLAN_PRI_SIZE) - 1;
dlp->dl_qos_offset = (uintptr_t)selp - (uintptr_t)dlp;
dlp->dl_qos_length = sizeof (dl_qos_cl_sel1_t);
selp->dl_qos_type = DL_QOS_CL_SEL1;
selp->dl_trans_delay = DL_UNKNOWN;
selp->dl_protection = DL_UNKNOWN;
selp->dl_residual_error = DL_UNKNOWN;
/*
* Specify the current priority (which can be changed by
* the DL_UDQOS_REQ primitive).
*/
selp->dl_priority = dsp->ds_pri;
} else {
/*
* Shorten the buffer to lose the unused QoS information
* structures.
*/
mp->b_wptr = (uint8_t *)rangep;
}
dlp->dl_addr_length = addr_length + sizeof (uint16_t);
if (dsp->ds_dlstate == DL_IDLE) {
/*
* The stream is bound. Therefore we can formulate a valid
* DLSAP address.
*/
dlp->dl_addr_offset = (uintptr_t)addr - (uintptr_t)dlp;
bcopy(dsp->ds_curr_addr, addr, addr_length);
*(uint16_t *)(addr + addr_length) = dsp->ds_sap;
}
done:
ASSERT(IMPLY(dlp->dl_qos_offset != 0, dlp->dl_qos_length != 0));
ASSERT(IMPLY(dlp->dl_qos_range_offset != 0,
dlp->dl_qos_range_length != 0));
ASSERT(IMPLY(dlp->dl_addr_offset != 0, dlp->dl_addr_length != 0));
ASSERT(IMPLY(dlp->dl_brdcst_addr_offset != 0,
dlp->dl_brdcst_addr_length != 0));
rw_exit(&dsp->ds_lock);
qreply(q, mp);
return (B_TRUE);
}
/*
* DL_ATTACH_REQ
*/
static boolean_t
proto_attach_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_attach_req_t *dlp = (dl_attach_req_t *)udlp;
int err = 0;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
rw_enter(&dsp->ds_lock, RW_WRITER);
if (MBLKL(mp) < sizeof (dl_attach_req_t) ||
dlp->dl_ppa < 0 || dsp->ds_style == DL_STYLE1) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_dlstate != DL_UNATTACHED) {
dl_err = DL_OUTSTATE;
goto failed;
}
dsp->ds_dlstate = DL_ATTACH_PENDING;
err = dld_str_attach(dsp, dlp->dl_ppa);
if (err != 0) {
switch (err) {
case ENOENT:
dl_err = DL_BADPPA;
err = 0;
break;
default:
dl_err = DL_SYSERR;
break;
}
dsp->ds_dlstate = DL_UNATTACHED;
goto failed;
}
ASSERT(dsp->ds_dlstate == DL_UNBOUND);
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_ATTACH_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_ATTACH_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_DETACH_REQ
*/
/*ARGSUSED*/
static boolean_t
proto_detach_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
queue_t *q = dsp->ds_wq;
t_uscalar_t dl_err;
rw_enter(&dsp->ds_lock, RW_WRITER);
if (MBLKL(mp) < sizeof (dl_detach_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_dlstate != DL_UNBOUND) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (dsp->ds_style == DL_STYLE1) {
dl_err = DL_BADPRIM;
goto failed;
}
dsp->ds_dlstate = DL_DETACH_PENDING;
/*
* Complete the detach when the driver is single-threaded.
*/
mutex_enter(&dsp->ds_thr_lock);
ASSERT(dsp->ds_detach_req == NULL);
dsp->ds_detach_req = mp;
mutex_exit(&dsp->ds_thr_lock);
rw_exit(&dsp->ds_lock);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_DETACH_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* DL_BIND_REQ
*/
static boolean_t
proto_bind_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_bind_req_t *dlp = (dl_bind_req_t *)udlp;
int err = 0;
uint8_t addr[MAXADDRLEN];
uint_t addr_length;
t_uscalar_t dl_err;
t_scalar_t sap;
queue_t *q = dsp->ds_wq;
if (MBLKL(mp) < sizeof (dl_bind_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dlp->dl_xidtest_flg != 0) {
dl_err = DL_NOAUTO;
goto failed;
}
if (dlp->dl_service_mode != DL_CLDLS) {
dl_err = DL_UNSUPPORTED;
goto failed;
}
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate != DL_UNBOUND) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED &&
!dls_active_set(dsp->ds_dc)) {
dl_err = DL_SYSERR;
err = EBUSY;
goto failed;
}
dsp->ds_dlstate = DL_BIND_PENDING;
/*
* Set the receive callback.
*/
dls_rx_set(dsp->ds_dc, (dsp->ds_mode == DLD_RAW) ?
dld_str_rx_raw : dld_str_rx_unitdata, dsp);
/*
* Bind the channel such that it can receive packets.
*/
sap = dsp->ds_sap = dlp->dl_sap;
err = dls_bind(dsp->ds_dc, dlp->dl_sap);
if (err != 0) {
switch (err) {
case EINVAL:
dl_err = DL_BADADDR;
err = 0;
break;
default:
dl_err = DL_SYSERR;
break;
}
dsp->ds_dlstate = DL_UNBOUND;
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dls_active_clear(dsp->ds_dc);
goto failed;
}
/*
* Copy in MAC address.
*/
addr_length = dsp->ds_mip->mi_addr_length;
bcopy(dsp->ds_curr_addr, addr, addr_length);
/*
* Copy in the DLSAP.
*/
*(uint16_t *)(addr + addr_length) = dsp->ds_sap;
addr_length += sizeof (uint16_t);
dsp->ds_dlstate = DL_IDLE;
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dsp->ds_passivestate = DLD_ACTIVE;
rw_exit(&dsp->ds_lock);
dlbindack(q, mp, sap, (void *)addr, addr_length, 0, 0);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_BIND_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_UNBIND_REQ
*/
/*ARGSUSED*/
static boolean_t
proto_unbind_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
queue_t *q = dsp->ds_wq;
t_uscalar_t dl_err;
rw_enter(&dsp->ds_lock, RW_WRITER);
if (MBLKL(mp) < sizeof (dl_unbind_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_dlstate != DL_IDLE) {
dl_err = DL_OUTSTATE;
goto failed;
}
dsp->ds_dlstate = DL_UNBIND_PENDING;
/*
* Flush any remaining packets scheduled for transmission.
*/
dld_tx_flush(dsp);
/*
* Unbind the channel to stop packets being received.
*/
dls_unbind(dsp->ds_dc);
/*
* Disable polling mode, if it is enabled.
*/
proto_poll_disable(dsp);
/*
* Clear the receive callback.
*/
dls_rx_set(dsp->ds_dc, NULL, NULL);
/*
* Set the mode back to the default (unitdata).
*/
dsp->ds_mode = DLD_UNITDATA;
dsp->ds_dlstate = DL_UNBOUND;
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_UNBIND_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_UNBIND_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* DL_PROMISCON_REQ
*/
static boolean_t
proto_promiscon_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_promiscon_req_t *dlp = (dl_promiscon_req_t *)udlp;
int err = 0;
t_uscalar_t dl_err;
uint32_t promisc_saved;
queue_t *q = dsp->ds_wq;
if (MBLKL(mp) < sizeof (dl_promiscon_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
promisc_saved = dsp->ds_promisc;
switch (dlp->dl_level) {
case DL_PROMISC_SAP:
dsp->ds_promisc |= DLS_PROMISC_SAP;
break;
case DL_PROMISC_MULTI:
dsp->ds_promisc |= DLS_PROMISC_MULTI;
break;
case DL_PROMISC_PHYS:
dsp->ds_promisc |= DLS_PROMISC_PHYS;
break;
default:
dl_err = DL_NOTSUPPORTED;
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED &&
!dls_active_set(dsp->ds_dc)) {
dsp->ds_promisc = promisc_saved;
dl_err = DL_SYSERR;
err = EBUSY;
goto failed;
}
/*
* Adjust channel promiscuity.
*/
err = dls_promisc(dsp->ds_dc, dsp->ds_promisc);
if (err != 0) {
dl_err = DL_SYSERR;
dsp->ds_promisc = promisc_saved;
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dls_active_clear(dsp->ds_dc);
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dsp->ds_passivestate = DLD_ACTIVE;
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_PROMISCON_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_PROMISCON_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_PROMISCOFF_REQ
*/
static boolean_t
proto_promiscoff_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_promiscoff_req_t *dlp = (dl_promiscoff_req_t *)udlp;
int err = 0;
t_uscalar_t dl_err;
uint32_t promisc_saved;
queue_t *q = dsp->ds_wq;
if (MBLKL(mp) < sizeof (dl_promiscoff_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
promisc_saved = dsp->ds_promisc;
switch (dlp->dl_level) {
case DL_PROMISC_SAP:
if (!(dsp->ds_promisc & DLS_PROMISC_SAP)) {
dl_err = DL_NOTENAB;
goto failed;
}
dsp->ds_promisc &= ~DLS_PROMISC_SAP;
break;
case DL_PROMISC_MULTI:
if (!(dsp->ds_promisc & DLS_PROMISC_MULTI)) {
dl_err = DL_NOTENAB;
goto failed;
}
dsp->ds_promisc &= ~DLS_PROMISC_MULTI;
break;
case DL_PROMISC_PHYS:
if (!(dsp->ds_promisc & DLS_PROMISC_PHYS)) {
dl_err = DL_NOTENAB;
goto failed;
}
dsp->ds_promisc &= ~DLS_PROMISC_PHYS;
break;
default:
dl_err = DL_NOTSUPPORTED;
goto failed;
}
/*
* Adjust channel promiscuity.
*/
err = dls_promisc(dsp->ds_dc, dsp->ds_promisc);
if (err != 0) {
dsp->ds_promisc = promisc_saved;
dl_err = DL_SYSERR;
goto failed;
}
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_PROMISCOFF_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_PROMISCOFF_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_ENABMULTI_REQ
*/
static boolean_t
proto_enabmulti_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_enabmulti_req_t *dlp = (dl_enabmulti_req_t *)udlp;
int err = 0;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (MBLKL(mp) < sizeof (dl_enabmulti_req_t) ||
!MBLKIN(mp, dlp->dl_addr_offset, dlp->dl_addr_length) ||
dlp->dl_addr_length != dsp->ds_mip->mi_addr_length) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED &&
!dls_active_set(dsp->ds_dc)) {
dl_err = DL_SYSERR;
err = EBUSY;
goto failed;
}
err = dls_multicst_add(dsp->ds_dc, mp->b_rptr + dlp->dl_addr_offset);
if (err != 0) {
switch (err) {
case EINVAL:
dl_err = DL_BADADDR;
err = 0;
break;
case ENOSPC:
dl_err = DL_TOOMANY;
err = 0;
break;
default:
dl_err = DL_SYSERR;
break;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dls_active_clear(dsp->ds_dc);
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dsp->ds_passivestate = DLD_ACTIVE;
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_ENABMULTI_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_ENABMULTI_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_DISABMULTI_REQ
*/
static boolean_t
proto_disabmulti_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_disabmulti_req_t *dlp = (dl_disabmulti_req_t *)udlp;
int err = 0;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
rw_enter(&dsp->ds_lock, RW_READER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (MBLKL(mp) < sizeof (dl_disabmulti_req_t) ||
!MBLKIN(mp, dlp->dl_addr_offset, dlp->dl_addr_length) ||
dlp->dl_addr_length != dsp->ds_mip->mi_addr_length) {
dl_err = DL_BADPRIM;
goto failed;
}
err = dls_multicst_remove(dsp->ds_dc, mp->b_rptr + dlp->dl_addr_offset);
if (err != 0) {
switch (err) {
case EINVAL:
dl_err = DL_BADADDR;
err = 0;
break;
case ENOENT:
dl_err = DL_NOTENAB;
err = 0;
break;
default:
dl_err = DL_SYSERR;
break;
}
goto failed;
}
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_DISABMULTI_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_DISABMULTI_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_PHYS_ADDR_REQ
*/
static boolean_t
proto_physaddr_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_phys_addr_req_t *dlp = (dl_phys_addr_req_t *)udlp;
queue_t *q = dsp->ds_wq;
t_uscalar_t dl_err;
char *addr;
uint_t addr_length;
rw_enter(&dsp->ds_lock, RW_READER);
if (MBLKL(mp) < sizeof (dl_phys_addr_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (dlp->dl_addr_type != DL_CURR_PHYS_ADDR &&
dlp->dl_addr_type != DL_FACT_PHYS_ADDR) {
dl_err = DL_UNSUPPORTED;
goto failed;
}
addr_length = dsp->ds_mip->mi_addr_length;
addr = kmem_alloc(addr_length, KM_NOSLEEP);
if (addr == NULL) {
rw_exit(&dsp->ds_lock);
merror(q, mp, ENOSR);
return (B_FALSE);
}
/*
* Copy out the address before we drop the lock; we don't
* want to call dlphysaddrack() while holding ds_lock.
*/
bcopy((dlp->dl_addr_type == DL_CURR_PHYS_ADDR) ?
dsp->ds_curr_addr : dsp->ds_fact_addr, addr, addr_length);
rw_exit(&dsp->ds_lock);
dlphysaddrack(q, mp, addr, (t_uscalar_t)addr_length);
kmem_free(addr, addr_length);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_PHYS_ADDR_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* DL_SET_PHYS_ADDR_REQ
*/
static boolean_t
proto_setphysaddr_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_set_phys_addr_req_t *dlp = (dl_set_phys_addr_req_t *)udlp;
int err = 0;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (MBLKL(mp) < sizeof (dl_set_phys_addr_req_t) ||
!MBLKIN(mp, dlp->dl_addr_offset, dlp->dl_addr_length) ||
dlp->dl_addr_length != dsp->ds_mip->mi_addr_length) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED &&
!dls_active_set(dsp->ds_dc)) {
dl_err = DL_SYSERR;
err = EBUSY;
goto failed;
}
err = mac_unicst_set(dsp->ds_mh, mp->b_rptr + dlp->dl_addr_offset);
if (err != 0) {
switch (err) {
case EINVAL:
dl_err = DL_BADADDR;
err = 0;
break;
default:
dl_err = DL_SYSERR;
break;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dls_active_clear(dsp->ds_dc);
goto failed;
}
if (dsp->ds_passivestate == DLD_UNINITIALIZED)
dsp->ds_passivestate = DLD_ACTIVE;
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_SET_PHYS_ADDR_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_SET_PHYS_ADDR_REQ, dl_err, (t_uscalar_t)err);
return (B_FALSE);
}
/*
* DL_UDQOS_REQ
*/
static boolean_t
proto_udqos_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_udqos_req_t *dlp = (dl_udqos_req_t *)udlp;
dl_qos_cl_sel1_t *selp;
int off, len;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
off = dlp->dl_qos_offset;
len = dlp->dl_qos_length;
if (MBLKL(mp) < sizeof (dl_udqos_req_t) || !MBLKIN(mp, off, len)) {
dl_err = DL_BADPRIM;
goto failed;
}
selp = (dl_qos_cl_sel1_t *)(mp->b_rptr + off);
if (selp->dl_qos_type != DL_QOS_CL_SEL1) {
dl_err = DL_BADQOSTYPE;
goto failed;
}
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_vid == VLAN_ID_NONE ||
selp->dl_priority > (1 << VLAN_PRI_SIZE) - 1 ||
selp->dl_priority < 0) {
dl_err = DL_BADQOSPARAM;
goto failed;
}
dsp->ds_pri = selp->dl_priority;
rw_exit(&dsp->ds_lock);
dlokack(q, mp, DL_UDQOS_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_UDQOS_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* DL_CAPABILITY_REQ
*/
/*ARGSUSED*/
static boolean_t
proto_capability_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_capability_req_t *dlp = (dl_capability_req_t *)udlp;
dl_capability_sub_t *sp;
size_t size, len;
offset_t off, end;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
boolean_t upgraded;
rw_enter(&dsp->ds_lock, RW_READER);
if (MBLKL(mp) < sizeof (dl_capability_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
/*
* This request is overloaded. If there are no requested capabilities
* then we just want to acknowledge with all the capabilities we
* support. Otherwise we enable the set of capabilities requested.
*/
if (dlp->dl_sub_length == 0) {
/* callee drops lock */
return (proto_capability_advertise(dsp, mp));
}
if (!MBLKIN(mp, dlp->dl_sub_offset, dlp->dl_sub_length)) {
dl_err = DL_BADPRIM;
goto failed;
}
dlp->dl_primitive = DL_CAPABILITY_ACK;
off = dlp->dl_sub_offset;
len = dlp->dl_sub_length;
/*
* Walk the list of capabilities to be enabled.
*/
upgraded = B_FALSE;
for (end = off + len; off < end; ) {
sp = (dl_capability_sub_t *)(mp->b_rptr + off);
size = sizeof (dl_capability_sub_t) + sp->dl_length;
if (off + size > end ||
!IS_P2ALIGNED(off, sizeof (uint32_t))) {
dl_err = DL_BADPRIM;
goto failed;
}
switch (sp->dl_cap) {
/*
* TCP/IP checksum offload to hardware.
*/
case DL_CAPAB_HCKSUM: {
dl_capab_hcksum_t *hcksump;
dl_capab_hcksum_t hcksum;
ASSERT(dsp->ds_mip->mi_cksum != 0);
hcksump = (dl_capab_hcksum_t *)&sp[1];
/*
* Copy for alignment.
*/
bcopy(hcksump, &hcksum, sizeof (dl_capab_hcksum_t));
dlcapabsetqid(&(hcksum.hcksum_mid), dsp->ds_rq);
bcopy(&hcksum, hcksump, sizeof (dl_capab_hcksum_t));
break;
}
/*
* IP polling interface.
*/
case DL_CAPAB_POLL: {
dl_capab_poll_t *pollp;
dl_capab_poll_t poll;
pollp = (dl_capab_poll_t *)&sp[1];
/*
* Copy for alignment.
*/
bcopy(pollp, &poll, sizeof (dl_capab_poll_t));
/*
* We need to become writer before enabling and/or
* disabling the polling interface. If we couldn'
* upgrade, check state again after re-acquiring the
* lock to make sure we can proceed.
*/
if (!upgraded && !rw_tryupgrade(&dsp->ds_lock)) {
rw_exit(&dsp->ds_lock);
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
}
upgraded = B_TRUE;
switch (poll.poll_flags) {
default:
/*FALLTHRU*/
case POLL_DISABLE:
proto_poll_disable(dsp);
break;
case POLL_ENABLE:
ASSERT(!(dld_opt & DLD_OPT_NO_POLL));
/*
* Make sure polling is disabled.
*/
proto_poll_disable(dsp);
/*
* Now attempt enable it.
*/
if (!proto_poll_enable(dsp, &poll))
break;
bzero(&poll, sizeof (dl_capab_poll_t));
poll.poll_flags = POLL_ENABLE;
break;
}
dlcapabsetqid(&(poll.poll_mid), dsp->ds_rq);
bcopy(&poll, pollp, sizeof (dl_capab_poll_t));
break;
}
default:
break;
}
off += size;
}
rw_exit(&dsp->ds_lock);
qreply(q, mp);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_CAPABILITY_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* DL_NOTIFY_REQ
*/
static boolean_t
proto_notify_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
dl_notify_req_t *dlp = (dl_notify_req_t *)udlp;
t_uscalar_t dl_err;
queue_t *q = dsp->ds_wq;
uint_t note =
DL_NOTE_PROMISC_ON_PHYS |
DL_NOTE_PROMISC_OFF_PHYS |
DL_NOTE_PHYS_ADDR |
DL_NOTE_LINK_UP |
DL_NOTE_LINK_DOWN |
DL_NOTE_CAPAB_RENEG;
if (MBLKL(mp) < sizeof (dl_notify_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
rw_enter(&dsp->ds_lock, RW_WRITER);
if (dsp->ds_dlstate == DL_UNATTACHED ||
DL_ACK_PENDING(dsp->ds_dlstate)) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (dsp->ds_mip->mi_stat[MAC_STAT_IFSPEED])
note |= DL_NOTE_SPEED;
/*
* Cache the notifications that are being enabled.
*/
dsp->ds_notifications = dlp->dl_notifications & note;
rw_exit(&dsp->ds_lock);
/*
* The ACK carries all notifications regardless of which set is
* being enabled.
*/
dlnotifyack(q, mp, note);
/*
* Solicit DL_NOTIFY_IND messages for each enabled notification.
*/
rw_enter(&dsp->ds_lock, RW_READER);
if (dsp->ds_notifications != 0) {
rw_exit(&dsp->ds_lock);
dld_str_notify_ind(dsp);
} else {
rw_exit(&dsp->ds_lock);
}
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_NOTIFY_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* DL_UINTDATA_REQ
*/
static boolean_t
proto_unitdata_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
queue_t *q = dsp->ds_wq;
dl_unitdata_req_t *dlp = (dl_unitdata_req_t *)udlp;
off_t off;
size_t len, size;
const uint8_t *addr;
uint16_t sap;
uint_t addr_length;
mblk_t *bp, *cont;
uint32_t start, stuff, end, value, flags;
t_uscalar_t dl_err;
rw_enter(&dsp->ds_lock, RW_READER);
if (MBLKL(mp) < sizeof (dl_unitdata_req_t) || mp->b_cont == NULL) {
dl_err = DL_BADPRIM;
goto failed;
}
if (dsp->ds_dlstate != DL_IDLE) {
dl_err = DL_OUTSTATE;
goto failed;
}
addr_length = dsp->ds_mip->mi_addr_length;
off = dlp->dl_dest_addr_offset;
len = dlp->dl_dest_addr_length;
if (!MBLKIN(mp, off, len) || !IS_P2ALIGNED(off, sizeof (uint16_t))) {
dl_err = DL_BADPRIM;
goto failed;
}
if (len != addr_length + sizeof (uint16_t)) {
dl_err = DL_BADADDR;
goto failed;
}
addr = mp->b_rptr + off;
sap = *(uint16_t *)(mp->b_rptr + off + addr_length);
/*
* Check the length of the packet and the block types.
*/
size = 0;
cont = mp->b_cont;
for (bp = cont; bp != NULL; bp = bp->b_cont) {
if (DB_TYPE(bp) != M_DATA)
goto baddata;
size += MBLKL(bp);
}
if (size > dsp->ds_mip->mi_sdu_max)
goto baddata;
/*
* Build a packet header.
*/
if ((bp = dls_header(dsp->ds_dc, addr, sap, dsp->ds_pri)) == NULL) {
dl_err = DL_BADADDR;
goto failed;
}
/*
* We no longer need the M_PROTO header, so free it.
*/
freeb(mp);
/*
* Transfer the checksum offload information if it is present.
*/
hcksum_retrieve(cont, NULL, NULL, &start, &stuff, &end, &value,
&flags);
(void) hcksum_assoc(bp, NULL, NULL, start, stuff, end, value, flags,
0);
/*
* Link the payload onto the new header.
*/
ASSERT(bp->b_cont == NULL);
bp->b_cont = cont;
str_mdata_fastpath_put(dsp, bp);
rw_exit(&dsp->ds_lock);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_UNITDATA_REQ, dl_err, 0);
return (B_FALSE);
baddata:
rw_exit(&dsp->ds_lock);
dluderrorind(q, mp, (void *)addr, len, DL_BADDATA, 0);
return (B_FALSE);
}
/*
* DL_PASSIVE_REQ
*/
/* ARGSUSED */
static boolean_t
proto_passive_req(dld_str_t *dsp, union DL_primitives *udlp, mblk_t *mp)
{
t_uscalar_t dl_err;
rw_enter(&dsp->ds_lock, RW_WRITER);
/*
* If we've already become active by issuing an active primitive,
* then it's too late to try to become passive.
*/
if (dsp->ds_passivestate == DLD_ACTIVE) {
dl_err = DL_OUTSTATE;
goto failed;
}
if (MBLKL(mp) < sizeof (dl_passive_req_t)) {
dl_err = DL_BADPRIM;
goto failed;
}
dsp->ds_passivestate = DLD_PASSIVE;
rw_exit(&dsp->ds_lock);
dlokack(dsp->ds_wq, mp, DL_PASSIVE_REQ);
return (B_TRUE);
failed:
rw_exit(&dsp->ds_lock);
dlerrorack(dsp->ds_wq, mp, DL_PASSIVE_REQ, dl_err, 0);
return (B_FALSE);
}
/*
* Catch-all handler.
*/
static boolean_t
proto_req(dld_str_t *dsp, union DL_primitives *dlp, mblk_t *mp)
{
dlerrorack(dsp->ds_wq, mp, dlp->dl_primitive, DL_UNSUPPORTED, 0);
return (B_FALSE);
}
static void
proto_poll_disable(dld_str_t *dsp)
{
mac_handle_t mh;
ASSERT(RW_WRITE_HELD(&dsp->ds_lock));
if (!dsp->ds_polling)
return;
/*
* It should be impossible to enable raw mode if polling is turned on.
*/
ASSERT(dsp->ds_mode != DLD_RAW);
/*
* Reset the resource_add callback.
*/
mh = dls_mac(dsp->ds_dc);
mac_resource_set(mh, NULL, NULL);
/*
* Set receive function back to default.
*/
dls_rx_set(dsp->ds_dc, (dsp->ds_mode == DLD_FASTPATH) ?
dld_str_rx_fastpath : dld_str_rx_unitdata, (void *)dsp);
/*
* Note that polling is disabled.
*/
dsp->ds_polling = B_FALSE;
}
static boolean_t
proto_poll_enable(dld_str_t *dsp, dl_capab_poll_t *pollp)
{
mac_handle_t mh;
ASSERT(RW_WRITE_HELD(&dsp->ds_lock));
ASSERT(!dsp->ds_polling);
/*
* We cannot enable polling if raw mode
* has been enabled.
*/
if (dsp->ds_mode == DLD_RAW)
return (B_FALSE);
mh = dls_mac(dsp->ds_dc);
/*
* Register resources.
*/
mac_resource_set(mh, (mac_resource_add_t)pollp->poll_ring_add,
(void *)pollp->poll_rx_handle);
mac_resources(mh);
/*
* Set the receive function.
*/
dls_rx_set(dsp->ds_dc, (dls_rx_t)pollp->poll_rx,
(void *)pollp->poll_rx_handle);
/*
* Note that polling is enabled. This prevents further DLIOCHDRINFO
* ioctls from overwriting the receive function pointer.
*/
dsp->ds_polling = B_TRUE;
return (B_TRUE);
}
/*
* DL_CAPABILITY_ACK/DL_ERROR_ACK
*/
static boolean_t
proto_capability_advertise(dld_str_t *dsp, mblk_t *mp)
{
dl_capability_ack_t *dlap;
dl_capability_sub_t *dlsp;
size_t subsize;
dl_capab_poll_t poll;
dl_capab_hcksum_t hcksum;
dl_capab_zerocopy_t zcopy;
uint8_t *ptr;
uint32_t cksum;
boolean_t poll_cap;
queue_t *q = dsp->ds_wq;
mblk_t *mp1;
ASSERT(RW_READ_HELD(&dsp->ds_lock));
/*
* Initially assume no capabilities.
*/
subsize = 0;
/*
* Check if polling can be enabled on this interface.
* If advertising DL_CAPAB_POLL has not been explicitly disabled
* then reserve space for that capability.
*/
poll_cap = ((dsp->ds_mip->mi_poll & DL_CAPAB_POLL) &&
!(dld_opt & DLD_OPT_NO_POLL) && (dsp->ds_vid == VLAN_ID_NONE));
if (poll_cap) {
subsize += sizeof (dl_capability_sub_t) +
sizeof (dl_capab_poll_t);
}
/*
* If the MAC interface supports checksum offload then reserve
* space for the DL_CAPAB_HCKSUM capability.
*/
if ((cksum = dsp->ds_mip->mi_cksum) != 0) {
subsize += sizeof (dl_capability_sub_t) +
sizeof (dl_capab_hcksum_t);
}
/*
* If DL_CAPAB_ZEROCOPY has not be explicitly disabled then
* reserve space for it.
*/
if (!(dld_opt & DLD_OPT_NO_ZEROCOPY)) {
subsize += sizeof (dl_capability_sub_t) +
sizeof (dl_capab_zerocopy_t);
}
/*
* If there are no capabilities to advertise or if we
* can't allocate a response, send a DL_ERROR_ACK.
*/
if (subsize == 0 || (mp1 = reallocb(mp,
sizeof (dl_capability_ack_t) + subsize, 0)) == NULL) {
rw_exit(&dsp->ds_lock);
dlerrorack(q, mp, DL_CAPABILITY_REQ, DL_NOTSUPPORTED, 0);
return (B_FALSE);
}
mp = mp1;
DB_TYPE(mp) = M_PROTO;
mp->b_wptr = mp->b_rptr + sizeof (dl_capability_ack_t) + subsize;
bzero(mp->b_rptr, MBLKL(mp));
dlap = (dl_capability_ack_t *)mp->b_rptr;
dlap->dl_primitive = DL_CAPABILITY_ACK;
dlap->dl_sub_offset = sizeof (dl_capability_ack_t);
dlap->dl_sub_length = subsize;
ptr = (uint8_t *)&dlap[1];
/*
* IP polling interface.
*/
if (poll_cap) {
/*
* Attempt to disable just in case this is a re-negotiation;
* we need to become writer before doing so.
*/
if (!rw_tryupgrade(&dsp->ds_lock)) {
rw_exit(&dsp->ds_lock);
rw_enter(&dsp->ds_lock, RW_WRITER);
}
/*
* Check if polling state has changed after we re-acquired
* the lock above, so that we don't mis-advertise it.
*/
poll_cap = ((dsp->ds_mip->mi_poll & DL_CAPAB_POLL) &&
!(dld_opt & DLD_OPT_NO_POLL) &&
(dsp->ds_vid == VLAN_ID_NONE));
if (!poll_cap) {
int poll_capab_size;
rw_downgrade(&dsp->ds_lock);
poll_capab_size = sizeof (dl_capability_sub_t) +
sizeof (dl_capab_poll_t);
mp->b_wptr -= poll_capab_size;
subsize -= poll_capab_size;
dlap->dl_sub_length = subsize;
} else {
proto_poll_disable(dsp);
rw_downgrade(&dsp->ds_lock);
dlsp = (dl_capability_sub_t *)ptr;
dlsp->dl_cap = DL_CAPAB_POLL;
dlsp->dl_length = sizeof (dl_capab_poll_t);
ptr += sizeof (dl_capability_sub_t);
bzero(&poll, sizeof (dl_capab_poll_t));
poll.poll_version = POLL_VERSION_1;
poll.poll_flags = POLL_CAPABLE;
poll.poll_tx_handle = (uintptr_t)dsp;
poll.poll_tx = (uintptr_t)str_mdata_fastpath_put;
dlcapabsetqid(&(poll.poll_mid), dsp->ds_rq);
bcopy(&poll, ptr, sizeof (dl_capab_poll_t));
ptr += sizeof (dl_capab_poll_t);
}
}
ASSERT(RW_READ_HELD(&dsp->ds_lock));
/*
* TCP/IP checksum offload.
*/
if (cksum != 0) {
dlsp = (dl_capability_sub_t *)ptr;
dlsp->dl_cap = DL_CAPAB_HCKSUM;
dlsp->dl_length = sizeof (dl_capab_hcksum_t);
ptr += sizeof (dl_capability_sub_t);
bzero(&hcksum, sizeof (dl_capab_hcksum_t));
hcksum.hcksum_version = HCKSUM_VERSION_1;
hcksum.hcksum_txflags = cksum;
dlcapabsetqid(&(hcksum.hcksum_mid), dsp->ds_rq);
bcopy(&hcksum, ptr, sizeof (dl_capab_hcksum_t));
ptr += sizeof (dl_capab_hcksum_t);
}
/*
* Zero copy
*/
if (!(dld_opt & DLD_OPT_NO_ZEROCOPY)) {
dlsp = (dl_capability_sub_t *)ptr;
dlsp->dl_cap = DL_CAPAB_ZEROCOPY;
dlsp->dl_length = sizeof (dl_capab_zerocopy_t);
ptr += sizeof (dl_capability_sub_t);
bzero(&zcopy, sizeof (dl_capab_zerocopy_t));
zcopy.zerocopy_version = ZEROCOPY_VERSION_1;
zcopy.zerocopy_flags = DL_CAPAB_VMSAFE_MEM;
dlcapabsetqid(&(zcopy.zerocopy_mid), dsp->ds_rq);
bcopy(&zcopy, ptr, sizeof (dl_capab_zerocopy_t));
ptr += sizeof (dl_capab_zerocopy_t);
}
ASSERT(ptr == mp->b_rptr + sizeof (dl_capability_ack_t) + subsize);
rw_exit(&dsp->ds_lock);
qreply(q, mp);
return (B_TRUE);
}