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
|
/*
* 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 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* The softmac driver is used to "unify" non-GLDv3 drivers to the GLDv3
* framework. It also creates the kernel datalink structure for each
* physical network device.
*
* Specifically, a softmac will be created for each physical network device
* (dip) during the device's post-attach process. When this softmac is
* created, the following will also be done:
* - create the device's <link name, linkid> mapping;
* - register the mac if this is a non-GLDv3 device and the media type is
* supported by the GLDv3 framework;
* - create the kernel data-link structure for this physical device;
*
* This softmac will be destroyed during the device's pre-detach process,
* and all the above will be undone.
*/
#include <sys/types.h>
#include <sys/file.h>
#include <sys/cred.h>
#include <sys/dlpi.h>
#include <sys/mac_provider.h>
#include <sys/disp.h>
#include <sys/sunndi.h>
#include <sys/modhash.h>
#include <sys/stropts.h>
#include <sys/sysmacros.h>
#include <sys/vlan.h>
#include <sys/softmac_impl.h>
#include <sys/softmac.h>
#include <sys/dls.h>
/* Used as a parameter to the mod hash walk of softmac structures */
typedef struct {
softmac_t *smw_softmac;
boolean_t smw_retry;
} softmac_walk_t;
/*
* Softmac hash table including softmacs for both style-2 and style-1 devices.
*/
static krwlock_t softmac_hash_lock;
static mod_hash_t *softmac_hash;
static kmutex_t smac_global_lock;
static kcondvar_t smac_global_cv;
static kmem_cache_t *softmac_cachep;
#define SOFTMAC_HASHSZ 64
static void softmac_create_task(void *);
static void softmac_mac_register(softmac_t *);
static int softmac_create_datalink(softmac_t *);
static int softmac_m_start(void *);
static void softmac_m_stop(void *);
static int softmac_m_open(void *);
static void softmac_m_close(void *);
static boolean_t softmac_m_getcapab(void *, mac_capab_t, void *);
static int softmac_m_setprop(void *, const char *, mac_prop_id_t,
uint_t, const void *);
static int softmac_m_getprop(void *, const char *, mac_prop_id_t,
uint_t, uint_t, void *, uint_t *);
#define SOFTMAC_M_CALLBACK_FLAGS \
(MC_IOCTL | MC_GETCAPAB | MC_OPEN | MC_CLOSE | MC_SETPROP | MC_GETPROP)
static mac_callbacks_t softmac_m_callbacks = {
SOFTMAC_M_CALLBACK_FLAGS,
softmac_m_stat,
softmac_m_start,
softmac_m_stop,
softmac_m_promisc,
softmac_m_multicst,
softmac_m_unicst,
softmac_m_tx,
softmac_m_ioctl,
softmac_m_getcapab,
softmac_m_open,
softmac_m_close,
softmac_m_setprop,
softmac_m_getprop
};
/*ARGSUSED*/
static int
softmac_constructor(void *buf, void *arg, int kmflag)
{
softmac_t *softmac = buf;
bzero(buf, sizeof (softmac_t));
mutex_init(&softmac->smac_mutex, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&softmac->smac_active_mutex, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&softmac->smac_fp_mutex, NULL, MUTEX_DEFAULT, NULL);
cv_init(&softmac->smac_cv, NULL, CV_DEFAULT, NULL);
cv_init(&softmac->smac_fp_cv, NULL, CV_DEFAULT, NULL);
list_create(&softmac->smac_sup_list, sizeof (softmac_upper_t),
offsetof(softmac_upper_t, su_list_node));
return (0);
}
/*ARGSUSED*/
static void
softmac_destructor(void *buf, void *arg)
{
softmac_t *softmac = buf;
ASSERT(softmac->smac_fp_disable_clients == 0);
ASSERT(!softmac->smac_fastpath_admin_disabled);
ASSERT(!(softmac->smac_flags & SOFTMAC_ATTACH_DONE));
ASSERT(softmac->smac_hold_cnt == 0);
ASSERT(softmac->smac_attachok_cnt == 0);
ASSERT(softmac->smac_mh == NULL);
ASSERT(softmac->smac_softmac[0] == NULL &&
softmac->smac_softmac[1] == NULL);
ASSERT(softmac->smac_state == SOFTMAC_INITIALIZED);
ASSERT(softmac->smac_lower == NULL);
ASSERT(softmac->smac_active == B_FALSE);
ASSERT(softmac->smac_nactive == 0);
ASSERT(list_is_empty(&softmac->smac_sup_list));
list_destroy(&softmac->smac_sup_list);
mutex_destroy(&softmac->smac_mutex);
mutex_destroy(&softmac->smac_active_mutex);
mutex_destroy(&softmac->smac_fp_mutex);
cv_destroy(&softmac->smac_cv);
cv_destroy(&softmac->smac_fp_cv);
}
void
softmac_init()
{
softmac_hash = mod_hash_create_extended("softmac_hash",
SOFTMAC_HASHSZ, mod_hash_null_keydtor, mod_hash_null_valdtor,
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
rw_init(&softmac_hash_lock, NULL, RW_DEFAULT, NULL);
mutex_init(&smac_global_lock, NULL, MUTEX_DRIVER, NULL);
cv_init(&smac_global_cv, NULL, CV_DRIVER, NULL);
softmac_cachep = kmem_cache_create("softmac_cache",
sizeof (softmac_t), 0, softmac_constructor,
softmac_destructor, NULL, NULL, NULL, 0);
ASSERT(softmac_cachep != NULL);
softmac_fp_init();
}
void
softmac_fini()
{
softmac_fp_fini();
kmem_cache_destroy(softmac_cachep);
rw_destroy(&softmac_hash_lock);
mod_hash_destroy_hash(softmac_hash);
mutex_destroy(&smac_global_lock);
cv_destroy(&smac_global_cv);
}
/* ARGSUSED */
static uint_t
softmac_exist(mod_hash_key_t key, mod_hash_val_t *val, void *arg)
{
boolean_t *pexist = arg;
*pexist = B_TRUE;
return (MH_WALK_TERMINATE);
}
boolean_t
softmac_busy()
{
boolean_t exist = B_FALSE;
rw_enter(&softmac_hash_lock, RW_READER);
mod_hash_walk(softmac_hash, softmac_exist, &exist);
rw_exit(&softmac_hash_lock);
return (exist);
}
/*
*
* softmac_create() is called for each minor node during the post-attach of
* each DDI_NT_NET device instance. Note that it is possible that a device
* instance has two minor nodes (DLPI style-1 and style-2), so that for that
* specific device, softmac_create() could be called twice.
*
* A softmac_t is used to track each DDI_NT_NET device, and a softmac_dev_t
* is created to track each minor node.
*
* For each minor node of a legacy device, a taskq is started to finish
* softmac_mac_register(), which will finish the rest of work (see comments
* above softmac_mac_register()).
*
* softmac state machine
* --------------------------------------------------------------------------
* OLD STATE EVENT NEW STATE
* --------------------------------------------------------------------------
* UNINIT attach of 1st minor node ATTACH_INPROG
* okcnt = 0 net_postattach -> softmac_create okcnt = 1
*
* ATTACH_INPROG attach of 2nd minor node (GLDv3) ATTACH_DONE
* okcnt = 1 net_postattach -> softmac_create okcnt = 2
*
* ATTACH_INPROG attach of 2nd minor node (legacy) ATTACH_INPROG
* okcnt = 1 net_postattach -> softmac_create okcnt = 2
* schedule softmac_mac_register
*
* ATTACH_INPROG legacy device node ATTACH_DONE
* okcnt = 2 softmac_mac_register okcnt = 2
*
* ATTACH_DONE detach of 1st minor node DETACH_INPROG
* okcnt = 2 (success) okcnt = 1
*
* DETACH_INPROG detach of 2nd minor node UNINIT (or free)
* okcnt = 1 (success) okcnt = 0
*
* ATTACH_DONE detach failure state unchanged
* DETACH_INPROG left = okcnt
*
* DETACH_INPROG reattach ATTACH_INPROG
* okcnt = 0,1 net_postattach -> softmac_create
*
* ATTACH_DONE reattach ATTACH_DONE
* left != 0 net_postattach -> softmac_create left = 0
*
* Abbreviation notes:
* states have SOFTMAC_ prefix,
* okcnt - softmac_attach_okcnt,
* left - softmac_attached_left
*/
#ifdef DEBUG
void
softmac_state_verify(softmac_t *softmac)
{
ASSERT(MUTEX_HELD(&softmac->smac_mutex));
/*
* There are at most 2 minor nodes, one per DLPI style
*/
ASSERT(softmac->smac_cnt <= 2 && softmac->smac_attachok_cnt <= 2);
/*
* The smac_attachok_cnt represents the number of attaches i.e. the
* number of times net_postattach -> softmac_create() has been called
* for a device instance.
*/
ASSERT(softmac->smac_attachok_cnt == SMAC_NONZERO_NODECNT(softmac));
/*
* softmac_create (or softmac_mac_register) -> softmac_create_datalink
* happens only after all minor nodes have been attached
*/
ASSERT(softmac->smac_state != SOFTMAC_ATTACH_DONE ||
softmac->smac_attachok_cnt == softmac->smac_cnt);
if (softmac->smac_attachok_cnt == 0) {
ASSERT(softmac->smac_state == SOFTMAC_UNINIT);
ASSERT(softmac->smac_mh == NULL);
} else if (softmac->smac_attachok_cnt < softmac->smac_cnt) {
ASSERT(softmac->smac_state == SOFTMAC_ATTACH_INPROG ||
softmac->smac_state == SOFTMAC_DETACH_INPROG);
ASSERT(softmac->smac_mh == NULL);
} else {
/*
* In the stable condition the state whould be
* SOFTMAC_ATTACH_DONE. But there is a small transient window
* in softmac_destroy where we change the state to
* SOFTMAC_DETACH_INPROG and drop the lock before doing
* the link destroy
*/
ASSERT(softmac->smac_attachok_cnt == softmac->smac_cnt);
ASSERT(softmac->smac_state != SOFTMAC_UNINIT);
}
if (softmac->smac_mh != NULL)
ASSERT(softmac->smac_attachok_cnt == softmac->smac_cnt);
}
#endif
#ifdef DEBUG
#define SOFTMAC_STATE_VERIFY(softmac) softmac_state_verify(softmac)
#else
#define SOFTMAC_STATE_VERIFY(softmac)
#endif
int
softmac_create(dev_info_t *dip, dev_t dev)
{
char devname[MAXNAMELEN];
softmac_t *softmac;
softmac_dev_t *softmac_dev = NULL;
int index;
int ppa, err = 0;
/*
* Force the softmac driver to be attached.
*/
if (i_ddi_attach_pseudo_node(SOFTMAC_DEV_NAME) == NULL) {
cmn_err(CE_WARN, "softmac_create:softmac attach fails");
return (ENXIO);
}
ppa = ddi_get_instance(dip);
(void) snprintf(devname, MAXNAMELEN, "%s%d", ddi_driver_name(dip), ppa);
/*
* We expect legacy devices have at most two minor nodes - one style-1
* and one style-2.
*/
if (!GLDV3_DRV(ddi_driver_major(dip)) &&
i_ddi_minor_node_count(dip, DDI_NT_NET) > 2) {
cmn_err(CE_WARN, "%s has more than 2 minor nodes; unsupported",
devname);
return (ENOTSUP);
}
/*
* Check whether the softmac for the specified device already exists
*/
rw_enter(&softmac_hash_lock, RW_WRITER);
if ((mod_hash_find(softmac_hash, (mod_hash_key_t)devname,
(mod_hash_val_t *)&softmac)) != 0) {
softmac = kmem_cache_alloc(softmac_cachep, KM_SLEEP);
(void) strlcpy(softmac->smac_devname, devname, MAXNAMELEN);
err = mod_hash_insert(softmac_hash,
(mod_hash_key_t)softmac->smac_devname,
(mod_hash_val_t)softmac);
ASSERT(err == 0);
mutex_enter(&smac_global_lock);
cv_broadcast(&smac_global_cv);
mutex_exit(&smac_global_lock);
}
mutex_enter(&softmac->smac_mutex);
SOFTMAC_STATE_VERIFY(softmac);
if (softmac->smac_state != SOFTMAC_ATTACH_DONE)
softmac->smac_state = SOFTMAC_ATTACH_INPROG;
if (softmac->smac_attachok_cnt == 0) {
/*
* Initialize the softmac if this is the post-attach of the
* first minor node.
*/
softmac->smac_flags = 0;
softmac->smac_umajor = ddi_driver_major(dip);
softmac->smac_uppa = ppa;
/*
* Note that for GLDv3 devices, we create devfs minor nodes
* for VLANs as well. Assume a GLDv3 driver on which only
* a VLAN is created. During the detachment of this device
* instance, the following would happen:
* a. the pre-detach callback softmac_destroy() succeeds.
* Because the physical link itself is not in use,
* softmac_destroy() succeeds and destroys softmac_t;
* b. the device detach fails in mac_unregister() because
* this MAC is still used by a VLAN.
* c. the post-attach callback is then called which leads
* us here. Note that ddi_minor_node_count() returns 3
* (including the minior node of the VLAN). In that case,
* we must correct the minor node count to 2 as that is
* the count of minor nodes that go through post-attach.
*/
if (GLDV3_DRV(ddi_driver_major(dip))) {
softmac->smac_flags |= SOFTMAC_GLDV3;
softmac->smac_cnt = 2;
} else {
softmac->smac_cnt =
i_ddi_minor_node_count(dip, DDI_NT_NET);
}
}
index = (getmajor(dev) == ddi_name_to_major("clone"));
if (softmac->smac_softmac[index] != NULL) {
/*
* This is possible if the post_attach() is called after
* pre_detach() fails. This seems to be a defect of the DACF
* framework. We work around it by using a smac_attached_left
* field that tracks this
*/
ASSERT(softmac->smac_attached_left != 0);
softmac->smac_attached_left--;
mutex_exit(&softmac->smac_mutex);
rw_exit(&softmac_hash_lock);
return (0);
}
mutex_exit(&softmac->smac_mutex);
rw_exit(&softmac_hash_lock);
softmac_dev = kmem_zalloc(sizeof (softmac_dev_t), KM_SLEEP);
softmac_dev->sd_dev = dev;
mutex_enter(&softmac->smac_mutex);
softmac->smac_softmac[index] = softmac_dev;
/*
* Continue to register the mac and create the datalink only when all
* the minor nodes are attached.
*/
if (++softmac->smac_attachok_cnt != softmac->smac_cnt) {
mutex_exit(&softmac->smac_mutex);
return (0);
}
/*
* All of the minor nodes have been attached; start a taskq
* to do the rest of the work. We use a taskq instead of
* doing the work here because:
*
* We could be called as a result of a open() system call
* where spec_open() already SLOCKED the snode. Using a taskq
* sidesteps the risk that our ldi_open_by_dev() call would
* deadlock trying to set SLOCKED on the snode again.
*
* The devfs design requires that the downcalls don't use any
* interruptible cv_wait which happens when we do door upcalls.
* Otherwise the downcalls which may be holding devfs resources
* may cause a deadlock if the thread is stopped. Also we need to make
* sure these downcalls into softmac_create or softmac_destroy
* don't cv_wait on any devfs related condition. Thus softmac_destroy
* returns EBUSY if the asynchronous threads started in softmac_create
* haven't finished.
*/
(void) taskq_dispatch(system_taskq, softmac_create_task,
softmac, TQ_SLEEP);
mutex_exit(&softmac->smac_mutex);
return (0);
}
static boolean_t
softmac_m_getcapab(void *arg, mac_capab_t cap, void *cap_data)
{
softmac_t *softmac = arg;
if (!(softmac->smac_capab_flags & cap))
return (B_FALSE);
switch (cap) {
case MAC_CAPAB_HCKSUM: {
uint32_t *txflags = cap_data;
*txflags = softmac->smac_hcksum_txflags;
break;
}
case MAC_CAPAB_LEGACY: {
mac_capab_legacy_t *legacy = cap_data;
/*
* The caller is not interested in the details.
*/
if (legacy == NULL)
break;
legacy->ml_unsup_note = ~softmac->smac_notifications &
(DL_NOTE_LINK_UP | DL_NOTE_LINK_DOWN | DL_NOTE_SPEED);
legacy->ml_active_set = softmac_active_set;
legacy->ml_active_clear = softmac_active_clear;
legacy->ml_fastpath_disable = softmac_fastpath_disable;
legacy->ml_fastpath_enable = softmac_fastpath_enable;
legacy->ml_dev = makedevice(softmac->smac_umajor,
softmac->smac_uppa + 1);
break;
}
/*
* For the capabilities below, there's nothing for us to fill in;
* simply return B_TRUE if we support it.
*/
case MAC_CAPAB_NO_ZCOPY:
case MAC_CAPAB_NO_NATIVEVLAN:
default:
break;
}
return (B_TRUE);
}
static int
softmac_update_info(softmac_t *softmac, datalink_id_t *linkidp)
{
datalink_id_t linkid = DATALINK_INVALID_LINKID;
uint32_t media;
int err;
if ((err = dls_mgmt_update(softmac->smac_devname, softmac->smac_media,
softmac->smac_flags & SOFTMAC_NOSUPP, &media, &linkid)) == 0) {
*linkidp = linkid;
}
if (err == EEXIST) {
/*
* There is a link name conflict. Either:
*
* - An existing link with the same device name with a
* different media type from of the given type.
* Mark this link back to persistent only; or
*
* - We cannot assign the "suggested" name because
* GLDv3 and therefore vanity naming is not supported
* for this link type. Delete this link's <link name,
* linkid> mapping.
*/
if (media != softmac->smac_media) {
cmn_err(CE_WARN, "%s device %s conflicts with "
"existing %s device %s.",
dl_mactypestr(softmac->smac_media),
softmac->smac_devname, dl_mactypestr(media),
softmac->smac_devname);
(void) dls_mgmt_destroy(linkid, B_FALSE);
} else {
cmn_err(CE_WARN, "link name %s is already in-use.",
softmac->smac_devname);
(void) dls_mgmt_destroy(linkid, B_TRUE);
}
cmn_err(CE_WARN, "%s device might not be available "
"for use.", softmac->smac_devname);
cmn_err(CE_WARN, "See dladm(1M) for more information.");
}
return (err);
}
/*
* This function:
* 1. provides the link's media type to dlmgmtd.
* 2. creates the GLDv3 datalink if the media type is supported by GLDv3.
*/
static int
softmac_create_datalink(softmac_t *softmac)
{
datalink_id_t linkid = DATALINK_INVALID_LINKID;
int err;
/*
* Inform dlmgmtd of this link so that softmac_hold_device() is able
* to know the existence of this link. If this failed with EBADF,
* it might be because dlmgmtd was not started in time (e.g.,
* diskless boot); ignore the failure and continue to create
* the GLDv3 datalink if needed.
*/
err = dls_mgmt_create(softmac->smac_devname,
makedevice(softmac->smac_umajor, softmac->smac_uppa + 1),
DATALINK_CLASS_PHYS, DL_OTHER, B_TRUE, &linkid);
if (err != 0 && err != EBADF)
return (err);
/*
* Provide the media type of the physical link to dlmgmtd.
*/
if ((err != EBADF) &&
((err = softmac_update_info(softmac, &linkid)) != 0)) {
return (err);
}
/*
* Create the GLDv3 datalink.
*/
if ((!(softmac->smac_flags & SOFTMAC_NOSUPP)) &&
((err = dls_devnet_create(softmac->smac_mh, linkid)) != 0)) {
cmn_err(CE_WARN, "dls_devnet_create failed for %s",
softmac->smac_devname);
return (err);
}
if (linkid == DATALINK_INVALID_LINKID) {
mutex_enter(&softmac->smac_mutex);
softmac->smac_flags |= SOFTMAC_NEED_RECREATE;
mutex_exit(&softmac->smac_mutex);
}
return (0);
}
static void
softmac_create_task(void *arg)
{
softmac_t *softmac = arg;
mac_handle_t mh;
int err;
if (!GLDV3_DRV(softmac->smac_umajor)) {
softmac_mac_register(softmac);
return;
}
if ((err = mac_open(softmac->smac_devname, &mh)) != 0)
goto done;
mutex_enter(&softmac->smac_mutex);
softmac->smac_media = (mac_info(mh))->mi_nativemedia;
softmac->smac_mh = mh;
mutex_exit(&softmac->smac_mutex);
/*
* We can safely release the reference on the mac because
* this mac will only be unregistered and destroyed when
* the device detaches, and the softmac will be destroyed
* before then (in the pre-detach routine of the device).
*/
mac_close(mh);
/*
* Create the GLDv3 datalink for this mac.
*/
err = softmac_create_datalink(softmac);
done:
mutex_enter(&softmac->smac_mutex);
if (err != 0)
softmac->smac_mh = NULL;
softmac->smac_attacherr = err;
softmac->smac_state = SOFTMAC_ATTACH_DONE;
cv_broadcast(&softmac->smac_cv);
mutex_exit(&softmac->smac_mutex);
}
/*
* This function is only called for legacy devices. It:
* 1. registers the MAC for the legacy devices whose media type is supported
* by the GLDv3 framework.
* 2. creates the GLDv3 datalink if the media type is supported by GLDv3.
*/
static void
softmac_mac_register(softmac_t *softmac)
{
softmac_dev_t *softmac_dev;
dev_t dev;
ldi_handle_t lh = NULL;
ldi_ident_t li = NULL;
int index;
boolean_t native_vlan = B_FALSE;
int err;
/*
* Note that we do not need any locks to access this softmac pointer,
* as softmac_destroy() will wait until this function is called.
*/
ASSERT(softmac != NULL);
ASSERT(softmac->smac_state == SOFTMAC_ATTACH_INPROG &&
softmac->smac_attachok_cnt == softmac->smac_cnt);
if ((err = ldi_ident_from_dip(softmac_dip, &li)) != 0) {
mutex_enter(&softmac->smac_mutex);
goto done;
}
/*
* Determine whether this legacy device support VLANs by opening
* the style-2 device node (if it exists) and attaching to a VLAN
* PPA (1000 + ppa).
*/
dev = makedevice(ddi_name_to_major("clone"), softmac->smac_umajor);
err = ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh, li);
if (err == 0) {
if (dl_attach(lh, softmac->smac_uppa + 1 * 1000, NULL) == 0)
native_vlan = B_TRUE;
(void) ldi_close(lh, FREAD|FWRITE, kcred);
}
err = EINVAL;
for (index = 0; index < 2; index++) {
dl_info_ack_t dlia;
dl_error_ack_t dlea;
uint32_t notes;
struct strioctl iocb;
uint32_t margin;
int rval;
if ((softmac_dev = softmac->smac_softmac[index]) == NULL)
continue;
softmac->smac_dev = dev = softmac_dev->sd_dev;
if (ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh,
li) != 0) {
continue;
}
/*
* Pop all the intermediate modules in order to negotiate
* capabilities correctly.
*/
while (ldi_ioctl(lh, I_POP, 0, FKIOCTL, kcred, &rval) == 0)
;
/* DLPI style-1 or DLPI style-2? */
if ((rval = dl_info(lh, &dlia, NULL, NULL, &dlea)) != 0) {
if (rval == ENOTSUP) {
cmn_err(CE_NOTE, "softmac: received "
"DL_ERROR_ACK to DL_INFO_ACK; "
"DLPI errno 0x%x, UNIX errno %d",
dlea.dl_errno, dlea.dl_unix_errno);
}
(void) ldi_close(lh, FREAD|FWRITE, kcred);
continue;
}
/*
* Currently only DL_ETHER has GLDv3 mac plugin support.
* For media types that GLDv3 does not support, create a
* link id for it.
*/
if ((softmac->smac_media = dlia.dl_mac_type) != DL_ETHER) {
(void) ldi_close(lh, FREAD|FWRITE, kcred);
err = 0;
break;
}
if ((dlia.dl_provider_style == DL_STYLE2) &&
(dl_attach(lh, softmac->smac_uppa, NULL) != 0)) {
(void) ldi_close(lh, FREAD|FWRITE, kcred);
continue;
}
if ((rval = dl_bind(lh, 0, NULL)) != 0) {
if (rval == ENOTSUP) {
cmn_err(CE_NOTE, "softmac: received "
"DL_ERROR_ACK to DL_BIND_ACK; "
"DLPI errno 0x%x, UNIX errno %d",
dlea.dl_errno, dlea.dl_unix_errno);
}
(void) ldi_close(lh, FREAD|FWRITE, kcred);
continue;
}
/*
* Call dl_info() after dl_bind() because some drivers only
* provide correct information (e.g. MAC address) once bound.
*/
softmac->smac_addrlen = sizeof (softmac->smac_unicst_addr);
if ((rval = dl_info(lh, &dlia, softmac->smac_unicst_addr,
&softmac->smac_addrlen, &dlea)) != 0) {
if (rval == ENOTSUP) {
cmn_err(CE_NOTE, "softmac: received "
"DL_ERROR_ACK to DL_INFO_ACK; "
"DLPI errno 0x%x, UNIX errno %d",
dlea.dl_errno, dlea.dl_unix_errno);
}
(void) ldi_close(lh, FREAD|FWRITE, kcred);
continue;
}
softmac->smac_style = dlia.dl_provider_style;
softmac->smac_saplen = ABS(dlia.dl_sap_length);
softmac->smac_min_sdu = dlia.dl_min_sdu;
softmac->smac_max_sdu = dlia.dl_max_sdu;
if ((softmac->smac_saplen != sizeof (uint16_t)) ||
(softmac->smac_addrlen != ETHERADDRL) ||
(dlia.dl_brdcst_addr_length != ETHERADDRL) ||
(dlia.dl_brdcst_addr_offset == 0)) {
(void) ldi_close(lh, FREAD|FWRITE, kcred);
continue;
}
/*
* Check other DLPI capabilities. Note that this must be after
* dl_bind() because some drivers return DL_ERROR_ACK if the
* stream is not bound. It is also before mac_register(), so
* we don't need any lock protection here.
*/
softmac->smac_capab_flags =
(MAC_CAPAB_NO_ZCOPY | MAC_CAPAB_LEGACY);
softmac->smac_no_capability_req = B_FALSE;
if (softmac_fill_capab(lh, softmac) != 0)
softmac->smac_no_capability_req = B_TRUE;
/*
* Check the margin of the underlying driver.
*/
margin = 0;
iocb.ic_cmd = DLIOCMARGININFO;
iocb.ic_timout = INFTIM;
iocb.ic_len = sizeof (margin);
iocb.ic_dp = (char *)&margin;
softmac->smac_margin = 0;
if (ldi_ioctl(lh, I_STR, (intptr_t)&iocb, FKIOCTL, kcred,
&rval) == 0) {
softmac->smac_margin = margin;
}
/*
* If the legacy driver doesn't support DLIOCMARGININFO, but
* it can support native VLAN, correct its margin value to 4.
*/
if (native_vlan) {
if (softmac->smac_margin == 0)
softmac->smac_margin = VLAN_TAGSZ;
} else {
softmac->smac_capab_flags |= MAC_CAPAB_NO_NATIVEVLAN;
}
/*
* Not all drivers support DL_NOTIFY_REQ, so ignore ENOTSUP.
*/
softmac->smac_notifications = 0;
notes = DL_NOTE_PHYS_ADDR | DL_NOTE_LINK_UP | DL_NOTE_LINK_DOWN;
switch (dl_notify(lh, ¬es, NULL)) {
case 0:
softmac->smac_notifications = notes;
break;
case ENOTSUP:
break;
default:
(void) ldi_close(lh, FREAD|FWRITE, kcred);
continue;
}
(void) ldi_close(lh, FREAD|FWRITE, kcred);
err = 0;
break;
}
ldi_ident_release(li);
mutex_enter(&softmac->smac_mutex);
if (err != 0)
goto done;
if (softmac->smac_media != DL_ETHER)
softmac->smac_flags |= SOFTMAC_NOSUPP;
/*
* Finally, we're ready to register ourselves with the MAC layer
* interface; if this succeeds, we're all ready to start()
*/
if (!(softmac->smac_flags & SOFTMAC_NOSUPP)) {
mac_register_t *macp;
if ((macp = mac_alloc(MAC_VERSION)) == NULL) {
err = ENOMEM;
goto done;
}
macp->m_type_ident = MAC_PLUGIN_IDENT_ETHER;
macp->m_driver = softmac;
macp->m_dip = softmac_dip;
macp->m_margin = softmac->smac_margin;
macp->m_src_addr = softmac->smac_unicst_addr;
macp->m_min_sdu = softmac->smac_min_sdu;
macp->m_max_sdu = softmac->smac_max_sdu;
macp->m_callbacks = &softmac_m_callbacks;
macp->m_instance = (uint_t)-1;
err = mac_register(macp, &softmac->smac_mh);
mac_free(macp);
if (err != 0) {
cmn_err(CE_WARN, "mac_register failed for %s",
softmac->smac_devname);
goto done;
}
}
mutex_exit(&softmac->smac_mutex);
/*
* Try to create the datalink for this softmac.
*/
if ((err = softmac_create_datalink(softmac)) != 0) {
if (!(softmac->smac_flags & SOFTMAC_NOSUPP))
(void) mac_unregister(softmac->smac_mh);
mutex_enter(&softmac->smac_mutex);
softmac->smac_mh = NULL;
goto done;
}
/*
* If succeed, create the thread which handles the DL_NOTIFY_IND from
* the lower stream.
*/
mutex_enter(&softmac->smac_mutex);
if (softmac->smac_mh != NULL) {
softmac->smac_notify_thread = thread_create(NULL, 0,
softmac_notify_thread, softmac, 0, &p0,
TS_RUN, minclsyspri);
}
done:
ASSERT(softmac->smac_state == SOFTMAC_ATTACH_INPROG &&
softmac->smac_attachok_cnt == softmac->smac_cnt);
softmac->smac_state = SOFTMAC_ATTACH_DONE;
softmac->smac_attacherr = err;
cv_broadcast(&softmac->smac_cv);
mutex_exit(&softmac->smac_mutex);
}
int
softmac_destroy(dev_info_t *dip, dev_t dev)
{
char devname[MAXNAMELEN];
softmac_t *softmac;
softmac_dev_t *softmac_dev;
int index;
int ppa, err;
datalink_id_t linkid;
mac_handle_t smac_mh;
uint32_t smac_flags;
ppa = ddi_get_instance(dip);
(void) snprintf(devname, MAXNAMELEN, "%s%d", ddi_driver_name(dip), ppa);
/*
* We are called only from the predetach entry point. The DACF
* framework ensures there can't be a concurrent postattach call
* for the same softmac. The softmac found out from the modhash
* below can't vanish beneath us since this is the only place where
* it is deleted.
*/
err = mod_hash_find(softmac_hash, (mod_hash_key_t)devname,
(mod_hash_val_t *)&softmac);
ASSERT(err == 0);
mutex_enter(&softmac->smac_mutex);
SOFTMAC_STATE_VERIFY(softmac);
/*
* Fail the predetach routine if this softmac is in-use.
* Make sure these downcalls into softmac_create or softmac_destroy
* don't cv_wait on any devfs related condition. Thus softmac_destroy
* returns EBUSY if the asynchronous thread started in softmac_create
* hasn't finished
*/
if ((softmac->smac_hold_cnt != 0) ||
(softmac->smac_state == SOFTMAC_ATTACH_INPROG)) {
softmac->smac_attached_left = softmac->smac_attachok_cnt;
mutex_exit(&softmac->smac_mutex);
return (EBUSY);
}
/*
* Even if the predetach of one minor node has already failed
* (smac_attached_left is not 0), the DACF framework will continue
* to call the predetach routines of the other minor nodes,
* so we fail these calls here.
*/
if (softmac->smac_attached_left != 0) {
mutex_exit(&softmac->smac_mutex);
return (EBUSY);
}
smac_mh = softmac->smac_mh;
smac_flags = softmac->smac_flags;
softmac->smac_state = SOFTMAC_DETACH_INPROG;
mutex_exit(&softmac->smac_mutex);
if (smac_mh != NULL) {
/*
* This is the first minor node that is being detached for this
* softmac.
*/
ASSERT(softmac->smac_attachok_cnt == softmac->smac_cnt);
if (!(smac_flags & SOFTMAC_NOSUPP)) {
if ((err = dls_devnet_destroy(smac_mh, &linkid,
B_FALSE)) != 0) {
goto error;
}
}
/*
* If softmac_mac_register() succeeds in registering the mac
* of the legacy device, unregister it.
*/
if (!(smac_flags & (SOFTMAC_GLDV3 | SOFTMAC_NOSUPP))) {
if ((err = mac_disable_nowait(smac_mh)) != 0) {
(void) dls_devnet_create(smac_mh, linkid);
goto error;
}
/*
* Ask softmac_notify_thread to quit, and wait for
* that to be done.
*/
mutex_enter(&softmac->smac_mutex);
softmac->smac_flags |= SOFTMAC_NOTIFY_QUIT;
cv_broadcast(&softmac->smac_cv);
while (softmac->smac_notify_thread != NULL) {
cv_wait(&softmac->smac_cv,
&softmac->smac_mutex);
}
mutex_exit(&softmac->smac_mutex);
VERIFY(mac_unregister(smac_mh) == 0);
}
softmac->smac_mh = NULL;
}
/*
* Free softmac_dev
*/
rw_enter(&softmac_hash_lock, RW_WRITER);
mutex_enter(&softmac->smac_mutex);
ASSERT(softmac->smac_state == SOFTMAC_DETACH_INPROG &&
softmac->smac_attachok_cnt != 0);
softmac->smac_mh = NULL;
index = (getmajor(dev) == ddi_name_to_major("clone"));
softmac_dev = softmac->smac_softmac[index];
ASSERT(softmac_dev != NULL);
softmac->smac_softmac[index] = NULL;
kmem_free(softmac_dev, sizeof (softmac_dev_t));
if (--softmac->smac_attachok_cnt == 0) {
mod_hash_val_t hashval;
softmac->smac_state = SOFTMAC_UNINIT;
if (softmac->smac_hold_cnt != 0) {
/*
* Someone did a softmac_hold_device while we dropped
* the locks. Leave the softmac itself intact which
* will be reused by the reattach
*/
mutex_exit(&softmac->smac_mutex);
rw_exit(&softmac_hash_lock);
return (0);
}
err = mod_hash_remove(softmac_hash,
(mod_hash_key_t)devname,
(mod_hash_val_t *)&hashval);
ASSERT(err == 0);
mutex_exit(&softmac->smac_mutex);
rw_exit(&softmac_hash_lock);
ASSERT(softmac->smac_fp_disable_clients == 0);
softmac->smac_fastpath_admin_disabled = B_FALSE;
kmem_cache_free(softmac_cachep, softmac);
return (0);
}
mutex_exit(&softmac->smac_mutex);
rw_exit(&softmac_hash_lock);
return (0);
error:
mutex_enter(&softmac->smac_mutex);
softmac->smac_attached_left = softmac->smac_attachok_cnt;
softmac->smac_state = SOFTMAC_ATTACH_DONE;
cv_broadcast(&softmac->smac_cv);
mutex_exit(&softmac->smac_mutex);
return (err);
}
/*
* This function is called as the result of a newly started dlmgmtd daemon.
*
* We walk through every softmac that was created but failed to notify
* dlmgmtd about it (whose SOFTMAC_NEED_RECREATE flag is set). This occurs
* when softmacs are created before dlmgmtd is ready. For example, during
* diskless boot, a network device is used (and therefore attached) before
* the datalink-management service starts dlmgmtd.
*/
/* ARGSUSED */
static uint_t
softmac_mac_recreate(mod_hash_key_t key, mod_hash_val_t *val, void *arg)
{
softmac_t *softmac = (softmac_t *)val;
datalink_id_t linkid;
int err;
softmac_walk_t *smwp = arg;
/*
* The framework itself must not hold any locks across calls to the
* mac perimeter. Thus this function does not call any framework
* function that needs to grab the mac perimeter.
*/
ASSERT(RW_READ_HELD(&softmac_hash_lock));
smwp->smw_retry = B_FALSE;
mutex_enter(&softmac->smac_mutex);
SOFTMAC_STATE_VERIFY(softmac);
if (softmac->smac_state == SOFTMAC_ATTACH_INPROG) {
/*
* Wait till softmac_create or softmac_mac_register finishes
* Hold the softmac to ensure it stays around. The wait itself
* is done in the caller, since we need to drop all locks
* including the mod hash's internal lock before calling
* cv_wait.
*/
smwp->smw_retry = B_TRUE;
smwp->smw_softmac = softmac;
softmac->smac_hold_cnt++;
return (MH_WALK_TERMINATE);
}
if ((softmac->smac_state != SOFTMAC_ATTACH_DONE) ||
!(softmac->smac_flags & SOFTMAC_NEED_RECREATE)) {
mutex_exit(&softmac->smac_mutex);
return (MH_WALK_CONTINUE);
}
/*
* Bumping up the smac_hold_cnt allows us to drop the lock. It also
* makes softmac_destroy() return failure on an attempted device detach.
* We don't want to hold the lock across calls to other subsystems
* like kstats, which will happen in the call to dls_devnet_recreate
*/
softmac->smac_hold_cnt++;
mutex_exit(&softmac->smac_mutex);
if (dls_mgmt_create(softmac->smac_devname,
makedevice(softmac->smac_umajor, softmac->smac_uppa + 1),
DATALINK_CLASS_PHYS, softmac->smac_media, B_TRUE, &linkid) != 0) {
softmac_rele_device((dls_dev_handle_t)softmac);
return (MH_WALK_CONTINUE);
}
if ((err = softmac_update_info(softmac, &linkid)) != 0) {
cmn_err(CE_WARN, "softmac: softmac_update_info() for %s "
"failed (%d)", softmac->smac_devname, err);
softmac_rele_device((dls_dev_handle_t)softmac);
return (MH_WALK_CONTINUE);
}
/*
* Create a link for this MAC. The link name will be the same
* as the MAC name.
*/
if (!(softmac->smac_flags & SOFTMAC_NOSUPP)) {
err = dls_devnet_recreate(softmac->smac_mh, linkid);
if (err != 0) {
cmn_err(CE_WARN, "softmac: dls_devnet_recreate() for "
"%s (linkid %d) failed (%d)",
softmac->smac_devname, linkid, err);
}
}
mutex_enter(&softmac->smac_mutex);
softmac->smac_flags &= ~SOFTMAC_NEED_RECREATE;
ASSERT(softmac->smac_hold_cnt != 0);
softmac->smac_hold_cnt--;
mutex_exit(&softmac->smac_mutex);
return (MH_WALK_CONTINUE);
}
/*
* See comments above softmac_mac_recreate().
*/
void
softmac_recreate()
{
softmac_walk_t smw;
softmac_t *softmac;
/*
* Walk through the softmac_hash table. Request to create the
* [link name, linkid] mapping if we failed to do so.
*/
do {
smw.smw_retry = B_FALSE;
rw_enter(&softmac_hash_lock, RW_READER);
mod_hash_walk(softmac_hash, softmac_mac_recreate, &smw);
rw_exit(&softmac_hash_lock);
if (smw.smw_retry) {
/*
* softmac_create or softmac_mac_register hasn't yet
* finished and the softmac is not yet in the
* SOFTMAC_ATTACH_DONE state.
*/
softmac = smw.smw_softmac;
cv_wait(&softmac->smac_cv, &softmac->smac_mutex);
softmac->smac_hold_cnt--;
mutex_exit(&softmac->smac_mutex);
}
} while (smw.smw_retry);
}
static int
softmac_m_start(void *arg)
{
softmac_t *softmac = arg;
softmac_lower_t *slp = softmac->smac_lower;
int err;
ASSERT(MAC_PERIM_HELD(softmac->smac_mh));
/*
* Bind to SAP 2 on token ring, 0 on other interface types.
* (SAP 0 has special significance on token ring).
* Note that the receive-side packets could come anytime after bind.
*/
err = softmac_send_bind_req(slp, softmac->smac_media == DL_TPR ? 2 : 0);
if (err != 0)
return (err);
/*
* Put the lower stream to the DL_PROMISC_SAP mode in order to receive
* all packets of interest.
*
* some driver (e.g. the old legacy eri driver) incorrectly passes up
* packets to DL_PROMISC_SAP stream when the lower stream is not bound,
* so that we send DL_PROMISON_REQ after DL_BIND_REQ.
*/
err = softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_TRUE);
if (err != 0) {
(void) softmac_send_unbind_req(slp);
return (err);
}
/*
* Enable capabilities the underlying driver claims to support.
* Some driver requires this being called after the stream is bound.
*/
if ((err = softmac_capab_enable(slp)) != 0) {
(void) softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_FALSE);
(void) softmac_send_unbind_req(slp);
}
return (err);
}
/* ARGSUSED */
static void
softmac_m_stop(void *arg)
{
softmac_t *softmac = arg;
softmac_lower_t *slp = softmac->smac_lower;
ASSERT(MAC_PERIM_HELD(softmac->smac_mh));
/*
* It is not needed to reset zerocopy, MDT or HCKSUM capabilities.
*/
(void) softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_FALSE);
(void) softmac_send_unbind_req(slp);
}
/*
* Set up the lower stream above the legacy device. There are two different
* type of lower streams:
*
* - Shared lower-stream
*
* Shared by all GLDv3 MAC clients. Put the lower stream to the DLIOCRAW
* mode to send and receive the raw data. Further, put the lower stream into
* DL_PROMISC_SAP mode to receive all packets of interest.
*
* - Dedicated lower-stream
*
* The lower-stream which is dedicated to upper IP/ARP stream. This is used
* as fast-path for IP. In this case, the second argument is the pointer to
* the softmac upper-stream.
*/
int
softmac_lower_setup(softmac_t *softmac, softmac_upper_t *sup,
softmac_lower_t **slpp)
{
ldi_ident_t li;
dev_t dev;
ldi_handle_t lh = NULL;
softmac_lower_t *slp = NULL;
smac_ioc_start_t start_arg;
struct strioctl strioc;
uint32_t notifications;
int err, rval;
if ((err = ldi_ident_from_dip(softmac_dip, &li)) != 0)
return (err);
/*
* The GLDv3 framework makes sure that mac_unregister(), mac_open(),
* and mac_close() cannot be called at the same time. So we don't
* need any protection to access softmac here.
*/
dev = softmac->smac_dev;
err = ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh, li);
ldi_ident_release(li);
if (err != 0)
goto done;
/*
* Pop all the intermediate modules. The autopushed modules will
* be pushed when the softmac node is opened.
*/
while (ldi_ioctl(lh, I_POP, 0, FKIOCTL, kcred, &rval) == 0)
;
if ((softmac->smac_style == DL_STYLE2) &&
((err = dl_attach(lh, softmac->smac_uppa, NULL)) != 0)) {
goto done;
}
/*
* If this is the shared-lower-stream, put the lower stream to
* the DLIOCRAW mode to send/receive raw data.
*/
if ((sup == NULL) && (err = ldi_ioctl(lh, DLIOCRAW, 0, FKIOCTL,
kcred, &rval)) != 0) {
goto done;
}
/*
* Then push the softmac shim layer atop the lower stream.
*/
if ((err = ldi_ioctl(lh, I_PUSH, (intptr_t)SOFTMAC_DEV_NAME, FKIOCTL,
kcred, &rval)) != 0) {
goto done;
}
/*
* Send the ioctl to get the slp pointer.
*/
strioc.ic_cmd = SMAC_IOC_START;
strioc.ic_timout = INFTIM;
strioc.ic_len = sizeof (start_arg);
strioc.ic_dp = (char *)&start_arg;
if ((err = ldi_ioctl(lh, I_STR, (intptr_t)&strioc, FKIOCTL,
kcred, &rval)) != 0) {
goto done;
}
slp = start_arg.si_slp;
slp->sl_sup = sup;
slp->sl_lh = lh;
slp->sl_softmac = softmac;
*slpp = slp;
if (sup != NULL) {
slp->sl_rxinfo = &sup->su_rxinfo;
} else {
/*
* Send DL_NOTIFY_REQ to enable certain DL_NOTIFY_IND.
* We don't have to wait for the ack.
*/
notifications = DL_NOTE_PHYS_ADDR | DL_NOTE_LINK_UP |
DL_NOTE_LINK_DOWN | DL_NOTE_PROMISC_ON_PHYS |
DL_NOTE_PROMISC_OFF_PHYS;
(void) softmac_send_notify_req(slp,
(notifications & softmac->smac_notifications));
}
done:
if (err != 0)
(void) ldi_close(lh, FREAD|FWRITE, kcred);
return (err);
}
static int
softmac_m_open(void *arg)
{
softmac_t *softmac = arg;
softmac_lower_t *slp;
int err;
ASSERT(MAC_PERIM_HELD(softmac->smac_mh));
if ((err = softmac_lower_setup(softmac, NULL, &slp)) != 0)
return (err);
softmac->smac_lower = slp;
return (0);
}
static void
softmac_m_close(void *arg)
{
softmac_t *softmac = arg;
softmac_lower_t *slp;
ASSERT(MAC_PERIM_HELD(softmac->smac_mh));
slp = softmac->smac_lower;
ASSERT(slp != NULL);
/*
* Note that slp is destroyed when lh is closed.
*/
(void) ldi_close(slp->sl_lh, FREAD|FWRITE, kcred);
softmac->smac_lower = NULL;
}
/*
* Softmac supports two priviate link properteis:
*
* - "_fastpath"
*
* This is a read-only link property which points out the current data-path
* model of the given legacy link. The possible values are "disabled" and
* "enabled".
*
* - "_disable_fastpath"
*
* This is a read-write link property which can be used to disable or enable
* the fast-path of the given legacy link. The possible values are "true"
* and "false". Note that even when "_disable_fastpath" is set to be
* "false", the fast-path may still not be enabled since there may be
* other mac cleints that request the fast-path to be disabled.
*/
/* ARGSUSED */
static int
softmac_m_setprop(void *arg, const char *name, mac_prop_id_t id,
uint_t valsize, const void *val)
{
softmac_t *softmac = arg;
if (id != MAC_PROP_PRIVATE || strcmp(name, "_disable_fastpath") != 0)
return (ENOTSUP);
if (strcmp(val, "true") == 0)
return (softmac_datapath_switch(softmac, B_TRUE, B_TRUE));
else if (strcmp(val, "false") == 0)
return (softmac_datapath_switch(softmac, B_FALSE, B_TRUE));
else
return (EINVAL);
}
static int
softmac_m_getprop(void *arg, const char *name, mac_prop_id_t id, uint_t flags,
uint_t valsize, void *val, uint_t *perm)
{
softmac_t *softmac = arg;
char *fpstr;
if (id != MAC_PROP_PRIVATE)
return (ENOTSUP);
if (strcmp(name, "_fastpath") == 0) {
if ((flags & MAC_PROP_DEFAULT) != 0)
return (ENOTSUP);
*perm = MAC_PROP_PERM_READ;
mutex_enter(&softmac->smac_fp_mutex);
fpstr = (DATAPATH_MODE(softmac) == SOFTMAC_SLOWPATH) ?
"disabled" : "enabled";
mutex_exit(&softmac->smac_fp_mutex);
} else if (strcmp(name, "_disable_fastpath") == 0) {
*perm = MAC_PROP_PERM_RW;
fpstr = ((flags & MAC_PROP_DEFAULT) != 0) ? "false" :
(softmac->smac_fastpath_admin_disabled ? "true" : "false");
} else {
return (ENOTSUP);
}
return (strlcpy(val, fpstr, valsize) >= valsize ? EINVAL : 0);
}
int
softmac_hold_device(dev_t dev, dls_dev_handle_t *ddhp)
{
dev_info_t *dip;
const char *drvname;
char devname[MAXNAMELEN];
softmac_t *softmac;
int ppa, err;
if ((ppa = getminor(dev) - 1) > 1000)
return (ENOENT);
/*
* First try to hold this device instance to force the MAC
* to be registered.
*/
if ((dip = ddi_hold_devi_by_instance(getmajor(dev), ppa, 0)) == NULL)
return (ENOENT);
drvname = ddi_driver_name(dip);
/*
* Exclude non-physical network device instances, for example, aggr0.
*/
if ((ddi_driver_major(dip) != getmajor(dev)) ||
!NETWORK_DRV(getmajor(dev)) || (strcmp(drvname, "aggr") == 0) ||
(strcmp(drvname, "vnic") == 0)) {
ddi_release_devi(dip);
return (ENOENT);
}
/*
* This is a network device; wait for its softmac to be registered.
*/
(void) snprintf(devname, MAXNAMELEN, "%s%d", drvname, ppa);
again:
rw_enter(&softmac_hash_lock, RW_READER);
if (mod_hash_find(softmac_hash, (mod_hash_key_t)devname,
(mod_hash_val_t *)&softmac) != 0) {
/*
* This is rare but possible. It could happen when pre-detach
* routine of the device succeeds. But the softmac will then
* be recreated when device fails to detach (as this device
* is held).
*/
mutex_enter(&smac_global_lock);
rw_exit(&softmac_hash_lock);
cv_wait(&smac_global_cv, &smac_global_lock);
mutex_exit(&smac_global_lock);
goto again;
}
/*
* Bump smac_hold_cnt to prevent device detach.
*/
mutex_enter(&softmac->smac_mutex);
softmac->smac_hold_cnt++;
rw_exit(&softmac_hash_lock);
/*
* Wait till the device is fully attached.
*/
while (softmac->smac_state != SOFTMAC_ATTACH_DONE)
cv_wait(&softmac->smac_cv, &softmac->smac_mutex);
SOFTMAC_STATE_VERIFY(softmac);
if ((err = softmac->smac_attacherr) != 0)
softmac->smac_hold_cnt--;
else
*ddhp = (dls_dev_handle_t)softmac;
mutex_exit(&softmac->smac_mutex);
ddi_release_devi(dip);
return (err);
}
void
softmac_rele_device(dls_dev_handle_t ddh)
{
if (ddh != NULL)
softmac_rele((softmac_t *)ddh);
}
int
softmac_hold(dev_t dev, softmac_t **softmacp)
{
softmac_t *softmac;
char *drv;
mac_handle_t mh;
char mac[MAXNAMELEN];
int err;
if ((drv = ddi_major_to_name(getmajor(dev))) == NULL)
return (EINVAL);
(void) snprintf(mac, MAXNAMELEN, "%s%d", drv, getminor(dev) - 1);
if ((err = mac_open(mac, &mh)) != 0)
return (err);
softmac = (softmac_t *)mac_driver(mh);
mutex_enter(&softmac->smac_mutex);
softmac->smac_hold_cnt++;
mutex_exit(&softmac->smac_mutex);
mac_close(mh);
*softmacp = softmac;
return (0);
}
void
softmac_rele(softmac_t *softmac)
{
mutex_enter(&softmac->smac_mutex);
softmac->smac_hold_cnt--;
mutex_exit(&softmac->smac_mutex);
}
|