sys/dev/virtual/virtio/net/if_vtnet.c
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 | /*- * Copyright (c) 2011, Bryan Venteicher <bryanv@FreeBSD.org> * 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 unmodified, 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. */ /* Driver for VirtIO network devices. */ #include "opt_ifpoll.h" #include <sys/cdefs.h> #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/sockio.h> #include <sys/mbuf.h> #include <sys/malloc.h> #include <sys/module.h> #include <sys/socket.h> #include <sys/sysctl.h> #include <sys/taskqueue.h> #include <sys/random.h> #include <sys/sglist.h> #include <sys/serialize.h> #include <sys/bus.h> #include <sys/rman.h> #include <machine/limits.h> #include <net/ethernet.h> #include <net/if.h> #include <net/if_arp.h> #include <net/if_dl.h> #include <net/if_types.h> #include <net/if_media.h> #include <net/vlan/if_vlan_var.h> #include <net/vlan/if_vlan_ether.h> #include <net/if_poll.h> #include <net/ifq_var.h> #include <net/bpf.h> #include <netinet/in_systm.h> #include <netinet/in.h> #include <netinet/ip.h> #include <netinet/ip6.h> #include <netinet/udp.h> #include <netinet/tcp.h> #include <dev/virtual/virtio/virtio/virtio.h> #include <dev/virtual/virtio/virtio/virtqueue.h> #include <dev/virtual/virtio/net/virtio_net.h> #include <dev/virtual/virtio/net/if_vtnetvar.h> MALLOC_DEFINE(M_VTNET, "VTNET_TX", "Outgoing VTNET TX frame header"); static int vtnet_probe(device_t); static int vtnet_attach(device_t); static int vtnet_detach(device_t); static int vtnet_suspend(device_t); static int vtnet_resume(device_t); static int vtnet_shutdown(device_t); static void vtnet_negotiate_features(struct vtnet_softc *); #ifdef IFPOLL_ENABLE static void vtnet_npoll(struct ifnet *, struct ifpoll_info *); static void vtnet_npoll_status(struct ifnet *); static void vtnet_npoll_rx(struct ifnet *, void *, int); static void vtnet_npoll_tx(struct ifnet *, void *, int); #endif static void vtnet_serialize(struct ifnet *, enum ifnet_serialize); static void vtnet_deserialize(struct ifnet *, enum ifnet_serialize); static int vtnet_tryserialize(struct ifnet *, enum ifnet_serialize); #ifdef INVARIANTS static void vtnet_serialize_assert(struct ifnet *, enum ifnet_serialize, boolean_t); #endif /* INVARIANTS */ static int vtnet_alloc_intrs(struct vtnet_softc *); static int vtnet_alloc_virtqueues(struct vtnet_softc *); static int vtnet_bind_intrs(struct vtnet_softc *); static void vtnet_get_hwaddr(struct vtnet_softc *); static void vtnet_set_hwaddr(struct vtnet_softc *); static int vtnet_is_link_up(struct vtnet_softc *); static void vtnet_update_link_status(struct vtnet_softc *); static void vtnet_watchdog(struct ifaltq_subque *); static int vtnet_setup_interface(struct vtnet_softc *); static int vtnet_change_mtu(struct vtnet_softc *, int); static int vtnet_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *); static int vtnet_init_rx_vq(struct vtnet_softc *); static void vtnet_free_rx_mbufs(struct vtnet_softc *); static void vtnet_free_tx_mbufs(struct vtnet_softc *); static void vtnet_free_ctrl_vq(struct vtnet_softc *); static struct mbuf * vtnet_alloc_rxbuf(struct vtnet_softc *, int, struct mbuf **); static int vtnet_replace_rxbuf(struct vtnet_softc *, struct mbuf *, int); static int vtnet_newbuf(struct vtnet_softc *); static void vtnet_discard_merged_rxbuf(struct vtnet_softc *, int); static void vtnet_discard_rxbuf(struct vtnet_softc *, struct mbuf *); static int vtnet_enqueue_rxbuf(struct vtnet_softc *, struct mbuf *); static void vtnet_vlan_tag_remove(struct mbuf *); static int vtnet_rx_csum(struct vtnet_softc *, struct mbuf *, struct virtio_net_hdr *); static int vtnet_rxeof_merged(struct vtnet_softc *, struct mbuf *, int); static int vtnet_rxeof(struct vtnet_softc *, int, int *); static void vtnet_rx_msix_intr(void *); static void vtnet_rx_vq_intr(void *); static void vtnet_enqueue_txhdr(struct vtnet_softc *, struct vtnet_tx_header *); static void vtnet_txeof(struct vtnet_softc *); static struct mbuf * vtnet_tx_offload(struct vtnet_softc *, struct mbuf *, struct virtio_net_hdr *); static int vtnet_enqueue_txbuf(struct vtnet_softc *, struct mbuf **, struct vtnet_tx_header *); static int vtnet_encap(struct vtnet_softc *, struct mbuf **); static void vtnet_start(struct ifnet *, struct ifaltq_subque *); static void vtnet_config_intr(void *); static void vtnet_tx_msix_intr(void *); static void vtnet_tx_vq_intr(void *); static void vtnet_stop(struct vtnet_softc *); static int vtnet_virtio_reinit(struct vtnet_softc *); static void vtnet_init(void *); static void vtnet_exec_ctrl_cmd(struct vtnet_softc *, void *, struct sglist *, int, int); static int vtnet_ctrl_mac_cmd(struct vtnet_softc *, uint8_t *); static int vtnet_ctrl_rx_cmd(struct vtnet_softc *, int, int); static int vtnet_set_promisc(struct vtnet_softc *, int); static int vtnet_set_allmulti(struct vtnet_softc *, int); static void vtnet_rx_filter(struct vtnet_softc *sc); static void vtnet_rx_filter_mac(struct vtnet_softc *); static int vtnet_exec_vlan_filter(struct vtnet_softc *, int, uint16_t); static void vtnet_rx_filter_vlan(struct vtnet_softc *); static void vtnet_update_vlan_filter(struct vtnet_softc *, int, uint16_t); static void vtnet_register_vlan(void *, struct ifnet *, uint16_t); static void vtnet_unregister_vlan(void *, struct ifnet *, uint16_t); static int vtnet_ifmedia_upd(struct ifnet *); static void vtnet_ifmedia_sts(struct ifnet *, struct ifmediareq *); static void vtnet_add_statistics(struct vtnet_softc *); static int vtnet_enable_rx_intr(struct vtnet_softc *); static int vtnet_enable_tx_intr(struct vtnet_softc *); static void vtnet_disable_rx_intr(struct vtnet_softc *); static void vtnet_disable_tx_intr(struct vtnet_softc *); /* Tunables. */ static int vtnet_csum_disable = 0; TUNABLE_INT("hw.vtnet.csum_disable", &vtnet_csum_disable); static int vtnet_tso_disable = 1; TUNABLE_INT("hw.vtnet.tso_disable", &vtnet_tso_disable); static int vtnet_lro_disable = 0; TUNABLE_INT("hw.vtnet.lro_disable", &vtnet_lro_disable); /* * Reducing the number of transmit completed interrupts can * improve performance. To do so, the define below keeps the * Tx vq interrupt disabled and adds calls to vtnet_txeof() * in the start path. The price to pay for this is the m_free'ing * of transmitted mbufs may be delayed. */ #define VTNET_TX_INTR_MODERATION static struct virtio_feature_desc vtnet_feature_desc[] = { { VIRTIO_NET_F_CSUM, "TxChecksum" }, { VIRTIO_NET_F_GUEST_CSUM, "RxChecksum" }, { VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, "DynOffload" }, { VIRTIO_NET_F_MAC, "MacAddress" }, { VIRTIO_NET_F_GSO, "TxAllGSO" }, { VIRTIO_NET_F_GUEST_TSO4, "RxTSOv4" }, { VIRTIO_NET_F_GUEST_TSO6, "RxTSOv6" }, { VIRTIO_NET_F_GUEST_ECN, "RxECN" }, { VIRTIO_NET_F_GUEST_UFO, "RxUFO" }, { VIRTIO_NET_F_HOST_TSO4, "TxTSOv4" }, { VIRTIO_NET_F_HOST_TSO6, "TxTSOv6" }, { VIRTIO_NET_F_HOST_ECN, "TxTSOECN" }, { VIRTIO_NET_F_HOST_UFO, "TxUFO" }, { VIRTIO_NET_F_MRG_RXBUF, "MrgRxBuf" }, { VIRTIO_NET_F_STATUS, "Status" }, { VIRTIO_NET_F_CTRL_VQ, "ControlVq" }, { VIRTIO_NET_F_CTRL_RX, "RxMode" }, { VIRTIO_NET_F_CTRL_VLAN, "VLanFilter" }, { VIRTIO_NET_F_CTRL_RX_EXTRA, "RxModeExtra" }, { VIRTIO_NET_F_GUEST_ANNOUNCE, "GuestAnnounce" }, { VIRTIO_NET_F_MQ, "Multiqueue" }, { VIRTIO_NET_F_CTRL_MAC_ADDR, "SetMacAddress" }, { 0, NULL } }; static device_method_t vtnet_methods[] = { /* Device methods. */ DEVMETHOD(device_probe, vtnet_probe), DEVMETHOD(device_attach, vtnet_attach), DEVMETHOD(device_detach, vtnet_detach), DEVMETHOD(device_suspend, vtnet_suspend), DEVMETHOD(device_resume, vtnet_resume), DEVMETHOD(device_shutdown, vtnet_shutdown), DEVMETHOD_END }; static driver_t vtnet_driver = { "vtnet", vtnet_methods, sizeof(struct vtnet_softc) }; static devclass_t vtnet_devclass; DRIVER_MODULE(vtnet, virtio_pci, vtnet_driver, vtnet_devclass, NULL, NULL); MODULE_VERSION(vtnet, 1); MODULE_DEPEND(vtnet, virtio, 1, 1, 1); static int vtnet_probe(device_t dev) { if (virtio_get_device_type(dev) != VIRTIO_ID_NETWORK) return (ENXIO); device_set_desc(dev, "VirtIO Networking Adapter"); return (BUS_PROBE_DEFAULT); } static int vtnet_attach(device_t dev) { struct vtnet_softc *sc; int i, error; sc = device_get_softc(dev); sc->vtnet_dev = dev; lwkt_serialize_init(&sc->vtnet_slz); lwkt_serialize_init(&sc->vtnet_rx_slz); lwkt_serialize_init(&sc->vtnet_tx_slz); sc->serializes[0] = &sc->vtnet_slz; sc->serializes[1] = &sc->vtnet_rx_slz; sc->serializes[2] = &sc->vtnet_tx_slz; ifmedia_init(&sc->vtnet_media, IFM_IMASK, vtnet_ifmedia_upd, vtnet_ifmedia_sts); ifmedia_add(&sc->vtnet_media, VTNET_MEDIATYPE, 0, NULL); ifmedia_set(&sc->vtnet_media, VTNET_MEDIATYPE); vtnet_add_statistics(sc); SLIST_INIT(&sc->vtnet_txhdr_free); /* Register our feature descriptions. */ virtio_set_feature_desc(dev, vtnet_feature_desc); vtnet_negotiate_features(sc); if (virtio_with_feature(dev, VIRTIO_RING_F_INDIRECT_DESC)) sc->vtnet_flags |= VTNET_FLAG_INDIRECT; if (virtio_with_feature(dev, VIRTIO_NET_F_MAC)) { /* This feature should always be negotiated. */ sc->vtnet_flags |= VTNET_FLAG_MAC; } if (virtio_with_feature(dev, VIRTIO_NET_F_MRG_RXBUF)) { sc->vtnet_flags |= VTNET_FLAG_MRG_RXBUFS; sc->vtnet_hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf); } else { sc->vtnet_hdr_size = sizeof(struct virtio_net_hdr); } sc->vtnet_rx_mbuf_size = MCLBYTES; sc->vtnet_rx_mbuf_count = VTNET_NEEDED_RX_MBUFS(sc); if (virtio_with_feature(dev, VIRTIO_NET_F_CTRL_VQ)) { sc->vtnet_flags |= VTNET_FLAG_CTRL_VQ; if (virtio_with_feature(dev, VIRTIO_NET_F_CTRL_RX)) sc->vtnet_flags |= VTNET_FLAG_CTRL_RX; if (virtio_with_feature(dev, VIRTIO_NET_F_CTRL_VLAN)) sc->vtnet_flags |= VTNET_FLAG_VLAN_FILTER; if (virtio_with_feature(dev, VIRTIO_NET_F_CTRL_MAC_ADDR) && virtio_with_feature(dev, VIRTIO_NET_F_CTRL_RX)) sc->vtnet_flags |= VTNET_FLAG_CTRL_MAC; } error = vtnet_alloc_intrs(sc); if (error) { device_printf(dev, "cannot allocate interrupts\n"); goto fail; } error = vtnet_alloc_virtqueues(sc); if (error) { device_printf(dev, "cannot allocate virtqueues\n"); goto fail; } error = vtnet_bind_intrs(sc); if (error) { device_printf(dev, "cannot bind virtqueues to interrupts\n"); goto fail; } /* Read (or generate) the MAC address for the adapter. */ vtnet_get_hwaddr(sc); error = vtnet_setup_interface(sc); if (error) { device_printf(dev, "cannot setup interface\n"); goto fail; } for (i = 0; i < sc->vtnet_nintr; i++) { error = virtio_setup_intr(dev, i, sc->vtnet_intr_slz[i]); if (error) { device_printf(dev, "cannot setup virtqueue " "interrupts\n"); ether_ifdetach(sc->vtnet_ifp); goto fail; } } if ((sc->vtnet_flags & VTNET_FLAG_MAC) == 0) { ifnet_serialize_all(sc->vtnet_ifp); vtnet_set_hwaddr(sc); ifnet_deserialize_all(sc->vtnet_ifp); } /* * Device defaults to promiscuous mode for backwards * compatibility. Turn it off if possible. */ if (sc->vtnet_flags & VTNET_FLAG_CTRL_RX) { ifnet_serialize_all(sc->vtnet_ifp); if (vtnet_set_promisc(sc, 0) != 0) { sc->vtnet_ifp->if_flags |= IFF_PROMISC; device_printf(dev, "cannot disable promiscuous mode\n"); } ifnet_deserialize_all(sc->vtnet_ifp); } else sc->vtnet_ifp->if_flags |= IFF_PROMISC; fail: if (error) vtnet_detach(dev); return (error); } static int vtnet_detach(device_t dev) { struct vtnet_softc *sc; struct ifnet *ifp; int i; sc = device_get_softc(dev); ifp = sc->vtnet_ifp; for (i = 0; i < sc->vtnet_nintr; i++) virtio_teardown_intr(dev, i); if (device_is_attached(dev)) { ifnet_serialize_all(ifp); vtnet_stop(sc); lwkt_serialize_handler_disable(&sc->vtnet_slz); lwkt_serialize_handler_disable(&sc->vtnet_rx_slz); lwkt_serialize_handler_disable(&sc->vtnet_tx_slz); ifnet_deserialize_all(ifp); ether_ifdetach(ifp); } if (sc->vtnet_vlan_attach != NULL) { EVENTHANDLER_DEREGISTER(vlan_config, sc->vtnet_vlan_attach); sc->vtnet_vlan_attach = NULL; } if (sc->vtnet_vlan_detach != NULL) { EVENTHANDLER_DEREGISTER(vlan_unconfig, sc->vtnet_vlan_detach); sc->vtnet_vlan_detach = NULL; } if (ifp) { if_free(ifp); sc->vtnet_ifp = NULL; } if (sc->vtnet_rx_vq != NULL) vtnet_free_rx_mbufs(sc); if (sc->vtnet_tx_vq != NULL) vtnet_free_tx_mbufs(sc); if (sc->vtnet_ctrl_vq != NULL) vtnet_free_ctrl_vq(sc); if (sc->vtnet_txhdrarea != NULL) { contigfree(sc->vtnet_txhdrarea, sc->vtnet_txhdrcount * sizeof(struct vtnet_tx_header), M_VTNET); sc->vtnet_txhdrarea = NULL; } SLIST_INIT(&sc->vtnet_txhdr_free); if (sc->vtnet_macfilter != NULL) { contigfree(sc->vtnet_macfilter, sizeof(struct vtnet_mac_filter), M_DEVBUF); sc->vtnet_macfilter = NULL; } ifmedia_removeall(&sc->vtnet_media); return (0); } static int vtnet_suspend(device_t dev) { struct vtnet_softc *sc; sc = device_get_softc(dev); ifnet_serialize_all(sc->vtnet_ifp); vtnet_stop(sc); sc->vtnet_flags |= VTNET_FLAG_SUSPENDED; ifnet_deserialize_all(sc->vtnet_ifp); return (0); } static int vtnet_resume(device_t dev) { struct vtnet_softc *sc; struct ifnet *ifp; sc = device_get_softc(dev); ifp = sc->vtnet_ifp; ifnet_serialize_all(ifp); if (ifp->if_flags & IFF_UP) vtnet_init(sc); sc->vtnet_flags &= ~VTNET_FLAG_SUSPENDED; ifnet_deserialize_all(ifp); return (0); } static int vtnet_shutdown(device_t dev) { /* * Suspend already does all of what we need to * do here; we just never expect to be resumed. */ return (vtnet_suspend(dev)); } static void vtnet_negotiate_features(struct vtnet_softc *sc) { device_t dev; uint64_t mask, features; dev = sc->vtnet_dev; mask = 0; if (vtnet_csum_disable) mask |= VIRTIO_NET_F_CSUM | VIRTIO_NET_F_GUEST_CSUM; /* * XXX DragonFly doesn't support receive checksum offload for ipv6 yet, * hence always disable the virtio feature for now. * XXX We need to support the DynOffload feature, in order to * dynamically enable/disable this feature. */ mask |= VIRTIO_NET_F_GUEST_CSUM; /* * TSO is only available when the tx checksum offload feature is also * negotiated. */ if (vtnet_csum_disable || vtnet_tso_disable) mask |= VIRTIO_NET_F_HOST_TSO4 | VIRTIO_NET_F_HOST_TSO6 | VIRTIO_NET_F_HOST_ECN; if (vtnet_lro_disable) mask |= VTNET_LRO_FEATURES; features = VTNET_FEATURES & ~mask; features |= VIRTIO_F_NOTIFY_ON_EMPTY; features |= VIRTIO_F_ANY_LAYOUT; sc->vtnet_features = virtio_negotiate_features(dev, features); if (virtio_with_feature(dev, VTNET_LRO_FEATURES) && virtio_with_feature(dev, VIRTIO_NET_F_MRG_RXBUF) == 0) { /* * LRO without mergeable buffers requires special care. This * is not ideal because every receive buffer must be large * enough to hold the maximum TCP packet, the Ethernet header, * and the header. This requires up to 34 descriptors with * MCLBYTES clusters. If we do not have indirect descriptors, * LRO is disabled since the virtqueue will not contain very * many receive buffers. */ if (!virtio_with_feature(dev, VIRTIO_RING_F_INDIRECT_DESC)) { device_printf(dev, "LRO disabled due to both mergeable buffers and " "indirect descriptors not negotiated\n"); features &= ~VTNET_LRO_FEATURES; sc->vtnet_features = virtio_negotiate_features(dev, features); } else sc->vtnet_flags |= VTNET_FLAG_LRO_NOMRG; } } static void vtnet_serialize(struct ifnet *ifp, enum ifnet_serialize slz) { struct vtnet_softc *sc = ifp->if_softc; ifnet_serialize_array_enter(sc->serializes, 3, slz); } static void vtnet_deserialize(struct ifnet *ifp, enum ifnet_serialize slz) { struct vtnet_softc *sc = ifp->if_softc; ifnet_serialize_array_exit(sc->serializes, 3, slz); } static int vtnet_tryserialize(struct ifnet *ifp, enum ifnet_serialize slz) { struct vtnet_softc *sc = ifp->if_softc; return ifnet_serialize_array_try(sc->serializes, 3, slz); } #ifdef INVARIANTS static void vtnet_serialize_assert(struct ifnet *ifp, enum ifnet_serialize slz, boolean_t serialized) { struct vtnet_softc *sc = ifp->if_softc; ifnet_serialize_array_assert(sc->serializes, 3, slz, serialized); } #endif /* INVARIANTS */ static int vtnet_alloc_intrs(struct vtnet_softc *sc) { int cnt, error; int intrcount = virtio_intr_count(sc->vtnet_dev); int i; int use_config; if (virtio_with_feature(sc->vtnet_dev, VIRTIO_NET_F_STATUS)) { use_config = 1; /* We can use a maximum of 3 interrupt vectors. */ intrcount = imin(intrcount, 3); } else { /* We can use a maximum of 2 interrupt vectors. */ intrcount = imin(intrcount, 2); } if (intrcount < 1) return (ENXIO); for (i = 0; i < intrcount; i++) sc->vtnet_cpus[i] = -1; cnt = intrcount; error = virtio_intr_alloc(sc->vtnet_dev, &cnt, use_config, sc->vtnet_cpus); if (error != 0) { virtio_intr_release(sc->vtnet_dev); return (error); } sc->vtnet_nintr = cnt; return (0); } static int vtnet_alloc_virtqueues(struct vtnet_softc *sc) { device_t dev; struct vq_alloc_info vq_info[3]; int nvqs; dev = sc->vtnet_dev; nvqs = 2; /* * Indirect descriptors are not needed for the Rx * virtqueue when mergeable buffers are negotiated. * The header is placed inline with the data, not * in a separate descriptor, and mbuf clusters are * always physically contiguous. */ if ((sc->vtnet_flags & VTNET_FLAG_MRG_RXBUFS) == 0) { sc->vtnet_rx_nsegs = (sc->vtnet_flags & VTNET_FLAG_LRO_NOMRG) ? VTNET_MAX_RX_SEGS : VTNET_MIN_RX_SEGS; } else sc->vtnet_rx_nsegs = VTNET_MRG_RX_SEGS; if (virtio_with_feature(dev, VIRTIO_NET_F_HOST_TSO4) || virtio_with_feature(dev, VIRTIO_NET_F_HOST_TSO6)) sc->vtnet_tx_nsegs = VTNET_MAX_TX_SEGS; else sc->vtnet_tx_nsegs = VTNET_MIN_TX_SEGS; VQ_ALLOC_INFO_INIT(&vq_info[0], sc->vtnet_rx_nsegs, &sc->vtnet_rx_vq, "%s receive", device_get_nameunit(dev)); VQ_ALLOC_INFO_INIT(&vq_info[1], sc->vtnet_tx_nsegs, &sc->vtnet_tx_vq, "%s transmit", device_get_nameunit(dev)); if (sc->vtnet_flags & VTNET_FLAG_CTRL_VQ) { nvqs++; VQ_ALLOC_INFO_INIT(&vq_info[2], 0, &sc->vtnet_ctrl_vq, "%s control", device_get_nameunit(dev)); } return (virtio_alloc_virtqueues(dev, nvqs, vq_info)); } static int vtnet_bind_intrs(struct vtnet_softc *sc) { int error = 0; int i; for (i = 0; i < 3; i++) sc->vtnet_intr_slz[i] = &sc->vtnet_slz; /* Possible "Virtqueue <-> IRQ" configurations */ switch (sc->vtnet_nintr) { case 1: sc->vtnet_irqmap[0] = (struct irqmap){0, vtnet_rx_vq_intr}; sc->vtnet_irqmap[1] = (struct irqmap){0, vtnet_tx_vq_intr}; break; case 2: if (virtio_with_feature(sc->vtnet_dev, VIRTIO_NET_F_STATUS)) { sc->vtnet_irqmap[0] = (struct irqmap){1, vtnet_rx_vq_intr}; sc->vtnet_irqmap[1] = (struct irqmap){1, vtnet_tx_vq_intr}; } else { sc->vtnet_irqmap[0] = (struct irqmap){0, vtnet_rx_msix_intr}; sc->vtnet_irqmap[1] = (struct irqmap){1, vtnet_tx_msix_intr}; sc->vtnet_intr_slz[0] = &sc->vtnet_rx_slz; sc->vtnet_intr_slz[1] = &sc->vtnet_tx_slz; } break; case 3: sc->vtnet_irqmap[0] = (struct irqmap){1, vtnet_rx_msix_intr}; sc->vtnet_irqmap[1] = (struct irqmap){2, vtnet_tx_msix_intr}; sc->vtnet_intr_slz[1] = &sc->vtnet_rx_slz; sc->vtnet_intr_slz[2] = &sc->vtnet_tx_slz; break; default: device_printf(sc->vtnet_dev, "Invalid interrupt vector count: %d\n", sc->vtnet_nintr); error = EINVAL; goto fail; } for (i = 0; i < 2; i++) { error = virtio_bind_intr(sc->vtnet_dev, sc->vtnet_irqmap[i].irq, i, sc->vtnet_irqmap[i].handler, sc); if (error) { device_printf(sc->vtnet_dev, "cannot bind virtqueue IRQs\n"); goto fail; } } if (virtio_with_feature(sc->vtnet_dev, VIRTIO_NET_F_STATUS)) { error = virtio_bind_intr(sc->vtnet_dev, 0, -1, vtnet_config_intr, sc); if (error) { device_printf(sc->vtnet_dev, "cannot bind config_change IRQ\n"); goto fail; } } fail: return (error); } static int vtnet_setup_interface(struct vtnet_softc *sc) { device_t dev; struct ifnet *ifp; int i; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp = if_alloc(IFT_ETHER); if (ifp == NULL) { device_printf(dev, "cannot allocate ifnet structure\n"); return (ENOSPC); } ifp->if_softc = sc; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; ifp->if_init = vtnet_init; ifp->if_start = vtnet_start; #ifdef IFPOLL_ENABLE ifp->if_npoll = vtnet_npoll; #endif ifp->if_serialize = vtnet_serialize; ifp->if_deserialize = vtnet_deserialize; ifp->if_tryserialize = vtnet_tryserialize; #ifdef INVARIANTS ifp->if_serialize_assert = vtnet_serialize_assert; #endif ifp->if_ioctl = vtnet_ioctl; sc->vtnet_rx_process_limit = virtqueue_size(sc->vtnet_rx_vq); sc->vtnet_tx_size = virtqueue_size(sc->vtnet_tx_vq); if (sc->vtnet_flags & VTNET_FLAG_INDIRECT) sc->vtnet_txhdrcount = sc->vtnet_tx_size; else sc->vtnet_txhdrcount = (sc->vtnet_tx_size / 2) + 1; sc->vtnet_txhdrarea = contigmalloc( sc->vtnet_txhdrcount * sizeof(struct vtnet_tx_header), M_VTNET, M_WAITOK, 0, BUS_SPACE_MAXADDR, 4, 0); if (sc->vtnet_txhdrarea == NULL) { device_printf(dev, "cannot contigmalloc the tx headers\n"); return (ENOMEM); } for (i = 0; i < sc->vtnet_txhdrcount; i++) vtnet_enqueue_txhdr(sc, &sc->vtnet_txhdrarea[i]); sc->vtnet_macfilter = contigmalloc( sizeof(struct vtnet_mac_filter), M_DEVBUF, M_WAITOK, 0, BUS_SPACE_MAXADDR, 4, 0); if (sc->vtnet_macfilter == NULL) { device_printf(dev, "cannot contigmalloc the mac filter table\n"); return (ENOMEM); } ifq_set_maxlen(&ifp->if_snd, sc->vtnet_tx_size - 1); ifq_set_ready(&ifp->if_snd); ether_ifattach(ifp, sc->vtnet_hwaddr, NULL); /* The Tx IRQ is currently always the last allocated interrupt. */ ifq_set_cpuid(&ifp->if_snd, sc->vtnet_cpus[sc->vtnet_nintr - 1]); ifsq_watchdog_init(&sc->vtnet_tx_watchdog, ifq_get_subq_default(&ifp->if_snd), vtnet_watchdog, IF_WDOG_LASTTICK); ifq_set_hw_serialize(&ifp->if_snd, &sc->vtnet_tx_slz); /* Tell the upper layer(s) we support long frames. */ ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header); ifp->if_capabilities |= IFCAP_JUMBO_MTU | IFCAP_VLAN_MTU; if (virtio_with_feature(dev, VIRTIO_NET_F_CSUM)) { ifp->if_capabilities |= IFCAP_TXCSUM; if (virtio_with_feature(dev, VIRTIO_NET_F_HOST_TSO4)) ifp->if_capabilities |= IFCAP_TSO4; if (virtio_with_feature(dev, VIRTIO_NET_F_HOST_TSO6)) ifp->if_capabilities |= IFCAP_TSO6; if (ifp->if_capabilities & IFCAP_TSO) ifp->if_capabilities |= IFCAP_VLAN_HWTSO; if (virtio_with_feature(dev, VIRTIO_NET_F_HOST_ECN)) sc->vtnet_flags |= VTNET_FLAG_TSO_ECN; } if (virtio_with_feature(dev, VIRTIO_NET_F_GUEST_CSUM)) ifp->if_capabilities |= IFCAP_RXCSUM; #if 0 /* IFCAP_LRO doesn't exist in DragonFly. */ if (virtio_with_feature(dev, VIRTIO_NET_F_GUEST_TSO4) || virtio_with_feature(dev, VIRTIO_NET_F_GUEST_TSO6)) ifp->if_capabilities |= IFCAP_LRO; #endif if ((ifp->if_capabilities & IFCAP_HWCSUM) == IFCAP_HWCSUM) { /* * VirtIO does not support VLAN tagging, but we can fake * it by inserting and removing the 802.1Q header during * transmit and receive. We are then able to do checksum * offloading of VLAN frames. */ ifp->if_capabilities |= IFCAP_VLAN_HWTAGGING | IFCAP_VLAN_HWCSUM; } ifp->if_capenable = ifp->if_capabilities; /* * Capabilities after here are not enabled by default. */ if (sc->vtnet_flags & VTNET_FLAG_VLAN_FILTER) { ifp->if_capabilities |= IFCAP_VLAN_HWFILTER; sc->vtnet_vlan_attach = EVENTHANDLER_REGISTER(vlan_config, vtnet_register_vlan, sc, EVENTHANDLER_PRI_FIRST); sc->vtnet_vlan_detach = EVENTHANDLER_REGISTER(vlan_unconfig, vtnet_unregister_vlan, sc, EVENTHANDLER_PRI_FIRST); } return (0); } static void vtnet_set_hwaddr(struct vtnet_softc *sc) { device_t dev; dev = sc->vtnet_dev; if ((sc->vtnet_flags & VTNET_FLAG_CTRL_MAC) && (sc->vtnet_flags & VTNET_FLAG_CTRL_RX)) { if (vtnet_ctrl_mac_cmd(sc, sc->vtnet_hwaddr) != 0) device_printf(dev, "unable to set MAC address\n"); } else if (sc->vtnet_flags & VTNET_FLAG_MAC) { virtio_write_device_config(dev, offsetof(struct virtio_net_config, mac), sc->vtnet_hwaddr, ETHER_ADDR_LEN); } } static void vtnet_get_hwaddr(struct vtnet_softc *sc) { device_t dev; dev = sc->vtnet_dev; if ((sc->vtnet_flags & VTNET_FLAG_MAC) == 0) { /* * Generate a random locally administered unicast address. * * It would be nice to generate the same MAC address across * reboots, but it seems all the hosts currently available * support the MAC feature, so this isn't too important. */ sc->vtnet_hwaddr[0] = 0xB2; karc4random_buf(&sc->vtnet_hwaddr[1], ETHER_ADDR_LEN - 1); return; } virtio_read_device_config(dev, offsetof(struct virtio_net_config, mac), sc->vtnet_hwaddr, ETHER_ADDR_LEN); } static int vtnet_is_link_up(struct vtnet_softc *sc) { device_t dev; struct ifnet *ifp; uint16_t status; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp; ASSERT_SERIALIZED(&sc->vtnet_slz); if (virtio_with_feature(dev, VIRTIO_NET_F_STATUS)) { status = virtio_read_dev_config_2(dev, offsetof(struct virtio_net_config, status)); } else { status = VIRTIO_NET_S_LINK_UP; } return ((status & VIRTIO_NET_S_LINK_UP) != 0); } static void vtnet_update_link_status(struct vtnet_softc *sc) { device_t dev; struct ifnet *ifp; struct ifaltq_subque *ifsq; int link; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp; ifsq = ifq_get_subq_default(&ifp->if_snd); link = vtnet_is_link_up(sc); if (link && ((sc->vtnet_flags & VTNET_FLAG_LINK) == 0)) { sc->vtnet_flags |= VTNET_FLAG_LINK; if (bootverbose) device_printf(dev, "Link is up\n"); ifp->if_link_state = LINK_STATE_UP; if_link_state_change(ifp); if (!ifsq_is_empty(ifsq)) ifsq_devstart_sched(ifsq); } else if (!link && (sc->vtnet_flags & VTNET_FLAG_LINK)) { sc->vtnet_flags &= ~VTNET_FLAG_LINK; if (bootverbose) device_printf(dev, "Link is down\n"); ifp->if_link_state = LINK_STATE_DOWN; if_link_state_change(ifp); } } static void vtnet_watchdog(struct ifaltq_subque *ifsq) { struct ifnet *ifp; struct vtnet_softc *sc; ifp = ifsq_get_ifp(ifsq); sc = ifp->if_softc; ASSERT_IFNET_SERIALIZED_ALL(ifp); /* * Clean out expended tx buffers prior to terminal count. * * NOTE: vtnet_txeof() will set wd_timer to 0 if the virtqueue * becomes empty, preventing further watchdog callbacks. */ if (sc->vtnet_tx_watchdog.wd_timer != 0) { vtnet_txeof(sc); if (!ifq_is_empty(&ifp->if_snd)) if_devstart(ifp); return; } /* * Check to see if there are any unexpended transmit descriptors. */ if (virtqueue_empty(sc->vtnet_tx_vq)) { if_printf(ifp, "Spurious TX watchdog timeout -- ignoring\n"); ifsq_watchdog_set_count(&sc->vtnet_tx_watchdog, 0); return; } if_printf(ifp, "TX watchdog timeout -- resetting\n"); #ifdef VTNET_DEBUG virtqueue_dump(sc->vtnet_tx_vq); #endif ifp->if_oerrors++; ifp->if_flags &= ~IFF_RUNNING; vtnet_init(sc); ifsq_devstart_sched(ifsq); } static int vtnet_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data,struct ucred *cr) { struct vtnet_softc *sc; struct ifreq *ifr; int reinit, mask, error; sc = ifp->if_softc; ifr = (struct ifreq *) data; reinit = 0; error = 0; switch (cmd) { case SIOCSIFMTU: if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > VTNET_MAX_MTU) error = EINVAL; else if (ifp->if_mtu != ifr->ifr_mtu) error = vtnet_change_mtu(sc, ifr->ifr_mtu); break; case SIOCSIFFLAGS: if ((ifp->if_flags & IFF_UP) == 0) { if (ifp->if_flags & IFF_RUNNING) vtnet_stop(sc); } else if (ifp->if_flags & IFF_RUNNING) { if ((ifp->if_flags ^ sc->vtnet_if_flags) & (IFF_PROMISC | IFF_ALLMULTI)) { if (sc->vtnet_flags & VTNET_FLAG_CTRL_RX) vtnet_rx_filter(sc); else error = ENOTSUP; } } else { vtnet_init(sc); } if (error == 0) sc->vtnet_if_flags = ifp->if_flags; break; case SIOCADDMULTI: case SIOCDELMULTI: if ((sc->vtnet_flags & VTNET_FLAG_CTRL_RX) && (ifp->if_flags & IFF_RUNNING)) vtnet_rx_filter_mac(sc); break; case SIOCSIFMEDIA: case SIOCGIFMEDIA: error = ifmedia_ioctl(ifp, ifr, &sc->vtnet_media, cmd); break; case SIOCSIFCAP: mask = ifr->ifr_reqcap ^ ifp->if_capenable; if (mask & IFCAP_TXCSUM) { ifp->if_capenable ^= IFCAP_TXCSUM; if (ifp->if_capenable & IFCAP_TXCSUM) ifp->if_hwassist |= VTNET_CSUM_OFFLOAD; else ifp->if_hwassist &= ~VTNET_CSUM_OFFLOAD; } if (mask & IFCAP_TSO4) { ifp->if_capenable ^= IFCAP_TSO4; if (ifp->if_capenable & IFCAP_TSO4) ifp->if_hwassist |= CSUM_TSO; else ifp->if_hwassist &= ~CSUM_TSO; } if (mask & IFCAP_RXCSUM) { ifp->if_capenable ^= IFCAP_RXCSUM; reinit = 1; } #if 0 /* IFCAP_LRO doesn't exist in DragonFly. */ if (mask & IFCAP_LRO) { ifp->if_capenable ^= IFCAP_LRO; reinit = 1; } #endif if (mask & IFCAP_VLAN_HWFILTER) { ifp->if_capenable ^= IFCAP_VLAN_HWFILTER; reinit = 1; } if (mask & IFCAP_VLAN_HWTSO) ifp->if_capenable ^= IFCAP_VLAN_HWTSO; if (mask & IFCAP_VLAN_HWTAGGING) ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING; if (reinit && (ifp->if_flags & IFF_RUNNING)) { ifp->if_flags &= ~IFF_RUNNING; vtnet_init(sc); } //VLAN_CAPABILITIES(ifp); break; default: error = ether_ioctl(ifp, cmd, data); break; } return (error); } static int vtnet_change_mtu(struct vtnet_softc *sc, int new_mtu) { struct ifnet *ifp; int new_frame_size, clsize; ifp = sc->vtnet_ifp; if ((sc->vtnet_flags & VTNET_FLAG_MRG_RXBUFS) == 0) { new_frame_size = sizeof(struct vtnet_rx_header) + sizeof(struct ether_vlan_header) + new_mtu; if (new_frame_size > MJUM9BYTES) return (EINVAL); if (new_frame_size <= MCLBYTES) clsize = MCLBYTES; else clsize = MJUM9BYTES; } else { new_frame_size = sizeof(struct virtio_net_hdr_mrg_rxbuf) + sizeof(struct ether_vlan_header) + new_mtu; if (new_frame_size <= MCLBYTES) clsize = MCLBYTES; else clsize = MJUMPAGESIZE; } sc->vtnet_rx_mbuf_size = clsize; sc->vtnet_rx_mbuf_count = VTNET_NEEDED_RX_MBUFS(sc); KASSERT(sc->vtnet_rx_mbuf_count < VTNET_MAX_RX_SEGS, ("too many rx mbufs: %d", sc->vtnet_rx_mbuf_count)); ifp->if_mtu = new_mtu; if (ifp->if_flags & IFF_RUNNING) { ifp->if_flags &= ~IFF_RUNNING; vtnet_init(sc); } return (0); } static int vtnet_init_rx_vq(struct vtnet_softc *sc) { struct virtqueue *vq; int nbufs, error; vq = sc->vtnet_rx_vq; nbufs = 0; error = ENOSPC; while (!virtqueue_full(vq)) { if ((error = vtnet_newbuf(sc)) != 0) break; nbufs++; } if (nbufs > 0) { virtqueue_notify(vq, NULL); /* * EMSGSIZE signifies the virtqueue did not have enough * entries available to hold the last mbuf. This is not * an error. We should not get ENOSPC since we check if * the virtqueue is full before attempting to add a * buffer. */ if (error == EMSGSIZE) error = 0; } return (error); } static void vtnet_free_rx_mbufs(struct vtnet_softc *sc) { struct virtqueue *vq; struct mbuf *m; int last; vq = sc->vtnet_rx_vq; last = 0; while ((m = virtqueue_drain(vq, &last)) != NULL) m_freem(m); KASSERT(virtqueue_empty(vq), ("mbufs remaining in Rx Vq")); } static void vtnet_free_tx_mbufs(struct vtnet_softc *sc) { struct virtqueue *vq; struct vtnet_tx_header *txhdr; int last; vq = sc->vtnet_tx_vq; last = 0; while ((txhdr = virtqueue_drain(vq, &last)) != NULL) { m_freem(txhdr->vth_mbuf); vtnet_enqueue_txhdr(sc, txhdr); } KASSERT(virtqueue_empty(vq), ("mbufs remaining in Tx Vq")); } static void vtnet_free_ctrl_vq(struct vtnet_softc *sc) { /* * The control virtqueue is only polled, therefore * it should already be empty. */ KASSERT(virtqueue_empty(sc->vtnet_ctrl_vq), ("Ctrl Vq not empty")); } static struct mbuf * vtnet_alloc_rxbuf(struct vtnet_softc *sc, int nbufs, struct mbuf **m_tailp) { struct mbuf *m_head, *m_tail, *m; int i, clsize; clsize = sc->vtnet_rx_mbuf_size; /*use getcl instead of getjcl. see if_mxge.c comment line 2398*/ if (clsize > MCLBYTES) m_head = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, clsize); else m_head = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR ); if (m_head == NULL) goto fail; m_head->m_len = clsize; m_tail = m_head; if (nbufs > 1) { KASSERT(sc->vtnet_flags & VTNET_FLAG_LRO_NOMRG, ("chained Rx mbuf requested without LRO_NOMRG")); for (i = 0; i < nbufs - 1; i++) { if (clsize > MCLBYTES) m = m_getjcl(M_NOWAIT, MT_DATA, 0, clsize); else m = m_getcl(M_NOWAIT, MT_DATA, 0); if (m == NULL) goto fail; m->m_len = clsize; m_tail->m_next = m; m_tail = m; } } if (m_tailp != NULL) *m_tailp = m_tail; return (m_head); fail: sc->vtnet_stats.mbuf_alloc_failed++; m_freem(m_head); return (NULL); } static int vtnet_replace_rxbuf(struct vtnet_softc *sc, struct mbuf *m0, int len0) { struct mbuf *m, *m_prev; struct mbuf *m_new, *m_tail; int len, clsize, nreplace, error; m = m0; m_prev = NULL; len = len0; m_tail = NULL; clsize = sc->vtnet_rx_mbuf_size; nreplace = 0; if (m->m_next != NULL) KASSERT(sc->vtnet_flags & VTNET_FLAG_LRO_NOMRG, ("chained Rx mbuf without LRO_NOMRG")); /* * Since LRO_NOMRG mbuf chains are so large, we want to avoid * allocating an entire chain for each received frame. When * the received frame's length is less than that of the chain, * the unused mbufs are reassigned to the new chain. */ while (len > 0) { /* * Something is seriously wrong if we received * a frame larger than the mbuf chain. Drop it. */ if (m == NULL) { sc->vtnet_stats.rx_frame_too_large++; return (EMSGSIZE); } KASSERT(m->m_len == clsize, ("mbuf length not expected cluster size: %d", m->m_len)); m->m_len = MIN(m->m_len, len); len -= m->m_len; m_prev = m; m = m->m_next; nreplace++; } KASSERT(m_prev != NULL, ("m_prev == NULL")); KASSERT(nreplace <= sc->vtnet_rx_mbuf_count, ("too many replacement mbufs: %d/%d", nreplace, sc->vtnet_rx_mbuf_count)); m_new = vtnet_alloc_rxbuf(sc, nreplace, &m_tail); if (m_new == NULL) { m_prev->m_len = clsize; return (ENOBUFS); } /* * Move unused mbufs, if any, from the original chain * onto the end of the new chain. */ if (m_prev->m_next != NULL) { m_tail->m_next = m_prev->m_next; m_prev->m_next = NULL; } error = vtnet_enqueue_rxbuf(sc, m_new); if (error) { /* * BAD! We could not enqueue the replacement mbuf chain. We * must restore the m0 chain to the original state if it was * modified so we can subsequently discard it. * * NOTE: The replacement is suppose to be an identical copy * to the one just dequeued so this is an unexpected error. */ sc->vtnet_stats.rx_enq_replacement_failed++; if (m_tail->m_next != NULL) { m_prev->m_next = m_tail->m_next; m_tail->m_next = NULL; } m_prev->m_len = clsize; m_freem(m_new); } return (error); } static int vtnet_newbuf(struct vtnet_softc *sc) { struct mbuf *m; int error; m = vtnet_alloc_rxbuf(sc, sc->vtnet_rx_mbuf_count, NULL); if (m == NULL) return (ENOBUFS); error = vtnet_enqueue_rxbuf(sc, m); if (error) m_freem(m); return (error); } static void vtnet_discard_merged_rxbuf(struct vtnet_softc *sc, int nbufs) { struct virtqueue *vq; struct mbuf *m; vq = sc->vtnet_rx_vq; while (--nbufs > 0) { if ((m = virtqueue_dequeue(vq, NULL)) == NULL) break; vtnet_discard_rxbuf(sc, m); } } static void vtnet_discard_rxbuf(struct vtnet_softc *sc, struct mbuf *m) { int error; /* * Requeue the discarded mbuf. This should always be * successful since it was just dequeued. */ error = vtnet_enqueue_rxbuf(sc, m); KASSERT(error == 0, ("cannot requeue discarded mbuf")); } static int vtnet_enqueue_rxbuf(struct vtnet_softc *sc, struct mbuf *m) { struct sglist sg; struct sglist_seg segs[VTNET_MAX_RX_SEGS]; struct vtnet_rx_header *rxhdr; struct virtio_net_hdr *hdr; uint8_t *mdata; int offset, error; ASSERT_SERIALIZED(&sc->vtnet_rx_slz); if ((sc->vtnet_flags & VTNET_FLAG_LRO_NOMRG) == 0) KASSERT(m->m_next == NULL, ("chained Rx mbuf")); sglist_init(&sg, sc->vtnet_rx_nsegs, segs); mdata = mtod(m, uint8_t *); offset = 0; if ((sc->vtnet_flags & VTNET_FLAG_MRG_RXBUFS) == 0) { rxhdr = (struct vtnet_rx_header *) mdata; hdr = &rxhdr->vrh_hdr; offset += sizeof(struct vtnet_rx_header); error = sglist_append(&sg, hdr, sc->vtnet_hdr_size); KASSERT(error == 0, ("cannot add header to sglist")); } error = sglist_append(&sg, mdata + offset, m->m_len - offset); if (error) return (error); if (m->m_next != NULL) { error = sglist_append_mbuf(&sg, m->m_next); if (error) return (error); } return (virtqueue_enqueue(sc->vtnet_rx_vq, m, &sg, 0, sg.sg_nseg)); } #ifdef IFPOLL_ENABLE static void vtnet_npoll_status(struct ifnet *ifp) { struct vtnet_softc *sc = ifp->if_softc; ASSERT_SERIALIZED(&sc->vtnet_slz); vtnet_update_link_status(sc); } static void vtnet_npoll_rx(struct ifnet *ifp, void *arg __unused, int cycle) { struct vtnet_softc *sc = ifp->if_softc; vtnet_rxeof(sc, cycle, NULL); } static void vtnet_npoll_tx(struct ifnet *ifp, void *arg __unused, int cycle __unused) { struct vtnet_softc *sc = ifp->if_softc; ASSERT_SERIALIZED(&sc->vtnet_tx_slz); vtnet_txeof(sc); if (!ifq_is_empty(&ifp->if_snd)) if_devstart(ifp); } static void vtnet_npoll(struct ifnet *ifp, struct ifpoll_info *info) { struct vtnet_softc *sc = ifp->if_softc; int i; ASSERT_IFNET_SERIALIZED_ALL(ifp); if (info) { int cpu; info->ifpi_status.status_func = vtnet_npoll_status; info->ifpi_status.serializer = &sc->vtnet_slz; /* Use the same cpu for rx and tx. */ cpu = device_get_unit(device_get_parent(sc->vtnet_dev)); /* Shuffle a bit. */ cpu = (cpu * 61) % netisr_ncpus; KKASSERT(cpu < netisr_ncpus); info->ifpi_tx[cpu].poll_func = vtnet_npoll_tx; info->ifpi_tx[cpu].arg = NULL; info->ifpi_tx[cpu].serializer = &sc->vtnet_tx_slz; ifq_set_cpuid(&ifp->if_snd, cpu); info->ifpi_rx[cpu].poll_func = vtnet_npoll_rx; info->ifpi_rx[cpu].arg = NULL; info->ifpi_rx[cpu].serializer = &sc->vtnet_rx_slz; for (i = 0; i < 3; i++) lwkt_serialize_handler_disable(sc->serializes[i]); vtnet_disable_rx_intr(sc); vtnet_disable_tx_intr(sc); for (i = 0; i < sc->vtnet_nintr; i++) virtio_teardown_intr(sc->vtnet_dev, i); if (virtio_with_feature(sc->vtnet_dev, VIRTIO_NET_F_STATUS)) virtio_unbind_intr(sc->vtnet_dev, -1); for (i = 0; i < 2; i++) virtio_unbind_intr(sc->vtnet_dev, i); } else { int error; ifq_set_cpuid(&ifp->if_snd, sc->vtnet_cpus[sc->vtnet_nintr - 1]); for (i = 0; i < 3; i++) lwkt_serialize_handler_enable(sc->serializes[i]); for (i = 0; i < 2; i++) { error = virtio_bind_intr(sc->vtnet_dev, sc->vtnet_irqmap[i].irq, i, sc->vtnet_irqmap[i].handler, sc); if (error) { device_printf(sc->vtnet_dev, "cannot re-bind virtqueue IRQs\n"); } } if (virtio_with_feature(sc->vtnet_dev, VIRTIO_NET_F_STATUS)) { error = virtio_bind_intr(sc->vtnet_dev, 0, -1, vtnet_config_intr, sc); if (error) { device_printf(sc->vtnet_dev, "cannot re-bind config_change IRQ\n"); } } for (i = 0; i < sc->vtnet_nintr; i++) { error = virtio_setup_intr(sc->vtnet_dev, i, sc->vtnet_intr_slz[i]); if (error) { device_printf(sc->vtnet_dev, "cannot setup virtqueue interrupts\n"); } } vtnet_enable_rx_intr(sc); vtnet_enable_tx_intr(sc); } } #endif /* IFPOLL_ENABLE */ static void vtnet_vlan_tag_remove(struct mbuf *m) { struct ether_vlan_header *evl; evl = mtod(m, struct ether_vlan_header *); m->m_pkthdr.ether_vlantag = ntohs(evl->evl_tag); m->m_flags |= M_VLANTAG; /* Strip the 802.1Q header. */ bcopy((char *) evl, (char *) evl + ETHER_VLAN_ENCAP_LEN, ETHER_HDR_LEN - ETHER_TYPE_LEN); m_adj(m, ETHER_VLAN_ENCAP_LEN); } /* * Alternative method of doing receive checksum offloading. Rather * than parsing the received frame down to the IP header, use the * csum_offset to determine which CSUM_* flags are appropriate. We * can get by with doing this only because the checksum offsets are * unique for the things we care about. */ static int vtnet_rx_csum(struct vtnet_softc *sc, struct mbuf *m, struct virtio_net_hdr *hdr) { struct ether_header *eh; struct ether_vlan_header *evh; struct udphdr *udp; int csum_len; uint16_t eth_type; csum_len = hdr->csum_start + hdr->csum_offset; if (csum_len < sizeof(struct ether_header) + sizeof(struct ip)) return (1); if (m->m_len < csum_len) return (1); eh = mtod(m, struct ether_header *); eth_type = ntohs(eh->ether_type); if (eth_type == ETHERTYPE_VLAN) { evh = mtod(m, struct ether_vlan_header *); eth_type = ntohs(evh->evl_proto); } if (eth_type != ETHERTYPE_IP && eth_type != ETHERTYPE_IPV6) { sc->vtnet_stats.rx_csum_bad_ethtype++; return (1); } /* Use the offset to determine the appropriate CSUM_* flags. */ switch (hdr->csum_offset) { case offsetof(struct udphdr, uh_sum): if (m->m_len < hdr->csum_start + sizeof(struct udphdr)) return (1); udp = (struct udphdr *)(mtod(m, uint8_t *) + hdr->csum_start); if (udp->uh_sum == 0) return (0); /* FALLTHROUGH */ case offsetof(struct tcphdr, th_sum): m->m_pkthdr.csum_flags |= CSUM_DATA_VALID | CSUM_PSEUDO_HDR; m->m_pkthdr.csum_data = 0xFFFF; break; default: sc->vtnet_stats.rx_csum_bad_offset++; return (1); } sc->vtnet_stats.rx_csum_offloaded++; return (0); } static int vtnet_rxeof_merged(struct vtnet_softc *sc, struct mbuf *m_head, int nbufs) { struct ifnet *ifp; struct virtqueue *vq; struct mbuf *m, *m_tail; int len; ifp = sc->vtnet_ifp; vq = sc->vtnet_rx_vq; m_tail = m_head; while (--nbufs > 0) { m = virtqueue_dequeue(vq, &len); if (m == NULL) { ifp->if_ierrors++; goto fail; } if (vtnet_newbuf(sc) != 0) { ifp->if_iqdrops++; vtnet_discard_rxbuf(sc, m); if (nbufs > 1) vtnet_discard_merged_rxbuf(sc, nbufs); goto fail; } if (m->m_len < len) len = m->m_len; m->m_len = len; m->m_flags &= ~M_PKTHDR; m_head->m_pkthdr.len += len; m_tail->m_next = m; m_tail = m; } return (0); fail: sc->vtnet_stats.rx_mergeable_failed++; m_freem(m_head); return (1); } static int vtnet_rxeof(struct vtnet_softc *sc, int count, int *rx_npktsp) { struct virtio_net_hdr lhdr; struct ifnet *ifp; struct virtqueue *vq; struct mbuf *m; struct ether_header *eh; struct virtio_net_hdr *hdr; struct virtio_net_hdr_mrg_rxbuf *mhdr; int len, deq, nbufs, adjsz, rx_npkts; ifp = sc->vtnet_ifp; vq = sc->vtnet_rx_vq; hdr = &lhdr; deq = 0; rx_npkts = 0; while (--count >= 0) { m = virtqueue_dequeue(vq, &len); if (m == NULL) break; deq++; if (len < sc->vtnet_hdr_size + ETHER_HDR_LEN) { ifp->if_ierrors++; vtnet_discard_rxbuf(sc, m); continue; } if ((sc->vtnet_flags & VTNET_FLAG_MRG_RXBUFS) == 0) { nbufs = 1; adjsz = sizeof(struct vtnet_rx_header); /* * Account for our pad between the header and * the actual start of the frame. */ len += VTNET_RX_HEADER_PAD; } else { mhdr = mtod(m, struct virtio_net_hdr_mrg_rxbuf *); nbufs = mhdr->num_buffers; adjsz = sizeof(struct virtio_net_hdr_mrg_rxbuf); } if (vtnet_replace_rxbuf(sc, m, len) != 0) { ifp->if_iqdrops++; vtnet_discard_rxbuf(sc, m); if (nbufs > 1) vtnet_discard_merged_rxbuf(sc, nbufs); continue; } m->m_pkthdr.len = len; m->m_pkthdr.rcvif = ifp; m->m_pkthdr.csum_flags = 0; if (nbufs > 1) { if (vtnet_rxeof_merged(sc, m, nbufs) != 0) continue; } ifp->if_ipackets++; /* * Save copy of header before we strip it. For both mergeable * and non-mergeable, the VirtIO header is placed first in the * mbuf's data. We no longer need num_buffers, so always use a * virtio_net_hdr. */ memcpy(hdr, mtod(m, void *), sizeof(struct virtio_net_hdr)); m_adj(m, adjsz); if (ifp->if_capenable & IFCAP_VLAN_HWTAGGING) { eh = mtod(m, struct ether_header *); if (eh->ether_type == htons(ETHERTYPE_VLAN)) { vtnet_vlan_tag_remove(m); /* * With the 802.1Q header removed, update the * checksum starting location accordingly. */ if (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) hdr->csum_start -= ETHER_VLAN_ENCAP_LEN; } } if (ifp->if_capenable & IFCAP_RXCSUM && hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) { if (vtnet_rx_csum(sc, m, hdr) != 0) sc->vtnet_stats.rx_csum_failed++; } rx_npkts++; ifp->if_input(ifp, m, NULL, mycpuid); /* * The interface may have been stopped while we were * passing the packet up the network stack. */ if ((ifp->if_flags & IFF_RUNNING) == 0) break; } if (deq > 0) virtqueue_notify(vq, NULL); if (rx_npktsp != NULL) *rx_npktsp = rx_npkts; return (count > 0 ? 0 : EAGAIN); } static void vtnet_rx_msix_intr(void *xsc) { struct vtnet_softc *sc; struct ifnet *ifp; int more; sc = xsc; ifp = sc->vtnet_ifp; if (!virtqueue_pending(sc->vtnet_rx_vq)) return; vtnet_disable_rx_intr(sc); next: if ((ifp->if_flags & IFF_RUNNING) == 0) { vtnet_enable_rx_intr(sc); return; } more = vtnet_rxeof(sc, sc->vtnet_rx_process_limit, NULL); if (!more && vtnet_enable_rx_intr(sc) != 0) { vtnet_disable_rx_intr(sc); more = 1; } if (more) { sc->vtnet_stats.rx_task_rescheduled++; goto next; } } static void vtnet_rx_vq_intr(void *xsc) { struct vtnet_softc *sc = xsc; lwkt_serialize_enter(&sc->vtnet_rx_slz); vtnet_rx_msix_intr(xsc); lwkt_serialize_exit(&sc->vtnet_rx_slz); } static void vtnet_enqueue_txhdr(struct vtnet_softc *sc, struct vtnet_tx_header *txhdr) { bzero(txhdr, sizeof(*txhdr)); SLIST_INSERT_HEAD(&sc->vtnet_txhdr_free, txhdr, link); } static void vtnet_txeof(struct vtnet_softc *sc) { struct virtqueue *vq; struct ifnet *ifp; struct vtnet_tx_header *txhdr; int deq; vq = sc->vtnet_tx_vq; ifp = sc->vtnet_ifp; deq = 0; while ((txhdr = virtqueue_dequeue(vq, NULL)) != NULL) { deq++; ifp->if_opackets++; m_freem(txhdr->vth_mbuf); vtnet_enqueue_txhdr(sc, txhdr); } if (deq > 0) { ifq_clr_oactive(&ifp->if_snd); if (virtqueue_empty(vq)) ifsq_watchdog_set_count(&sc->vtnet_tx_watchdog, 0); else ifsq_watchdog_set_count(&sc->vtnet_tx_watchdog, VTNET_WATCHDOG_TIMEOUT); } } static struct mbuf * vtnet_tx_offload(struct vtnet_softc *sc, struct mbuf *m, struct virtio_net_hdr *hdr) { struct ifnet *ifp; struct ether_header *eh; struct ether_vlan_header *evh; struct ip *ip; struct ip6_hdr *ip6; struct tcphdr *tcp; int ip_offset; uint16_t eth_type, csum_start; uint8_t ip_proto, gso_type; ifp = sc->vtnet_ifp; M_ASSERTPKTHDR(m); ip_offset = sizeof(struct ether_header); if (m->m_len < ip_offset) { if ((m = m_pullup(m, ip_offset)) == NULL) return (NULL); } eh = mtod(m, struct ether_header *); eth_type = ntohs(eh->ether_type); if (eth_type == ETHERTYPE_VLAN) { ip_offset = sizeof(struct ether_vlan_header); if (m->m_len < ip_offset) { if ((m = m_pullup(m, ip_offset)) == NULL) return (NULL); } evh = mtod(m, struct ether_vlan_header *); eth_type = ntohs(evh->evl_proto); } switch (eth_type) { case ETHERTYPE_IP: if (m->m_len < ip_offset + sizeof(struct ip)) { m = m_pullup(m, ip_offset + sizeof(struct ip)); if (m == NULL) return (NULL); } ip = (struct ip *)(mtod(m, uint8_t *) + ip_offset); ip_proto = ip->ip_p; csum_start = ip_offset + (ip->ip_hl << 2); gso_type = VIRTIO_NET_HDR_GSO_TCPV4; break; case ETHERTYPE_IPV6: if (m->m_len < ip_offset + sizeof(struct ip6_hdr)) { m = m_pullup(m, ip_offset + sizeof(struct ip6_hdr)); if (m == NULL) return (NULL); } ip6 = (struct ip6_hdr *)(mtod(m, uint8_t *) + ip_offset); /* * XXX Assume no extension headers are present. Presently, * this will always be true in the case of TSO, and FreeBSD * does not perform checksum offloading of IPv6 yet. */ ip_proto = ip6->ip6_nxt; csum_start = ip_offset + sizeof(struct ip6_hdr); gso_type = VIRTIO_NET_HDR_GSO_TCPV6; break; default: return (m); } if (m->m_pkthdr.csum_flags & VTNET_CSUM_OFFLOAD) { hdr->flags |= VIRTIO_NET_HDR_F_NEEDS_CSUM; hdr->csum_start = csum_start; hdr->csum_offset = m->m_pkthdr.csum_data; sc->vtnet_stats.tx_csum_offloaded++; } if (m->m_pkthdr.csum_flags & CSUM_TSO) { if (ip_proto != IPPROTO_TCP) return (m); if (m->m_len < csum_start + sizeof(struct tcphdr)) { m = m_pullup(m, csum_start + sizeof(struct tcphdr)); if (m == NULL) return (NULL); } tcp = (struct tcphdr *)(mtod(m, uint8_t *) + csum_start); hdr->gso_type = gso_type; hdr->hdr_len = csum_start + (tcp->th_off << 2); hdr->gso_size = m->m_pkthdr.tso_segsz; if (tcp->th_flags & TH_CWR) { /* * Drop if we did not negotiate VIRTIO_NET_F_HOST_ECN. * ECN support is only configurable globally with the * net.inet.tcp.ecn.enable sysctl knob. */ if ((sc->vtnet_flags & VTNET_FLAG_TSO_ECN) == 0) { if_printf(ifp, "TSO with ECN not supported " "by host\n"); m_freem(m); return (NULL); } hdr->gso_type |= VIRTIO_NET_HDR_GSO_ECN; } sc->vtnet_stats.tx_tso_offloaded++; } return (m); } static int vtnet_enqueue_txbuf(struct vtnet_softc *sc, struct mbuf **m_head, struct vtnet_tx_header *txhdr) { struct sglist sg; struct sglist_seg segs[VTNET_MAX_TX_SEGS]; struct virtqueue *vq; struct mbuf *m; int error; vq = sc->vtnet_tx_vq; m = *m_head; sglist_init(&sg, sc->vtnet_tx_nsegs, segs); error = sglist_append(&sg, &txhdr->vth_uhdr, sc->vtnet_hdr_size); KASSERT(error == 0 && sg.sg_nseg == 1, ("%s: error %d adding header to sglist", __func__, error)); error = sglist_append_mbuf(&sg, m); if (error) { m = m_defrag(m, M_NOWAIT); if (m == NULL) goto fail; *m_head = m; sc->vtnet_stats.tx_defragged++; error = sglist_append_mbuf(&sg, m); if (error) goto fail; } txhdr->vth_mbuf = m; error = virtqueue_enqueue(vq, txhdr, &sg, sg.sg_nseg, 0); return (error); fail: sc->vtnet_stats.tx_defrag_failed++; m_freem(*m_head); *m_head = NULL; return (ENOBUFS); } static struct mbuf * vtnet_vlan_tag_insert(struct mbuf *m) { struct mbuf *n; struct ether_vlan_header *evl; if (M_WRITABLE(m) == 0) { n = m_dup(m, M_NOWAIT); m_freem(m); if ((m = n) == NULL) return (NULL); } M_PREPEND(m, ETHER_VLAN_ENCAP_LEN, M_NOWAIT); if (m == NULL) return (NULL); if (m->m_len < sizeof(struct ether_vlan_header)) { m = m_pullup(m, sizeof(struct ether_vlan_header)); if (m == NULL) return (NULL); } /* Insert 802.1Q header into the existing Ethernet header. */ evl = mtod(m, struct ether_vlan_header *); bcopy((char *) evl + ETHER_VLAN_ENCAP_LEN, (char *) evl, ETHER_HDR_LEN - ETHER_TYPE_LEN); evl->evl_encap_proto = htons(ETHERTYPE_VLAN); evl->evl_tag = htons(m->m_pkthdr.ether_vlantag); m->m_flags &= ~M_VLANTAG; return (m); } static int vtnet_encap(struct vtnet_softc *sc, struct mbuf **m_head) { struct vtnet_tx_header *txhdr; struct virtio_net_hdr *hdr; struct mbuf *m; int error; txhdr = SLIST_FIRST(&sc->vtnet_txhdr_free); if (txhdr == NULL) return (ENOBUFS); SLIST_REMOVE_HEAD(&sc->vtnet_txhdr_free, link); /* * Always use the non-mergeable header to simplify things. When * the mergeable feature is negotiated, the num_buffers field * must be set to zero. We use vtnet_hdr_size later to enqueue * the correct header size to the host. */ hdr = &txhdr->vth_uhdr.hdr; m = *m_head; error = ENOBUFS; if (m->m_flags & M_VLANTAG) { //m = ether_vlanencap(m, m->m_pkthdr.ether_vtag); m = vtnet_vlan_tag_insert(m); if ((*m_head = m) == NULL) goto fail; m->m_flags &= ~M_VLANTAG; } if (m->m_pkthdr.csum_flags != 0) { m = vtnet_tx_offload(sc, m, hdr); if ((*m_head = m) == NULL) goto fail; } error = vtnet_enqueue_txbuf(sc, m_head, txhdr); fail: if (error != 0) vtnet_enqueue_txhdr(sc, txhdr); return (error); } static void vtnet_start(struct ifnet *ifp, struct ifaltq_subque *ifsq) { struct vtnet_softc *sc; struct virtqueue *vq; struct mbuf *m0; int enq; sc = ifp->if_softc; vq = sc->vtnet_tx_vq; enq = 0; ASSERT_ALTQ_SQ_DEFAULT(ifp, ifsq); ASSERT_SERIALIZED(&sc->vtnet_tx_slz); if ((ifp->if_flags & (IFF_RUNNING)) != IFF_RUNNING || ((sc->vtnet_flags & VTNET_FLAG_LINK) == 0)) return; #ifdef VTNET_TX_INTR_MODERATION if (virtqueue_nused(vq) >= sc->vtnet_tx_size / 2) vtnet_txeof(sc); #endif while (!ifsq_is_empty(ifsq)) { if (virtqueue_full(vq)) { ifsq_set_oactive(ifsq); break; } m0 = ifsq_dequeue(ifsq); if (m0 == NULL) break; if (vtnet_encap(sc, &m0) != 0) { if (m0 == NULL) break; ifsq_prepend(ifsq, m0); ifsq_set_oactive(ifsq); break; } enq++; ETHER_BPF_MTAP(ifp, m0); } if (enq > 0) { virtqueue_notify(vq, NULL); ifsq_watchdog_set_count(&sc->vtnet_tx_watchdog, VTNET_WATCHDOG_TIMEOUT); } } static void vtnet_tx_msix_intr(void *xsc) { struct vtnet_softc *sc; struct ifnet *ifp; struct ifaltq_subque *ifsq; sc = xsc; ifp = sc->vtnet_ifp; ifsq = ifq_get_subq_default(&ifp->if_snd); if (!virtqueue_pending(sc->vtnet_tx_vq)) return; vtnet_disable_tx_intr(sc); next: if ((ifp->if_flags & IFF_RUNNING) == 0) { vtnet_enable_tx_intr(sc); return; } vtnet_txeof(sc); if (!ifsq_is_empty(ifsq)) ifsq_devstart(ifsq); if (vtnet_enable_tx_intr(sc) != 0) { vtnet_disable_tx_intr(sc); sc->vtnet_stats.tx_task_rescheduled++; goto next; } } static void vtnet_tx_vq_intr(void *xsc) { struct vtnet_softc *sc = xsc; lwkt_serialize_enter(&sc->vtnet_tx_slz); vtnet_tx_msix_intr(xsc); lwkt_serialize_exit(&sc->vtnet_tx_slz); } static void vtnet_config_intr(void *arg) { struct vtnet_softc *sc; sc = arg; vtnet_update_link_status(sc); } static void vtnet_stop(struct vtnet_softc *sc) { device_t dev; struct ifnet *ifp; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp; ASSERT_IFNET_SERIALIZED_ALL(ifp); ifq_clr_oactive(&ifp->if_snd); ifsq_watchdog_stop(&sc->vtnet_tx_watchdog); ifp->if_flags &= ~(IFF_RUNNING); vtnet_disable_rx_intr(sc); vtnet_disable_tx_intr(sc); /* * Stop the host VirtIO adapter. Note this will reset the host * adapter's state back to the pre-initialized state, so in * order to make the device usable again, we must drive it * through virtio_reinit() and virtio_reinit_complete(). */ virtio_stop(dev); sc->vtnet_flags &= ~VTNET_FLAG_LINK; vtnet_free_rx_mbufs(sc); vtnet_free_tx_mbufs(sc); } static int vtnet_virtio_reinit(struct vtnet_softc *sc) { device_t dev; struct ifnet *ifp; uint64_t features; int error; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp; features = sc->vtnet_features; /* * Re-negotiate with the host, removing any disabled receive * features. Transmit features are disabled only on our side * via if_capenable and if_hwassist. */ if (ifp->if_capabilities & IFCAP_RXCSUM) { if ((ifp->if_capenable & IFCAP_RXCSUM) == 0) features &= ~VIRTIO_NET_F_GUEST_CSUM; } #if 0 /* IFCAP_LRO doesn't exist in DragonFly. */ if (ifp->if_capabilities & IFCAP_LRO) { if ((ifp->if_capenable & IFCAP_LRO) == 0) features &= ~VTNET_LRO_FEATURES; } #endif if (ifp->if_capabilities & IFCAP_VLAN_HWFILTER) { if ((ifp->if_capenable & IFCAP_VLAN_HWFILTER) == 0) features &= ~VIRTIO_NET_F_CTRL_VLAN; } error = virtio_reinit(dev, features); if (error) device_printf(dev, "virtio reinit error %d\n", error); return (error); } static void vtnet_init(void *xsc) { struct vtnet_softc *sc; device_t dev; struct ifnet *ifp; int error; sc = xsc; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp; ASSERT_IFNET_SERIALIZED_ALL(ifp); if (ifp->if_flags & IFF_RUNNING) return; /* Stop host's adapter, cancel any pending I/O. */ vtnet_stop(sc); /* Reinitialize the host device. */ error = vtnet_virtio_reinit(sc); if (error) { device_printf(dev, "reinitialization failed, stopping device...\n"); vtnet_stop(sc); return; } /* Update host with assigned MAC address. */ bcopy(IF_LLADDR(ifp), sc->vtnet_hwaddr, ETHER_ADDR_LEN); vtnet_set_hwaddr(sc); ifp->if_hwassist = 0; if (ifp->if_capenable & IFCAP_TXCSUM) ifp->if_hwassist |= VTNET_CSUM_OFFLOAD; if (ifp->if_capenable & IFCAP_TSO4) ifp->if_hwassist |= CSUM_TSO; error = vtnet_init_rx_vq(sc); if (error) { device_printf(dev, "cannot allocate mbufs for Rx virtqueue\n"); vtnet_stop(sc); return; } if (sc->vtnet_flags & VTNET_FLAG_CTRL_VQ) { if (sc->vtnet_flags & VTNET_FLAG_CTRL_RX) { /* Restore promiscuous and all-multicast modes. */ vtnet_rx_filter(sc); /* Restore filtered MAC addresses. */ vtnet_rx_filter_mac(sc); } /* Restore VLAN filters. */ if (ifp->if_capenable & IFCAP_VLAN_HWFILTER) vtnet_rx_filter_vlan(sc); } #ifdef IFPOLL_ENABLE if (!(ifp->if_flags & IFF_NPOLLING)) #endif { vtnet_enable_rx_intr(sc); vtnet_enable_tx_intr(sc); } ifp->if_flags |= IFF_RUNNING; ifq_clr_oactive(&ifp->if_snd); ifsq_watchdog_start(&sc->vtnet_tx_watchdog); virtio_reinit_complete(dev); vtnet_update_link_status(sc); } static void vtnet_exec_ctrl_cmd(struct vtnet_softc *sc, void *cookie, struct sglist *sg, int readable, int writable) { struct virtqueue *vq; void *c; vq = sc->vtnet_ctrl_vq; ASSERT_IFNET_SERIALIZED_ALL(sc->vtnet_ifp); KASSERT(sc->vtnet_flags & VTNET_FLAG_CTRL_VQ, ("no control virtqueue")); KASSERT(virtqueue_empty(vq), ("control command already enqueued")); if (virtqueue_enqueue(vq, cookie, sg, readable, writable) != 0) return; /* * XXX We can safely drop the serializer between here, and the end of * the function, when we can correctly sleep for this command to * be finished. */ virtqueue_notify(vq, NULL); /* * Poll until the command is complete. Previously, we would * sleep until the control virtqueue interrupt handler woke * us up, but dropping the VTNET_MTX leads to serialization * difficulties. * * Furthermore, it appears QEMU/KVM only allocates three MSIX * vectors. Two of those vectors are needed for the Rx and Tx * virtqueues. We do not support sharing both a Vq and config * changed notification on the same MSIX vector. */ c = virtqueue_poll(vq, NULL); KASSERT(c == cookie, ("unexpected control command response")); } static int vtnet_ctrl_mac_cmd(struct vtnet_softc *sc, uint8_t *hwaddr) { struct { struct virtio_net_ctrl_hdr hdr __aligned(2); uint8_t pad1; char aligned_hwaddr[ETHER_ADDR_LEN] __aligned(8); uint8_t pad2; uint8_t ack; } s; struct sglist_seg segs[3]; struct sglist sg; int error; s.hdr.class = VIRTIO_NET_CTRL_MAC; s.hdr.cmd = VIRTIO_NET_CTRL_MAC_ADDR_SET; s.ack = VIRTIO_NET_ERR; /* Copy the mac address into physically contiguous memory */ memcpy(s.aligned_hwaddr, hwaddr, ETHER_ADDR_LEN); sglist_init(&sg, 3, segs); error = 0; error |= sglist_append(&sg, &s.hdr, sizeof(struct virtio_net_ctrl_hdr)); error |= sglist_append(&sg, s.aligned_hwaddr, ETHER_ADDR_LEN); error |= sglist_append(&sg, &s.ack, sizeof(uint8_t)); KASSERT(error == 0 && sg.sg_nseg == 3, ("%s: error %d adding set MAC msg to sglist", __func__, error)); vtnet_exec_ctrl_cmd(sc, &s.ack, &sg, sg.sg_nseg - 1, 1); return (s.ack == VIRTIO_NET_OK ? 0 : EIO); } static void vtnet_rx_filter(struct vtnet_softc *sc) { device_t dev; struct ifnet *ifp; dev = sc->vtnet_dev; ifp = sc->vtnet_ifp; ASSERT_IFNET_SERIALIZED_ALL(ifp); KASSERT(sc->vtnet_flags & VTNET_FLAG_CTRL_RX, ("CTRL_RX feature not negotiated")); if (vtnet_set_promisc(sc, ifp->if_flags & IFF_PROMISC) != 0) device_printf(dev, "cannot %s promiscuous mode\n", (ifp->if_flags & IFF_PROMISC) ? "enable" : "disable"); if (vtnet_set_allmulti(sc, ifp->if_flags & IFF_ALLMULTI) != 0) device_printf(dev, "cannot %s all-multicast mode\n", (ifp->if_flags & IFF_ALLMULTI) ? "enable" : "disable"); } static int vtnet_ctrl_rx_cmd(struct vtnet_softc *sc, int cmd, int on) { struct sglist_seg segs[3]; struct sglist sg; struct { struct virtio_net_ctrl_hdr hdr __aligned(2); uint8_t pad1; uint8_t onoff; uint8_t pad2; uint8_t ack; } s; int error; KASSERT(sc->vtnet_flags & VTNET_FLAG_CTRL_RX, ("%s: CTRL_RX feature not negotiated", __func__)); s.hdr.class = VIRTIO_NET_CTRL_RX; s.hdr.cmd = cmd; s.onoff = !!on; s.ack = VIRTIO_NET_ERR; sglist_init(&sg, 3, segs); error = 0; error |= sglist_append(&sg, &s.hdr, sizeof(struct virtio_net_ctrl_hdr)); error |= sglist_append(&sg, &s.onoff, sizeof(uint8_t)); error |= sglist_append(&sg, &s.ack, sizeof(uint8_t)); KASSERT(error == 0 && sg.sg_nseg == 3, ("%s: error %d adding Rx message to sglist", __func__, error)); vtnet_exec_ctrl_cmd(sc, &s.ack, &sg, sg.sg_nseg - 1, 1); return (s.ack == VIRTIO_NET_OK ? 0 : EIO); } static int vtnet_set_promisc(struct vtnet_softc *sc, int on) { return (vtnet_ctrl_rx_cmd(sc, VIRTIO_NET_CTRL_RX_PROMISC, on)); } static int vtnet_set_allmulti(struct vtnet_softc *sc, int on) { return (vtnet_ctrl_rx_cmd(sc, VIRTIO_NET_CTRL_RX_ALLMULTI, on)); } static void vtnet_rx_filter_mac(struct vtnet_softc *sc) { struct virtio_net_ctrl_hdr hdr __aligned(2); struct vtnet_mac_filter *filter; struct sglist_seg segs[4]; struct sglist sg; struct ifnet *ifp; struct ifaddr *ifa; struct ifaddr_container *ifac; struct ifmultiaddr *ifma; int ucnt, mcnt, promisc, allmulti, error; uint8_t ack; ifp = sc->vtnet_ifp; ucnt = 0; mcnt = 0; promisc = 0; allmulti = 0; ASSERT_IFNET_SERIALIZED_ALL(ifp); KASSERT(sc->vtnet_flags & VTNET_FLAG_CTRL_RX, ("%s: CTRL_RX feature not negotiated", __func__)); /* Use the MAC filtering table allocated in vtnet_attach. */ filter = sc->vtnet_macfilter; memset(filter, 0, sizeof(struct vtnet_mac_filter)); /* Unicast MAC addresses: */ //if_addr_rlock(ifp); TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) { ifa = ifac->ifa; if (ifa->ifa_addr->sa_family != AF_LINK) continue; else if (memcmp(LLADDR((struct sockaddr_dl *)ifa->ifa_addr), sc->vtnet_hwaddr, ETHER_ADDR_LEN) == 0) continue; else if (ucnt == VTNET_MAX_MAC_ENTRIES) { promisc = 1; break; } bcopy(LLADDR((struct sockaddr_dl *)ifa->ifa_addr), &filter->vmf_unicast.macs[ucnt], ETHER_ADDR_LEN); ucnt++; } //if_addr_runlock(ifp); if (promisc != 0) { filter->vmf_unicast.nentries = 0; if_printf(ifp, "more than %d MAC addresses assigned, " "falling back to promiscuous mode\n", VTNET_MAX_MAC_ENTRIES); } else filter->vmf_unicast.nentries = ucnt; /* Multicast MAC addresses: */ //if_maddr_rlock(ifp); TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { if (ifma->ifma_addr->sa_family != AF_LINK) continue; else if (mcnt == VTNET_MAX_MAC_ENTRIES) { allmulti = 1; break; } bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), &filter->vmf_multicast.macs[mcnt], ETHER_ADDR_LEN); mcnt++; } //if_maddr_runlock(ifp); if (allmulti != 0) { filter->vmf_multicast.nentries = 0; if_printf(ifp, "more than %d multicast MAC addresses " "assigned, falling back to all-multicast mode\n", VTNET_MAX_MAC_ENTRIES); } else filter->vmf_multicast.nentries = mcnt; if (promisc != 0 && allmulti != 0) goto out; hdr.class = VIRTIO_NET_CTRL_MAC; hdr.cmd = VIRTIO_NET_CTRL_MAC_TABLE_SET; ack = VIRTIO_NET_ERR; sglist_init(&sg, 4, segs); error = 0; error |= sglist_append(&sg, &hdr, sizeof(struct virtio_net_ctrl_hdr)); error |= sglist_append(&sg, &filter->vmf_unicast, sizeof(uint32_t) + filter->vmf_unicast.nentries * ETHER_ADDR_LEN); error |= sglist_append(&sg, &filter->vmf_multicast, sizeof(uint32_t) + filter->vmf_multicast.nentries * ETHER_ADDR_LEN); error |= sglist_append(&sg, &ack, sizeof(uint8_t)); KASSERT(error == 0 && sg.sg_nseg == 4, ("%s: error %d adding MAC filter msg to sglist", __func__, error)); vtnet_exec_ctrl_cmd(sc, &ack, &sg, sg.sg_nseg - 1, 1); if (ack != VIRTIO_NET_OK) if_printf(ifp, "error setting host MAC filter table\n"); out: if (promisc != 0 && vtnet_set_promisc(sc, 1) != 0) if_printf(ifp, "cannot enable promiscuous mode\n"); if (allmulti != 0 && vtnet_set_allmulti(sc, 1) != 0) if_printf(ifp, "cannot enable all-multicast mode\n"); } static int vtnet_exec_vlan_filter(struct vtnet_softc *sc, int add, uint16_t tag) { struct sglist_seg segs[3]; struct sglist sg; struct { struct virtio_net_ctrl_hdr hdr __aligned(2); uint8_t pad1; uint16_t tag; uint8_t pad2; uint8_t ack; } s; int error; s.hdr.class = VIRTIO_NET_CTRL_VLAN; s.hdr.cmd = add ? VIRTIO_NET_CTRL_VLAN_ADD : VIRTIO_NET_CTRL_VLAN_DEL; s.tag = tag; s.ack = VIRTIO_NET_ERR; sglist_init(&sg, 3, segs); error = 0; error |= sglist_append(&sg, &s.hdr, sizeof(struct virtio_net_ctrl_hdr)); error |= sglist_append(&sg, &s.tag, sizeof(uint16_t)); error |= sglist_append(&sg, &s.ack, sizeof(uint8_t)); KASSERT(error == 0 && sg.sg_nseg == 3, ("%s: error %d adding VLAN message to sglist", __func__, error)); vtnet_exec_ctrl_cmd(sc, &s.ack, &sg, sg.sg_nseg - 1, 1); return (s.ack == VIRTIO_NET_OK ? 0 : EIO); } static void vtnet_rx_filter_vlan(struct vtnet_softc *sc) { uint32_t w; uint16_t tag; int i, bit, nvlans; ASSERT_IFNET_SERIALIZED_ALL(sc->vtnet_ifp); KASSERT(sc->vtnet_flags & VTNET_FLAG_VLAN_FILTER, ("%s: VLAN_FILTER feature not negotiated", __func__)); nvlans = sc->vtnet_nvlans; /* Enable the filter for each configured VLAN. */ for (i = 0; i < VTNET_VLAN_SHADOW_SIZE && nvlans > 0; i++) { w = sc->vtnet_vlan_shadow[i]; while ((bit = ffs(w) - 1) != -1) { w &= ~(1 << bit); tag = sizeof(w) * CHAR_BIT * i + bit; nvlans--; if (vtnet_exec_vlan_filter(sc, 1, tag) != 0) { device_printf(sc->vtnet_dev, "cannot enable VLAN %d filter\n", tag); } } } KASSERT(nvlans == 0, ("VLAN count incorrect")); } static void vtnet_update_vlan_filter(struct vtnet_softc *sc, int add, uint16_t tag) { struct ifnet *ifp; int idx, bit; ifp = sc->vtnet_ifp; idx = (tag >> 5) & 0x7F; bit = tag & 0x1F; if (tag == 0 || tag > 4095) return; ifnet_serialize_all(ifp); /* Update shadow VLAN table. */ if (add) { sc->vtnet_nvlans++; sc->vtnet_vlan_shadow[idx] |= (1 << bit); } else { sc->vtnet_nvlans--; sc->vtnet_vlan_shadow[idx] &= ~(1 << bit); } if (ifp->if_capenable & IFCAP_VLAN_HWFILTER && vtnet_exec_vlan_filter(sc, add, tag) != 0) { device_printf(sc->vtnet_dev, "cannot %s VLAN %d %s the host filter table\n", add ? "add" : "remove", tag, add ? "to" : "from"); } ifnet_deserialize_all(ifp); } static void vtnet_register_vlan(void *arg, struct ifnet *ifp, uint16_t tag) { if (ifp->if_softc != arg) return; vtnet_update_vlan_filter(arg, 1, tag); } static void vtnet_unregister_vlan(void *arg, struct ifnet *ifp, uint16_t tag) { if (ifp->if_softc != arg) return; vtnet_update_vlan_filter(arg, 0, tag); } static int vtnet_ifmedia_upd(struct ifnet *ifp) { struct vtnet_softc *sc; struct ifmedia *ifm; sc = ifp->if_softc; ifm = &sc->vtnet_media; if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER) return (EINVAL); return (0); } static void vtnet_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr) { struct vtnet_softc *sc; sc = ifp->if_softc; ifmr->ifm_status = IFM_AVALID; ifmr->ifm_active = IFM_ETHER; if (vtnet_is_link_up(sc) != 0) { ifmr->ifm_status |= IFM_ACTIVE; ifmr->ifm_active |= VTNET_MEDIATYPE; } else ifmr->ifm_active |= IFM_NONE; } static void vtnet_add_statistics(struct vtnet_softc *sc) { device_t dev; struct vtnet_statistics *stats; struct sysctl_ctx_list *ctx; struct sysctl_oid *tree; struct sysctl_oid_list *child; dev = sc->vtnet_dev; stats = &sc->vtnet_stats; ctx = device_get_sysctl_ctx(dev); tree = device_get_sysctl_tree(dev); child = SYSCTL_CHILDREN(tree); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "mbuf_alloc_failed", CTLFLAG_RD, &stats->mbuf_alloc_failed, 0, "Mbuf cluster allocation failures"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_frame_too_large", CTLFLAG_RD, &stats->rx_frame_too_large, 0, "Received frame larger than the mbuf chain"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_enq_replacement_failed", CTLFLAG_RD, &stats->rx_enq_replacement_failed, 0, "Enqueuing the replacement receive mbuf failed"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_mergeable_failed", CTLFLAG_RD, &stats->rx_mergeable_failed, 0, "Mergeable buffers receive failures"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_csum_bad_ethtype", CTLFLAG_RD, &stats->rx_csum_bad_ethtype, 0, "Received checksum offloaded buffer with unsupported " "Ethernet type"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_csum_bad_ipproto", CTLFLAG_RD, &stats->rx_csum_bad_ipproto, 0, "Received checksum offloaded buffer with incorrect IP protocol"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_csum_bad_offset", CTLFLAG_RD, &stats->rx_csum_bad_offset, 0, "Received checksum offloaded buffer with incorrect offset"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_csum_failed", CTLFLAG_RD, &stats->rx_csum_failed, 0, "Received buffer checksum offload failed"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_csum_offloaded", CTLFLAG_RD, &stats->rx_csum_offloaded, 0, "Received buffer checksum offload succeeded"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "rx_task_rescheduled", CTLFLAG_RD, &stats->rx_task_rescheduled, 0, "Times the receive interrupt task rescheduled itself"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_csum_bad_ethtype", CTLFLAG_RD, &stats->tx_csum_bad_ethtype, 0, "Aborted transmit of checksum offloaded buffer with unknown " "Ethernet type"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_tso_bad_ethtype", CTLFLAG_RD, &stats->tx_tso_bad_ethtype, 0, "Aborted transmit of TSO buffer with unknown Ethernet type"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_defragged", CTLFLAG_RD, &stats->tx_defragged, 0, "Transmit mbufs defragged"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_defrag_failed", CTLFLAG_RD, &stats->tx_defrag_failed, 0, "Aborted transmit of buffer because defrag failed"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_csum_offloaded", CTLFLAG_RD, &stats->tx_csum_offloaded, 0, "Offloaded checksum of transmitted buffer"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_tso_offloaded", CTLFLAG_RD, &stats->tx_tso_offloaded, 0, "Segmentation offload of transmitted buffer"); SYSCTL_ADD_UQUAD(ctx, child, OID_AUTO, "tx_task_rescheduled", CTLFLAG_RD, &stats->tx_task_rescheduled, 0, "Times the transmit interrupt task rescheduled itself"); } static int vtnet_enable_rx_intr(struct vtnet_softc *sc) { return (virtqueue_enable_intr(sc->vtnet_rx_vq)); } static void vtnet_disable_rx_intr(struct vtnet_softc *sc) { virtqueue_disable_intr(sc->vtnet_rx_vq); } static int vtnet_enable_tx_intr(struct vtnet_softc *sc) { #ifdef VTNET_TX_INTR_MODERATION return (0); #else return (virtqueue_enable_intr(sc->vtnet_tx_vq)); #endif } static void vtnet_disable_tx_intr(struct vtnet_softc *sc) { virtqueue_disable_intr(sc->vtnet_tx_vq); } |