xref: /illumos-gate/usr/src/uts/common/sys/dlpi.h (revision 032624d56c174c5c55126582b32e314a6af15522)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28 /*	  All Rights Reserved	*/
29 
30 
31 /*
32  * Data Link Provider Interface, Version 2.0
33  * Refer to document: "STREAMS DLPI Spec", 800-6915-01.
34  */
35 
36 #ifndef	_SYS_DLPI_H
37 #define	_SYS_DLPI_H
38 
39 #pragma ident	"%Z%%M%	%I%	%E% SMI"	/* SVr4.0 1.2	*/
40 
41 #include <sys/types.h>
42 #include <sys/stream.h>
43 
44 #ifdef	__cplusplus
45 extern "C" {
46 #endif
47 
48 /*
49  * Sun additions.
50  */
51 #define	DLIOC		('D' << 8)
52 #define	DLIOCRAW	(DLIOC|1)	/* M_DATA "raw" mode */
53 #define	DLIOCHDRINFO	(DLIOC|10)	/* IP fast-path */
54 
55 #define	DL_IOC_HDR_INFO	DLIOCHDRINFO
56 
57 /*
58  * DLPI revision definition history
59  */
60 #define	DL_CURRENT_VERSION	0x02	/* current version of dlpi */
61 #define	DL_VERSION_2		0x02	/* version of dlpi March 12, 1991 */
62 
63 /*
64  * Primitives for Local Management Services
65  */
66 #define	DL_INFO_REQ		0x00	/* Information Req */
67 #define	DL_INFO_ACK		0x03	/* Information Ack */
68 #define	DL_ATTACH_REQ		0x0b	/* Attach a PPA */
69 #define	DL_DETACH_REQ		0x0c	/* Detach a PPA */
70 #define	DL_BIND_REQ		0x01	/* Bind dlsap address */
71 #define	DL_BIND_ACK		0x04	/* Dlsap address bound */
72 #define	DL_UNBIND_REQ		0x02	/* Unbind dlsap address */
73 #define	DL_OK_ACK		0x06	/* Success acknowledgment */
74 #define	DL_ERROR_ACK		0x05	/* Error acknowledgment */
75 #define	DL_SUBS_BIND_REQ	0x1b	/* Bind Subsequent DLSAP address */
76 #define	DL_SUBS_BIND_ACK	0x1c	/* Subsequent DLSAP address bound */
77 #define	DL_SUBS_UNBIND_REQ	0x15	/* Subsequent unbind */
78 #define	DL_ENABMULTI_REQ	0x1d	/* Enable multicast addresses */
79 #define	DL_DISABMULTI_REQ	0x1e	/* Disable multicast addresses */
80 #define	DL_PROMISCON_REQ	0x1f	/* Turn on promiscuous mode */
81 #define	DL_PROMISCOFF_REQ	0x20	/* Turn off promiscuous mode */
82 
83 /*
84  * Solaris specific local management
85  */
86 #define	DL_NOTIFY_REQ		0x100	/* Enable notifications */
87 #define	DL_NOTIFY_ACK		0x101	/* Supported notifications */
88 #define	DL_NOTIFY_IND		0x102	/* Notification from provider */
89 #define	DL_AGGR_REQ		0x103	/* Enable link aggregation */
90 #define	DL_AGGR_IND		0x104	/* Result from link aggregation */
91 #define	DL_UNAGGR_REQ		0x105	/* Disable link aggregation */
92 #define	DL_CAPABILITY_REQ	0x110	/* Capability request */
93 #define	DL_CAPABILITY_ACK	0x111	/* Capability ack */
94 #define	DL_CONTROL_REQ		0x112	/* Device specific control request */
95 #define	DL_CONTROL_ACK		0x113	/* Device specific control ack */
96 #define	DL_PASSIVE_REQ		0x114	/* Allow access to aggregated link */
97 
98 
99 /*
100  * Primitives used for Connectionless Service
101  */
102 #define	DL_UNITDATA_REQ		0x07	/* datagram send request */
103 #define	DL_UNITDATA_IND		0x08	/* datagram receive indication */
104 #define	DL_UDERROR_IND		0x09	/* datagram error indication */
105 #define	DL_UDQOS_REQ		0x0a	/* set QOS for subsequent datagrams */
106 
107 /*
108  * Primitives used for Connection-Oriented Service
109  */
110 #define	DL_CONNECT_REQ		0x0d	/* Connect request */
111 #define	DL_CONNECT_IND		0x0e	/* Incoming connect indication */
112 #define	DL_CONNECT_RES		0x0f	/* Accept previous connect indication */
113 #define	DL_CONNECT_CON		0x10	/* Connection established */
114 
115 #define	DL_TOKEN_REQ		0x11	/* Passoff token request */
116 #define	DL_TOKEN_ACK		0x12	/* Passoff token ack */
117 
118 #define	DL_DISCONNECT_REQ	0x13	/* Disconnect request */
119 #define	DL_DISCONNECT_IND	0x14	/* Disconnect indication */
120 
121 #define	DL_RESET_REQ		0x17	/* Reset service request */
122 #define	DL_RESET_IND		0x18	/* Incoming reset indication */
123 #define	DL_RESET_RES		0x19	/* Complete reset processing */
124 #define	DL_RESET_CON		0x1a	/* Reset processing complete */
125 
126 /*
127  *  Primitives used for Acknowledged Connectionless Service
128  */
129 
130 #define	DL_DATA_ACK_REQ		0x21	/* data unit transmission request */
131 #define	DL_DATA_ACK_IND		0x22	/* Arrival of a command PDU */
132 #define	DL_DATA_ACK_STATUS_IND	0x23	/* Status indication of DATA_ACK_REQ */
133 #define	DL_REPLY_REQ		0x24	/* Request a DLSDU from the remote */
134 #define	DL_REPLY_IND		0x25	/* Arrival of a command PDU */
135 #define	DL_REPLY_STATUS_IND	0x26	/* Status indication of REPLY_REQ */
136 #define	DL_REPLY_UPDATE_REQ	0x27	/* Hold a DLSDU for transmission */
137 #define	DL_REPLY_UPDATE_STATUS_IND	0x28 /* Status of REPLY_UPDATE req */
138 
139 /*
140  * Primitives used for XID and TEST operations
141  */
142 
143 #define	DL_XID_REQ	0x29		/* Request to send an XID PDU */
144 #define	DL_XID_IND	0x2a		/* Arrival of an XID PDU */
145 #define	DL_XID_RES	0x2b		/* request to send a response XID PDU */
146 #define	DL_XID_CON	0x2c		/* Arrival of a response XID PDU */
147 #define	DL_TEST_REQ	0x2d		/* TEST command request */
148 #define	DL_TEST_IND	0x2e		/* TEST response indication */
149 #define	DL_TEST_RES	0x2f		/* TEST response */
150 #define	DL_TEST_CON	0x30		/* TEST Confirmation */
151 
152 /*
153  * Primitives to get and set the physical address, and to get
154  * Statistics
155  */
156 
157 #define	DL_PHYS_ADDR_REQ	0x31	/* Request to get physical addr */
158 #define	DL_PHYS_ADDR_ACK	0x32	/* Return physical addr */
159 #define	DL_SET_PHYS_ADDR_REQ	0x33	/* set physical addr */
160 #define	DL_GET_STATISTICS_REQ	0x34	/* Request to get statistics */
161 #define	DL_GET_STATISTICS_ACK	0x35	/* Return statistics */
162 
163 /*
164  * Invalid primitive
165  */
166 
167 #define	DL_PRIM_INVAL		0xffff	/* Invalid DL primitive value */
168 
169 /*
170  * DLPI interface states
171  */
172 #define	DL_UNATTACHED		0x04	/* PPA not attached */
173 #define	DL_ATTACH_PENDING	0x05	/* Waiting ack of DL_ATTACH_REQ */
174 #define	DL_DETACH_PENDING	0x06	/* Waiting ack of DL_DETACH_REQ */
175 #define	DL_UNBOUND		0x00	/* PPA attached */
176 #define	DL_BIND_PENDING		0x01	/* Waiting ack of DL_BIND_REQ */
177 #define	DL_UNBIND_PENDING	0x02	/* Waiting ack of DL_UNBIND_REQ */
178 #define	DL_IDLE			0x03	/* dlsap bound, awaiting use */
179 #define	DL_UDQOS_PENDING	0x07	/* Waiting ack of DL_UDQOS_REQ */
180 #define	DL_OUTCON_PENDING	0x08	/* awaiting DL_CONN_CON */
181 #define	DL_INCON_PENDING	0x09	/* awaiting DL_CONN_RES */
182 #define	DL_CONN_RES_PENDING	0x0a	/* Waiting ack of DL_CONNECT_RES */
183 #define	DL_DATAXFER		0x0b	/* connection-oriented data transfer */
184 #define	DL_USER_RESET_PENDING	0x0c	/* awaiting DL_RESET_CON */
185 #define	DL_PROV_RESET_PENDING	0x0d	/* awaiting DL_RESET_RES */
186 #define	DL_RESET_RES_PENDING	0x0e	/* Waiting ack of DL_RESET_RES */
187 #define	DL_DISCON8_PENDING	0x0f	/* Waiting ack of DL_DISC_REQ */
188 #define	DL_DISCON9_PENDING	0x10	/* Waiting ack of DL_DISC_REQ */
189 #define	DL_DISCON11_PENDING	0x11	/* Waiting ack of DL_DISC_REQ */
190 #define	DL_DISCON12_PENDING	0x12	/* Waiting ack of DL_DISC_REQ */
191 #define	DL_DISCON13_PENDING	0x13	/* Waiting ack of DL_DISC_REQ */
192 #define	DL_SUBS_BIND_PND	0x14	/* Waiting ack of DL_SUBS_BIND_REQ */
193 #define	DL_SUBS_UNBIND_PND	0x15	/* Waiting ack of DL_SUBS_UNBIND_REQ */
194 
195 
196 /*
197  * DL_ERROR_ACK error return values
198  */
199 #define	DL_ACCESS	0x02	/* Improper permissions for request */
200 #define	DL_BADADDR	0x01	/* DLSAP addr in improper format or invalid */
201 #define	DL_BADCORR	0x05	/* Seq number not from outstand DL_CONN_IND */
202 #define	DL_BADDATA	0x06	/* User data exceeded provider limit */
203 #define	DL_BADPPA	0x08	/* Specified PPA was invalid */
204 #define	DL_BADPRIM	0x09	/* Primitive received not known by provider */
205 #define	DL_BADQOSPARAM	0x0a	/* QOS parameters contained invalid values */
206 #define	DL_BADQOSTYPE	0x0b	/* QOS structure type is unknown/unsupported */
207 #define	DL_BADSAP	0x00	/* Bad LSAP selector */
208 #define	DL_BADTOKEN	0x0c	/* Token used not an active stream */
209 #define	DL_BOUND	0x0d	/* Attempted second bind with dl_max_conind */
210 #define	DL_INITFAILED	0x0e	/* Physical Link initialization failed */
211 #define	DL_NOADDR	0x0f	/* Provider couldn't allocate alt. address */
212 #define	DL_NOTINIT	0x10	/* Physical Link not initialized */
213 #define	DL_OUTSTATE	0x03	/* Primitive issued in improper state */
214 #define	DL_SYSERR	0x04	/* UNIX system error occurred */
215 #define	DL_UNSUPPORTED	0x07	/* Requested serv. not supplied by provider */
216 #define	DL_UNDELIVERABLE 0x11	/* Previous data unit could not be delivered */
217 #define	DL_NOTSUPPORTED  0x12	/* Primitive is known but not supported */
218 #define	DL_TOOMANY	0x13	/* limit exceeded	*/
219 #define	DL_NOTENAB	0x14	/* Promiscuous mode not enabled */
220 #define	DL_BUSY		0x15	/* Other streams for PPA in post-attached */
221 
222 #define	DL_NOAUTO	0x16	/* Automatic handling XID&TEST not supported */
223 #define	DL_NOXIDAUTO	0x17    /* Automatic handling of XID not supported */
224 #define	DL_NOTESTAUTO	0x18	/* Automatic handling of TEST not supported */
225 #define	DL_XIDAUTO	0x19	/* Automatic handling of XID response */
226 #define	DL_TESTAUTO	0x1a	/* AUtomatic handling of TEST response */
227 #define	DL_PENDING	0x1b	/* pending outstanding connect indications */
228 
229 /*
230  * DLPI media types supported
231  */
232 #define	DL_CSMACD	0x0	/* IEEE 802.3 CSMA/CD network */
233 #define	DL_TPB		0x1	/* IEEE 802.4 Token Passing Bus */
234 #define	DL_TPR		0x2	/* IEEE 802.5 Token Passing Ring */
235 #define	DL_METRO	0x3	/* IEEE 802.6 Metro Net */
236 #define	DL_ETHER	0x4	/* Ethernet Bus */
237 #define	DL_HDLC		0x05	/* ISO HDLC protocol support */
238 #define	DL_CHAR		0x06	/* Character Synchronous protocol support */
239 #define	DL_CTCA		0x07	/* IBM Channel-to-Channel Adapter */
240 #define	DL_FDDI		0x08	/* Fiber Distributed data interface */
241 #define	DL_FC		0x10	/* Fibre Channel interface */
242 #define	DL_ATM		0x11	/* ATM */
243 #define	DL_IPATM	0x12	/* ATM Classical IP interface */
244 #define	DL_X25		0x13	/* X.25 LAPB interface */
245 #define	DL_ISDN		0x14	/* ISDN interface */
246 #define	DL_HIPPI	0x15	/* HIPPI interface */
247 #define	DL_100VG	0x16	/* 100 Based VG Ethernet */
248 #define	DL_100VGTPR	0x17	/* 100 Based VG Token Ring */
249 #define	DL_ETH_CSMA	0x18	/* ISO 8802/3 and Ethernet */
250 #define	DL_100BT	0x19	/* 100 Base T */
251 #define	DL_IB		0x1a	/* Infiniband */
252 #define	DL_FRAME	0x0a	/* Frame Relay LAPF */
253 #define	DL_MPFRAME	0x0b	/* Multi-protocol over Frame Relay */
254 #define	DL_ASYNC	0x0c	/* Character Asynchronous Protocol */
255 #define	DL_IPX25	0x0d	/* X.25 Classical IP interface */
256 #define	DL_LOOP		0x0e	/* software loopback */
257 #define	DL_OTHER	0x09	/* Any other medium not listed above */
258 /*
259  * Private media types.  These must be above the value 0x80000000 as
260  * stated in the DLPI specification.
261  */
262 #define	DL_IPV4		0x80000001ul	/* IPv4 Tunnel Link */
263 #define	DL_IPV6		0x80000002ul	/* IPv6 Tunnel Link */
264 #define	SUNW_DL_VNI	0x80000003ul	/* Virtual network interface */
265 
266 /*
267  * DLPI provider service supported.
268  * These must be allowed to be bitwise-OR for dl_service_mode in
269  * DL_INFO_ACK.
270  */
271 #define	DL_CODLS	0x01	/* support connection-oriented service */
272 #define	DL_CLDLS	0x02	/* support connectionless data link service */
273 #define	DL_ACLDLS	0x04	/* support acknowledged connectionless serv. */
274 
275 
276 /*
277  * DLPI provider style.
278  * The DLPI provider style which determines whether a provider
279  * requires a DL_ATTACH_REQ to inform the provider which PPA
280  * user messages should be sent/received on.
281  */
282 #define	DL_STYLE1	0x0500	/* PPA is implicitly bound by open(2) */
283 #define	DL_STYLE2	0x0501	/* PPA must be expl. bound via DL_ATTACH_REQ */
284 
285 
286 /*
287  * DLPI Originator for Disconnect and Resets
288  */
289 #define	DL_PROVIDER	0x0700
290 #define	DL_USER		0x0701
291 
292 /*
293  * DLPI Disconnect Reasons
294  */
295 #define	DL_CONREJ_DEST_UNKNOWN			0x0800
296 #define	DL_CONREJ_DEST_UNREACH_PERMANENT	0x0801
297 #define	DL_CONREJ_DEST_UNREACH_TRANSIENT	0x0802
298 #define	DL_CONREJ_QOS_UNAVAIL_PERMANENT		0x0803
299 #define	DL_CONREJ_QOS_UNAVAIL_TRANSIENT		0x0804
300 #define	DL_CONREJ_PERMANENT_COND		0x0805
301 #define	DL_CONREJ_TRANSIENT_COND		0x0806
302 #define	DL_DISC_ABNORMAL_CONDITION		0x0807
303 #define	DL_DISC_NORMAL_CONDITION		0x0808
304 #define	DL_DISC_PERMANENT_CONDITION		0x0809
305 #define	DL_DISC_TRANSIENT_CONDITION		0x080a
306 #define	DL_DISC_UNSPECIFIED			0x080b
307 
308 /*
309  * DLPI Reset Reasons
310  */
311 #define	DL_RESET_FLOW_CONTROL	0x0900
312 #define	DL_RESET_LINK_ERROR	0x0901
313 #define	DL_RESET_RESYNCH	0x0902
314 
315 /*
316  * DLPI status values for acknowledged connectionless data transfer
317  */
318 #define	DL_CMD_MASK	0x0f	/* mask for command portion of status */
319 #define	DL_CMD_OK	0x00	/* Command Accepted */
320 #define	DL_CMD_RS	0x01	/* Unimplemented or inactivated service */
321 #define	DL_CMD_UE	0x05	/* Data Link User interface error */
322 #define	DL_CMD_PE	0x06	/* Protocol error */
323 #define	DL_CMD_IP	0x07	/* Permanent implementation dependent error */
324 #define	DL_CMD_UN	0x09	/* Resources temporarily unavailable */
325 #define	DL_CMD_IT	0x0f	/* Temporary implementation dependent error */
326 #define	DL_RSP_MASK	0xf0	/* mask for response portion of status */
327 #define	DL_RSP_OK	0x00	/* Response DLSDU present */
328 #define	DL_RSP_RS	0x10	/* Unimplemented or inactivated service */
329 #define	DL_RSP_NE	0x30	/* Response DLSDU never submitted */
330 #define	DL_RSP_NR	0x40	/* Response DLSDU not requested */
331 #define	DL_RSP_UE	0x50	/* Data Link User interface error */
332 #define	DL_RSP_IP	0x70	/* Permanent implementation dependent error */
333 #define	DL_RSP_UN	0x90	/* Resources temporarily unavailable */
334 #define	DL_RSP_IT	0xf0	/* Temporary implementation dependent error */
335 
336 /*
337  * Service Class values for acknowledged connectionless data transfer
338  */
339 #define	DL_RQST_RSP	0x01	/* Use acknowledge capability in MAC sublayer */
340 #define	DL_RQST_NORSP	0x02	/* No acknowledgement service requested */
341 
342 /*
343  * DLPI address type definition
344  */
345 #define	DL_FACT_PHYS_ADDR	0x01	/* factory physical address */
346 #define	DL_CURR_PHYS_ADDR	0x02	/* current physical address */
347 #define	DL_IPV6_TOKEN		0x03	/* IPv6 interface token */
348 #define	DL_IPV6_LINK_LAYER_ADDR	0x04	/* Neighbor Discovery format */
349 
350 /*
351  * DLPI flag definitions
352  */
353 #define	DL_POLL_FINAL	0x01		/* indicates poll/final bit set */
354 
355 /*
356  *	XID and TEST responses supported by the provider
357  */
358 #define	DL_AUTO_XID	0x01		/* provider will respond to XID */
359 #define	DL_AUTO_TEST	0x02		/* provider will respond to TEST */
360 
361 /*
362  * Subsequent bind type
363  */
364 #define	DL_PEER_BIND	0x01		/* subsequent bind on a peer addr */
365 #define	DL_HIERARCHICAL_BIND	0x02	/* subs_bind on a hierarchical addr */
366 
367 /*
368  * DLPI promiscuous mode definitions
369  */
370 #define	DL_PROMISC_PHYS		0x01	/* promiscuous mode at phys level */
371 #define	DL_PROMISC_SAP		0x02	/* promiscous mode at sap level */
372 #define	DL_PROMISC_MULTI	0x03	/* promiscuous mode for multicast */
373 
374 /*
375  * DLPI notification codes for DL_NOTIFY primitives.
376  * Bit-wise distinct since DL_NOTIFY_REQ and DL_NOTIFY_ACK carry multiple
377  * notification codes.
378  */
379 #define	DL_NOTE_PHYS_ADDR	0x0001	/* Physical address change */
380 #define	DL_NOTE_PROMISC_ON_PHYS	0x0002	/* DL_PROMISC_PHYS set on ppa */
381 #define	DL_NOTE_PROMISC_OFF_PHYS 0x0004	/* DL_PROMISC_PHYS cleared on ppa */
382 #define	DL_NOTE_LINK_DOWN	0x0008	/* Link down */
383 #define	DL_NOTE_LINK_UP		0x0010	/* Link up */
384 #define	DL_NOTE_AGGR_AVAIL	0x0020	/* Link aggregation is available */
385 #define	DL_NOTE_AGGR_UNAVAIL	0x0040	/* Link aggregation is not available */
386 #define	DL_NOTE_SDU_SIZE	0x0080	/* New SDU size, global or per addr */
387 #define	DL_NOTE_SPEED		0x0100	/* Approximate link speed */
388 #define	DL_NOTE_FASTPATH_FLUSH	0x0200	/* Fast Path info changes */
389 #define	DL_NOTE_CAPAB_RENEG	0x0400	/* Initiate capability renegotiation */
390 
391 /*
392  * DLPI Quality Of Service definition for use in QOS structure definitions.
393  * The QOS structures are used in connection establishment, DL_INFO_ACK,
394  * and setting connectionless QOS values.
395  */
396 
397 /*
398  * Throughput
399  *
400  * This parameter is specified for both directions.
401  */
402 typedef struct {
403 	t_scalar_t	dl_target_value;	/* bits/second desired */
404 	t_scalar_t	dl_accept_value;	/* min. ok bits/second */
405 } dl_through_t;
406 
407 /*
408  * transit delay specification
409  *
410  * This parameter is specified for both directions.
411  * expressed in milliseconds assuming a DLSDU size of 128 octets.
412  * The scaling of the value to the current DLSDU size is provider dependent.
413  */
414 typedef struct {
415 	t_scalar_t	dl_target_value;	/* desired value of service */
416 	t_scalar_t	dl_accept_value;	/* min. ok value of service */
417 } dl_transdelay_t;
418 
419 /*
420  * priority specification
421  * priority range is 0-100, with 0 being highest value.
422  */
423 typedef struct {
424 	t_scalar_t	dl_min;
425 	t_scalar_t	dl_max;
426 } dl_priority_t;
427 
428 
429 /*
430  * protection specification
431  *
432  */
433 #define	DL_NONE			0x0B01	/* no protection supplied */
434 #define	DL_MONITOR		0x0B02	/* prot. from passive monit. */
435 #define	DL_MAXIMUM		0x0B03	/* prot. from modification, replay, */
436 					/* addition, or deletion */
437 
438 typedef struct {
439 	t_scalar_t	dl_min;
440 	t_scalar_t	dl_max;
441 } dl_protect_t;
442 
443 
444 /*
445  * Resilience specification
446  * probabilities are scaled by a factor of 10,000 with a time interval
447  * of 10,000 seconds.
448  */
449 typedef struct {
450 	t_scalar_t	dl_disc_prob;	/* prob. of provider init DISC */
451 	t_scalar_t	dl_reset_prob;	/* prob. of provider init RESET */
452 } dl_resilience_t;
453 
454 
455 /*
456  * QOS type definition to be used for negotiation with the
457  * remote end of a connection, or a connectionless unitdata request.
458  * There are two type definitions to handle the negotiation
459  * process at connection establishment. The typedef dl_qos_range_t
460  * is used to present a range for parameters. This is used
461  * in the DL_CONNECT_REQ and DL_CONNECT_IND messages. The typedef
462  * dl_qos_sel_t is used to select a specific value for the QOS
463  * parameters. This is used in the DL_CONNECT_RES, DL_CONNECT_CON,
464  * and DL_INFO_ACK messages to define the selected QOS parameters
465  * for a connection.
466  *
467  * NOTE
468  *	A DataLink provider which has unknown values for any of the fields
469  *	will use a value of DL_UNKNOWN for all values in the fields.
470  *
471  * NOTE
472  *	A QOS parameter value of DL_QOS_DONT_CARE informs the DLS
473  *	provider the user requesting this value doesn't care
474  *	what the QOS parameter is set to. This value becomes the
475  *	least possible value in the range of QOS parameters.
476  *	The order of the QOS parameter range is then:
477  *
478  *		DL_QOS_DONT_CARE < 0 < MAXIMUM QOS VALUE
479  */
480 #define	DL_UNKNOWN		-1
481 #define	DL_QOS_DONT_CARE	-2
482 
483 /*
484  * Every QOS structure has the first 4 bytes containing a type
485  * field, denoting the definition of the rest of the structure.
486  * This is used in the same manner has the dl_primitive variable
487  * is in messages.
488  *
489  * The following list is the defined QOS structure type values and structures.
490  */
491 #define	DL_QOS_CO_RANGE1	0x0101	/* CO QOS range struct. */
492 #define	DL_QOS_CO_SEL1		0x0102	/* CO QOS selection structure */
493 #define	DL_QOS_CL_RANGE1	0x0103	/* CL QOS range struct. */
494 #define	DL_QOS_CL_SEL1		0x0104	/* CL QOS selection */
495 
496 typedef struct {
497 	t_uscalar_t	dl_qos_type;
498 	dl_through_t	dl_rcv_throughput;	/* desired and accep. */
499 	dl_transdelay_t	dl_rcv_trans_delay;	/* desired and accep. */
500 	dl_through_t	dl_xmt_throughput;
501 	dl_transdelay_t	dl_xmt_trans_delay;
502 	dl_priority_t	dl_priority;		/* min and max values */
503 	dl_protect_t	dl_protection;		/* min and max values */
504 	t_scalar_t	dl_residual_error;
505 	dl_resilience_t	dl_resilience;
506 }	dl_qos_co_range1_t;
507 
508 typedef struct {
509 	t_uscalar_t	dl_qos_type;
510 	t_scalar_t	dl_rcv_throughput;
511 	t_scalar_t	dl_rcv_trans_delay;
512 	t_scalar_t	dl_xmt_throughput;
513 	t_scalar_t	dl_xmt_trans_delay;
514 	t_scalar_t	dl_priority;
515 	t_scalar_t	dl_protection;
516 	t_scalar_t	dl_residual_error;
517 	dl_resilience_t	dl_resilience;
518 }	dl_qos_co_sel1_t;
519 
520 typedef struct {
521 	t_uscalar_t	dl_qos_type;
522 	dl_transdelay_t	dl_trans_delay;
523 	dl_priority_t	dl_priority;
524 	dl_protect_t	dl_protection;
525 	t_scalar_t	dl_residual_error;
526 }	dl_qos_cl_range1_t;
527 
528 typedef struct {
529 	t_uscalar_t	dl_qos_type;
530 	t_scalar_t	dl_trans_delay;
531 	t_scalar_t	dl_priority;
532 	t_scalar_t	dl_protection;
533 	t_scalar_t	dl_residual_error;
534 }	dl_qos_cl_sel1_t;
535 
536 union	DL_qos_types {
537 	t_uscalar_t		dl_qos_type;
538 	dl_qos_co_range1_t	qos_co_range1;
539 	dl_qos_co_sel1_t	qos_co_sel1;
540 	dl_qos_cl_range1_t	qos_cl_range1;
541 	dl_qos_cl_sel1_t	qos_cl_sel1;
542 };
543 
544 /*
545  *    Solaris specific structures and definitions.
546  */
547 
548 /*
549  * The following are the capability types and structures used by the
550  * the DL_CAPABILITY_REQ and DL_CAPABILITY_ACK primitives.
551  *
552  * These primitives are used both to determine the set of capabilities in
553  * the DLS provider and also to turn on and off specific capabilities.
554  * The response is a DL_CAPABILITY_ACK or DL_ERROR_ACK.
555  *
556  * DL_CAPABILITY_REQ can either be empty (i.e. dl_sub_length is zero) which
557  * is a request for the driver to return all capabilities. Otherwise, the
558  * DL_CAPABILITY_REQ contains the capabilities the DLS user wants to use and
559  * their settings.
560  *
561  * DL_CAPABILITY_ACK contains the capabilities that the DLS provider can
562  * support modified based on what was listed in the request. If a
563  * capability was included in the request then the information returned
564  * in the ack might be modified based on the information in the request.
565  */
566 
567 #define	DL_CAPAB_ID_WRAPPER	0x00	/* Module ID wrapper structure */
568 					/* dl_data is dl_capab_id_t */
569 #define	DL_CAPAB_HCKSUM		0x01	/* Checksum offload */
570 					/* dl_data is dl_capab_hcksum_t */
571 #define	DL_CAPAB_IPSEC_AH	0x02	/* IPsec AH acceleration */
572 					/* dl_data is dl_capab_ipsec_t */
573 #define	DL_CAPAB_IPSEC_ESP	0x03	/* IPsec ESP acceleration */
574 					/* dl_data is dl_capab_ipsec_t */
575 #define	DL_CAPAB_MDT		0x04	/* Multidata Transmit capability */
576 					/* dl_data is dl_capab_mdt_t */
577 #define	DL_CAPAB_ZEROCOPY	0x05	/* Zero-copy capability */
578 					/* dl_data is dl_capab_zerocopy_t */
579 #define	DL_CAPAB_POLL		0x06	/* Polling capability */
580 					/* dl_data is dl_capab_poll_t */
581 
582 typedef struct {
583 	t_uscalar_t	dl_cap;		/* capability type */
584 	t_uscalar_t	dl_length;	/* length of data following */
585 	/* Followed by zero or more bytes of dl_data */
586 } dl_capability_sub_t;
587 
588 /*
589  * Definitions and structures needed for DL_CONTROL_REQ and DL_CONTROL_ACK
590  * primitives.
591  * Extensible message to send down control information to the DLS provider.
592  * The response is a DL_CONTROL_ACK or DL_ERROR_ACK.
593  *
594  * Different types of control operations will define different format for the
595  * key and data fields. ADD requires key and data fields; if the <type, key>
596  * matches an already existing entry a DL_ERROR_ACK will be returned. DELETE
597  * requires a key field; if the <type, key> does not exist, a DL_ERROR_ACK
598  * will be returned. FLUSH requires neither a key nor data; it
599  * unconditionally removes all entries for the specified type. GET requires a
600  * key field; the get operation returns the data for the <type, key>. If
601  * <type, key> doesn't exist a DL_ERROR_ACK is returned. UPDATE requires key
602  * and data fields; if <type, key> doesn't exist a DL_ERROR_ACK is returned.
603  */
604 
605 /*
606  * Control operations
607  */
608 #define	DL_CO_ADD	0x01	/* Add new entry matching for <type,key> */
609 #define	DL_CO_DELETE	0x02	/* Delete the entry matching <type,key> */
610 #define	DL_CO_FLUSH	0x03	/* Purge all entries of <type> */
611 #define	DL_CO_GET	0x04	/* Get the data for the <type,key> */
612 #define	DL_CO_UPDATE	0x05	/* Update the data for <type,key> */
613 #define	DL_CO_SET	0x06	/* Add or update as appropriate */
614 
615 /*
616  * Control types (dl_type field of dl_control_req_t and dl_control_ack_t)
617  */
618 #define	DL_CT_IPSEC_AH	0x01	/* AH; key=spi,dest_addr; */
619 				/* data=keying material */
620 #define	DL_CT_IPSEC_ESP	0x02	/* ESP; key=spi,des_taddr; */
621 				/* data=keying material */
622 
623 /*
624  * Module ID token to be included in new sub-capability structures.
625  * Existing sub-capabilities lacking an identification token, e.g. IPSEC
626  * hardware acceleration, need to be encapsulated within the ID sub-
627  * capability.  Access to this structure must be done through
628  * dlcapab{set,check}qid().
629  */
630 typedef struct {
631 	t_uscalar_t	mid[4];		/* private fields */
632 } dl_mid_t;
633 
634 /*
635  * Module ID wrapper (follows dl_capability_sub_t)
636  */
637 typedef struct {
638 	dl_mid_t		id_mid;		/* module ID token */
639 	dl_capability_sub_t	id_subcap;	/* sub-capability */
640 } dl_capab_id_t;
641 
642 /*
643  * Multidata Transmit sub-capability (follows dl_capability_sub_t)
644  */
645 typedef struct {
646 	t_uscalar_t	mdt_version;	/* interface version */
647 	t_uscalar_t	mdt_flags;	/* flags */
648 	t_uscalar_t	mdt_hdr_head;	/* minimum leading header space */
649 	t_uscalar_t	mdt_hdr_tail;	/* minimum trailing header space */
650 	t_uscalar_t	mdt_max_pld;	/* maximum doable payload buffers */
651 	t_uscalar_t	mdt_span_limit;	/* scatter-gather descriptor limit */
652 	dl_mid_t	mdt_mid;	/* module ID token */
653 } dl_capab_mdt_t;
654 
655 /*
656  * Multidata Transmit revision definition history
657  */
658 #define	MDT_CURRENT_VERSION	0x02
659 #define	MDT_VERSION_2		0x02
660 
661 /*
662  * mdt_flags values
663  */
664 #define	DL_CAPAB_MDT_ENABLE	0x01	/* enable Multidata Transmit */
665 
666 /*
667  * DL_CAPAB_HCKSUM
668  * Used for negotiating different flavors of checksum offload
669  * capabilities.
670  */
671 typedef struct {
672 	t_uscalar_t	hcksum_version;	/* version of data following */
673 	t_uscalar_t	hcksum_txflags;	/* capabilities on transmit */
674 	dl_mid_t	hcksum_mid;		/* module ID */
675 } dl_capab_hcksum_t;
676 
677 /*
678  * DL_CAPAB_HCKSUM  revision definition history
679  */
680 #define	HCKSUM_CURRENT_VERSION	0x01
681 #define	HCKSUM_VERSION_1	0x01
682 
683 /*
684  * Values for dl_txflags
685  */
686 #define	HCKSUM_ENABLE		0x01	/* Set to enable hardware checksum */
687 					/* capability */
688 #define	HCKSUM_INET_PARTIAL	0x02	/* Partial 1's complement checksum */
689 					/* ability */
690 #define	HCKSUM_INET_FULL_V4	0x04	/* Full 1's complement checksum */
691 					/* ability for IPv4 packets. */
692 #define	HCKSUM_IPHDRCKSUM	0x10	/* IPv4 Header checksum offload */
693 					/* capability */
694 #ifdef _KERNEL
695 
696 /*
697  * This defines the DL_CAPAB_POLL capability. Currently it provides a
698  * mechanism for IP to exchange function pointers with a gldv3-based driver
699  * to enable streams-bypassing data-paths and interrupt blanking. True polling
700  * support will be added in the future.
701  */
702 typedef struct dl_capab_poll_s {
703 	t_uscalar_t		poll_version;
704 	t_uscalar_t		poll_flags;
705 
706 	/* DLD provided information */
707 	uintptr_t		poll_tx_handle;
708 	uintptr_t		poll_tx;
709 
710 	/* IP provided information */
711 	uintptr_t		poll_rx_handle;
712 	uintptr_t		poll_rx;
713 	uintptr_t		poll_ring_add;
714 
715 	dl_mid_t		poll_mid;		/* module ID */
716 } dl_capab_poll_t;
717 
718 #define	POLL_CURRENT_VERSION	0x01
719 #define	POLL_VERSION_1		0x01
720 
721 /*
722  * Values for poll_flags
723  */
724 #define	POLL_ENABLE		0x01	/* Set to enable polling */
725 					/* capability */
726 #define	POLL_CAPABLE		0x02	/* Polling ability exists */
727 #define	POLL_DISABLE		0x04	/* Disable Polling */
728 
729 #endif /* _KERNEL */
730 
731 /*
732  * Zero-copy sub-capability (follows dl_capability_sub_t)
733  */
734 typedef struct {
735 	t_uscalar_t	zerocopy_version;	/* interface version */
736 	t_uscalar_t	zerocopy_flags;		/* capability flags */
737 	t_uscalar_t	reserved[9];		/* reserved fields */
738 	dl_mid_t	zerocopy_mid;		/* module ID */
739 } dl_capab_zerocopy_t;
740 
741 /*
742  * Zero-copy revision definition history
743  */
744 #define	ZEROCOPY_CURRENT_VERSION	0x01
745 #define	ZEROCOPY_VERSION_1		0x01
746 
747 /*
748  * Currently supported values of zerocopy_flags
749  */
750 #define	DL_CAPAB_VMSAFE_MEM		0x01	/* Driver is zero-copy safe */
751 						/* wrt VM named buffers on */
752 						/* transmit */
753 /*
754  * DLPI interface primitive definitions.
755  *
756  * Each primitive is sent as a stream message.  It is possible that
757  * the messages may be viewed as a sequence of bytes that have the
758  * following form without any padding. The structure definition
759  * of the following messages may have to change depending on the
760  * underlying hardware architecture and crossing of a hardware
761  * boundary with a different hardware architecture.
762  *
763  * Fields in the primitives having a name of the form
764  * dl_reserved cannot be used and have the value of
765  * binary zero, no bits turned on.
766  *
767  * Each message has the name defined followed by the
768  * stream message type (M_PROTO, M_PCPROTO, M_DATA)
769  */
770 
771 /*
772  *	LOCAL MANAGEMENT SERVICE PRIMITIVES
773  */
774 
775 /*
776  * DL_INFO_REQ, M_PCPROTO type
777  */
778 typedef struct {
779 	t_uscalar_t	dl_primitive;			/* set to DL_INFO_REQ */
780 } dl_info_req_t;
781 
782 /*
783  * DL_INFO_ACK, M_PCPROTO type
784  */
785 typedef struct {
786 	t_uscalar_t	dl_primitive;		/* set to DL_INFO_ACK */
787 	t_uscalar_t	dl_max_sdu;		/* Max bytes in a DLSDU */
788 	t_uscalar_t	dl_min_sdu;		/* Min bytes in a DLSDU */
789 	t_uscalar_t	dl_addr_length;		/* length of DLSAP address */
790 	t_uscalar_t	dl_mac_type;		/* type of medium supported */
791 	t_uscalar_t	dl_reserved;		/* value set to zero */
792 	t_uscalar_t	dl_current_state;	/* state of DLPI interface */
793 	t_scalar_t	dl_sap_length;		/* length of dlsap SAP part */
794 	t_uscalar_t	dl_service_mode;	/* CO, CL or ACL */
795 	t_uscalar_t	dl_qos_length;		/* length of qos values */
796 	t_uscalar_t	dl_qos_offset;		/* offset from start of block */
797 	t_uscalar_t	dl_qos_range_length;	/* available range of qos */
798 	t_uscalar_t	dl_qos_range_offset;	/* offset from start of block */
799 	t_uscalar_t	dl_provider_style;	/* style1 or style2 */
800 	t_uscalar_t	dl_addr_offset;		/* offset of the dlsap addr */
801 	t_uscalar_t	dl_version;		/* version number */
802 	t_uscalar_t	dl_brdcst_addr_length;	/* length of broadcast addr */
803 	t_uscalar_t	dl_brdcst_addr_offset;	/* offset from start of block */
804 	t_uscalar_t	dl_growth;		/* set to zero */
805 } dl_info_ack_t;
806 
807 /*
808  * DL_ATTACH_REQ, M_PROTO type
809  */
810 typedef struct {
811 	t_uscalar_t	dl_primitive;		/* set to DL_ATTACH_REQ */
812 	t_uscalar_t	dl_ppa;			/* id of the PPA */
813 } dl_attach_req_t;
814 
815 /*
816  * DL_DETACH_REQ, M_PROTO type
817  */
818 typedef struct {
819 	t_uscalar_t	dl_primitive;		/* set to DL_DETACH_REQ */
820 } dl_detach_req_t;
821 
822 /*
823  * DL_BIND_REQ, M_PROTO type
824  */
825 typedef struct {
826 	t_uscalar_t	dl_primitive;	/* set to DL_BIND_REQ */
827 	t_uscalar_t	dl_sap;		/* info to identify dlsap addr */
828 	t_uscalar_t	dl_max_conind;	/* max # of outstanding con_ind */
829 	uint16_t	dl_service_mode;	/* CO, CL or ACL */
830 	uint16_t	dl_conn_mgmt;	/* if non-zero, is con-mgmt stream */
831 	t_uscalar_t	dl_xidtest_flg;	/* auto init. of test and xid */
832 } dl_bind_req_t;
833 
834 /*
835  * DL_BIND_ACK, M_PCPROTO type
836  */
837 typedef struct {
838 	t_uscalar_t	dl_primitive;	/* DL_BIND_ACK */
839 	t_uscalar_t	dl_sap;		/* DLSAP addr info */
840 	t_uscalar_t	dl_addr_length;	/* length of complete DLSAP addr */
841 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PCPROTO */
842 	t_uscalar_t	dl_max_conind;	/* allowed max. # of con-ind */
843 	t_uscalar_t	dl_xidtest_flg;	/* responses supported by provider */
844 } dl_bind_ack_t;
845 
846 /*
847  * DL_SUBS_BIND_REQ, M_PROTO type
848  */
849 typedef struct {
850 	t_uscalar_t	dl_primitive;		/* DL_SUBS_BIND_REQ */
851 	t_uscalar_t	dl_subs_sap_offset;	/* offset of subs_sap */
852 	t_uscalar_t	dl_subs_sap_length;	/* length of subs_sap */
853 	t_uscalar_t	dl_subs_bind_class;	/* peer or hierarchical */
854 } dl_subs_bind_req_t;
855 
856 /*
857  * DL_SUBS_BIND_ACK, M_PCPROTO type
858  */
859 typedef struct {
860 	t_uscalar_t dl_primitive;	/* DL_SUBS_BIND_ACK */
861 	t_uscalar_t dl_subs_sap_offset;	/* offset of subs_sap */
862 	t_uscalar_t dl_subs_sap_length;	/* length of subs_sap */
863 } dl_subs_bind_ack_t;
864 
865 /*
866  * DL_UNBIND_REQ, M_PROTO type
867  */
868 typedef struct {
869 	t_uscalar_t	dl_primitive;	/* DL_UNBIND_REQ */
870 } dl_unbind_req_t;
871 
872 /*
873  * DL_SUBS_UNBIND_REQ, M_PROTO type
874  */
875 typedef struct {
876 	t_uscalar_t	dl_primitive;		/* DL_SUBS_UNBIND_REQ */
877 	t_uscalar_t	dl_subs_sap_offset;	/* offset of subs_sap */
878 	t_uscalar_t	dl_subs_sap_length;	/* length of subs_sap */
879 } dl_subs_unbind_req_t;
880 
881 /*
882  * DL_OK_ACK, M_PCPROTO type
883  */
884 typedef struct {
885 	t_uscalar_t	dl_primitive;		/* DL_OK_ACK */
886 	t_uscalar_t	dl_correct_primitive;	/* primitive acknowledged */
887 } dl_ok_ack_t;
888 
889 /*
890  * DL_ERROR_ACK, M_PCPROTO type
891  */
892 typedef struct {
893 	t_uscalar_t	dl_primitive;		/* DL_ERROR_ACK */
894 	t_uscalar_t	dl_error_primitive;	/* primitive in error */
895 	t_uscalar_t	dl_errno;		/* DLPI error code */
896 	t_uscalar_t	dl_unix_errno;		/* UNIX system error code */
897 } dl_error_ack_t;
898 
899 /*
900  * DL_ENABMULTI_REQ, M_PROTO type
901  */
902 typedef struct {
903 	t_uscalar_t	dl_primitive;	/* DL_ENABMULTI_REQ */
904 	t_uscalar_t	dl_addr_length;	/* length of multicast address */
905 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PROTO block */
906 } dl_enabmulti_req_t;
907 
908 /*
909  * DL_DISABMULTI_REQ, M_PROTO type
910  */
911 
912 typedef struct {
913 	t_uscalar_t	dl_primitive;	/* DL_DISABMULTI_REQ */
914 	t_uscalar_t	dl_addr_length;	/* length of multicast address */
915 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PROTO block */
916 } dl_disabmulti_req_t;
917 
918 /*
919  * DL_PROMISCON_REQ, M_PROTO type
920  */
921 
922 typedef struct {
923 	t_uscalar_t	dl_primitive;	/* DL_PROMISCON_REQ */
924 	t_uscalar_t	dl_level;	/* physical,SAP, or ALL multicast */
925 } dl_promiscon_req_t;
926 
927 /*
928  * DL_PROMISCOFF_REQ, M_PROTO type
929  */
930 
931 typedef struct {
932 	t_uscalar_t	dl_primitive;	/* DL_PROMISCOFF_REQ */
933 	t_uscalar_t	dl_level;	/* Physical,SAP, or ALL multicast */
934 } dl_promiscoff_req_t;
935 
936 /*
937  *	Primitives to get and set the Physical address
938  */
939 
940 /*
941  * DL_PHYS_ADDR_REQ, M_PROTO type
942  */
943 typedef	struct {
944 	t_uscalar_t	dl_primitive;	/* DL_PHYS_ADDR_REQ */
945 	t_uscalar_t	dl_addr_type;	/* factory or current physical addr */
946 } dl_phys_addr_req_t;
947 
948 /*
949  * DL_PHYS_ADDR_ACK, M_PCPROTO type
950  */
951 typedef struct {
952 	t_uscalar_t	dl_primitive;	/* DL_PHYS_ADDR_ACK */
953 	t_uscalar_t	dl_addr_length;	/* length of the physical addr */
954 	t_uscalar_t	dl_addr_offset;	/* offset from start of block */
955 } dl_phys_addr_ack_t;
956 
957 /*
958  * DL_SET_PHYS_ADDR_REQ, M_PROTO type
959  */
960 typedef struct {
961 	t_uscalar_t	dl_primitive;	/* DL_SET_PHYS_ADDR_REQ */
962 	t_uscalar_t	dl_addr_length;	/* length of physical addr */
963 	t_uscalar_t	dl_addr_offset;	/* offset from start of block */
964 } dl_set_phys_addr_req_t;
965 
966 /*
967  *	Primitives to get statistics
968  */
969 
970 /*
971  * DL_GET_STATISTICS_REQ, M_PROTO type
972  */
973 typedef struct {
974 	t_uscalar_t	dl_primitive;		/* DL_GET_STATISTICS_REQ */
975 } dl_get_statistics_req_t;
976 
977 /*
978  * DL_GET_STATISTICS_ACK, M_PCPROTO type
979  */
980 typedef struct {
981 	t_uscalar_t	dl_primitive;	/* DL_GET_STATISTICS_ACK */
982 	t_uscalar_t	dl_stat_length;	/* length of statistics structure */
983 	t_uscalar_t	dl_stat_offset;	/* offset from start of block */
984 } dl_get_statistics_ack_t;
985 
986 /*
987  *	Solaris specific local management service primitives
988  */
989 
990 /*
991  * DL_NOTIFY_REQ, M_PROTO type
992  */
993 typedef struct {
994 	t_uscalar_t	dl_primitive;	/* set to DL_NOTIFY_REQ */
995 	uint32_t	dl_notifications; /* Requested set of notifications */
996 	uint32_t	dl_timelimit;	/* In milliseconds */
997 } dl_notify_req_t;
998 
999 /*
1000  * DL_NOTIFY_ACK, M_PROTO type
1001  */
1002 typedef struct {
1003 	t_uscalar_t	dl_primitive;	/* set to DL_NOTIFY_ACK */
1004 	uint32_t	dl_notifications; /* Supported set of notifications */
1005 } dl_notify_ack_t;
1006 
1007 /*
1008  * DL_NOTIFY_IND, M_PROTO type
1009  */
1010 typedef struct {
1011 	t_uscalar_t	dl_primitive;	/* set to DL_NOTIFY_IND */
1012 	uint32_t	dl_notification; /* Which notification? */
1013 	uint32_t	dl_data;	/* notification specific */
1014 	t_uscalar_t	dl_addr_length;	/* length of complete DLSAP addr */
1015 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PROTO */
1016 } dl_notify_ind_t;
1017 
1018 /*
1019  * DL_AGGR_REQ, M_PROTO type
1020  */
1021 typedef struct {
1022 	t_uscalar_t	dl_primitive;	/* set to DL_AGGR_REQ */
1023 	uint32_t	dl_key;		/* Key identifying the group */
1024 	uint32_t	dl_port;	/* Identifying the NIC */
1025 	t_uscalar_t	dl_addr_length;	/* length of PHYS addr addr */
1026 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PROTO */
1027 } dl_aggr_req_t;
1028 
1029 /*
1030  * DL_AGGR_IND, M_PROTO type
1031  */
1032 typedef struct {
1033 	t_uscalar_t	dl_primitive;	/* set to DL_AGGR_IND */
1034 	uint32_t	dl_key;		/* Key identifying the group */
1035 	uint32_t	dl_port;	/* Identifying the NIC */
1036 	t_uscalar_t	dl_addr_length;	/* length of PHYS addr */
1037 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PROTO */
1038 } dl_aggr_ind_t;
1039 
1040 /*
1041  * DL_UNAGGR_REQ, M_PROTO type
1042  */
1043 typedef struct {
1044 	t_uscalar_t	dl_primitive;	/* set to DL_UNAGGR_REQ */
1045 	uint32_t	dl_key;		/* Key identifying the group */
1046 	uint32_t	dl_port;	/* Identifying the NIC */
1047 	t_uscalar_t	dl_addr_length;	/* length of PHYS addr */
1048 	t_uscalar_t	dl_addr_offset;	/* offset from start of M_PROTO */
1049 } dl_unaggr_req_t;
1050 
1051 /*
1052  * DL_CAPABILITY_REQ, M_PROTO type
1053  */
1054 typedef struct {
1055 	t_uscalar_t	dl_primitive;	/* DL_CAPABILITY_REQ */
1056 	t_uscalar_t	dl_sub_offset;	/* options offset */
1057 	t_uscalar_t	dl_sub_length;	/* options length */
1058 	/* Followed by a list of zero or more dl_capability_sub_t */
1059 } dl_capability_req_t;
1060 
1061 /*
1062  * DL_CAPABILITY_ACK, M_PROTO type
1063  */
1064 typedef struct {
1065 	t_uscalar_t	dl_primitive;	/* DL_CAPABILITY_ACK */
1066 	t_uscalar_t	dl_sub_offset;	/* options offset */
1067 	t_uscalar_t	dl_sub_length;	/* options length */
1068 	/* Followed by a list of zero or more dl_capability_sub_t */
1069 } dl_capability_ack_t;
1070 
1071 /*
1072  * DL_CONTROL_REQ, M_PROTO type
1073  */
1074 typedef struct {
1075 	t_uscalar_t	dl_primitive;	/* DL_CONTROL_REQ */
1076 	t_uscalar_t	dl_operation;	/* add/delete/purge */
1077 	t_uscalar_t	dl_type;	/* e.g. AH/ESP/ ... */
1078 	t_uscalar_t	dl_key_offset;	/* offset of key */
1079 	t_uscalar_t	dl_key_length;	/* length of key */
1080 	t_uscalar_t	dl_data_offset;	/* offset of data */
1081 	t_uscalar_t	dl_data_length;	/* length of data */
1082 } dl_control_req_t;
1083 
1084 /*
1085  * DL_CONTROL_ACK, M_PROTO type
1086  */
1087 typedef struct {
1088 	t_uscalar_t	dl_primitive;	/* DL_CONTROL_ACK */
1089 	t_uscalar_t	dl_operation;	/* add/delete/purge */
1090 	t_uscalar_t	dl_type;	/* e.g. AH/ESP/ ... */
1091 	t_uscalar_t	dl_key_offset;	/* offset of key */
1092 	t_uscalar_t	dl_key_length;	/* length of key */
1093 	t_uscalar_t	dl_data_offset;	/* offset of data */
1094 	t_uscalar_t	dl_data_length;	/* length of data */
1095 } dl_control_ack_t;
1096 
1097 /*
1098  * DL_PASSIVE_REQ, M_PROTO type
1099  */
1100 typedef struct {
1101 	t_uscalar_t	dl_primitive;
1102 } dl_passive_req_t;
1103 
1104 /*
1105  *	CONNECTION-ORIENTED SERVICE PRIMITIVES
1106  */
1107 
1108 /*
1109  * DL_CONNECT_REQ, M_PROTO type
1110  */
1111 typedef struct {
1112 	t_uscalar_t	dl_primitive;		/* DL_CONNECT_REQ */
1113 	t_uscalar_t	dl_dest_addr_length;	/* len. of dlsap addr */
1114 	t_uscalar_t	dl_dest_addr_offset;	/* offset */
1115 	t_uscalar_t	dl_qos_length;		/* len. of QOS parm val */
1116 	t_uscalar_t	dl_qos_offset;		/* offset */
1117 	t_uscalar_t	dl_growth;		/* set to zero */
1118 } dl_connect_req_t;
1119 
1120 /*
1121  * DL_CONNECT_IND, M_PROTO type
1122  */
1123 typedef struct {
1124 	t_uscalar_t	dl_primitive;		/* DL_CONNECT_IND */
1125 	t_uscalar_t	dl_correlation;		/* provider's correl. token */
1126 	t_uscalar_t	dl_called_addr_length;  /* length of called address */
1127 	t_uscalar_t	dl_called_addr_offset;	/* offset from start of block */
1128 	t_uscalar_t	dl_calling_addr_length;	/* length of calling address */
1129 	t_uscalar_t	dl_calling_addr_offset;	/* offset from start of block */
1130 	t_uscalar_t	dl_qos_length;		/* length of qos structure */
1131 	t_uscalar_t	dl_qos_offset;		/* offset from start of block */
1132 	t_uscalar_t	dl_growth;		/* set to zero */
1133 } dl_connect_ind_t;
1134 
1135 /*
1136  * DL_CONNECT_RES, M_PROTO type
1137  */
1138 typedef struct {
1139 	t_uscalar_t	dl_primitive;	/* DL_CONNECT_RES */
1140 	t_uscalar_t	dl_correlation; /* provider's correlation token */
1141 	t_uscalar_t	dl_resp_token;	/* token of responding stream */
1142 	t_uscalar_t	dl_qos_length;  /* length of qos structure */
1143 	t_uscalar_t	dl_qos_offset;	/* offset from start of block */
1144 	t_uscalar_t	dl_growth;	/* set to zero */
1145 } dl_connect_res_t;
1146 
1147 /*
1148  * DL_CONNECT_CON, M_PROTO type
1149  */
1150 typedef struct {
1151 	t_uscalar_t	dl_primitive;		/* DL_CONNECT_CON */
1152 	t_uscalar_t	dl_resp_addr_length;	/* responder's address len */
1153 	t_uscalar_t	dl_resp_addr_offset;	/* offset from start of block */
1154 	t_uscalar_t	dl_qos_length;		/* length of qos structure */
1155 	t_uscalar_t	dl_qos_offset;		/* offset from start of block */
1156 	t_uscalar_t	dl_growth;		/* set to zero */
1157 } dl_connect_con_t;
1158 
1159 /*
1160  * DL_TOKEN_REQ, M_PCPROTO type
1161  */
1162 typedef struct {
1163 	t_uscalar_t	dl_primitive;	/* DL_TOKEN_REQ */
1164 } dl_token_req_t;
1165 
1166 /*
1167  * DL_TOKEN_ACK, M_PCPROTO type
1168  */
1169 typedef struct {
1170 	t_uscalar_t	dl_primitive;	/* DL_TOKEN_ACK */
1171 	t_uscalar_t	dl_token;	/* Connection response token */
1172 }dl_token_ack_t;
1173 
1174 /*
1175  * DL_DISCONNECT_REQ, M_PROTO type
1176  */
1177 typedef struct {
1178 	t_uscalar_t	dl_primitive;	/* DL_DISCONNECT_REQ */
1179 	t_uscalar_t	dl_reason;	/* norm., abnorm., perm. or trans. */
1180 	t_uscalar_t	dl_correlation; /* association with connect_ind */
1181 } dl_disconnect_req_t;
1182 
1183 /*
1184  * DL_DISCONNECT_IND, M_PROTO type
1185  */
1186 typedef struct {
1187 	t_uscalar_t	dl_primitive;	/* DL_DISCONNECT_IND */
1188 	t_uscalar_t	dl_originator;	/* USER or PROVIDER */
1189 	t_uscalar_t	dl_reason;	/* permanent or transient */
1190 	t_uscalar_t	dl_correlation;	/* association with connect_ind */
1191 } dl_disconnect_ind_t;
1192 
1193 /*
1194  * DL_RESET_REQ, M_PROTO type
1195  */
1196 typedef struct {
1197 	t_uscalar_t	dl_primitive;	/* DL_RESET_REQ */
1198 } dl_reset_req_t;
1199 
1200 /*
1201  * DL_RESET_IND, M_PROTO type
1202  */
1203 typedef struct {
1204 	t_uscalar_t	dl_primitive;	/* DL_RESET_IND */
1205 	t_uscalar_t	dl_originator;	/* Provider or User */
1206 	t_uscalar_t	dl_reason;	/* flow control, link error, resync */
1207 } dl_reset_ind_t;
1208 
1209 /*
1210  * DL_RESET_RES, M_PROTO type
1211  */
1212 typedef struct {
1213 	t_uscalar_t	dl_primitive;		/* DL_RESET_RES */
1214 } dl_reset_res_t;
1215 
1216 /*
1217  * DL_RESET_CON, M_PROTO type
1218  */
1219 typedef struct {
1220 	t_uscalar_t	dl_primitive;		/* DL_RESET_CON */
1221 } dl_reset_con_t;
1222 
1223 
1224 /*
1225  *	CONNECTIONLESS SERVICE PRIMITIVES
1226  */
1227 
1228 /*
1229  * DL_UNITDATA_REQ, M_PROTO type, with M_DATA block(s)
1230  */
1231 typedef struct {
1232 	t_uscalar_t	dl_primitive;		/* DL_UNITDATA_REQ */
1233 	t_uscalar_t	dl_dest_addr_length;	/* DLSAP length of dest. user */
1234 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1235 	dl_priority_t	dl_priority;	/* priority value */
1236 } dl_unitdata_req_t;
1237 
1238 /*
1239  * DL_UNITDATA_IND, M_PROTO type, with M_DATA block(s)
1240  */
1241 typedef struct {
1242 	t_uscalar_t	dl_primitive;		/* DL_UNITDATA_IND */
1243 	t_uscalar_t	dl_dest_addr_length;	/* DLSAP length of dest. user */
1244 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1245 	t_uscalar_t	dl_src_addr_length;	/* DLSAP addr length sender */
1246 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1247 	t_uscalar_t	dl_group_address;	/* one if multicast/broadcast */
1248 } dl_unitdata_ind_t;
1249 
1250 /*
1251  * DL_UDERROR_IND, M_PROTO type
1252  *	(or M_PCPROTO type if LLI-based provider)
1253  */
1254 typedef struct {
1255 	t_uscalar_t	dl_primitive;		/* DL_UDERROR_IND */
1256 	t_uscalar_t	dl_dest_addr_length;	/* Destination DLSAP */
1257 	t_uscalar_t	dl_dest_addr_offset;	/* Offset from start of block */
1258 	t_uscalar_t	dl_unix_errno;		/* unix system error code */
1259 	t_uscalar_t	dl_errno;		/* DLPI error code */
1260 } dl_uderror_ind_t;
1261 
1262 /*
1263  * DL_UDQOS_REQ, M_PROTO type
1264  */
1265 typedef struct {
1266 	t_uscalar_t	dl_primitive;	/* DL_UDQOS_REQ */
1267 	t_uscalar_t	dl_qos_length;	/* requested qos byte length */
1268 	t_uscalar_t	dl_qos_offset;	/* offset from start of block */
1269 } dl_udqos_req_t;
1270 
1271 /*
1272  *	Primitives to handle XID and TEST operations
1273  */
1274 
1275 /*
1276  * DL_TEST_REQ, M_PROTO type
1277  */
1278 typedef struct {
1279 	t_uscalar_t	dl_primitive;		/* DL_TEST_REQ */
1280 	t_uscalar_t	dl_flag;		/* poll/final */
1281 	t_uscalar_t	dl_dest_addr_length;	/* DLSAP length of dest. user */
1282 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1283 } dl_test_req_t;
1284 
1285 /*
1286  * DL_TEST_IND, M_PROTO type
1287  */
1288 typedef struct {
1289 	t_uscalar_t	dl_primitive;		/* DL_TEST_IND */
1290 	t_uscalar_t	dl_flag;		/* poll/final */
1291 	t_uscalar_t	dl_dest_addr_length;	/* dlsap length of dest. user */
1292 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1293 	t_uscalar_t	dl_src_addr_length;	/* dlsap length of source */
1294 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1295 } dl_test_ind_t;
1296 
1297 /*
1298  *	DL_TEST_RES, M_PROTO type
1299  */
1300 typedef struct {
1301 	t_uscalar_t	dl_primitive;		/* DL_TEST_RES */
1302 	t_uscalar_t	dl_flag;		/* poll/final */
1303 	t_uscalar_t	dl_dest_addr_length;	/* DLSAP length of dest. user */
1304 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1305 } dl_test_res_t;
1306 
1307 /*
1308  *	DL_TEST_CON, M_PROTO type
1309  */
1310 typedef struct {
1311 	t_uscalar_t	dl_primitive;		/* DL_TEST_CON */
1312 	t_uscalar_t	dl_flag;		/* poll/final */
1313 	t_uscalar_t	dl_dest_addr_length;	/* dlsap length of dest. user */
1314 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1315 	t_uscalar_t	dl_src_addr_length;	/* dlsap length of source */
1316 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1317 } dl_test_con_t;
1318 
1319 /*
1320  * DL_XID_REQ, M_PROTO type
1321  */
1322 typedef struct {
1323 	t_uscalar_t	dl_primitive;		/* DL_XID_REQ */
1324 	t_uscalar_t	dl_flag;		/* poll/final */
1325 	t_uscalar_t	dl_dest_addr_length;	/* dlsap length of dest. user */
1326 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1327 } dl_xid_req_t;
1328 
1329 /*
1330  * DL_XID_IND, M_PROTO type
1331  */
1332 typedef struct {
1333 	t_uscalar_t	dl_primitive;		/* DL_XID_IND */
1334 	t_uscalar_t	dl_flag;		/* poll/final */
1335 	t_uscalar_t	dl_dest_addr_length;	/* dlsap length of dest. user */
1336 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1337 	t_uscalar_t	dl_src_addr_length;	/* dlsap length of source */
1338 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1339 } dl_xid_ind_t;
1340 
1341 /*
1342  *	DL_XID_RES, M_PROTO type
1343  */
1344 typedef struct {
1345 	t_uscalar_t	dl_primitive;		/* DL_XID_RES */
1346 	t_uscalar_t	dl_flag;		/* poll/final */
1347 	t_uscalar_t	dl_dest_addr_length;	/* DLSAP length of dest. user */
1348 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1349 } dl_xid_res_t;
1350 
1351 /*
1352  *	DL_XID_CON, M_PROTO type
1353  */
1354 typedef struct {
1355 	t_uscalar_t	dl_primitive;		/* DL_XID_CON */
1356 	t_uscalar_t	dl_flag;		/* poll/final */
1357 	t_uscalar_t	dl_dest_addr_length;	/* dlsap length of dest. user */
1358 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1359 	t_uscalar_t	dl_src_addr_length;	/* dlsap length of source */
1360 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1361 } dl_xid_con_t;
1362 
1363 /*
1364  *	ACKNOWLEDGED CONNECTIONLESS SERVICE PRIMITIVES
1365  */
1366 
1367 /*
1368  * DL_DATA_ACK_REQ, M_PROTO type
1369  */
1370 typedef struct {
1371 	t_uscalar_t	dl_primitive;		/* DL_DATA_ACK_REQ */
1372 	t_uscalar_t	dl_correlation;		/* User's correlation token */
1373 	t_uscalar_t	dl_dest_addr_length;	/* length of destination addr */
1374 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1375 	t_uscalar_t	dl_src_addr_length;	/* length of source address */
1376 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1377 	t_uscalar_t	dl_priority;		/* priority */
1378 	t_uscalar_t	dl_service_class;	/* DL_RQST_RSP|DL_RQST_NORSP */
1379 } dl_data_ack_req_t;
1380 
1381 /*
1382  * DL_DATA_ACK_IND, M_PROTO type
1383  */
1384 typedef struct {
1385 	t_uscalar_t	dl_primitive;		/* DL_DATA_ACK_IND */
1386 	t_uscalar_t	dl_dest_addr_length;	/* length of destination addr */
1387 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1388 	t_uscalar_t	dl_src_addr_length;	/* length of source address */
1389 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1390 	t_uscalar_t	dl_priority;		/* pri. for data unit transm. */
1391 	t_uscalar_t	dl_service_class;	/* DL_RQST_RSP|DL_RQST_NORSP */
1392 } dl_data_ack_ind_t;
1393 
1394 /*
1395  * DL_DATA_ACK_STATUS_IND, M_PROTO type
1396  */
1397 typedef struct {
1398 	t_uscalar_t	dl_primitive;	/* DL_DATA_ACK_STATUS_IND */
1399 	t_uscalar_t	dl_correlation;	/* User's correlation token */
1400 	t_uscalar_t	dl_status;	/* success or failure of previous req */
1401 } dl_data_ack_status_ind_t;
1402 
1403 /*
1404  * DL_REPLY_REQ, M_PROTO type
1405  */
1406 typedef struct {
1407 	t_uscalar_t	dl_primitive;		/* DL_REPLY_REQ */
1408 	t_uscalar_t	dl_correlation;		/* User's correlation token */
1409 	t_uscalar_t	dl_dest_addr_length;	/* destination address length */
1410 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1411 	t_uscalar_t	dl_src_addr_length;	/* source address length */
1412 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1413 	t_uscalar_t	dl_priority;		/* pri for data unit trans. */
1414 	t_uscalar_t	dl_service_class;
1415 } dl_reply_req_t;
1416 
1417 /*
1418  * DL_REPLY_IND, M_PROTO type
1419  */
1420 typedef struct {
1421 	t_uscalar_t	dl_primitive;		/* DL_REPLY_IND */
1422 	t_uscalar_t	dl_dest_addr_length;	/* destination address length */
1423 	t_uscalar_t	dl_dest_addr_offset;	/* offset from start of block */
1424 	t_uscalar_t	dl_src_addr_length;	/* length of source address */
1425 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1426 	t_uscalar_t	dl_priority;		/* pri for data unit trans. */
1427 	t_uscalar_t	dl_service_class;	/* DL_RQST_RSP|DL_RQST_NORSP */
1428 } dl_reply_ind_t;
1429 
1430 /*
1431  * DL_REPLY_STATUS_IND, M_PROTO type
1432  */
1433 typedef struct {
1434 	t_uscalar_t	dl_primitive;	/* DL_REPLY_STATUS_IND */
1435 	t_uscalar_t	dl_correlation;	/* User's correlation token */
1436 	t_uscalar_t	dl_status;	/* success or failure of previous req */
1437 } dl_reply_status_ind_t;
1438 
1439 /*
1440  * DL_REPLY_UPDATE_REQ, M_PROTO type
1441  */
1442 typedef struct {
1443 	t_uscalar_t	dl_primitive;		/* DL_REPLY_UPDATE_REQ */
1444 	t_uscalar_t	dl_correlation;		/* user's correlation token */
1445 	t_uscalar_t	dl_src_addr_length;	/* length of source address */
1446 	t_uscalar_t	dl_src_addr_offset;	/* offset from start of block */
1447 } dl_reply_update_req_t;
1448 
1449 /*
1450  * DL_REPLY_UPDATE_STATUS_IND, M_PROTO type
1451  */
1452 typedef struct {
1453 	t_uscalar_t	dl_primitive;	/* DL_REPLY_UPDATE_STATUS_IND */
1454 	t_uscalar_t	dl_correlation;	/* User's correlation token */
1455 	t_uscalar_t	dl_status;	/* success or failure of previous req */
1456 } dl_reply_update_status_ind_t;
1457 
1458 union DL_primitives {
1459 	t_uscalar_t		dl_primitive;
1460 	dl_info_req_t		info_req;
1461 	dl_info_ack_t		info_ack;
1462 	dl_attach_req_t		attach_req;
1463 	dl_detach_req_t		detach_req;
1464 	dl_bind_req_t		bind_req;
1465 	dl_bind_ack_t		bind_ack;
1466 	dl_unbind_req_t		unbind_req;
1467 	dl_subs_bind_req_t	subs_bind_req;
1468 	dl_subs_bind_ack_t	subs_bind_ack;
1469 	dl_subs_unbind_req_t	subs_unbind_req;
1470 	dl_ok_ack_t		ok_ack;
1471 	dl_error_ack_t		error_ack;
1472 	dl_connect_req_t	connect_req;
1473 	dl_connect_ind_t	connect_ind;
1474 	dl_connect_res_t	connect_res;
1475 	dl_connect_con_t	connect_con;
1476 	dl_token_req_t		token_req;
1477 	dl_token_ack_t		token_ack;
1478 	dl_disconnect_req_t	disconnect_req;
1479 	dl_disconnect_ind_t	disconnect_ind;
1480 	dl_reset_req_t		reset_req;
1481 	dl_reset_ind_t		reset_ind;
1482 	dl_reset_res_t		reset_res;
1483 	dl_reset_con_t		reset_con;
1484 	dl_unitdata_req_t	unitdata_req;
1485 	dl_unitdata_ind_t	unitdata_ind;
1486 	dl_uderror_ind_t	uderror_ind;
1487 	dl_udqos_req_t		udqos_req;
1488 	dl_enabmulti_req_t	enabmulti_req;
1489 	dl_disabmulti_req_t	disabmulti_req;
1490 	dl_promiscon_req_t	promiscon_req;
1491 	dl_promiscoff_req_t	promiscoff_req;
1492 	dl_phys_addr_req_t	physaddr_req;
1493 	dl_phys_addr_ack_t	physaddr_ack;
1494 	dl_set_phys_addr_req_t	set_physaddr_req;
1495 	dl_get_statistics_req_t	get_statistics_req;
1496 	dl_get_statistics_ack_t	get_statistics_ack;
1497 	dl_notify_req_t		notify_req;
1498 	dl_notify_ack_t		notify_ack;
1499 	dl_notify_ind_t		notify_ind;
1500 	dl_aggr_req_t		aggr_req;
1501 	dl_aggr_ind_t		aggr_ind;
1502 	dl_unaggr_req_t		unaggr_req;
1503 	dl_test_req_t		test_req;
1504 	dl_test_ind_t		test_ind;
1505 	dl_test_res_t		test_res;
1506 	dl_test_con_t		test_con;
1507 	dl_xid_req_t		xid_req;
1508 	dl_xid_ind_t		xid_ind;
1509 	dl_xid_res_t		xid_res;
1510 	dl_xid_con_t		xid_con;
1511 	dl_data_ack_req_t	data_ack_req;
1512 	dl_data_ack_ind_t	data_ack_ind;
1513 	dl_data_ack_status_ind_t	data_ack_status_ind;
1514 	dl_reply_req_t		reply_req;
1515 	dl_reply_ind_t		reply_ind;
1516 	dl_reply_status_ind_t	reply_status_ind;
1517 	dl_reply_update_req_t	reply_update_req;
1518 	dl_reply_update_status_ind_t	reply_update_status_ind;
1519 	dl_capability_req_t	capability_req;
1520 	dl_capability_ack_t	capability_ack;
1521 	dl_control_req_t	control_req;
1522 	dl_control_ack_t	control_ack;
1523 	dl_passive_req_t	passive_req;
1524 };
1525 
1526 #define	DL_INFO_REQ_SIZE	sizeof (dl_info_req_t)
1527 #define	DL_INFO_ACK_SIZE	sizeof (dl_info_ack_t)
1528 #define	DL_ATTACH_REQ_SIZE	sizeof (dl_attach_req_t)
1529 #define	DL_DETACH_REQ_SIZE	sizeof (dl_detach_req_t)
1530 #define	DL_BIND_REQ_SIZE	sizeof (dl_bind_req_t)
1531 #define	DL_BIND_ACK_SIZE	sizeof (dl_bind_ack_t)
1532 #define	DL_UNBIND_REQ_SIZE	sizeof (dl_unbind_req_t)
1533 #define	DL_SUBS_BIND_REQ_SIZE	sizeof (dl_subs_bind_req_t)
1534 #define	DL_SUBS_BIND_ACK_SIZE	sizeof (dl_subs_bind_ack_t)
1535 #define	DL_SUBS_UNBIND_REQ_SIZE	sizeof (dl_subs_unbind_req_t)
1536 #define	DL_OK_ACK_SIZE		sizeof (dl_ok_ack_t)
1537 #define	DL_ERROR_ACK_SIZE	sizeof (dl_error_ack_t)
1538 #define	DL_CONNECT_REQ_SIZE	sizeof (dl_connect_req_t)
1539 #define	DL_CONNECT_IND_SIZE	sizeof (dl_connect_ind_t)
1540 #define	DL_CONNECT_RES_SIZE	sizeof (dl_connect_res_t)
1541 #define	DL_CONNECT_CON_SIZE	sizeof (dl_connect_con_t)
1542 #define	DL_TOKEN_REQ_SIZE	sizeof (dl_token_req_t)
1543 #define	DL_TOKEN_ACK_SIZE	sizeof (dl_token_ack_t)
1544 #define	DL_DISCONNECT_REQ_SIZE	sizeof (dl_disconnect_req_t)
1545 #define	DL_DISCONNECT_IND_SIZE	sizeof (dl_disconnect_ind_t)
1546 #define	DL_RESET_REQ_SIZE	sizeof (dl_reset_req_t)
1547 #define	DL_RESET_IND_SIZE	sizeof (dl_reset_ind_t)
1548 #define	DL_RESET_RES_SIZE	sizeof (dl_reset_res_t)
1549 #define	DL_RESET_CON_SIZE	sizeof (dl_reset_con_t)
1550 #define	DL_UNITDATA_REQ_SIZE	sizeof (dl_unitdata_req_t)
1551 #define	DL_UNITDATA_IND_SIZE	sizeof (dl_unitdata_ind_t)
1552 #define	DL_UDERROR_IND_SIZE	sizeof (dl_uderror_ind_t)
1553 #define	DL_UDQOS_REQ_SIZE	sizeof (dl_udqos_req_t)
1554 #define	DL_ENABMULTI_REQ_SIZE	sizeof (dl_enabmulti_req_t)
1555 #define	DL_DISABMULTI_REQ_SIZE	sizeof (dl_disabmulti_req_t)
1556 #define	DL_PROMISCON_REQ_SIZE	sizeof (dl_promiscon_req_t)
1557 #define	DL_PROMISCOFF_REQ_SIZE	sizeof (dl_promiscoff_req_t)
1558 #define	DL_PHYS_ADDR_REQ_SIZE	sizeof (dl_phys_addr_req_t)
1559 #define	DL_PHYS_ADDR_ACK_SIZE	sizeof (dl_phys_addr_ack_t)
1560 #define	DL_SET_PHYS_ADDR_REQ_SIZE	sizeof (dl_set_phys_addr_req_t)
1561 #define	DL_GET_STATISTICS_REQ_SIZE	sizeof (dl_get_statistics_req_t)
1562 #define	DL_GET_STATISTICS_ACK_SIZE	sizeof (dl_get_statistics_ack_t)
1563 #define	DL_NOTIFY_REQ_SIZE	sizeof (dl_notify_req_t)
1564 #define	DL_NOTIFY_ACK_SIZE	sizeof (dl_notify_ack_t)
1565 #define	DL_NOTIFY_IND_SIZE	sizeof (dl_notify_ind_t)
1566 #define	DL_AGGR_REQ_SIZE	sizeof (dl_aggr_req_t)
1567 #define	DL_AGGR_IND_SIZE	sizeof (dl_aggr_ind_t)
1568 #define	DL_UNAGGR_REQ_SIZE	sizeof (dl_unaggr_req_t)
1569 #define	DL_XID_REQ_SIZE		sizeof (dl_xid_req_t)
1570 #define	DL_XID_IND_SIZE		sizeof (dl_xid_ind_t)
1571 #define	DL_XID_RES_SIZE		sizeof (dl_xid_res_t)
1572 #define	DL_XID_CON_SIZE		sizeof (dl_xid_con_t)
1573 #define	DL_TEST_REQ_SIZE	sizeof (dl_test_req_t)
1574 #define	DL_TEST_IND_SIZE	sizeof (dl_test_ind_t)
1575 #define	DL_TEST_RES_SIZE	sizeof (dl_test_res_t)
1576 #define	DL_TEST_CON_SIZE	sizeof (dl_test_con_t)
1577 #define	DL_DATA_ACK_REQ_SIZE	sizeof (dl_data_ack_req_t)
1578 #define	DL_DATA_ACK_IND_SIZE	sizeof (dl_data_ack_ind_t)
1579 #define	DL_DATA_ACK_STATUS_IND_SIZE	sizeof (dl_data_ack_status_ind_t)
1580 #define	DL_REPLY_REQ_SIZE	sizeof (dl_reply_req_t)
1581 #define	DL_REPLY_IND_SIZE	sizeof (dl_reply_ind_t)
1582 #define	DL_REPLY_STATUS_IND_SIZE	sizeof (dl_reply_status_ind_t)
1583 #define	DL_REPLY_UPDATE_REQ_SIZE	sizeof (dl_reply_update_req_t)
1584 #define	DL_REPLY_UPDATE_STATUS_IND_SIZE	sizeof (dl_reply_update_status_ind_t)
1585 #define	DL_CAPABILITY_REQ_SIZE	sizeof (dl_capability_req_t)
1586 #define	DL_CAPABILITY_ACK_SIZE	sizeof (dl_capability_ack_t)
1587 #define	DL_CONTROL_REQ_SIZE	sizeof (dl_control_req_t)
1588 #define	DL_CONTROL_ACK_SIZE	sizeof (dl_control_ack_t)
1589 #define	DL_PASSIVE_REQ_SIZE	sizeof (dl_passive_req_t)
1590 
1591 #ifdef	_KERNEL
1592 /*
1593  * The following are unstable, internal DLPI utility routines.
1594  */
1595 extern void	dlbindack(queue_t *, mblk_t *, t_scalar_t, void *, t_uscalar_t,
1596 		    t_uscalar_t, t_uscalar_t);
1597 extern void	dlokack(queue_t *, mblk_t *, t_uscalar_t);
1598 extern void	dlerrorack(queue_t *, mblk_t *, t_uscalar_t, t_uscalar_t,
1599 		    t_uscalar_t);
1600 extern void	dluderrorind(queue_t *, mblk_t *, void *, t_uscalar_t,
1601 		    t_uscalar_t, t_uscalar_t);
1602 extern void	dlphysaddrack(queue_t *, mblk_t *, void *, t_uscalar_t);
1603 extern void	dlcapabsetqid(dl_mid_t *, const queue_t *);
1604 extern boolean_t dlcapabcheckqid(const dl_mid_t *, const queue_t *);
1605 extern void	dlnotifyack(queue_t *, mblk_t *, uint32_t);
1606 #endif	/* _KERNEL */
1607 
1608 #ifdef	__cplusplus
1609 }
1610 #endif
1611 
1612 #endif /* _SYS_DLPI_H */
1613