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
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
|
/* Based on the NetBSD virtio driver by Minoura Makoto. */
/*
* Copyright (c) 2010 Minoura Makoto.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
portions of virtio network interface driver
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2013 Nexenta Inc. All rights reserved.
* Copyright (c) 2014, 2016 by Delphix. All rights reserved.
* Copyright 2021 Joyent, Inc.
* Copyright 2019 Joshua M. Clulow <josh@sysmgr.org>
* Copyright 2025 Hans Rosenfeld
* Copyright 2026 Oxide Computer Company
*/
/* Based on the NetBSD virtio driver by Minoura Makoto. */
/*
* Copyright (c) 2010 Minoura Makoto.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* VIRTIO NETWORK DRIVER
*/
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/param.h>
#include <sys/stropts.h>
#include <sys/stream.h>
#include <sys/strsubr.h>
#include <sys/kmem.h>
#include <sys/conf.h>
#include <sys/devops.h>
#include <sys/ksynch.h>
#include <sys/stat.h>
#include <sys/modctl.h>
#include <sys/debug.h>
#include <sys/pci.h>
#include <sys/ethernet.h>
#include <sys/vlan.h>
#include <sys/sysmacros.h>
#include <sys/smbios.h>
#include <sys/dlpi.h>
#include <sys/taskq.h>
#include <sys/pattr.h>
#include <sys/strsun.h>
#include <sys/random.h>
#include <sys/containerof.h>
#include <sys/stream.h>
#include <inet/tcp.h>
#include <sys/mac.h>
#include <sys/mac_provider.h>
#include <sys/mac_ether.h>
#include "virtio.h"
#include "vioif.h"
/*
* While most hypervisors support the control queue, older versions of bhyve
* on illumos did not. To allow the historic behaviour of the illumos vioif
* driver, the following tuneable causes us to pretend that the request always
* succeeds if the underlying virtual device does not have support.
*/
int vioif_fake_promisc_success = 1;
static int vioif_quiesce(dev_info_t *);
static int vioif_attach(dev_info_t *, ddi_attach_cmd_t);
static int vioif_detach(dev_info_t *, ddi_detach_cmd_t);
static boolean_t vioif_has_feature(vioif_t *, uint64_t);
static void vioif_reclaim_restart(vioif_t *);
static int vioif_m_stat(void *, uint_t, uint64_t *);
static void vioif_m_stop(void *);
static int vioif_m_start(void *);
static int vioif_m_multicst(void *, boolean_t, const uint8_t *);
static int vioif_m_setpromisc(void *, boolean_t);
static int vioif_m_unicst(void *, const uint8_t *);
static mblk_t *vioif_m_tx(void *, mblk_t *);
static int vioif_m_setprop(void *, const char *, mac_prop_id_t, uint_t,
const void *);
static int vioif_m_getprop(void *, const char *, mac_prop_id_t, uint_t, void *);
static void vioif_m_propinfo(void *, const char *, mac_prop_id_t,
mac_prop_info_handle_t);
static boolean_t vioif_m_getcapab(void *, mac_capab_t, void *);
static uint_t vioif_add_rx(vioif_t *);
static void vioif_get_data(vioif_t *);
static struct cb_ops vioif_cb_ops = {
.cb_rev = CB_REV,
.cb_flag = D_MP | D_NEW,
.cb_open = nulldev,
.cb_close = nulldev,
.cb_strategy = nodev,
.cb_print = nodev,
.cb_dump = nodev,
.cb_read = nodev,
.cb_write = nodev,
.cb_ioctl = nodev,
.cb_devmap = nodev,
.cb_mmap = nodev,
.cb_segmap = nodev,
.cb_chpoll = nochpoll,
.cb_prop_op = ddi_prop_op,
.cb_str = NULL,
.cb_aread = nodev,
.cb_awrite = nodev,
};
static struct dev_ops vioif_dev_ops = {
.devo_rev = DEVO_REV,
.devo_refcnt = 0,
.devo_attach = vioif_attach,
.devo_detach = vioif_detach,
.devo_quiesce = vioif_quiesce,
.devo_cb_ops = &vioif_cb_ops,
.devo_getinfo = NULL,
.devo_identify = nulldev,
.devo_probe = nulldev,
.devo_reset = nodev,
.devo_bus_ops = NULL,
.devo_power = NULL,
};
static struct modldrv vioif_modldrv = {
.drv_modops = &mod_driverops,
.drv_linkinfo = "VIRTIO network driver",
.drv_dev_ops = &vioif_dev_ops
};
static struct modlinkage vioif_modlinkage = {
.ml_rev = MODREV_1,
.ml_linkage = { &vioif_modldrv, NULL }
};
static mac_callbacks_t vioif_mac_callbacks = {
.mc_getstat = vioif_m_stat,
.mc_start = vioif_m_start,
.mc_stop = vioif_m_stop,
.mc_setpromisc = vioif_m_setpromisc,
.mc_multicst = vioif_m_multicst,
.mc_unicst = vioif_m_unicst,
.mc_tx = vioif_m_tx,
.mc_callbacks = (MC_GETCAPAB | MC_SETPROP |
MC_GETPROP | MC_PROPINFO),
.mc_getcapab = vioif_m_getcapab,
.mc_setprop = vioif_m_setprop,
.mc_getprop = vioif_m_getprop,
.mc_propinfo = vioif_m_propinfo,
};
static const uchar_t vioif_broadcast[ETHERADDRL] = {
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
};
/*
* Interval for the periodic TX reclaim.
*/
uint_t vioif_reclaim_ms = 200;
/*
* Allow the operator to override the kinds of interrupts we'll use for
* vioif. This value defaults to -1 so that it can be overridden to 0 in
* /etc/system.
*/
int vioif_allowed_int_types = -1;
/*
* DMA attribute template for transmit and receive buffers. The SGL entry
* count will be modified before using the template. Note that these
* allocations are aligned so that VIOIF_HEADER_SKIP places the IP header in
* received frames at the correct offset for the networking stack.
*/
ddi_dma_attr_t vioif_dma_attr_bufs = {
.dma_attr_version = DMA_ATTR_V0,
.dma_attr_addr_lo = 0x0000000000000000,
.dma_attr_addr_hi = 0xFFFFFFFFFFFFFFFF,
.dma_attr_count_max = 0x00000000FFFFFFFF,
.dma_attr_align = VIOIF_HEADER_ALIGN,
.dma_attr_burstsizes = 1,
.dma_attr_minxfer = 1,
.dma_attr_maxxfer = 0x00000000FFFFFFFF,
.dma_attr_seg = 0x00000000FFFFFFFF,
.dma_attr_sgllen = 0,
.dma_attr_granular = 1,
.dma_attr_flags = 0
};
/*
* DMA attributes for mapping larger transmit buffers from the networking
* stack. The requirements are quite loose, but note that the SGL entry length
* field is 32-bit.
*/
ddi_dma_attr_t vioif_dma_attr_external = {
.dma_attr_version = DMA_ATTR_V0,
.dma_attr_addr_lo = 0x0000000000000000,
.dma_attr_addr_hi = 0xFFFFFFFFFFFFFFFF,
.dma_attr_count_max = 0x00000000FFFFFFFF,
.dma_attr_align = 1,
.dma_attr_burstsizes = 1,
.dma_attr_minxfer = 1,
.dma_attr_maxxfer = 0x00000000FFFFFFFF,
.dma_attr_seg = 0x00000000FFFFFFFF,
.dma_attr_sgllen = VIOIF_MAX_SEGS - 1,
.dma_attr_granular = 1,
.dma_attr_flags = 0
};
/*
* VIRTIO NET MAC PROPERTIES
*/
#define VIOIF_MACPROP_TXCOPY_THRESH "_txcopy_thresh"
#define VIOIF_MACPROP_TXCOPY_THRESH_DEF 300
#define VIOIF_MACPROP_TXCOPY_THRESH_MAX 640
#define VIOIF_MACPROP_RXCOPY_THRESH "_rxcopy_thresh"
#define VIOIF_MACPROP_RXCOPY_THRESH_DEF 300
#define VIOIF_MACPROP_RXCOPY_THRESH_MAX 640
static char *vioif_priv_props[] = {
VIOIF_MACPROP_TXCOPY_THRESH,
VIOIF_MACPROP_RXCOPY_THRESH,
NULL
};
static vioif_txbuf_t *
vioif_txbuf_alloc(vioif_t *vif)
{
vioif_txbuf_t *tb;
VERIFY(MUTEX_HELD(&vif->vif_mutex));
if ((tb = list_remove_head(&vif->vif_txbufs)) != NULL) {
vif->vif_ntxbufs_alloc++;
}
return (tb);
}
static void
vioif_txbuf_free(vioif_t *vif, vioif_txbuf_t *tb)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
VERIFY3U(vif->vif_ntxbufs_alloc, >, 0);
vif->vif_ntxbufs_alloc--;
virtio_chain_clear(tb->tb_chain);
list_insert_head(&vif->vif_txbufs, tb);
}
static vioif_rxbuf_t *
vioif_rxbuf_alloc(vioif_t *vif)
{
vioif_rxbuf_t *rb;
VERIFY(MUTEX_HELD(&vif->vif_mutex));
if ((rb = list_remove_head(&vif->vif_rxbufs)) != NULL) {
vif->vif_nrxbufs_alloc++;
}
return (rb);
}
static void
vioif_rxbuf_free(vioif_t *vif, vioif_rxbuf_t *rb)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
VERIFY3U(vif->vif_nrxbufs_alloc, >, 0);
vif->vif_nrxbufs_alloc--;
virtio_chain_clear(rb->rb_chain);
list_insert_head(&vif->vif_rxbufs, rb);
}
static void
vioif_rx_free_callback(caddr_t free_arg)
{
vioif_rxbuf_t *rb = (vioif_rxbuf_t *)free_arg;
vioif_t *vif = rb->rb_vioif;
mutex_enter(&vif->vif_mutex);
/*
* Return this receive buffer to the free list.
*/
vioif_rxbuf_free(vif, rb);
VERIFY3U(vif->vif_nrxbufs_onloan, >, 0);
vif->vif_nrxbufs_onloan--;
/*
* Attempt to replenish the receive queue with at least the buffer we
* just freed. There isn't a great way to deal with failure here,
* though because we'll only loan at most half of the buffers there
* should always be at least some available even if this fails.
*/
(void) vioif_add_rx(vif);
mutex_exit(&vif->vif_mutex);
}
static vioif_ctrlbuf_t *
vioif_ctrlbuf_alloc(vioif_t *vif)
{
vioif_ctrlbuf_t *cb;
VERIFY(MUTEX_HELD(&vif->vif_mutex));
if ((cb = list_remove_head(&vif->vif_ctrlbufs)) != NULL) {
vif->vif_nctrlbufs_alloc++;
}
return (cb);
}
static void
vioif_ctrlbuf_free(vioif_t *vif, vioif_ctrlbuf_t *cb)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
VERIFY3U(vif->vif_nctrlbufs_alloc, >, 0);
vif->vif_nctrlbufs_alloc--;
virtio_chain_clear(cb->cb_chain);
list_insert_head(&vif->vif_ctrlbufs, cb);
}
static void
vioif_free_bufs(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
VERIFY3U(vif->vif_ntxbufs_alloc, ==, 0);
for (uint_t i = 0; i < vif->vif_txbufs_capacity; i++) {
vioif_txbuf_t *tb = &vif->vif_txbufs_mem[i];
/*
* Ensure that this txbuf is now in the free list:
*/
VERIFY(list_link_active(&tb->tb_link));
list_remove(&vif->vif_txbufs, tb);
/*
* We should not have an mblk chain at this point.
*/
VERIFY3P(tb->tb_mp, ==, NULL);
if (tb->tb_dma != NULL) {
virtio_dma_free(tb->tb_dma);
tb->tb_dma = NULL;
}
if (tb->tb_chain != NULL) {
virtio_chain_free(tb->tb_chain);
tb->tb_chain = NULL;
}
if (tb->tb_dmaext != NULL) {
for (uint_t j = 0; j < tb->tb_dmaext_capacity; j++) {
if (tb->tb_dmaext[j] != NULL) {
virtio_dma_free(
tb->tb_dmaext[j]);
tb->tb_dmaext[j] = NULL;
}
}
kmem_free(tb->tb_dmaext,
sizeof (virtio_dma_t *) * tb->tb_dmaext_capacity);
tb->tb_dmaext = NULL;
tb->tb_dmaext_capacity = 0;
}
}
VERIFY(list_is_empty(&vif->vif_txbufs));
if (vif->vif_txbufs_mem != NULL) {
kmem_free(vif->vif_txbufs_mem,
sizeof (vioif_txbuf_t) * vif->vif_txbufs_capacity);
vif->vif_txbufs_mem = NULL;
vif->vif_txbufs_capacity = 0;
}
VERIFY3U(vif->vif_nrxbufs_alloc, ==, 0);
for (uint_t i = 0; i < vif->vif_rxbufs_capacity; i++) {
vioif_rxbuf_t *rb = &vif->vif_rxbufs_mem[i];
/*
* Ensure that this rxbuf is now in the free list:
*/
VERIFY(list_link_active(&rb->rb_link));
list_remove(&vif->vif_rxbufs, rb);
if (rb->rb_dma != NULL) {
virtio_dma_free(rb->rb_dma);
rb->rb_dma = NULL;
}
if (rb->rb_chain != NULL) {
virtio_chain_free(rb->rb_chain);
rb->rb_chain = NULL;
}
}
VERIFY(list_is_empty(&vif->vif_rxbufs));
if (vif->vif_rxbufs_mem != NULL) {
kmem_free(vif->vif_rxbufs_mem,
sizeof (vioif_rxbuf_t) * vif->vif_rxbufs_capacity);
vif->vif_rxbufs_mem = NULL;
vif->vif_rxbufs_capacity = 0;
}
if (vif->vif_has_ctrlq) {
VERIFY3U(vif->vif_nctrlbufs_alloc, ==, 0);
for (uint_t i = 0; i < vif->vif_ctrlbufs_capacity; i++) {
vioif_ctrlbuf_t *cb = &vif->vif_ctrlbufs_mem[i];
/*
* Ensure that this ctrlbuf is now in the free list
*/
VERIFY(list_link_active(&cb->cb_link));
list_remove(&vif->vif_ctrlbufs, cb);
if (cb->cb_dma != NULL) {
virtio_dma_free(cb->cb_dma);
cb->cb_dma = NULL;
}
if (cb->cb_chain != NULL) {
virtio_chain_free(cb->cb_chain);
cb->cb_chain = NULL;
}
}
VERIFY(list_is_empty(&vif->vif_ctrlbufs));
if (vif->vif_ctrlbufs_mem != NULL) {
kmem_free(vif->vif_ctrlbufs_mem,
sizeof (vioif_ctrlbuf_t) *
vif->vif_ctrlbufs_capacity);
vif->vif_ctrlbufs_mem = NULL;
vif->vif_ctrlbufs_capacity = 0;
}
}
}
static int
vioif_alloc_bufs(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
/*
* Allocate one contiguous chunk of memory for the transmit and receive
* buffer tracking objects. If the ring is unusually small, we'll
* reduce our target buffer count accordingly.
*/
vif->vif_txbufs_capacity = MIN(VIRTIO_NET_TX_BUFS,
virtio_queue_size(vif->vif_tx_vq));
vif->vif_txbufs_mem = kmem_zalloc(
sizeof (vioif_txbuf_t) * vif->vif_txbufs_capacity, KM_SLEEP);
list_create(&vif->vif_txbufs, sizeof (vioif_txbuf_t),
offsetof(vioif_txbuf_t, tb_link));
vif->vif_rxbufs_capacity = MIN(VIRTIO_NET_RX_BUFS,
virtio_queue_size(vif->vif_rx_vq));
vif->vif_rxbufs_mem = kmem_zalloc(
sizeof (vioif_rxbuf_t) * vif->vif_rxbufs_capacity, KM_SLEEP);
list_create(&vif->vif_rxbufs, sizeof (vioif_rxbuf_t),
offsetof(vioif_rxbuf_t, rb_link));
if (vif->vif_has_ctrlq) {
vif->vif_ctrlbufs_capacity = MIN(VIRTIO_NET_CTRL_BUFS,
virtio_queue_size(vif->vif_ctrl_vq));
vif->vif_ctrlbufs_mem = kmem_zalloc(
sizeof (vioif_ctrlbuf_t) * vif->vif_ctrlbufs_capacity,
KM_SLEEP);
}
list_create(&vif->vif_ctrlbufs, sizeof (vioif_ctrlbuf_t),
offsetof(vioif_ctrlbuf_t, cb_link));
/*
* Do not loan more than half of our allocated receive buffers into
* the networking stack.
*/
vif->vif_nrxbufs_onloan_max = vif->vif_rxbufs_capacity / 2;
/*
* Put everything in the free list straight away in order to simplify
* the use of vioif_free_bufs() for cleanup on allocation failure.
*/
for (uint_t i = 0; i < vif->vif_txbufs_capacity; i++) {
list_insert_tail(&vif->vif_txbufs, &vif->vif_txbufs_mem[i]);
}
for (uint_t i = 0; i < vif->vif_rxbufs_capacity; i++) {
list_insert_tail(&vif->vif_rxbufs, &vif->vif_rxbufs_mem[i]);
}
for (uint_t i = 0; i < vif->vif_ctrlbufs_capacity; i++) {
list_insert_tail(&vif->vif_ctrlbufs, &vif->vif_ctrlbufs_mem[i]);
}
/*
* Start from the DMA attribute template common to both transmit and
* receive buffers. The SGL entry count will be modified for each
* buffer type.
*/
ddi_dma_attr_t attr = vioif_dma_attr_bufs;
/*
* The transmit inline buffer is small (less than a page), so it's
* reasonable to request a single cookie.
*/
attr.dma_attr_sgllen = 1;
for (vioif_txbuf_t *tb = list_head(&vif->vif_txbufs); tb != NULL;
tb = list_next(&vif->vif_txbufs, tb)) {
if ((tb->tb_dma = virtio_dma_alloc(vif->vif_virtio,
VIOIF_TX_INLINE_SIZE, &attr,
DDI_DMA_STREAMING | DDI_DMA_WRITE, KM_SLEEP)) == NULL) {
goto fail;
}
VERIFY3U(virtio_dma_ncookies(tb->tb_dma), ==, 1);
if ((tb->tb_chain = virtio_chain_alloc(vif->vif_tx_vq,
KM_SLEEP)) == NULL) {
goto fail;
}
virtio_chain_data_set(tb->tb_chain, tb);
tb->tb_dmaext_capacity = VIOIF_MAX_SEGS - 1;
tb->tb_dmaext = kmem_zalloc(
sizeof (virtio_dma_t *) * tb->tb_dmaext_capacity,
KM_SLEEP);
}
/*
* Control queue buffers are also small (less than a page), so we'll
* also request a single cookie for them.
*/
for (vioif_ctrlbuf_t *cb = list_head(&vif->vif_ctrlbufs); cb != NULL;
cb = list_next(&vif->vif_ctrlbufs, cb)) {
if ((cb->cb_dma = virtio_dma_alloc(vif->vif_virtio,
VIOIF_CTRL_SIZE, &attr,
DDI_DMA_STREAMING | DDI_DMA_RDWR, KM_SLEEP)) == NULL) {
goto fail;
}
VERIFY3U(virtio_dma_ncookies(cb->cb_dma), ==, 1);
if ((cb->cb_chain = virtio_chain_alloc(vif->vif_ctrl_vq,
KM_SLEEP)) == NULL) {
goto fail;
}
virtio_chain_data_set(cb->cb_chain, cb);
}
/*
* The receive buffers are larger, and we can tolerate a large number
* of segments. Adjust the SGL entry count, setting aside one segment
* for the virtio net header.
*/
attr.dma_attr_sgllen = VIOIF_MAX_SEGS - 1;
for (vioif_rxbuf_t *rb = list_head(&vif->vif_rxbufs); rb != NULL;
rb = list_next(&vif->vif_rxbufs, rb)) {
if ((rb->rb_dma = virtio_dma_alloc(vif->vif_virtio,
VIOIF_RX_BUF_SIZE, &attr, DDI_DMA_STREAMING | DDI_DMA_READ,
KM_SLEEP)) == NULL) {
goto fail;
}
if ((rb->rb_chain = virtio_chain_alloc(vif->vif_rx_vq,
KM_SLEEP)) == NULL) {
goto fail;
}
virtio_chain_data_set(rb->rb_chain, rb);
/*
* Ensure that the first cookie is sufficient to cover the
* header skip region plus one byte.
*/
VERIFY3U(virtio_dma_cookie_size(rb->rb_dma, 0), >=,
VIOIF_HEADER_SKIP + 1);
/*
* Ensure that the frame data begins at a location with a
* correctly aligned IP header.
*/
VERIFY3U((uintptr_t)virtio_dma_va(rb->rb_dma,
VIOIF_HEADER_SKIP) % 4, ==, 2);
rb->rb_vioif = vif;
rb->rb_frtn.free_func = vioif_rx_free_callback;
rb->rb_frtn.free_arg = (caddr_t)rb;
}
return (0);
fail:
vioif_free_bufs(vif);
return (ENOMEM);
}
static int
vioif_ctrlq_req(vioif_t *vif, uint8_t class, uint8_t cmd, void *data,
size_t datalen)
{
vioif_ctrlbuf_t *cb = NULL;
virtio_chain_t *vic = NULL;
uint8_t *p = NULL;
uint64_t pa = 0;
uint8_t *ackp = NULL;
struct virtio_net_ctrlq_hdr hdr = {
.vnch_class = class,
.vnch_command = cmd,
};
const size_t hdrlen = sizeof (hdr);
const size_t acklen = 1; /* the ack is always 1 byte */
size_t totlen = hdrlen + datalen + acklen;
int r = DDI_SUCCESS;
/*
* We shouldn't be called unless the ctrlq feature has been
* negotiated with the host
*/
VERIFY(vif->vif_has_ctrlq);
mutex_enter(&vif->vif_mutex);
cb = vioif_ctrlbuf_alloc(vif);
if (cb == NULL) {
vif->vif_noctrlbuf++;
mutex_exit(&vif->vif_mutex);
r = DDI_FAILURE;
goto done;
}
mutex_exit(&vif->vif_mutex);
if (totlen > virtio_dma_size(cb->cb_dma)) {
vif->vif_ctrlbuf_toosmall++;
r = DDI_FAILURE;
goto done;
}
/*
* Clear the entire buffer. Technically not necessary, but useful
* if trying to troubleshoot an issue, and probably not a bad idea
* to not let any old data linger.
*/
p = virtio_dma_va(cb->cb_dma, 0);
bzero(p, virtio_dma_size(cb->cb_dma));
/*
* We currently do not support VIRTIO_F_ANY_LAYOUT. That means,
* that we must put the header, the data, and the ack in their
* own respective descriptors. Since all the currently supported
* control queue commands take _very_ small amounts of data, we
* use a single DMA buffer for all of it, but use 3 descriptors to
* reference (respectively) the header, the data, and the ack byte
* within that memory to adhere to the virtio spec.
*
* If we add support for control queue features such as custom
* MAC filtering tables, which might require larger amounts of
* memory, we likely will want to add more sophistication here
* and optionally use additional allocated memory to hold that
* data instead of a fixed size buffer.
*
* Copy the header.
*/
bcopy(&hdr, p, sizeof (hdr));
pa = virtio_dma_cookie_pa(cb->cb_dma, 0);
if ((r = virtio_chain_append(cb->cb_chain,
pa, hdrlen, VIRTIO_DIR_DEVICE_READS)) != DDI_SUCCESS) {
goto done;
}
/*
* Copy the request data
*/
p = virtio_dma_va(cb->cb_dma, hdrlen);
bcopy(data, p, datalen);
if ((r = virtio_chain_append(cb->cb_chain,
pa + hdrlen, datalen, VIRTIO_DIR_DEVICE_READS)) != DDI_SUCCESS) {
goto done;
}
/*
* We already cleared the buffer, so don't need to copy out a 0 for
* the ack byte. Just add a descriptor for that spot.
*/
ackp = virtio_dma_va(cb->cb_dma, hdrlen + datalen);
if ((r = virtio_chain_append(cb->cb_chain,
pa + hdrlen + datalen, acklen,
VIRTIO_DIR_DEVICE_WRITES)) != DDI_SUCCESS) {
goto done;
}
virtio_dma_sync(cb->cb_dma, DDI_DMA_SYNC_FORDEV);
virtio_chain_submit(cb->cb_chain, B_TRUE);
/*
* Spin waiting for response.
*/
mutex_enter(&vif->vif_mutex);
while ((vic = virtio_queue_poll(vif->vif_ctrl_vq)) == NULL) {
mutex_exit(&vif->vif_mutex);
delay(drv_usectohz(1000));
mutex_enter(&vif->vif_mutex);
}
virtio_dma_sync(cb->cb_dma, DDI_DMA_SYNC_FORCPU);
VERIFY3P(virtio_chain_data(vic), ==, cb);
mutex_exit(&vif->vif_mutex);
if (*ackp != VIRTIO_NET_CQ_OK) {
r = DDI_FAILURE;
}
done:
mutex_enter(&vif->vif_mutex);
vioif_ctrlbuf_free(vif, cb);
mutex_exit(&vif->vif_mutex);
return (r);
}
static int
vioif_m_multicst(void *arg, boolean_t add, const uint8_t *mcst_addr)
{
/*
* Even though we currently do not have support for programming
* multicast filters, or even enabling promiscuous mode, we return
* success here to avoid the networking stack falling back to link
* layer broadcast for multicast traffic. Some hypervisors already
* pass received multicast frames onto the guest, so at least on those
* systems multicast will work as expected anyway.
*/
return (0);
}
static int
vioif_m_setpromisc(void *arg, boolean_t on)
{
vioif_t *vif = arg;
uint8_t val = on ? 1 : 0;
if (!vif->vif_has_ctrlq_rx) {
if (vioif_fake_promisc_success)
return (0);
return (ENOTSUP);
}
return (vioif_ctrlq_req(vif, VIRTIO_NET_CTRL_RX,
VIRTIO_NET_CTRL_RX_PROMISC, &val, sizeof (val)));
}
static int
vioif_m_unicst(void *arg, const uint8_t *mac)
{
return (ENOTSUP);
}
static uint_t
vioif_add_rx(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
if (vif->vif_runstate != VIOIF_RUNSTATE_RUNNING) {
/*
* If the NIC is not running, do not give the device any
* receive buffers.
*/
return (0);
}
uint_t num_added = 0;
vioif_rxbuf_t *rb;
while ((rb = vioif_rxbuf_alloc(vif)) != NULL) {
/*
* For legacy devices, and those that have not negotiated
* VIRTIO_F_ANY_LAYOUT, the virtio net header must appear in a
* separate descriptor entry to the rest of the buffer. We do
* the same for modern devices too.
*/
if (virtio_chain_append(rb->rb_chain,
virtio_dma_cookie_pa(rb->rb_dma, 0), vif->vif_rxbuf_hdrlen,
VIRTIO_DIR_DEVICE_WRITES) != DDI_SUCCESS) {
goto fail;
}
for (uint_t n = 0; n < virtio_dma_ncookies(rb->rb_dma); n++) {
uint64_t pa = virtio_dma_cookie_pa(rb->rb_dma, n);
size_t sz = virtio_dma_cookie_size(rb->rb_dma, n);
if (n == 0) {
pa += VIOIF_HEADER_SKIP;
VERIFY3U(sz, >, VIOIF_HEADER_SKIP);
sz -= VIOIF_HEADER_SKIP;
}
if (virtio_chain_append(rb->rb_chain, pa, sz,
VIRTIO_DIR_DEVICE_WRITES) != DDI_SUCCESS) {
goto fail;
}
}
virtio_chain_submit(rb->rb_chain, B_FALSE);
num_added++;
continue;
fail:
vioif_rxbuf_free(vif, rb);
vif->vif_norecvbuf++;
break;
}
if (num_added > 0) {
virtio_queue_flush(vif->vif_rx_vq);
}
return (num_added);
}
static uint_t
vioif_process_rx(vioif_t *vif)
{
virtio_chain_t *vic;
mblk_t *mphead = NULL, *lastmp = NULL, *mp;
uint_t num_processed = 0;
VERIFY(MUTEX_HELD(&vif->vif_mutex));
while ((vic = virtio_queue_poll(vif->vif_rx_vq)) != NULL) {
/*
* We have to use the chain received length here, as the device
* does not tell us the received frame length any other way.
* In a limited survey of hypervisors, virtio network devices
* appear to provide the right value here.
*/
size_t len = virtio_chain_received_length(vic);
vioif_rxbuf_t *rb = virtio_chain_data(vic);
virtio_dma_sync(rb->rb_dma, DDI_DMA_SYNC_FORCPU);
/*
* If the NIC is not running, discard any received frames.
*/
if (vif->vif_runstate != VIOIF_RUNSTATE_RUNNING) {
vioif_rxbuf_free(vif, rb);
continue;
}
if (len < vif->vif_rxbuf_hdrlen) {
vif->vif_rxfail_chain_undersize++;
vif->vif_ierrors++;
vioif_rxbuf_free(vif, rb);
continue;
}
len -= vif->vif_rxbuf_hdrlen;
/*
* We copy small packets that happen to fit into a single
* cookie and reuse the buffers. For bigger ones, we loan
* the buffers upstream.
*/
if (len < vif->vif_rxcopy_thresh ||
vif->vif_nrxbufs_onloan >= vif->vif_nrxbufs_onloan_max) {
mutex_exit(&vif->vif_mutex);
if ((mp = allocb(len, 0)) == NULL) {
mutex_enter(&vif->vif_mutex);
vif->vif_norecvbuf++;
vif->vif_ierrors++;
vioif_rxbuf_free(vif, rb);
continue;
}
bcopy(virtio_dma_va(rb->rb_dma, VIOIF_HEADER_SKIP),
mp->b_rptr, len);
mp->b_wptr = mp->b_rptr + len;
/*
* As the packet contents was copied rather than
* loaned, we can return the receive buffer resources
* to the free list.
*/
mutex_enter(&vif->vif_mutex);
vioif_rxbuf_free(vif, rb);
} else {
mutex_exit(&vif->vif_mutex);
if ((mp = desballoc(virtio_dma_va(rb->rb_dma,
VIOIF_HEADER_SKIP), len, 0,
&rb->rb_frtn)) == NULL) {
mutex_enter(&vif->vif_mutex);
vif->vif_norecvbuf++;
vif->vif_ierrors++;
vioif_rxbuf_free(vif, rb);
continue;
}
mp->b_wptr = mp->b_rptr + len;
mutex_enter(&vif->vif_mutex);
vif->vif_nrxbufs_onloan++;
}
/*
* virtio-net does not tell us if this packet is multicast
* or broadcast, so we have to check it.
*/
if (mp->b_rptr[0] & 0x1) {
if (bcmp(mp->b_rptr, vioif_broadcast, ETHERADDRL) != 0)
vif->vif_multircv++;
else
vif->vif_brdcstrcv++;
}
vif->vif_rbytes += len;
vif->vif_ipackets++;
if (lastmp == NULL) {
mphead = mp;
} else {
lastmp->b_next = mp;
}
lastmp = mp;
num_processed++;
}
if (mphead != NULL) {
if (vif->vif_runstate == VIOIF_RUNSTATE_RUNNING) {
mutex_exit(&vif->vif_mutex);
mac_rx(vif->vif_mac_handle, NULL, mphead);
mutex_enter(&vif->vif_mutex);
} else {
/*
* The NIC was disabled part way through our execution,
* so free the messages we allocated.
*/
freemsgchain(mphead);
}
}
return (num_processed);
}
static uint_t
vioif_reclaim_used_tx(vioif_t *vif)
{
virtio_chain_t *vic;
uint_t num_reclaimed = 0;
VERIFY(MUTEX_NOT_HELD(&vif->vif_mutex));
while ((vic = virtio_queue_poll(vif->vif_tx_vq)) != NULL) {
vioif_txbuf_t *tb = virtio_chain_data(vic);
if (tb->tb_mp != NULL) {
/*
* Unbind the external mapping.
*/
for (uint_t i = 0; i < tb->tb_dmaext_capacity; i++) {
if (tb->tb_dmaext[i] == NULL) {
continue;
}
virtio_dma_unbind(tb->tb_dmaext[i]);
}
freemsg(tb->tb_mp);
tb->tb_mp = NULL;
}
/*
* Return this transmit buffer to the free list for reuse.
*/
mutex_enter(&vif->vif_mutex);
vioif_txbuf_free(vif, tb);
mutex_exit(&vif->vif_mutex);
num_reclaimed++;
}
/* Return ring to transmitting state if descriptors were reclaimed. */
if (num_reclaimed > 0) {
boolean_t do_update = B_FALSE;
mutex_enter(&vif->vif_mutex);
vif->vif_stat_tx_reclaim += num_reclaimed;
if (vif->vif_tx_corked) {
/*
* TX was corked on a lack of available descriptors.
* That dire state has passed so the TX interrupt can
* be disabled and MAC can be notified that
* transmission is possible again.
*/
vif->vif_tx_corked = B_FALSE;
virtio_queue_no_interrupt(vif->vif_tx_vq, B_TRUE);
do_update = B_TRUE;
}
mutex_exit(&vif->vif_mutex);
if (do_update) {
mac_tx_update(vif->vif_mac_handle);
}
}
return (num_reclaimed);
}
static void
vioif_reclaim_periodic(void *arg)
{
vioif_t *vif = arg;
uint_t num_reclaimed;
num_reclaimed = vioif_reclaim_used_tx(vif);
mutex_enter(&vif->vif_mutex);
vif->vif_tx_reclaim_tid = 0;
/*
* If used descriptors were reclaimed or TX descriptors appear to be
* outstanding, the ring is considered active and periodic reclamation
* is necessary for now.
*/
if (num_reclaimed != 0 || virtio_queue_nactive(vif->vif_tx_vq) != 0) {
/* Do not reschedule if the ring is being drained. */
if (!vif->vif_tx_drain) {
vioif_reclaim_restart(vif);
}
}
mutex_exit(&vif->vif_mutex);
}
static void
vioif_reclaim_restart(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
VERIFY(!vif->vif_tx_drain);
if (vif->vif_tx_reclaim_tid == 0) {
vif->vif_tx_reclaim_tid = timeout(vioif_reclaim_periodic, vif,
MSEC_TO_TICK_ROUNDUP(vioif_reclaim_ms));
}
}
static void
vioif_tx_drain(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
VERIFY3S(vif->vif_runstate, ==, VIOIF_RUNSTATE_STOPPING);
vif->vif_tx_drain = B_TRUE;
/* Put a stop to the periodic reclaim if it is running */
if (vif->vif_tx_reclaim_tid != 0) {
timeout_id_t tid = vif->vif_tx_reclaim_tid;
/*
* With vif_tx_drain set, there is no risk that a racing
* vioif_reclaim_periodic() call will reschedule itself.
*
* Being part of the mc_stop hook also guarantees that
* vioif_m_tx() will not be called to restart it.
*/
vif->vif_tx_reclaim_tid = 0;
mutex_exit(&vif->vif_mutex);
(void) untimeout(tid);
mutex_enter(&vif->vif_mutex);
}
virtio_queue_no_interrupt(vif->vif_tx_vq, B_TRUE);
/*
* Wait for all of the TX descriptors to be processed by the host so
* they can be reclaimed.
*/
while (vif->vif_ntxbufs_alloc > 0) {
mutex_exit(&vif->vif_mutex);
(void) vioif_reclaim_used_tx(vif);
delay(5);
mutex_enter(&vif->vif_mutex);
}
VERIFY(!vif->vif_tx_corked);
VERIFY3U(vif->vif_tx_reclaim_tid, ==, 0);
VERIFY3U(virtio_queue_nactive(vif->vif_tx_vq), ==, 0);
}
static int
vioif_tx_inline(vioif_t *vif, vioif_txbuf_t *tb, mblk_t *mp, size_t msg_size)
{
VERIFY(MUTEX_NOT_HELD(&vif->vif_mutex));
VERIFY3U(msg_size, <=, virtio_dma_size(tb->tb_dma) - VIOIF_HEADER_SKIP);
/*
* Copy the message into the inline buffer and then free the message.
*/
mcopymsg(mp, virtio_dma_va(tb->tb_dma, VIOIF_HEADER_SKIP));
if (virtio_chain_append(tb->tb_chain,
virtio_dma_cookie_pa(tb->tb_dma, 0) + VIOIF_HEADER_SKIP,
msg_size, VIRTIO_DIR_DEVICE_READS) != DDI_SUCCESS) {
return (DDI_FAILURE);
}
return (DDI_SUCCESS);
}
static int
vioif_tx_external(vioif_t *vif, vioif_txbuf_t *tb, mblk_t *mp, size_t msg_size)
{
VERIFY(MUTEX_NOT_HELD(&vif->vif_mutex));
mblk_t *nmp = mp;
tb->tb_ndmaext = 0;
while (nmp != NULL) {
size_t len;
if ((len = MBLKL(nmp)) == 0) {
/*
* Skip any zero-length entries in the chain.
*/
nmp = nmp->b_cont;
continue;
}
if (tb->tb_ndmaext >= tb->tb_dmaext_capacity) {
mutex_enter(&vif->vif_mutex);
vif->vif_txfail_indirect_limit++;
vif->vif_notxbuf++;
mutex_exit(&vif->vif_mutex);
goto fail;
}
if (tb->tb_dmaext[tb->tb_ndmaext] == NULL) {
/*
* Allocate a DMA handle for this slot.
*/
if ((tb->tb_dmaext[tb->tb_ndmaext] =
virtio_dma_alloc_nomem(vif->vif_virtio,
&vioif_dma_attr_external, KM_SLEEP)) == NULL) {
mutex_enter(&vif->vif_mutex);
vif->vif_notxbuf++;
mutex_exit(&vif->vif_mutex);
goto fail;
}
}
virtio_dma_t *extdma = tb->tb_dmaext[tb->tb_ndmaext++];
if (virtio_dma_bind(extdma, nmp->b_rptr, len,
DDI_DMA_WRITE | DDI_DMA_STREAMING, KM_SLEEP) !=
DDI_SUCCESS) {
mutex_enter(&vif->vif_mutex);
vif->vif_txfail_dma_bind++;
mutex_exit(&vif->vif_mutex);
goto fail;
}
for (uint_t n = 0; n < virtio_dma_ncookies(extdma); n++) {
uint64_t pa = virtio_dma_cookie_pa(extdma, n);
size_t sz = virtio_dma_cookie_size(extdma, n);
if (virtio_chain_append(tb->tb_chain, pa, sz,
VIRTIO_DIR_DEVICE_READS) != DDI_SUCCESS) {
mutex_enter(&vif->vif_mutex);
vif->vif_txfail_indirect_limit++;
vif->vif_notxbuf++;
mutex_exit(&vif->vif_mutex);
goto fail;
}
}
nmp = nmp->b_cont;
}
/*
* We need to keep the message around until we reclaim the buffer from
* the device before freeing it.
*/
tb->tb_mp = mp;
return (DDI_SUCCESS);
fail:
for (uint_t n = 0; n < tb->tb_ndmaext; n++) {
if (tb->tb_dmaext[n] != NULL) {
virtio_dma_unbind(tb->tb_dmaext[n]);
}
}
tb->tb_ndmaext = 0;
freemsg(mp);
return (DDI_FAILURE);
}
static boolean_t
vioif_send(vioif_t *vif, mblk_t *mp)
{
VERIFY(MUTEX_NOT_HELD(&vif->vif_mutex));
vioif_txbuf_t *tb = NULL;
struct virtio_net_hdr *vnh = NULL;
size_t msg_size = 0;
uint32_t csum_start;
uint32_t csum_stuff;
uint32_t csum_flags;
uint32_t lso_flags;
uint32_t lso_mss;
mblk_t *nmp;
int ret;
boolean_t lso_required = B_FALSE;
struct ether_header *ether = (void *)mp->b_rptr;
for (nmp = mp; nmp; nmp = nmp->b_cont)
msg_size += MBLKL(nmp);
if (vif->vif_tx_tso4 || vif->vif_tx_tso6) {
mac_lso_get(mp, &lso_mss, &lso_flags);
lso_required = (lso_flags & HW_LSO) != 0;
}
mutex_enter(&vif->vif_mutex);
if ((tb = vioif_txbuf_alloc(vif)) == NULL) {
vif->vif_notxbuf++;
goto fail;
}
mutex_exit(&vif->vif_mutex);
/*
* Use the inline buffer for the virtio net header. Zero the portion
* of our DMA allocation prior to the packet data.
*/
vnh = virtio_dma_va(tb->tb_dma, 0);
bzero(vnh, VIOIF_HEADER_SKIP);
/* We do not support VIRTIO_NET_F_MRG_RXBUF so always pass one buffer */
if (vif->vif_rxbuf_hdrlen >
offsetof(struct virtio_net_hdr, vnh_num_buffers)) {
vnh->vnh_num_buffers = 1;
}
/*
* For legacy devices, and those that have not negotiated
* VIRTIO_F_ANY_LAYOUT, the virtio net header must appear in a separate
* descriptor entry to the rest of the buffer. We do that for modern
* devices too.
*/
if (virtio_chain_append(tb->tb_chain,
virtio_dma_cookie_pa(tb->tb_dma, 0), vif->vif_rxbuf_hdrlen,
VIRTIO_DIR_DEVICE_READS) != DDI_SUCCESS) {
mutex_enter(&vif->vif_mutex);
vif->vif_notxbuf++;
goto fail;
}
mac_hcksum_get(mp, &csum_start, &csum_stuff, NULL, NULL, &csum_flags);
/*
* They want us to do the TCP/UDP csum calculation.
*/
if (csum_flags & HCK_PARTIALCKSUM) {
int eth_hsize;
/*
* Did we ask for it?
*/
ASSERT(vif->vif_tx_csum);
/*
* We only asked for partial csum packets.
*/
ASSERT(!(csum_flags & HCK_IPV4_HDRCKSUM));
ASSERT(!(csum_flags & HCK_FULLCKSUM));
if (ether->ether_type == htons(ETHERTYPE_VLAN)) {
eth_hsize = sizeof (struct ether_vlan_header);
} else {
eth_hsize = sizeof (struct ether_header);
}
vnh->vnh_flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
vnh->vnh_csum_start = eth_hsize + csum_start;
vnh->vnh_csum_offset = csum_stuff - csum_start;
}
/*
* Setup LSO fields if required.
*/
if (lso_required) {
mac_ether_offload_flags_t needed;
mac_ether_offload_info_t meo;
uint32_t cksum;
size_t len;
mblk_t *pullmp = NULL;
tcpha_t *tcpha;
mac_ether_offload_info(mp, &meo);
needed = MEOI_L2INFO_SET | MEOI_L3INFO_SET | MEOI_L4INFO_SET;
if ((meo.meoi_flags & needed) != needed) {
goto fail;
}
if (meo.meoi_l4proto != IPPROTO_TCP) {
goto fail;
}
if (meo.meoi_l3proto == ETHERTYPE_IP && vif->vif_tx_tso4) {
vnh->vnh_gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
} else if (meo.meoi_l3proto == ETHERTYPE_IPV6 &&
vif->vif_tx_tso6) {
vnh->vnh_gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
} else {
goto fail;
}
/*
* The TCP stack does not include the length in the TCP
* pseudo-header when it is performing LSO since hardware
* generally asks for it to be removed (as it'll change).
* Unfortunately, for virtio, we actually need it. This means we
* need to go through and calculate the actual length and fix
* things up. Because the virtio spec cares about the ECN flag
* and indicating that, at least this means we'll have that
* available as well.
*/
if (MBLKL(mp) < vnh->vnh_hdr_len) {
pullmp = msgpullup(mp, vnh->vnh_hdr_len);
if (pullmp == NULL)
goto fail;
tcpha = (tcpha_t *)(pullmp->b_rptr + meo.meoi_l2hlen +
meo.meoi_l3hlen);
} else {
tcpha = (tcpha_t *)(mp->b_rptr + meo.meoi_l2hlen +
meo.meoi_l3hlen);
}
len = meo.meoi_len - meo.meoi_l2hlen - meo.meoi_l3hlen;
cksum = ntohs(tcpha->tha_sum) + len;
cksum = (cksum >> 16) + (cksum & 0xffff);
cksum = (cksum >> 16) + (cksum & 0xffff);
tcpha->tha_sum = htons(cksum);
if (tcpha->tha_flags & TH_CWR) {
vnh->vnh_gso_type |= VIRTIO_NET_HDR_GSO_ECN;
}
vnh->vnh_gso_size = (uint16_t)lso_mss;
vnh->vnh_hdr_len = meo.meoi_l2hlen + meo.meoi_l3hlen +
meo.meoi_l4hlen;
freemsg(pullmp);
}
/*
* The device does not maintain its own statistics about broadcast or
* multicast packets, so we have to check the destination address
* ourselves.
*/
if ((ether->ether_dhost.ether_addr_octet[0] & 0x01) != 0) {
mutex_enter(&vif->vif_mutex);
if (ether_cmp(ðer->ether_dhost, vioif_broadcast) == 0) {
vif->vif_brdcstxmt++;
} else {
vif->vif_multixmt++;
}
mutex_exit(&vif->vif_mutex);
}
/*
* For small packets, copy into the preallocated inline buffer rather
* than incur the overhead of mapping. Note that both of these
* functions ensure that "mp" is freed before returning.
*/
if (msg_size < vif->vif_txcopy_thresh) {
ret = vioif_tx_inline(vif, tb, mp, msg_size);
} else {
ret = vioif_tx_external(vif, tb, mp, msg_size);
}
mp = NULL;
mutex_enter(&vif->vif_mutex);
if (ret != DDI_SUCCESS) {
goto fail;
}
vif->vif_opackets++;
vif->vif_obytes += msg_size;
mutex_exit(&vif->vif_mutex);
virtio_dma_sync(tb->tb_dma, DDI_DMA_SYNC_FORDEV);
virtio_chain_submit(tb->tb_chain, B_TRUE);
return (B_TRUE);
fail:
vif->vif_oerrors++;
if (tb != NULL) {
vioif_txbuf_free(vif, tb);
}
mutex_exit(&vif->vif_mutex);
return (mp == NULL);
}
static mblk_t *
vioif_m_tx(void *arg, mblk_t *mp)
{
vioif_t *vif = arg;
mblk_t *nmp;
/*
* Prior to attempting to send any more frames, do a reclaim to pick up
* any descriptors which have been processed by the host.
*/
if (virtio_queue_nactive(vif->vif_tx_vq) != 0) {
(void) vioif_reclaim_used_tx(vif);
}
while (mp != NULL) {
nmp = mp->b_next;
mp->b_next = NULL;
if (!vioif_send(vif, mp)) {
/*
* If there are no descriptors available, try to
* reclaim some, allowing a retry of the send if some
* are found.
*/
mp->b_next = nmp;
if (vioif_reclaim_used_tx(vif) != 0) {
continue;
}
/*
* Otherwise, enable the TX ring interrupt so that as
* soon as a descriptor becomes available, transmission
* can begin again. For safety, make sure the periodic
* reclaim is running as well.
*/
mutex_enter(&vif->vif_mutex);
vif->vif_tx_corked = B_TRUE;
virtio_queue_no_interrupt(vif->vif_tx_vq, B_FALSE);
vioif_reclaim_restart(vif);
mutex_exit(&vif->vif_mutex);
return (mp);
}
mp = nmp;
}
/* Ensure the periodic reclaim has been started. */
mutex_enter(&vif->vif_mutex);
vioif_reclaim_restart(vif);
mutex_exit(&vif->vif_mutex);
return (NULL);
}
static int
vioif_m_start(void *arg)
{
vioif_t *vif = arg;
mutex_enter(&vif->vif_mutex);
VERIFY3S(vif->vif_runstate, ==, VIOIF_RUNSTATE_STOPPED);
vif->vif_runstate = VIOIF_RUNSTATE_RUNNING;
virtio_queue_no_interrupt(vif->vif_rx_vq, B_FALSE);
/*
* Starting interrupts on the TX virtqueue is unnecessary at this time.
* Descriptor reclamation is handling during transmit, via a periodic
* timer, and when resources are tight, via the then-enabled interrupt.
*/
vif->vif_tx_drain = B_FALSE;
/*
* Add as many receive buffers as we can to the receive queue. If we
* cannot add any, it may be because we have stopped and started again
* and the descriptors are all in the queue already.
*/
(void) vioif_add_rx(vif);
vioif_get_data(vif);
mutex_exit(&vif->vif_mutex);
return (DDI_SUCCESS);
}
static void
vioif_m_stop(void *arg)
{
vioif_t *vif = arg;
mutex_enter(&vif->vif_mutex);
VERIFY3S(vif->vif_runstate, ==, VIOIF_RUNSTATE_RUNNING);
vif->vif_runstate = VIOIF_RUNSTATE_STOPPING;
/* Ensure all TX descriptors have been processed and reclaimed */
vioif_tx_drain(vif);
virtio_queue_no_interrupt(vif->vif_rx_vq, B_TRUE);
vif->vif_runstate = VIOIF_RUNSTATE_STOPPED;
mutex_exit(&vif->vif_mutex);
}
static link_duplex_t
vioif_spec_to_duplex(uint8_t duplex)
{
switch (duplex) {
case VIRTIO_NET_CONFIG_DUPLEX_HALF:
return (LINK_DUPLEX_HALF);
case VIRTIO_NET_CONFIG_DUPLEX_FULL:
return (LINK_DUPLEX_FULL);
case VIRTIO_NET_CONFIG_DUPLEX_UNKNOWN:
default:
return (LINK_DUPLEX_UNKNOWN);
}
}
static link_state_t
vioif_spec_to_state(uint16_t status)
{
/* We don't have a way of mapping to LINK_STATE_UNKNOWN */
return ((status & VIRTIO_NET_CONFIG_STATUS_LINK_UP) ?
LINK_STATE_UP : LINK_STATE_DOWN);
}
static int
vioif_m_stat(void *arg, uint_t stat, uint64_t *val)
{
vioif_t *vif = arg;
switch (stat) {
case MAC_STAT_IERRORS:
*val = vif->vif_ierrors;
break;
case MAC_STAT_OERRORS:
*val = vif->vif_oerrors;
break;
case MAC_STAT_MULTIRCV:
*val = vif->vif_multircv;
break;
case MAC_STAT_BRDCSTRCV:
*val = vif->vif_brdcstrcv;
break;
case MAC_STAT_MULTIXMT:
*val = vif->vif_multixmt;
break;
case MAC_STAT_BRDCSTXMT:
*val = vif->vif_brdcstxmt;
break;
case MAC_STAT_IPACKETS:
*val = vif->vif_ipackets;
break;
case MAC_STAT_RBYTES:
*val = vif->vif_rbytes;
break;
case MAC_STAT_OPACKETS:
*val = vif->vif_opackets;
break;
case MAC_STAT_OBYTES:
*val = vif->vif_obytes;
break;
case MAC_STAT_NORCVBUF:
*val = vif->vif_norecvbuf;
break;
case MAC_STAT_NOXMTBUF:
*val = vif->vif_notxbuf;
break;
case MAC_STAT_IFSPEED:
if (vif->vif_speed == VIRTIO_NET_CONFIG_SPEED_UNKNOWN)
*val = 1000000000ULL; /* 1Gb/s */
else
*val = vif->vif_speed * 1000000ULL;
break;
case ETHER_STAT_LINK_DUPLEX:
*val = vioif_spec_to_duplex(vif->vif_duplex);
break;
default:
return (ENOTSUP);
}
return (DDI_SUCCESS);
}
static int
vioif_m_setprop(void *arg, const char *pr_name, mac_prop_id_t pr_num,
uint_t pr_valsize, const void *pr_val)
{
vioif_t *vif = arg;
switch (pr_num) {
case MAC_PROP_MTU: {
int r;
uint32_t mtu;
if (pr_valsize < sizeof (mtu)) {
return (EOVERFLOW);
}
bcopy(pr_val, &mtu, sizeof (mtu));
if (mtu < ETHERMIN || mtu > vif->vif_mtu_max) {
return (EINVAL);
}
mutex_enter(&vif->vif_mutex);
if ((r = mac_maxsdu_update(vif->vif_mac_handle, mtu)) == 0) {
vif->vif_mtu = mtu;
}
mutex_exit(&vif->vif_mutex);
return (r);
}
case MAC_PROP_PRIVATE: {
long max, result;
uint_t *resp;
char *endptr;
if (strcmp(pr_name, VIOIF_MACPROP_TXCOPY_THRESH) == 0) {
max = VIOIF_MACPROP_TXCOPY_THRESH_MAX;
resp = &vif->vif_txcopy_thresh;
} else if (strcmp(pr_name, VIOIF_MACPROP_RXCOPY_THRESH) == 0) {
max = VIOIF_MACPROP_RXCOPY_THRESH_MAX;
resp = &vif->vif_rxcopy_thresh;
} else {
return (ENOTSUP);
}
if (pr_val == NULL) {
return (EINVAL);
}
if (ddi_strtol(pr_val, &endptr, 10, &result) != 0 ||
*endptr != '\0' || result < 0 || result > max) {
return (EINVAL);
}
mutex_enter(&vif->vif_mutex);
*resp = result;
mutex_exit(&vif->vif_mutex);
return (0);
}
default:
return (ENOTSUP);
}
}
static int
vioif_m_getprop(void *arg, const char *pr_name, mac_prop_id_t pr_num,
uint_t pr_valsize, void *pr_val)
{
vioif_t *vif = arg;
switch (pr_num) {
case MAC_PROP_DUPLEX: {
link_duplex_t duplex;
if (pr_valsize < sizeof (link_duplex_t))
return (EOVERFLOW);
duplex = vioif_spec_to_duplex(vif->vif_duplex);
bcopy(&duplex, pr_val, sizeof (link_duplex_t));
break;
}
case MAC_PROP_SPEED: {
uint64_t speed;
if (pr_valsize < sizeof (uint64_t))
return (EOVERFLOW);
speed = (uint64_t)vif->vif_speed * 1000000ULL;
bcopy(&speed, pr_val, sizeof (uint64_t));
break;
}
case MAC_PROP_STATUS: {
link_state_t state;
if (pr_valsize < sizeof (link_state_t))
return (EOVERFLOW);
state = vioif_spec_to_state(vif->vif_status);
bcopy(&state, pr_val, sizeof (link_state_t));
break;
}
case MAC_PROP_MTU:
if (pr_valsize < sizeof (uint32_t))
return (EOVERFLOW);
bcopy(&vif->vif_mtu, pr_val, sizeof (uint32_t));
break;
case MAC_PROP_PRIVATE: {
uint_t value;
if (strcmp(pr_name, VIOIF_MACPROP_TXCOPY_THRESH) == 0) {
value = vif->vif_txcopy_thresh;
} else if (strcmp(pr_name, VIOIF_MACPROP_RXCOPY_THRESH) == 0) {
value = vif->vif_rxcopy_thresh;
} else {
return (ENOTSUP);
}
if (snprintf(pr_val, pr_valsize, "%u", value) >= pr_valsize) {
return (EOVERFLOW);
}
break;
}
default:
return (ENOTSUP);
}
return (0);
}
static void
vioif_m_propinfo(void *arg, const char *pr_name, mac_prop_id_t pr_num,
mac_prop_info_handle_t prh)
{
vioif_t *vif = arg;
char valstr[64];
int value;
switch (pr_num) {
case MAC_PROP_DUPLEX:
case MAC_PROP_SPEED:
case MAC_PROP_STATUS:
mac_prop_info_set_perm(prh, MAC_PROP_PERM_READ);
break;
case MAC_PROP_MTU:
mac_prop_info_set_perm(prh, MAC_PROP_PERM_RW);
mac_prop_info_set_range_uint32(prh, ETHERMIN, vif->vif_mtu_max);
return;
case MAC_PROP_PRIVATE:
if (strcmp(pr_name, VIOIF_MACPROP_TXCOPY_THRESH) == 0) {
value = VIOIF_MACPROP_TXCOPY_THRESH_DEF;
} else if (strcmp(pr_name, VIOIF_MACPROP_RXCOPY_THRESH) == 0) {
value = VIOIF_MACPROP_RXCOPY_THRESH_DEF;
} else {
/*
* We do not recognise this private property name.
*/
return;
}
mac_prop_info_set_perm(prh, MAC_PROP_PERM_RW);
(void) snprintf(valstr, sizeof (valstr), "%d", value);
mac_prop_info_set_default_str(prh, valstr);
return;
default:
return;
}
}
static boolean_t
vioif_m_getcapab(void *arg, mac_capab_t cap, void *cap_data)
{
vioif_t *vif = arg;
switch (cap) {
case MAC_CAPAB_HCKSUM: {
if (!vif->vif_tx_csum) {
return (B_FALSE);
}
*(uint32_t *)cap_data = HCKSUM_INET_PARTIAL;
return (B_TRUE);
}
case MAC_CAPAB_LSO: {
if (!vif->vif_tx_tso4) {
return (B_FALSE);
}
mac_capab_lso_t *lso = cap_data;
lso->lso_flags = LSO_TX_BASIC_TCP_IPV4 | LSO_TX_BASIC_TCP_IPV6;
lso->lso_basic_tcp_ipv4.lso_max = VIOIF_RX_DATA_SIZE;
lso->lso_basic_tcp_ipv6.lso_max = VIOIF_RX_DATA_SIZE;
return (B_TRUE);
}
default:
return (B_FALSE);
}
}
static boolean_t
vioif_has_feature(vioif_t *vif, uint64_t feature)
{
return (virtio_features_present(vif->vif_virtio, feature));
}
/*
* Read the primary MAC address from the device if one is provided. If not,
* generate a random locally administered MAC address and write it back to the
* device.
*/
static void
vioif_get_mac(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
if (vioif_has_feature(vif, VIRTIO_NET_F_MAC)) {
uint8_t gen = virtio_dev_getgen(vif->vif_virtio);
do {
for (uint_t i = 0; i < ETHERADDRL; i++) {
vif->vif_mac[i] =
virtio_dev_get8(vif->vif_virtio,
VIRTIO_NET_CONFIG_MAC + i);
}
} while (gen != virtio_dev_getgen(vif->vif_virtio));
vif->vif_mac_from_host = 1;
return;
}
/* Get a few random bytes */
(void) random_get_pseudo_bytes(vif->vif_mac, ETHERADDRL);
/* Make sure it's a unicast MAC */
vif->vif_mac[0] &= ~1;
/* Set the "locally administered" bit */
vif->vif_mac[1] |= 2;
/*
* Write the random MAC address back to the device.
*/
for (uint_t i = 0; i < ETHERADDRL; i++) {
virtio_dev_put8(vif->vif_virtio, VIRTIO_NET_CONFIG_MAC + i,
vif->vif_mac[i]);
}
vif->vif_mac_from_host = 0;
dev_err(vif->vif_dip, CE_NOTE, "!Generated a random MAC address: "
"%02x:%02x:%02x:%02x:%02x:%02x",
(uint_t)vif->vif_mac[0], (uint_t)vif->vif_mac[1],
(uint_t)vif->vif_mac[2], (uint_t)vif->vif_mac[3],
(uint_t)vif->vif_mac[4], (uint_t)vif->vif_mac[5]);
}
static void
vioif_get_data(vioif_t *vif)
{
link_state_t orig_state, new_state;
VERIFY(MUTEX_HELD(&vif->vif_mutex));
orig_state = vioif_spec_to_state(vif->vif_status);
if (vioif_has_feature(vif, VIRTIO_NET_F_STATUS)) {
vif->vif_status = virtio_dev_get16(vif->vif_virtio,
VIRTIO_NET_CONFIG_STATUS);
} else {
vif->vif_status = VIRTIO_NET_CONFIG_STATUS_LINK_UP;
}
new_state = vioif_spec_to_state(vif->vif_status);
if (new_state == LINK_STATE_UP) {
if (vioif_has_feature(vif, VIRTIO_NET_F_SPEED_DUPLEX)) {
vif->vif_speed = virtio_dev_get32(vif->vif_virtio,
VIRTIO_NET_CONFIG_SPEED);
vif->vif_duplex = virtio_dev_get8(vif->vif_virtio,
VIRTIO_NET_CONFIG_DUPLEX);
} else {
vif->vif_speed = VIRTIO_NET_CONFIG_SPEED_UNKNOWN;
vif->vif_duplex = VIRTIO_NET_CONFIG_DUPLEX_FULL;
}
} else {
vif->vif_speed = 0;
vif->vif_duplex = VIRTIO_NET_CONFIG_DUPLEX_UNKNOWN;
}
/*
* The specification says that speed is valid from [0, INT32_MAX] with
* UINT32_MAX used as the unknown value. If we get anything else we map
* it to the unknown value.
*/
if (vif->vif_speed > INT32_MAX)
vif->vif_speed = VIRTIO_NET_CONFIG_SPEED_UNKNOWN;
if (orig_state != new_state)
mac_link_update(vif->vif_mac_handle, new_state);
}
/*
* Virtqueue interrupt handlers
*/
static uint_t
vioif_rx_handler(caddr_t arg0, caddr_t arg1)
{
vioif_t *vif = (vioif_t *)arg0;
mutex_enter(&vif->vif_mutex);
(void) vioif_process_rx(vif);
/*
* Attempt to replenish the receive queue. If we cannot add any
* descriptors here, it may be because all of the recently received
* packets were loaned up to the networking stack.
*/
(void) vioif_add_rx(vif);
mutex_exit(&vif->vif_mutex);
return (DDI_INTR_CLAIMED);
}
static uint_t
vioif_tx_handler(caddr_t arg0, caddr_t arg1)
{
vioif_t *vif = (vioif_t *)arg0;
/*
* The TX interrupt could race with other reclamation activity, so
* interpreting the return value is unimportant.
*/
(void) vioif_reclaim_used_tx(vif);
return (DDI_INTR_CLAIMED);
}
static void
vioif_check_features(vioif_t *vif)
{
VERIFY(MUTEX_HELD(&vif->vif_mutex));
vif->vif_tx_csum = 0;
vif->vif_tx_tso4 = 0;
vif->vif_tx_tso6 = 0;
if (vioif_has_feature(vif, VIRTIO_NET_F_CSUM)) {
/*
* The host will accept packets with partial checksums from us.
*/
vif->vif_tx_csum = 1;
/*
* The legacy GSO feature represents the combination of
* HOST_TSO4, HOST_TSO6, and HOST_ECN.
*/
boolean_t gso = vioif_has_feature(vif, VIRTIO_NET_F_GSO);
boolean_t tso4 = vioif_has_feature(vif, VIRTIO_NET_F_HOST_TSO4);
boolean_t tso6 = vioif_has_feature(vif, VIRTIO_NET_F_HOST_TSO6);
boolean_t ecn = vioif_has_feature(vif, VIRTIO_NET_F_HOST_ECN);
/*
* Explicit congestion notification (ECN) is configured
* globally; see "tcp_ecn_permitted". As we cannot currently
* request that the stack disable ECN on a per interface basis,
* we require the device to support the combination of
* segmentation offload and ECN support.
*/
if (gso) {
vif->vif_tx_tso4 = 1;
vif->vif_tx_tso6 = 1;
}
if (tso4 && ecn) {
vif->vif_tx_tso4 = 1;
}
if (tso6 && ecn) {
vif->vif_tx_tso6 = 1;
}
}
if (vioif_has_feature(vif, VIRTIO_NET_F_CTRL_VQ)) {
vif->vif_has_ctrlq = 1;
/*
* The VIRTIO_NET_F_CTRL_VQ feature must be enabled if there's
* any chance of the VIRTIO_NET_F_CTRL_RX being enabled.
*/
if (vioif_has_feature(vif, VIRTIO_NET_F_CTRL_RX))
vif->vif_has_ctrlq_rx = 1;
}
}
static int
vioif_select_interrupt_types(void)
{
id_t id;
smbios_system_t sys;
smbios_info_t info;
if (vioif_allowed_int_types != -1) {
/*
* If this value was tuned via /etc/system or the debugger,
* use the provided value directly.
*/
return (vioif_allowed_int_types);
}
if (ksmbios == NULL ||
(id = smbios_info_system(ksmbios, &sys)) == SMB_ERR ||
smbios_info_common(ksmbios, id, &info) == SMB_ERR) {
/*
* The system may not have valid SMBIOS data, so ignore a
* failure here.
*/
return (VIRTIO_ANY_INTR_TYPE);
}
if (strcmp(info.smbi_manufacturer, "Google") == 0 &&
strcmp(info.smbi_product, "Google Compute Engine") == 0) {
/*
* An undiagnosed issue with the Google Compute Engine (GCE)
* hypervisor exists. In this environment, no RX interrupts
* are received if MSI-X handlers are installed. This does not
* appear to be true for the Virtio SCSI driver. Fixed
* interrupts do appear to work, so we fall back for now:
*/
return (DDI_INTR_TYPE_FIXED);
}
return (VIRTIO_ANY_INTR_TYPE);
}
static uint_t
vioif_cfgchange(caddr_t arg0, caddr_t arg1 __unused)
{
vioif_t *vif = (vioif_t *)arg0;
/*
* The configuration space of the device has changed in some way;
* refresh data.
*/
mutex_enter(&vif->vif_mutex);
vioif_get_data(vif);
mutex_exit(&vif->vif_mutex);
return (DDI_INTR_CLAIMED);
}
static int
vioif_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
{
int ret;
vioif_t *vif;
virtio_t *vio;
mac_register_t *macp = NULL;
uint64_t features;
if (cmd != DDI_ATTACH) {
return (DDI_FAILURE);
}
if ((vio = virtio_init(dip)) == NULL) {
return (DDI_FAILURE);
}
features = VIRTIO_NET_WANTED_FEATURES;
if (virtio_modern(vio))
features |= VIRTIO_NET_WANTED_FEATURES_MODERN;
if (!virtio_init_features(vio, features, B_TRUE)) {
virtio_fini(vio, B_TRUE);
return (DDI_FAILURE);
}
vif = kmem_zalloc(sizeof (*vif), KM_SLEEP);
vif->vif_dip = dip;
vif->vif_virtio = vio;
vif->vif_runstate = VIOIF_RUNSTATE_STOPPED;
ddi_set_driver_private(dip, vif);
if ((vif->vif_rx_vq = virtio_queue_alloc(vio, VIRTIO_NET_VIRTQ_RX,
"rx", vioif_rx_handler, vif, B_FALSE, VIOIF_MAX_SEGS)) == NULL ||
(vif->vif_tx_vq = virtio_queue_alloc(vio, VIRTIO_NET_VIRTQ_TX,
"tx", vioif_tx_handler, vif, B_FALSE, VIOIF_MAX_SEGS)) == NULL) {
goto fail_virtio;
}
if (vioif_has_feature(vif, VIRTIO_NET_F_CTRL_VQ) &&
(vif->vif_ctrl_vq = virtio_queue_alloc(vio,
VIRTIO_NET_VIRTQ_CONTROL, "ctrlq", NULL, vif,
B_FALSE, VIOIF_MAX_SEGS)) == NULL) {
goto fail_virtio;
}
virtio_register_cfgchange_handler(vio, vioif_cfgchange, vif);
if (virtio_init_complete(vio, vioif_select_interrupt_types()) !=
DDI_SUCCESS) {
dev_err(dip, CE_WARN, "failed to complete Virtio init");
goto fail_virtio;
}
virtio_queue_no_interrupt(vif->vif_rx_vq, B_TRUE);
virtio_queue_no_interrupt(vif->vif_tx_vq, B_TRUE);
if (vif->vif_ctrl_vq != NULL)
virtio_queue_no_interrupt(vif->vif_ctrl_vq, B_TRUE);
mutex_init(&vif->vif_mutex, NULL, MUTEX_DRIVER, virtio_intr_pri(vio));
mutex_enter(&vif->vif_mutex);
vioif_get_mac(vif);
vif->vif_duplex = VIRTIO_NET_CONFIG_DUPLEX_UNKNOWN;
vif->vif_speed = VIRTIO_NET_CONFIG_SPEED_UNKNOWN;
vif->vif_rxcopy_thresh = VIOIF_MACPROP_RXCOPY_THRESH_DEF;
vif->vif_txcopy_thresh = VIOIF_MACPROP_TXCOPY_THRESH_DEF;
vif->vif_rxbuf_hdrlen = VIRTIO_NET_HDR_LEN(virtio_modern(vio));
if (vioif_has_feature(vif, VIRTIO_NET_F_MTU)) {
vif->vif_mtu_max = virtio_dev_get16(vio, VIRTIO_NET_CONFIG_MTU);
} else {
vif->vif_mtu_max = ETHERMTU;
}
vif->vif_mtu = ETHERMTU;
if (vif->vif_mtu > vif->vif_mtu_max) {
vif->vif_mtu = vif->vif_mtu_max;
}
vioif_check_features(vif);
if (vioif_alloc_bufs(vif) != 0) {
mutex_exit(&vif->vif_mutex);
dev_err(dip, CE_WARN, "failed to allocate memory");
goto fail_virtio;
}
mutex_exit(&vif->vif_mutex);
if (virtio_interrupts_enable(vio) != DDI_SUCCESS) {
dev_err(dip, CE_WARN, "failed to enable interrupts");
goto fail_bufs;
}
if ((macp = mac_alloc(MAC_VERSION)) == NULL) {
dev_err(dip, CE_WARN, "failed to allocate a mac_register");
goto fail_bufs;
}
macp->m_type_ident = MAC_PLUGIN_IDENT_ETHER;
macp->m_driver = vif;
macp->m_dip = dip;
macp->m_src_addr = vif->vif_mac;
macp->m_callbacks = &vioif_mac_callbacks;
macp->m_min_sdu = 0;
macp->m_max_sdu = vif->vif_mtu;
macp->m_margin = VLAN_TAGSZ;
macp->m_priv_props = vioif_priv_props;
if ((ret = mac_register(macp, &vif->vif_mac_handle)) != 0) {
dev_err(dip, CE_WARN, "mac_register() failed (%d)", ret);
goto fail_mac;
}
mac_free(macp);
mutex_enter(&vif->vif_mutex);
vioif_get_data(vif);
mutex_exit(&vif->vif_mutex);
return (DDI_SUCCESS);
fail_mac:
mac_free(macp);
fail_bufs:
mutex_enter(&vif->vif_mutex);
vioif_free_bufs(vif);
mutex_exit(&vif->vif_mutex);
fail_virtio:
(void) virtio_fini(vio, B_TRUE);
kmem_free(vif, sizeof (*vif));
return (DDI_FAILURE);
}
static int
vioif_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
{
int r;
vioif_t *vif;
if (cmd != DDI_DETACH) {
return (DDI_FAILURE);
}
if ((vif = ddi_get_driver_private(dip)) == NULL) {
return (DDI_FAILURE);
}
mutex_enter(&vif->vif_mutex);
if (vif->vif_runstate != VIOIF_RUNSTATE_STOPPED) {
dev_err(dip, CE_WARN, "!NIC still running, cannot detach");
mutex_exit(&vif->vif_mutex);
return (DDI_FAILURE);
}
/*
* There should be no outstanding transmit buffers once the NIC is
* completely stopped.
*/
VERIFY3U(vif->vif_ntxbufs_alloc, ==, 0);
/*
* Though we cannot claw back all of the receive buffers until we reset
* the device, we must ensure all those loaned to MAC have been
* returned before calling mac_unregister().
*/
if (vif->vif_nrxbufs_onloan > 0) {
dev_err(dip, CE_WARN, "!%u receive buffers still loaned, "
"cannot detach", vif->vif_nrxbufs_onloan);
mutex_exit(&vif->vif_mutex);
return (DDI_FAILURE);
}
if ((r = mac_unregister(vif->vif_mac_handle)) != 0) {
dev_err(dip, CE_WARN, "!MAC unregister failed (%d)", r);
return (DDI_FAILURE);
}
/*
* Shut down the device so that we can recover any previously
* submitted receive buffers.
*/
virtio_shutdown(vif->vif_virtio);
for (;;) {
virtio_chain_t *vic;
if ((vic = virtio_queue_evacuate(vif->vif_rx_vq)) == NULL) {
break;
}
vioif_rxbuf_t *rb = virtio_chain_data(vic);
vioif_rxbuf_free(vif, rb);
}
/*
* vioif_free_bufs() must be called before virtio_fini()
* as it uses virtio_chain_free() which itself depends on some
* virtio data structures still being around.
*/
vioif_free_bufs(vif);
(void) virtio_fini(vif->vif_virtio, B_FALSE);
mutex_exit(&vif->vif_mutex);
mutex_destroy(&vif->vif_mutex);
kmem_free(vif, sizeof (*vif));
return (DDI_SUCCESS);
}
static int
vioif_quiesce(dev_info_t *dip)
{
vioif_t *vif;
if ((vif = ddi_get_driver_private(dip)) == NULL)
return (DDI_FAILURE);
return (virtio_quiesce(vif->vif_virtio));
}
int
_init(void)
{
int ret;
mac_init_ops(&vioif_dev_ops, "vioif");
if ((ret = mod_install(&vioif_modlinkage)) != DDI_SUCCESS) {
mac_fini_ops(&vioif_dev_ops);
}
return (ret);
}
int
_fini(void)
{
int ret;
if ((ret = mod_remove(&vioif_modlinkage)) == DDI_SUCCESS) {
mac_fini_ops(&vioif_dev_ops);
}
return (ret);
}
int
_info(struct modinfo *modinfop)
{
return (mod_info(&vioif_modlinkage, modinfop));
}
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2021 Joyent, Inc.
* Copyright 2026 Oxide Computer Company
*/
/*
* VIRTIO NETWORK DRIVER
*/
#ifndef _VIOIF_H
#define _VIOIF_H
#include "virtio.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* VIRTIO NETWORK CONFIGURATION REGISTERS
*
* These are offsets into the device-specific configuration space available
* through the virtio_dev_*() family of functions.
*/
#define VIRTIO_NET_CONFIG_MAC 0x00 /* 48 R/W */
#define VIRTIO_NET_CONFIG_STATUS 0x06 /* 16 R */
#define VIRTIO_NET_CONFIG_MAX_VQ_PAIRS 0x08 /* 16 R */
#define VIRTIO_NET_CONFIG_MTU 0x0A /* 16 R */
#define VIRTIO_NET_CONFIG_SPEED 0x0C /* 32 R */
#define VIRTIO_NET_CONFIG_DUPLEX 0x10 /* 8 R */
#define VIRTIO_NET_CONFIG_STATUS_LINK_UP 1
#define VIRTIO_NET_CONFIG_SPEED_UNKNOWN UINT32_MAX
#define VIRTIO_NET_CONFIG_DUPLEX_HALF 0
#define VIRTIO_NET_CONFIG_DUPLEX_FULL 1
#define VIRTIO_NET_CONFIG_DUPLEX_UNKNOWN 0xff
/*
* VIRTIO NETWORK VIRTQUEUES
*
* Note that the control queue is only present if VIRTIO_NET_F_CTRL_VQ is
* negotiated with the device.
*/
#define VIRTIO_NET_VIRTQ_RX 0
#define VIRTIO_NET_VIRTQ_TX 1
#define VIRTIO_NET_VIRTQ_CONTROL 2
/*
* VIRTIO NETWORK FEATURE BITS
*/
/*
* CSUM, GUEST_CSUM:
* Partial checksum support. These features signal that the device will
* accept packets with partial checksums (CSUM), and that the driver will
* accept packets with partial checksums (GUEST_CSUM). These features
* combine the use of the VIRTIO_NET_HDR_F_NEEDS_CSUM flag, and the
* "csum_start" and "csum_offset" fields, in the virtio net header.
*/
#define VIRTIO_NET_F_CSUM (1ULL << 0)
#define VIRTIO_NET_F_GUEST_CSUM (1ULL << 1)
/*
* MTU:
* The device offers a maximum MTU value at VIRTIO_NET_CONFIG_MTU. If
* this is not negotiated, we allow the largest possible MTU that our
* buffer allocations support in case jumbo frames are tacitly supported
* by the device. The default MTU is always 1500.
*/
#define VIRTIO_NET_F_MTU (1ULL << 3)
/*
* MAC:
* The device has an assigned primary MAC address. If this feature bit is
* not set, the driver must provide a locally assigned MAC address. See
* IEEE 802, "48-bit universal LAN MAC addresses" for more details on
* assignment.
*/
#define VIRTIO_NET_F_MAC (1ULL << 5)
/*
* GUEST_TSO4, GUEST_TSO6, GUEST_UFO:
* Inbound segmentation offload support. These features depend on having
* VIRTIO_NET_F_GUEST_CSUM and signal that the driver can accept large
* combined TCP (v4 or v6) packets, or reassembled UDP fragments.
*/
#define VIRTIO_NET_F_GUEST_TSO4 (1ULL << 7)
#define VIRTIO_NET_F_GUEST_TSO6 (1ULL << 8)
#define VIRTIO_NET_F_GUEST_UFO (1ULL << 10)
/*
* GUEST_ECN:
* Depends on either VIRTIO_NET_F_GUEST_TSO4 or VIRTIO_NET_F_GUEST_TSO6.
* This feature means the driver will look for the VIRTIO_NET_HDR_GSO_ECN
* bit in the "gso_type" of the virtio net header. This bit tells the
* driver that the Explicit Congestion Notification (ECN) bit was set in
* the original TCP packets.
*/
#define VIRTIO_NET_F_GUEST_ECN (1ULL << 9)
/*
* HOST_TSO4, HOST_TSO6, HOST_UFO:
* Outbound segmentation offload support. These features depend on having
* VIRTIO_NET_F_CSUM and signal that the device will accept large combined
* TCP (v4 or v6) packets that require segmentation offload, or large
* combined UDP packets that require fragmentation offload.
*/
#define VIRTIO_NET_F_HOST_TSO4 (1ULL << 11)
#define VIRTIO_NET_F_HOST_TSO6 (1ULL << 12)
#define VIRTIO_NET_F_HOST_UFO (1ULL << 14)
/*
* HOST_ECN:
* Depends on either VIRTIO_NET_F_HOST_TSO4 or VIRTIO_NET_F_HOST_TSO6.
* This features means the device will accept packets that both require
* segmentation offload and have the Explicit Congestion Notification
* (ECN) bit set. If this feature is not present, the device must not
* send large segments that require ECN to be set.
*/
#define VIRTIO_NET_F_HOST_ECN (1ULL << 13)
/*
* GSO:
* The GSO feature is, in theory, the combination of HOST_TSO4, HOST_TSO6,
* and HOST_ECN. This is only useful for legacy devices; newer devices
* should be using the more specific bits above.
*/
#define VIRTIO_NET_F_GSO (1ULL << 6)
/*
* MRG_RXBUF:
* This feature allows the receipt of large packets without needing to
* allocate large buffers. The "virtio_net_hdr" will include an extra
* value: the number of buffers to gang together.
*/
#define VIRTIO_NET_F_MRG_RXBUF (1ULL << 15)
/*
* STATUS:
* The VIRTIO_NET_CONFIG_STATUS configuration register is available, which
* allows the driver to read the link state from the device.
*/
#define VIRTIO_NET_F_STATUS (1ULL << 16)
/*
* CTRL_VQ, CTRL_RX, CTRL_VLAN:
* These features signal that the device exposes the control queue
* (VIRTIO_NET_VIRTQ_CONTROL), in the case of CTRL_VQ; and that the
* control queue supports extra commands (CTRL_RX, CTRL_VLAN).
*/
#define VIRTIO_NET_F_CTRL_VQ (1ULL << 17)
#define VIRTIO_NET_F_CTRL_RX (1ULL << 18)
#define VIRTIO_NET_F_CTRL_VLAN (1ULL << 19)
#define VIRTIO_NET_F_CTRL_RX_EXTRA (1ULL << 20)
/*
* SPEED_DUPLEX:
* The VIRTIO_NET_CONFIG_SPEED and VIRTIO_NET_CONFIG_DUPLEX registers are
* available, which allows the driver to determine the link speed and
* duplex of the device.
*/
#define VIRTIO_NET_F_SPEED_DUPLEX (1ULL << 63)
/*
* These features are supported by the driver and we will request them from the
* device. Note that we do not currently request GUEST_CSUM, as the driver
* does not presently support receiving frames with any offload features from
* the device.
*/
#define VIRTIO_NET_WANTED_FEATURES (VIRTIO_NET_F_CSUM | \
VIRTIO_NET_F_GSO | \
VIRTIO_NET_F_HOST_TSO4 | \
VIRTIO_NET_F_HOST_TSO6 | \
VIRTIO_NET_F_HOST_ECN | \
VIRTIO_NET_F_MAC | \
VIRTIO_NET_F_MTU | \
VIRTIO_NET_F_CTRL_VQ | \
VIRTIO_NET_F_CTRL_RX | \
VIRTIO_NET_F_STATUS)
/* The following features are only available with the modern interface. */
#define VIRTIO_NET_WANTED_FEATURES_MODERN \
(VIRTIO_NET_F_SPEED_DUPLEX)
/*
* VIRTIO NETWORK HEADER
*
* This structure appears at the start of each transmit or receive packet
* buffer. When using the legacy interface, the `vnh_num_buffers` field only
* appears when VIRTIO_NET_F_MRG_RXBUF is negotiated, whereas it is always
* present with the modern interface. We use a common struct since it is always
* constructed in a buffer of at least this size, and then only put the
* requisite number of bytes (VIRTIO_NET_HDR_LEN()) into the descriptor.
*/
struct virtio_net_hdr {
uint8_t vnh_flags;
uint8_t vnh_gso_type;
uint16_t vnh_hdr_len;
uint16_t vnh_gso_size;
uint16_t vnh_csum_start;
uint16_t vnh_csum_offset;
uint16_t vnh_num_buffers;
} __packed;
#define VIRTIO_NET_HDR_LEN(modern) \
((modern) ? sizeof (struct virtio_net_hdr) : \
offsetof(struct virtio_net_hdr, vnh_num_buffers))
/*
* VIRTIO NETWORK HEADER: FLAGS (vnh_flags)
*/
#define VIRTIO_NET_HDR_F_NEEDS_CSUM 0x01
/*
* VIRTIO NETWORK HEADER: OFFLOAD OPTIONS (vnh_gso_type)
*
* Each of these is an offload type, except for the ECN value which is
* logically OR-ed with one of the other types.
*/
#define VIRTIO_NET_HDR_GSO_NONE 0
#define VIRTIO_NET_HDR_GSO_TCPV4 1
#define VIRTIO_NET_HDR_GSO_UDP 3
#define VIRTIO_NET_HDR_GSO_TCPV6 4
#define VIRTIO_NET_HDR_GSO_ECN 0x80
/*
* VIRTIO CONTROL VIRTQUEUE HEADER
*
* This structure appears at the start of each control virtqueue request.
*/
struct virtio_net_ctrlq_hdr {
uint8_t vnch_class;
uint8_t vnch_command;
} __packed;
/*
* Control Queue Classes
*/
#define VIRTIO_NET_CTRL_RX 0
/*
* CTRL_RX commands
*/
#define VIRTIO_NET_CTRL_RX_PROMISC 0
#define VIRTIO_NET_CTRL_RX_ALLMULTI 1
#define VIRTIO_NET_CTRL_RX_ALLUNI 2
#define VIRTIO_NET_CTRL_RX_NOMULTI 3
#define VIRTIO_NET_CTRL_RX_NOUNI 4
#define VIRTIO_NET_CTRL_RX_NOBCAST 5
/*
* Control queue ack values
*/
#define VIRTIO_NET_CQ_OK 0
#define VIRTIO_NET_CQ_ERR 1
/*
* DRIVER PARAMETERS
*/
/*
* At attach, we allocate a fixed pool of buffers for receipt and transmission
* of frames. The maximum number of buffers of each type that we will allocate
* is specified here. If the ring size is smaller than this number, we will
* use the ring size instead.
*/
#define VIRTIO_NET_TX_BUFS 256
#define VIRTIO_NET_RX_BUFS 256
/*
* Initially, only use a single buf for control queue requests (when
* present). If this becomes a bottleneck, we can simply increase this
* value as necessary.
*/
#define VIRTIO_NET_CTRL_BUFS 1
/*
* The virtio net header and the first buffer segment share the same DMA
* allocation. We round up the virtio header size to a multiple of 4 and add 2
* bytes so that the IP header, which starts immediately after the 14 or 18
* byte Ethernet header, is then correctly aligned:
*
* 0 10 16 18 32/36
* | virtio_net_hdr | %4==0 | +2 | Ethernet header (14/18 bytes) | IPv4 ...
*
* Note that for this to work correctly, the DMA allocation must also be 4 byte
* aligned.
*/
#define VIOIF_HEADER_ALIGN 4
#define VIOIF_HEADER_SKIP (P2ROUNDUP( \
sizeof (struct virtio_net_hdr), \
VIOIF_HEADER_ALIGN) + 2)
/*
* Given we are not negotiating VIRTIO_NET_F_MRG_RXBUF, the specification says
* we must be able to accept a 1514 byte packet, or if any segmentation offload
* features have been negotiated a 65550 byte packet. To keep things simple,
* we'll assume segmentation offload is possible in most cases. In addition to
* the packet payload, we need to account for the Ethernet header and the
* virtio_net_hdr.
*/
#define VIOIF_RX_DATA_SIZE 65550
#define VIOIF_RX_BUF_SIZE (VIOIF_RX_DATA_SIZE + \
sizeof (struct ether_header) + \
VIOIF_HEADER_SKIP)
/*
* If we assume that a large allocation will probably have mostly 4K page sized
* cookies, 64 segments allows us 256KB for a single frame. We're in control
* of the allocation we use for receive buffers, so this value only has an
* impact on the length of chain we're able to create for external transmit
* buffer mappings.
*/
#define VIOIF_MAX_SEGS 64
/*
* We pre-allocate a reasonably large buffer to copy small packets
* there. Bigger packets are mapped, packets with multiple
* cookies are mapped as indirect buffers.
*/
#define VIOIF_TX_INLINE_SIZE (2 * 1024)
/*
* Control queue messages are very small. This is a rather arbitrary small
* bufer size that should be sufficiently large for any control queue
* messages we will send.
*/
#define VIOIF_CTRL_SIZE 256
/*
* TYPE DEFINITIONS
*/
typedef struct vioif vioif_t;
/*
* Receive buffers are allocated in advance as a combination of DMA memory and
* a descriptor chain. Receive buffers can be loaned to the networking stack
* to avoid copying, and this object contains the free routine to pass to
* desballoc().
*
* When receive buffers are not in use, they are linked into the per-instance
* free list, "vif_rxbufs" via "rb_link". Under normal conditions, we expect
* the free list to be empty much of the time; most buffers will be in the ring
* or on loan.
*/
typedef struct vioif_rxbuf {
vioif_t *rb_vioif;
frtn_t rb_frtn;
virtio_dma_t *rb_dma;
virtio_chain_t *rb_chain;
list_node_t rb_link;
} vioif_rxbuf_t;
typedef struct vioif_ctrlbuf {
vioif_t *cb_vioif;
virtio_dma_t *cb_dma;
virtio_chain_t *cb_chain;
list_node_t cb_link;
} vioif_ctrlbuf_t;
/*
* Transmit buffers are also allocated in advance. DMA memory is allocated for
* the virtio net header, and to hold small packets. Larger packets are mapped
* from storage loaned to the driver by the network stack.
*
* When transmit buffers are not in use, they are linked into the per-instance
* free list, "vif_txbufs" via "tb_link".
*/
typedef struct vioif_txbuf {
mblk_t *tb_mp;
/*
* Inline buffer space (VIOIF_TX_INLINE_SIZE) for storage of the virtio
* net header, and to hold copied (rather than mapped) packet data.
*/
virtio_dma_t *tb_dma;
virtio_chain_t *tb_chain;
/*
* External buffer mapping. The capacity is fixed at allocation time,
* and "tb_ndmaext" tracks the current number of mappings.
*/
virtio_dma_t **tb_dmaext;
uint_t tb_dmaext_capacity;
uint_t tb_ndmaext;
list_node_t tb_link;
} vioif_txbuf_t;
typedef enum vioif_runstate {
VIOIF_RUNSTATE_STOPPED = 1,
VIOIF_RUNSTATE_STOPPING,
VIOIF_RUNSTATE_RUNNING
} vioif_runstate_t;
/*
* Per-instance driver object.
*/
struct vioif {
dev_info_t *vif_dip;
virtio_t *vif_virtio;
kmutex_t vif_mutex;
/*
* The NIC is considered RUNNING between the mc_start(9E) and
* mc_stop(9E) calls. Otherwise it is STOPPING (while draining
* resources) then STOPPED. When not RUNNING, we will drop incoming
* frames and refuse to insert more receive buffers into the receive
* queue.
*/
vioif_runstate_t vif_runstate;
mac_handle_t vif_mac_handle;
virtio_queue_t *vif_rx_vq;
virtio_queue_t *vif_tx_vq;
virtio_queue_t *vif_ctrl_vq;
/* TX virtqueue management resources */
boolean_t vif_tx_corked;
boolean_t vif_tx_drain;
timeout_id_t vif_tx_reclaim_tid;
/*
* Configured offload features:
*/
unsigned int vif_tx_csum:1;
unsigned int vif_tx_tso4:1;
unsigned int vif_tx_tso6:1;
/*
* For debugging, it is useful to know whether the MAC address we
* are using came from the host (via VIRTIO_NET_CONFIG_MAC) or
* was otherwise generated or set from within the guest.
*/
unsigned int vif_mac_from_host:1;
unsigned int vif_has_ctrlq:1;
unsigned int vif_has_ctrlq_rx:1;
uint32_t vif_speed; /* Mb/s */
uint16_t vif_status;
uint8_t vif_duplex;
uint_t vif_mtu;
uint_t vif_mtu_max;
uint8_t vif_mac[ETHERADDRL];
/*
* Receive buffer free list and accounting:
*/
list_t vif_rxbufs;
uint_t vif_nrxbufs_alloc;
uint_t vif_nrxbufs_onloan;
uint_t vif_nrxbufs_onloan_max;
uint_t vif_rxbufs_capacity;
vioif_rxbuf_t *vif_rxbufs_mem;
size_t vif_rxbuf_hdrlen;
/*
* Transmit buffer free list and accounting:
*/
list_t vif_txbufs;
uint_t vif_ntxbufs_alloc;
uint_t vif_txbufs_capacity;
vioif_txbuf_t *vif_txbufs_mem;
/*
* These copy size thresholds are exposed as private MAC properties so
* that they can be tuned without rebooting.
*/
uint_t vif_rxcopy_thresh;
uint_t vif_txcopy_thresh;
list_t vif_ctrlbufs;
uint_t vif_nctrlbufs_alloc;
uint_t vif_ctrlbufs_capacity;
vioif_ctrlbuf_t *vif_ctrlbufs_mem;
/*
* Statistics visible through mac:
*/
uint64_t vif_ipackets;
uint64_t vif_opackets;
uint64_t vif_rbytes;
uint64_t vif_obytes;
uint64_t vif_brdcstxmt;
uint64_t vif_brdcstrcv;
uint64_t vif_multixmt;
uint64_t vif_multircv;
uint64_t vif_norecvbuf;
uint64_t vif_notxbuf;
uint64_t vif_ierrors;
uint64_t vif_oerrors;
/*
* Internal debugging statistics:
*/
uint64_t vif_rxfail_dma_handle;
uint64_t vif_rxfail_dma_buffer;
uint64_t vif_rxfail_dma_bind;
uint64_t vif_rxfail_chain_undersize;
uint64_t vif_rxfail_no_descriptors;
uint64_t vif_txfail_dma_handle;
uint64_t vif_txfail_dma_bind;
uint64_t vif_txfail_indirect_limit;
uint64_t vif_stat_tx_reclaim;
uint64_t vif_noctrlbuf;
uint64_t vif_ctrlbuf_toosmall;
};
#ifdef __cplusplus
}
#endif
#endif /* _VIOIF_H */
|