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