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
|
/*
* Copyright © 2019 Manuel Stoeckl
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "shadow.h"
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef HAS_LZ4
#include <lz4.h>
#include <lz4hc.h>
#endif
#ifdef HAS_ZSTD
#include <zstd.h>
#endif
struct shadow_fd *get_shadow_for_local_fd(
struct fd_translation_map *map, int lfd)
{
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
if (cur->fd_local == lfd) {
return cur;
}
}
return NULL;
}
struct shadow_fd *get_shadow_for_rid(struct fd_translation_map *map, int rid)
{
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
if (cur->remote_id == rid) {
return cur;
}
}
return NULL;
}
static void destroy_unlinked_sfd(struct shadow_fd *sfd)
{
wp_debug("Destroying %s RID=%d", fdcat_to_str(sfd->type),
sfd->remote_id);
/* video must be cleaned up before any buffers that it may rely on */
destroy_video_data(sfd);
/* free all accumulated damage records */
reset_damage(&sfd->damage);
free(sfd->damage_task_interval_store);
if (sfd->type == FDC_FILE) {
munmap(sfd->mem_local, sfd->buffer_size);
zeroed_aligned_free(sfd->mem_mirror, &sfd->mem_mirror_handle);
} else if (sfd->type == FDC_DMABUF || sfd->type == FDC_DMAVID_IR ||
sfd->type == FDC_DMAVID_IW) {
if (sfd->dmabuf_map_handle) {
unmap_dmabuf(sfd->dmabuf_bo, sfd->dmabuf_map_handle);
}
destroy_dmabuf(sfd->dmabuf_bo);
zeroed_aligned_free(sfd->mem_mirror, &sfd->mem_mirror_handle);
if (sfd->dmabuf_warped_handle) {
zeroed_aligned_free(sfd->dmabuf_warped,
&sfd->dmabuf_warped_handle);
}
} else if (sfd->type == FDC_PIPE) {
if (sfd->pipe.fd != sfd->fd_local && sfd->pipe.fd != -1) {
checked_close(sfd->pipe.fd);
}
free(sfd->pipe.recv.data);
free(sfd->pipe.send.data);
}
if (sfd->fd_local != -1) {
checked_close(sfd->fd_local);
}
free(sfd);
}
static void cleanup_thread_local(struct thread_data *data)
{
#ifdef HAS_ZSTD
ZSTD_freeCCtx(data->comp_ctx.zstd_ccontext);
ZSTD_freeDCtx(data->comp_ctx.zstd_dcontext);
#endif
#ifdef HAS_LZ4
free(data->comp_ctx.lz4_extstate);
#endif
free(data->tmp_buf);
}
static void setup_thread_local(struct thread_data *data,
enum compression_mode mode, int compression_level)
{
struct comp_ctx *ctx = &data->comp_ctx;
ctx->zstd_ccontext = NULL;
ctx->zstd_dcontext = NULL;
ctx->lz4_extstate = NULL;
#ifdef HAS_LZ4
if (mode == COMP_LZ4) {
/* Like LZ4Frame, integer codes indicate compression level.
* Negative numbers are acceleration, positive use the HC
* routines */
if (compression_level <= 0) {
ctx->lz4_extstate = malloc((size_t)LZ4_sizeofState());
} else {
ctx->lz4_extstate = malloc((size_t)LZ4_sizeofStateHC());
}
}
#endif
#ifdef HAS_ZSTD
if (mode == COMP_ZSTD) {
ctx->zstd_ccontext = ZSTD_createCCtx();
ctx->zstd_dcontext = ZSTD_createDCtx();
}
#endif
(void)mode;
(void)compression_level;
data->tmp_buf = NULL;
data->tmp_size = 0;
}
void cleanup_translation_map(struct fd_translation_map *map)
{
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
destroy_unlinked_sfd(cur);
}
map->link.l_next = &map->link;
map->link.l_prev = &map->link;
}
bool destroy_shadow_if_unreferenced(struct shadow_fd *sfd)
{
bool autodelete = sfd->has_owner;
if (sfd->type == FDC_PIPE && !sfd->pipe.can_read &&
!sfd->pipe.can_write && !sfd->pipe.remote_can_read &&
!sfd->pipe.remote_can_write) {
autodelete = true;
}
if (sfd->refcount.protocol == 0 && sfd->refcount.transfer == 0 &&
sfd->refcount.compute == false && autodelete) {
/* remove shadowfd from list */
sfd->link.l_prev->l_next = sfd->link.l_next;
sfd->link.l_next->l_prev = sfd->link.l_prev;
sfd->link.l_next = NULL;
sfd->link.l_prev = NULL;
destroy_unlinked_sfd(sfd);
return true;
} else if (sfd->refcount.protocol < 0 || sfd->refcount.transfer < 0) {
wp_error("Negative refcount for rid=%d: %d protocol references, %d transfer references",
sfd->remote_id, sfd->refcount.protocol,
sfd->refcount.transfer);
}
return false;
}
static void *worker_thread_main(void *arg);
void setup_translation_map(struct fd_translation_map *map, bool display_side)
{
map->local_sign = display_side ? -1 : 1;
map->link.l_next = &map->link;
map->link.l_prev = &map->link;
map->max_local_id = 1;
}
static void shutdown_threads(struct thread_pool *pool)
{
pthread_mutex_lock(&pool->work_mutex);
free(pool->stack);
struct task_data task;
memset(&task, 0, sizeof(task));
task.type = TASK_STOP;
pool->stack = &task;
pool->stack_count = 1;
pool->stack_size = 1;
pool->do_work = true;
pthread_cond_broadcast(&pool->work_cond);
pthread_mutex_unlock(&pool->work_mutex);
if (pool->threads) {
for (int i = 1; i < pool->nthreads; i++) {
if (pool->threads[i].thread) {
pthread_join(pool->threads[i].thread, NULL);
}
}
}
pool->stack = NULL;
}
int setup_thread_pool(struct thread_pool *pool,
enum compression_mode compression, int comp_level,
int n_threads)
{
memset(pool, 0, sizeof(struct thread_pool));
pool->diff_func = get_diff_function(
DIFF_FASTEST, &pool->diff_alignment_bits);
pool->compression = compression;
pool->compression_level = comp_level;
if (n_threads <= 0) {
// platform dependent
int nt = get_hardware_thread_count();
pool->nthreads = max(nt / 2, 1);
} else {
pool->nthreads = n_threads;
}
pool->stack_size = 0;
pool->stack_count = 0;
pool->stack = NULL;
pool->tasks_in_progress = 0;
pool->do_work = true;
/* Thread #0 is the 'main' thread */
pool->threads = calloc(
(size_t)pool->nthreads, sizeof(struct thread_data));
if (!pool->threads) {
wp_error("Failed to allocate list of thread data");
return -1;
}
int ret;
ret = pthread_mutex_init(&pool->work_mutex, NULL);
if (ret) {
wp_error("Mutex creation failed: %s", strerror(ret));
return -1;
}
ret = pthread_cond_init(&pool->work_cond, NULL);
if (ret) {
wp_error("Condition variable creation failed: %s",
strerror(ret));
return -1;
}
pool->threads[0].pool = pool;
pool->threads[0].thread = pthread_self();
for (int i = 1; i < pool->nthreads; i++) {
pool->threads[i].pool = pool;
ret = pthread_create(&pool->threads[i].thread, NULL,
worker_thread_main, &pool->threads[i]);
if (ret) {
wp_error("Thread creation failed: %s", strerror(ret));
// Stop making new threads, but keep what is there
pool->nthreads = i;
break;
}
}
/* Setup thread local data from the main thread, to avoid requiring
* the worker threads to allocate pools, for a few fixed buffers */
for (int i = 0; i < pool->nthreads; i++) {
setup_thread_local(&pool->threads[i], compression, comp_level);
}
int fds[2];
if (pipe(fds) == -1) {
wp_error("Failed to create pipe: %s", strerror(errno));
}
pool->selfpipe_r = fds[0];
pool->selfpipe_w = fds[1];
if (set_nonblocking(pool->selfpipe_r) == -1) {
wp_error("Failed to make read end of pipe nonblocking: %s",
strerror(errno));
}
return 0;
}
void cleanup_thread_pool(struct thread_pool *pool)
{
shutdown_threads(pool);
if (pool->threads) {
for (int i = 0; i < pool->nthreads; i++) {
cleanup_thread_local(&pool->threads[i]);
}
}
pthread_mutex_destroy(&pool->work_mutex);
pthread_cond_destroy(&pool->work_cond);
free(pool->threads);
free(pool->stack);
checked_close(pool->selfpipe_r);
checked_close(pool->selfpipe_w);
}
const char *fdcat_to_str(enum fdcat cat)
{
switch (cat) {
case FDC_UNKNOWN:
return "FDC_UNKNOWN";
case FDC_FILE:
return "FDC_FILE";
case FDC_PIPE:
return "FDC_PIPE";
case FDC_DMABUF:
return "FDC_DMABUF";
case FDC_DMAVID_IR:
return "FDC_DMAVID_IR";
case FDC_DMAVID_IW:
return "FDC_DMAVID_IW";
}
return "<invalid>";
}
const char *compression_mode_to_str(enum compression_mode mode)
{
switch (mode) {
case COMP_NONE:
return "NONE";
case COMP_LZ4:
return "LZ4";
case COMP_ZSTD:
return "ZSTD";
default:
return "<invalid>";
}
}
enum fdcat get_fd_type(int fd, size_t *size)
{
struct stat fsdata;
memset(&fsdata, 0, sizeof(fsdata));
int ret = fstat(fd, &fsdata);
if (ret == -1) {
wp_error("The fd %d is not file-like: %s", fd, strerror(errno));
return FDC_UNKNOWN;
} else if (S_ISREG(fsdata.st_mode)) {
if (size) {
*size = (size_t)fsdata.st_size;
}
return FDC_FILE;
} else if (S_ISFIFO(fsdata.st_mode) || S_ISCHR(fsdata.st_mode) ||
S_ISSOCK(fsdata.st_mode)) {
if (S_ISCHR(fsdata.st_mode)) {
wp_error("The fd %d, size %" PRId64
", mode %x is a character device. Proceeding under the assumption that it is pipe-like.",
fd, (int64_t)fsdata.st_size,
fsdata.st_mode);
}
if (S_ISSOCK(fsdata.st_mode)) {
wp_error("The fd %d, size %" PRId64
", mode %x is a socket. Proceeding under the assumption that it is pipe-like.",
fd, (int64_t)fsdata.st_size,
fsdata.st_mode);
}
return FDC_PIPE;
} else {
/* Note: we cannot at the moment reliably identify a dmabuf;
* trying to do so by importing it may file if we have the wrong
* parameters.
*/
wp_error("The fd %d has an unusual mode %x (type=%x): blk=%d chr=%d dir=%d lnk=%d reg=%d fifo=%d sock=%d; expect an application crash!",
fd, fsdata.st_mode, fsdata.st_mode & S_IFMT,
S_ISBLK(fsdata.st_mode),
S_ISCHR(fsdata.st_mode),
S_ISDIR(fsdata.st_mode),
S_ISLNK(fsdata.st_mode),
S_ISREG(fsdata.st_mode),
S_ISFIFO(fsdata.st_mode),
S_ISSOCK(fsdata.st_mode), strerror(errno));
return FDC_UNKNOWN;
}
}
static size_t compress_bufsize(struct thread_pool *pool, size_t max_input)
{
switch (pool->compression) {
default:
case COMP_NONE:
(void)max_input;
return 0;
#ifdef HAS_LZ4
case COMP_LZ4:
/* This bound applies for both LZ4 and LZ4HC compressors */
return (size_t)LZ4_compressBound((int)max_input);
#endif
#ifdef HAS_ZSTD
case COMP_ZSTD:
return ZSTD_compressBound(max_input);
#endif
}
return 0;
}
/* With the selected compression method, compress the buffer
* {isize,ibuf}, possibly modifying {msize,mbuf}, and setting
* {wsize,wbuf} to indicate the result */
static void compress_buffer(struct thread_pool *pool, struct comp_ctx *ctx,
size_t isize, const char *ibuf, size_t msize, char *mbuf,
struct bytebuf *dst)
{
(void)ctx;
// Ensure inputs always nontrivial
if (isize == 0) {
dst->size = 0;
dst->data = (char *)ibuf;
return;
}
DTRACE_PROBE1(waypipe, compress_buffer_enter, isize);
switch (pool->compression) {
default:
case COMP_NONE:
(void)msize;
(void)mbuf;
dst->size = isize;
dst->data = (char *)ibuf;
break;
#ifdef HAS_LZ4
case COMP_LZ4: {
int ws;
if (pool->compression_level <= 0) {
ws = LZ4_compress_fast_extState(ctx->lz4_extstate, ibuf,
mbuf, (int)isize, (int)msize,
-pool->compression_level);
} else {
ws = LZ4_compress_HC_extStateHC(ctx->lz4_extstate, ibuf,
mbuf, (int)isize, (int)msize,
pool->compression_level);
}
if (ws == 0) {
wp_error("LZ4 compression failed for %zu bytes in %zu of space",
isize, msize);
}
dst->size = (size_t)ws;
dst->data = (char *)mbuf;
break;
}
#endif
#ifdef HAS_ZSTD
case COMP_ZSTD: {
size_t ws = ZSTD_compressCCtx(ctx->zstd_ccontext, mbuf, msize,
ibuf, isize, pool->compression_level);
if (ZSTD_isError(ws)) {
wp_error("Zstd compression failed for %d bytes in %d of space: %s",
(int)isize, (int)msize,
ZSTD_getErrorName(ws));
}
dst->size = (size_t)ws;
dst->data = (char *)mbuf;
break;
}
#endif
}
DTRACE_PROBE1(waypipe, compress_buffer_exit, dst->size);
}
/* With the selected compression method, uncompress the buffer {isize,ibuf},
* to precisely msize bytes, setting {wsize,wbuf} to indicate the result.
* If the compression mode requires it. */
static void uncompress_buffer(struct thread_pool *pool, struct comp_ctx *ctx,
size_t isize, const char *ibuf, size_t msize, char *mbuf,
size_t *wsize, const char **wbuf)
{
(void)ctx;
// Ensure inputs always nontrivial
if (isize == 0) {
*wsize = 0;
*wbuf = ibuf;
return;
}
DTRACE_PROBE1(waypipe, uncompress_buffer_enter, isize);
switch (pool->compression) {
default:
case COMP_NONE:
(void)mbuf;
(void)msize;
*wsize = isize;
*wbuf = ibuf;
break;
#ifdef HAS_LZ4
case COMP_LZ4: {
int ws = LZ4_decompress_safe(
ibuf, mbuf, (int)isize, (int)msize);
if (ws < 0 || (size_t)ws != msize) {
wp_error("Lz4 decompression failed for %d bytes to %d of space, used %d",
(int)isize, (int)msize, ws);
}
*wsize = (size_t)ws;
*wbuf = mbuf;
break;
}
#endif
#ifdef HAS_ZSTD
case COMP_ZSTD: {
size_t ws = ZSTD_decompressDCtx(
ctx->zstd_dcontext, mbuf, msize, ibuf, isize);
if (ZSTD_isError(ws) || (size_t)ws != msize) {
wp_error("Zstd decompression failed for %d bytes to %d of space: %s",
(int)isize, (int)msize,
ZSTD_getErrorName(ws));
ws = 0;
}
*wsize = ws;
*wbuf = mbuf;
break;
}
#endif
}
DTRACE_PROBE1(waypipe, uncompress_buffer_exit, *wsize);
}
struct shadow_fd *translate_fd(struct fd_translation_map *map,
struct render_data *render, struct thread_pool *threads, int fd,
enum fdcat type, size_t file_sz,
const struct dmabuf_slice_data *info, bool force_pipe_iw)
{
struct shadow_fd *sfd = get_shadow_for_local_fd(map, fd);
if (sfd) {
return sfd;
}
if (type == FDC_DMAVID_IR || type == FDC_DMAVID_IW) {
if (!info) {
wp_error("No dmabuf info provided");
return NULL;
}
}
// Create a new translation map.
sfd = calloc(1, sizeof(struct shadow_fd));
if (!sfd) {
wp_error("Failed to allocate shadow_fd structure");
return NULL;
}
sfd->link.l_prev = &map->link;
sfd->link.l_next = map->link.l_next;
sfd->link.l_prev->l_next = &sfd->link;
sfd->link.l_next->l_prev = &sfd->link;
sfd->fd_local = fd;
sfd->mem_local = NULL;
sfd->mem_mirror = NULL;
sfd->mem_mirror_handle = NULL;
sfd->buffer_size = 0;
sfd->remote_id = (map->max_local_id++) * map->local_sign;
sfd->type = type;
// File changes must be propagated
sfd->is_dirty = true;
/* files/dmabufs are damaged by default; shm_pools are explicitly
* undamaged in handlers.c */
damage_everything(&sfd->damage);
sfd->has_owner = false;
/* Start the number of expected transfers to channel remaining
* at one, and number of protocol objects referencing this
* shadow_fd at zero.*/
sfd->refcount.transfer = 1;
sfd->refcount.protocol = 0;
sfd->refcount.compute = false;
sfd->only_here = true;
wp_debug("Creating new %s shadow RID=%d for local fd %d",
fdcat_to_str(sfd->type), sfd->remote_id, fd);
switch (sfd->type) {
case FDC_FILE: {
if (file_sz >= UINT32_MAX / 2) {
wp_error("Failed to create shadow structure, file size %zu too large to transfer",
file_sz);
return sfd;
}
sfd->buffer_size = file_sz;
sfd->file_readonly = false;
// both r/w permissions, because the side which allocates the
// memory does not always have to be the side that modifies it
sfd->mem_local = mmap(NULL, sfd->buffer_size,
PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (sfd->mem_local == MAP_FAILED &&
(errno == EPERM || errno == EACCES)) {
wp_debug("Initial mmap for RID=%d failed, trying private+readonly",
sfd->remote_id);
// Some files are memfds that are sealed
// to be read-only
sfd->mem_local = mmap(NULL, sfd->buffer_size, PROT_READ,
MAP_PRIVATE, fd, 0);
if (sfd->mem_local != MAP_FAILED) {
sfd->file_readonly = true;
}
}
if (sfd->mem_local == MAP_FAILED) {
wp_error("Mmap failed when creating shadow RID=%d: %s",
sfd->remote_id, strerror(errno));
return sfd;
}
// This will be created at the first transfer.
// todo: why not create it now?
sfd->mem_mirror = NULL;
} break;
case FDC_PIPE: {
// Make this end of the pipe nonblocking, so that we can
// include it in our main loop.
if (set_nonblocking(sfd->fd_local) == -1) {
wp_error("Failed to make fd nonblocking");
}
sfd->pipe.fd = sfd->fd_local;
if (force_pipe_iw) {
sfd->pipe.can_write = true;
} else {
/* this classification overestimates with
* socketpairs that have partially been shutdown.
* what about platform-specific RW pipes? */
int flags = fcntl(fd, F_GETFL, 0);
if (flags == -1) {
wp_error("fctnl F_GETFL failed!");
}
if ((flags & O_ACCMODE) == O_RDONLY) {
sfd->pipe.can_read = true;
} else if ((flags & O_ACCMODE) == O_WRONLY) {
sfd->pipe.can_write = true;
} else {
sfd->pipe.can_read = true;
sfd->pipe.can_write = true;
}
}
} break;
case FDC_DMAVID_IR: {
sfd->video_fmt = render->av_video_fmt;
memcpy(&sfd->dmabuf_info, info,
sizeof(struct dmabuf_slice_data));
init_render_data(render);
sfd->dmabuf_bo = import_dmabuf(render, sfd->fd_local,
&sfd->buffer_size, &sfd->dmabuf_info);
if (!sfd->dmabuf_bo) {
return sfd;
}
if (setup_video_encode(sfd, render, threads->nthreads) == -1) {
wp_error("Video encoding setup failed for RID=%d",
sfd->remote_id);
}
} break;
case FDC_DMAVID_IW: {
sfd->video_fmt = render->av_video_fmt;
memcpy(&sfd->dmabuf_info, info,
sizeof(struct dmabuf_slice_data));
// TODO: multifd-dmabuf video surface
init_render_data(render);
sfd->dmabuf_bo = import_dmabuf(render, sfd->fd_local,
&sfd->buffer_size, &sfd->dmabuf_info);
if (!sfd->dmabuf_bo) {
return sfd;
}
if (setup_video_decode(sfd, render) == -1) {
wp_error("Video decoding setup failed for RID=%d",
sfd->remote_id);
}
} break;
case FDC_DMABUF: {
sfd->buffer_size = 0;
init_render_data(render);
memcpy(&sfd->dmabuf_info, info,
sizeof(struct dmabuf_slice_data));
sfd->dmabuf_bo = import_dmabuf(render, sfd->fd_local,
&sfd->buffer_size, &sfd->dmabuf_info);
if (!sfd->dmabuf_bo) {
return sfd;
}
// to be created on first transfer
sfd->mem_mirror = NULL;
} break;
case FDC_UNKNOWN:
wp_error("Trying to create shadow_fd for unknown filedesc type");
break;
}
return sfd;
}
static void *shrink_buffer(void *buf, size_t sz)
{
void *nbuf = realloc(buf, sz);
if (nbuf) {
return nbuf;
} else {
wp_debug("Failed to shrink buffer with realloc, not a problem");
return buf;
}
}
/* Construct and optionally compress a diff between sfd->mem_mirror and
* the actual memmap'd data, and synchronize sfd->mem_mirror */
static void worker_run_compress_diff(
struct task_data *task, struct thread_data *local)
{
struct shadow_fd *sfd = task->sfd;
struct thread_pool *pool = local->pool;
size_t diffsize = (size_t)-1;
size_t damage_space = 0;
for (int i = 0; i < task->damage_len; i++) {
int range = task->damage_intervals[i].end -
task->damage_intervals[i].start;
damage_space += (size_t)range + 8;
}
if (task->damaged_end) {
damage_space += 1u << pool->diff_alignment_bits;
}
DTRACE_PROBE1(waypipe, worker_compdiff_enter, damage_space);
char *diff_buffer = NULL;
char *diff_target = NULL;
if (pool->compression == COMP_NONE) {
diff_buffer = malloc(
damage_space + sizeof(struct wmsg_buffer_diff));
if (!diff_buffer) {
wp_error("Allocation failed, dropping diff transfer block");
goto end;
}
diff_target = diff_buffer + sizeof(struct wmsg_buffer_diff);
} else {
if (buf_ensure_size((int)damage_space, 1, &local->tmp_size,
&local->tmp_buf) == -1) {
wp_error("Allocation failed, dropping diff transfer block");
goto end;
}
diff_target = local->tmp_buf;
}
DTRACE_PROBE1(waypipe, construct_diff_enter, task->damage_len);
char *source = sfd->mem_local;
if (sfd->type == FDC_DMABUF &&
sfd->dmabuf_map_stride != sfd->dmabuf_info.strides[0]) {
size_t tx_stride = (size_t)sfd->dmabuf_info.strides[0];
size_t common = (size_t)minu(sfd->dmabuf_map_stride, tx_stride);
/* copy mapped data to temporary buffer whose stride matches
* what is sent over the wire */
for (int i = 0; i < task->damage_len; i++) {
size_t start = (size_t)task->damage_intervals[i].start;
size_t end = (size_t)task->damage_intervals[i].end;
size_t loc_start =
(start % tx_stride) +
(start / tx_stride) *
sfd->dmabuf_map_stride;
size_t loc_end = (end % tx_stride) +
(end / tx_stride) *
sfd->dmabuf_map_stride;
stride_shifted_copy(sfd->dmabuf_warped, sfd->mem_local,
loc_start, loc_end - loc_start, common,
sfd->dmabuf_map_stride,
sfd->dmabuf_info.strides[0]);
}
if (task->damaged_end) {
size_t alignment = 1u << pool->diff_alignment_bits;
size_t start = alignment *
(sfd->buffer_size / alignment);
size_t end = sfd->buffer_size;
size_t loc_start =
(start % tx_stride) +
(start / tx_stride) *
sfd->dmabuf_map_stride;
size_t loc_end = (end % tx_stride) +
(end / tx_stride) *
sfd->dmabuf_map_stride;
stride_shifted_copy(sfd->dmabuf_warped, sfd->mem_local,
loc_start, loc_end - loc_start, common,
sfd->dmabuf_map_stride,
sfd->dmabuf_info.strides[0]);
}
source = sfd->dmabuf_warped;
}
diffsize = construct_diff_core(pool->diff_func,
pool->diff_alignment_bits, task->damage_intervals,
task->damage_len, sfd->mem_mirror, source, diff_target);
size_t ntrailing = 0;
if (task->damaged_end) {
ntrailing = construct_diff_trailing(sfd->buffer_size,
pool->diff_alignment_bits, sfd->mem_mirror,
source, diff_target + diffsize);
}
DTRACE_PROBE1(waypipe, construct_diff_exit, diffsize);
if (diffsize == 0 && ntrailing == 0) {
free(diff_buffer);
goto end;
}
uint8_t *msg;
size_t sz;
size_t net_diff_sz = diffsize + ntrailing;
if (pool->compression == COMP_NONE) {
sz = net_diff_sz + sizeof(struct wmsg_buffer_diff);
msg = (uint8_t *)diff_buffer;
} else {
struct bytebuf dst;
size_t comp_size = compress_bufsize(pool, net_diff_sz);
char *comp_buf = malloc(alignz(comp_size, 4) +
sizeof(struct wmsg_buffer_diff));
if (!comp_buf) {
wp_error("Allocation failed, dropping diff transfer block");
goto end;
}
compress_buffer(pool, &local->comp_ctx, net_diff_sz,
diff_target, comp_size,
comp_buf + sizeof(struct wmsg_buffer_diff),
&dst);
sz = dst.size + sizeof(struct wmsg_buffer_diff);
msg = (uint8_t *)comp_buf;
}
msg = shrink_buffer(msg, alignz(sz, 4));
memset(msg + sz, 0, alignz(sz, 4) - sz);
struct wmsg_buffer_diff header;
header.size_and_type = transfer_header(sz, WMSG_BUFFER_DIFF);
header.remote_id = sfd->remote_id;
header.diff_size = (uint32_t)diffsize;
header.ntrailing = (uint32_t)ntrailing;
memcpy(msg, &header, sizeof(struct wmsg_buffer_diff));
transfer_async_add(task->msg_queue, msg, alignz(sz, 4));
end:
DTRACE_PROBE1(waypipe, worker_compdiff_exit, diffsize);
}
/* Compress data for sfd->mem_mirror, and synchronize sfd->mem_mirror */
static void worker_run_compress_block(
struct task_data *task, struct thread_data *local)
{
struct shadow_fd *sfd = task->sfd;
struct thread_pool *pool = local->pool;
if (task->zone_end == task->zone_start) {
wp_error("Skipping task");
return;
}
/* Allocate a disjoint target interval to each worker */
size_t source_start = (size_t)task->zone_start;
size_t source_end = (size_t)task->zone_end;
DTRACE_PROBE1(waypipe, worker_comp_enter, source_end - source_start);
/* Update mirror to match local */
if (sfd->type == FDC_DMABUF &&
sfd->dmabuf_map_stride != sfd->dmabuf_info.strides[0]) {
uint32_t tx_stride = sfd->dmabuf_info.strides[0];
size_t common = (size_t)minu(sfd->dmabuf_map_stride,
sfd->dmabuf_info.strides[0]);
size_t loc_start = (source_start % tx_stride) +
(source_start / tx_stride) *
sfd->dmabuf_map_stride;
size_t loc_end = (source_end % tx_stride) +
(source_end / tx_stride) *
sfd->dmabuf_map_stride;
stride_shifted_copy(sfd->mem_mirror, sfd->mem_local, loc_start,
loc_end - loc_start, common,
sfd->dmabuf_map_stride,
sfd->dmabuf_info.strides[0]);
} else {
memcpy(sfd->mem_mirror + source_start,
sfd->mem_local + source_start,
source_end - source_start);
}
size_t sz = 0;
uint8_t *msg;
if (pool->compression == COMP_NONE) {
sz = sizeof(struct wmsg_buffer_fill) +
(source_end - source_start);
msg = malloc(alignz(sz, 4));
if (!msg) {
wp_error("Allocation failed, dropping fill transfer block");
goto end;
}
memcpy(msg + sizeof(struct wmsg_buffer_fill),
sfd->mem_mirror + source_start,
source_end - source_start);
} else {
size_t comp_size = compress_bufsize(
pool, source_end - source_start);
msg = malloc(alignz(comp_size, 4) +
sizeof(struct wmsg_buffer_fill));
if (!msg) {
wp_error("Allocation failed, dropping fill transfer block");
goto end;
}
struct bytebuf dst;
compress_buffer(pool, &local->comp_ctx,
source_end - source_start,
&sfd->mem_mirror[source_start], comp_size,
(char *)msg + sizeof(struct wmsg_buffer_fill),
&dst);
sz = dst.size + sizeof(struct wmsg_buffer_fill);
msg = shrink_buffer(msg, alignz(sz, 4));
}
memset(msg + sz, 0, alignz(sz, 4) - sz);
struct wmsg_buffer_fill header;
header.size_and_type = transfer_header(sz, WMSG_BUFFER_FILL);
header.remote_id = sfd->remote_id;
header.start = (uint32_t)source_start;
header.end = (uint32_t)source_end;
memcpy(msg, &header, sizeof(struct wmsg_buffer_fill));
transfer_async_add(task->msg_queue, msg, alignz(sz, 4));
end:
DTRACE_PROBE1(waypipe, worker_comp_exit,
sz - sizeof(struct wmsg_buffer_fill));
}
/* Optionally compress the data in mem_mirror, and set up the initial
* transfer blocks */
static void queue_fill_transfers(struct thread_pool *threads,
struct shadow_fd *sfd, struct transfer_queue *transfers)
{
// new transfer, we send file contents verbatim
const int chunksize = 262144;
int region_start = (int)sfd->remote_bufsize;
int region_end = (int)sfd->buffer_size;
if (region_start > region_end) {
wp_error("Cannot queue fill transfers for a size reduction from %d to %d bytes",
region_start, region_end);
return;
}
if (region_start == region_end) {
return;
}
/* Keep sfd alive at least until write to channel is done */
sfd->refcount.compute = true;
int nshards = ceildiv((region_end - region_start), chunksize);
pthread_mutex_lock(&threads->work_mutex);
if (buf_ensure_size(threads->stack_count + nshards,
sizeof(struct task_data), &threads->stack_size,
(void **)&threads->stack) == -1) {
wp_error("Allocation failed, dropping some fill tasks");
pthread_mutex_unlock(&threads->work_mutex);
return;
}
/* Align fill operations to multiples of 64; this may slightly overcopy
* if region_start % 64 != 0. */
int block_start = region_start / 64;
int block_end = align(region_end, 64) / 64;
for (int i = 0; i < nshards; i++) {
struct task_data task;
memset(&task, 0, sizeof(task));
task.type = TASK_COMPRESS_BLOCK;
task.sfd = sfd;
task.msg_queue = &transfers->async_recv_queue;
task.zone_start = 64 * split_interval(block_start, block_end,
nshards, i);
task.zone_end = 64 * split_interval(block_start, block_end,
nshards, i + 1);
if (task.zone_end > region_end) {
task.zone_end = region_end;
}
threads->stack[threads->stack_count++] = task;
}
pthread_mutex_unlock(&threads->work_mutex);
}
static void queue_diff_transfers(struct thread_pool *threads,
struct shadow_fd *sfd, struct transfer_queue *transfers)
{
const int chunksize = 262144;
if (!sfd->damage.damage) {
return;
}
/* Keep sfd alive at least until write to channel is done */
sfd->refcount.compute = true;
int bs = 1 << threads->diff_alignment_bits;
int align_end = bs * ((int)sfd->buffer_size / bs);
bool check_tail = false;
int net_damage = 0;
if (sfd->damage.damage == DAMAGE_EVERYTHING) {
reset_damage(&sfd->damage);
struct ext_interval all = {.start = 0,
.width = align_end,
.rep = 1,
.stride = 0};
merge_damage_records(&sfd->damage, 1, &all,
threads->diff_alignment_bits);
check_tail = true;
net_damage = align_end;
} else {
for (int ir = 0, iw = 0; ir < sfd->damage.ndamage_intvs; ir++) {
/* Extend all damage to the nearest alignment block */
struct interval e = sfd->damage.damage[ir];
check_tail |= e.end > align_end;
e.end = min(e.end, align_end);
if (e.start < e.end) {
/* End clipping may produce empty/degenerate
* intervals, so filter them out now */
sfd->damage.damage[iw++] = e;
net_damage += e.end - e.start;
}
if (e.end & (bs - 1) || e.start & (bs - 1)) {
wp_error("Interval [%d, %d) is not aligned",
e.start, e.end);
}
}
}
int nshards = ceildiv(net_damage, chunksize);
/* Instead of allocating individual buffers for each task, create a
* global damage tracking buffer into which tasks index. It will be
* deleted in `finish_update`. */
struct interval *intvs = malloc(
sizeof(struct interval) *
(size_t)(sfd->damage.ndamage_intvs + nshards));
int *offsets = calloc((size_t)nshards + 1, sizeof(int));
if (!offsets || !intvs) {
// TODO: avoid making this allocation entirely
wp_error("Failed to allocate diff region control buffer, dropping diff tasks");
free(intvs);
free(offsets);
return;
}
sfd->damage_task_interval_store = intvs;
int tot_blocks = net_damage / bs;
int ir = 0, iw = 0, acc_prev_blocks = 0;
for (int shard = 0; shard < nshards; shard++) {
int s_lower = split_interval(0, tot_blocks, nshards, shard);
int s_upper = split_interval(0, tot_blocks, nshards, shard + 1);
while (acc_prev_blocks < s_upper &&
ir < sfd->damage.ndamage_intvs) {
struct interval e = sfd->damage.damage[ir];
const int w = (e.end - e.start) / bs;
int a_low = max(0, s_lower - acc_prev_blocks);
int a_high = min(w, s_upper - acc_prev_blocks);
struct interval r = {
.start = e.start + bs * a_low,
.end = e.start + bs * a_high,
};
intvs[iw++] = r;
if (acc_prev_blocks + w > s_upper) {
break;
} else {
acc_prev_blocks += w;
ir++;
}
}
offsets[shard + 1] = iw;
}
/* Reset damage, once it has been applied */
reset_damage(&sfd->damage);
pthread_mutex_lock(&threads->work_mutex);
if (buf_ensure_size(threads->stack_count + nshards,
sizeof(struct task_data), &threads->stack_size,
(void **)&threads->stack) == -1) {
wp_error("Allocation failed, dropping some diff tasks");
pthread_mutex_unlock(&threads->work_mutex);
free(offsets);
return;
}
for (int i = 0; i < nshards; i++) {
struct task_data task;
memset(&task, 0, sizeof(task));
task.type = TASK_COMPRESS_DIFF;
task.sfd = sfd;
task.msg_queue = &transfers->async_recv_queue;
task.damage_len = offsets[i + 1] - offsets[i];
task.damage_intervals =
&sfd->damage_task_interval_store[offsets[i]];
task.damaged_end = (i == nshards - 1) && check_tail;
threads->stack[threads->stack_count++] = task;
}
pthread_mutex_unlock(&threads->work_mutex);
free(offsets);
}
static void add_dmabuf_create_request(struct transfer_queue *transfers,
struct shadow_fd *sfd, enum wmsg_type variant)
{
size_t actual_len = sizeof(struct wmsg_open_dmabuf) +
sizeof(struct dmabuf_slice_data);
size_t padded_len = alignz(actual_len, 4);
uint8_t *data = calloc(1, padded_len);
struct wmsg_open_dmabuf *header = (struct wmsg_open_dmabuf *)data;
header->file_size = (uint32_t)sfd->buffer_size;
header->remote_id = sfd->remote_id;
header->size_and_type = transfer_header(actual_len, variant);
memcpy(data + sizeof(struct wmsg_open_dmabuf), &sfd->dmabuf_info,
sizeof(struct dmabuf_slice_data));
transfer_add(transfers, padded_len, data);
}
static void add_dmabuf_create_request_v2(struct transfer_queue *transfers,
struct shadow_fd *sfd, enum wmsg_type variant,
enum video_coding_fmt fmt)
{
size_t actual_len = sizeof(struct wmsg_open_dmavid) +
sizeof(struct dmabuf_slice_data);
static_assert((sizeof(struct wmsg_open_dmavid) +
sizeof(struct dmabuf_slice_data)) %
4 ==
0,
"alignment");
uint8_t *data = calloc(1, actual_len);
struct wmsg_open_dmavid *header = (struct wmsg_open_dmavid *)data;
header->file_size = (uint32_t)sfd->buffer_size;
header->remote_id = sfd->remote_id;
header->size_and_type = transfer_header(actual_len, variant);
header->vid_flags = (uint32_t)fmt;
memcpy(data + sizeof(*header), &sfd->dmabuf_info,
sizeof(struct dmabuf_slice_data));
transfer_add(transfers, actual_len, data);
}
static void add_file_create_request(
struct transfer_queue *transfers, struct shadow_fd *sfd)
{
struct wmsg_open_file *header =
calloc(1, sizeof(struct wmsg_open_file));
header->file_size = (uint32_t)sfd->buffer_size;
header->remote_id = sfd->remote_id;
header->size_and_type = transfer_header(
sizeof(struct wmsg_open_file), WMSG_OPEN_FILE);
transfer_add(transfers, sizeof(struct wmsg_open_file), header);
}
void finish_update(struct shadow_fd *sfd)
{
if (!sfd->refcount.compute) {
return;
}
if (sfd->type == FDC_DMABUF && sfd->dmabuf_map_handle) {
// if this fails, unmap_dmabuf will print error
(void)unmap_dmabuf(sfd->dmabuf_bo, sfd->dmabuf_map_handle);
sfd->dmabuf_map_handle = NULL;
sfd->mem_local = NULL;
}
if (sfd->damage_task_interval_store) {
free(sfd->damage_task_interval_store);
sfd->damage_task_interval_store = NULL;
}
sfd->refcount.compute = false;
}
void collect_update(struct thread_pool *threads, struct shadow_fd *sfd,
struct transfer_queue *transfers, bool use_old_dmavid_req)
{
switch (sfd->type) {
case FDC_FILE: {
if (!sfd->is_dirty) {
// File is clean, we have no reason to believe
// that its contents could have changed
return;
}
// Clear dirty state
sfd->is_dirty = false;
if (sfd->only_here) {
// increase space, to avoid overflow when
// writing this buffer along with padding
size_t alignment = 1u << threads->diff_alignment_bits;
sfd->mem_mirror = zeroed_aligned_alloc(
alignz(sfd->buffer_size, alignment),
alignment, &sfd->mem_mirror_handle);
if (!sfd->mem_mirror) {
wp_error("Failed to allocate mirror");
return;
}
sfd->only_here = false;
sfd->remote_bufsize = 0;
add_file_create_request(transfers, sfd);
sfd->remote_bufsize = sfd->buffer_size;
queue_diff_transfers(threads, sfd, transfers);
return;
}
if (sfd->remote_bufsize < sfd->buffer_size) {
struct wmsg_open_file *header = calloc(
1, sizeof(struct wmsg_open_file));
header->file_size = (uint32_t)sfd->buffer_size;
header->remote_id = sfd->remote_id;
header->size_and_type = transfer_header(
sizeof(struct wmsg_open_file),
WMSG_EXTEND_FILE);
transfer_add(transfers, sizeof(struct wmsg_open_file),
header);
sfd->remote_bufsize = sfd->buffer_size;
}
queue_diff_transfers(threads, sfd, transfers);
} break;
case FDC_DMABUF: {
// If buffer is clean, do not check for changes
if (!sfd->is_dirty) {
return;
}
sfd->is_dirty = false;
bool first = false;
if (sfd->only_here) {
sfd->only_here = false;
first = true;
add_dmabuf_create_request(
transfers, sfd, WMSG_OPEN_DMABUF);
}
if (!sfd->dmabuf_bo) {
// ^ was not previously able to create buffer
return;
}
if (!sfd->mem_local) {
sfd->mem_local = map_dmabuf(sfd->dmabuf_bo, false,
&sfd->dmabuf_map_handle,
&sfd->dmabuf_map_stride);
if (!sfd->mem_local) {
return;
}
}
if (first) {
size_t alignment = 1u << threads->diff_alignment_bits;
sfd->mem_mirror = zeroed_aligned_alloc(
alignz(sfd->buffer_size, alignment),
alignment, &sfd->mem_mirror_handle);
sfd->dmabuf_warped = zeroed_aligned_alloc(
alignz(sfd->buffer_size, alignment),
alignment, &sfd->dmabuf_warped_handle);
if (!sfd->mem_mirror || !sfd->dmabuf_warped) {
wp_error("Failed to allocate mirror");
return;
}
sfd->remote_bufsize = 0;
queue_fill_transfers(threads, sfd, transfers);
sfd->remote_bufsize = sfd->buffer_size;
} else {
// TODO: detailed damage tracking
damage_everything(&sfd->damage);
queue_diff_transfers(threads, sfd, transfers);
}
/* Unmapping will be handled by finish_update() */
} break;
case FDC_DMAVID_IR: {
if (!sfd->is_dirty) {
return;
}
sfd->is_dirty = false;
if (!sfd->dmabuf_bo || !sfd->video_context) {
// ^ was not previously able to create buffer
return;
}
if (sfd->only_here) {
sfd->only_here = false;
if (use_old_dmavid_req) {
add_dmabuf_create_request(transfers, sfd,
WMSG_OPEN_DMAVID_DST);
} else {
add_dmabuf_create_request_v2(transfers, sfd,
WMSG_OPEN_DMAVID_DST_V2,
sfd->video_fmt);
}
}
collect_video_from_mirror(sfd, transfers);
} break;
case FDC_DMAVID_IW: {
sfd->is_dirty = false;
if (sfd->only_here) {
sfd->only_here = false;
if (use_old_dmavid_req) {
add_dmabuf_create_request(transfers, sfd,
WMSG_OPEN_DMAVID_SRC);
} else {
add_dmabuf_create_request_v2(transfers, sfd,
WMSG_OPEN_DMAVID_SRC_V2,
sfd->video_fmt);
}
}
} break;
case FDC_PIPE: {
// Pipes always update, no matter what the message
// stream indicates.
if (sfd->only_here) {
sfd->only_here = false;
struct wmsg_basic *createh =
calloc(1, sizeof(struct wmsg_basic));
enum wmsg_type type;
if (sfd->pipe.can_read && !sfd->pipe.can_write) {
type = WMSG_OPEN_IW_PIPE;
sfd->pipe.remote_can_write = true;
} else if (sfd->pipe.can_write && !sfd->pipe.can_read) {
type = WMSG_OPEN_IR_PIPE;
sfd->pipe.remote_can_read = true;
} else {
type = WMSG_OPEN_RW_PIPE;
sfd->pipe.remote_can_read = true;
sfd->pipe.remote_can_write = true;
}
createh->size_and_type = transfer_header(
sizeof(struct wmsg_basic), type);
createh->remote_id = sfd->remote_id;
transfer_add(transfers, sizeof(struct wmsg_basic),
createh);
}
if (sfd->pipe.recv.used > 0) {
size_t msgsz = sizeof(struct wmsg_basic) +
(size_t)sfd->pipe.recv.used;
char *buf = malloc(alignz(msgsz, 4));
struct wmsg_basic *header = (struct wmsg_basic *)buf;
header->size_and_type = transfer_header(
msgsz, WMSG_PIPE_TRANSFER);
header->remote_id = sfd->remote_id;
memcpy(buf + sizeof(struct wmsg_basic),
sfd->pipe.recv.data,
(size_t)sfd->pipe.recv.used);
memset(buf + msgsz, 0, alignz(msgsz, 4) - msgsz);
transfer_add(transfers, alignz(msgsz, 4), buf);
sfd->pipe.recv.used = 0;
}
if (!sfd->pipe.can_read && sfd->pipe.remote_can_write) {
struct wmsg_basic *header =
calloc(1, sizeof(struct wmsg_basic));
header->size_and_type = transfer_header(
sizeof(struct wmsg_basic),
WMSG_PIPE_SHUTDOWN_W);
header->remote_id = sfd->remote_id;
transfer_add(transfers, sizeof(struct wmsg_basic),
header);
sfd->pipe.remote_can_write = false;
}
if (!sfd->pipe.can_write && sfd->pipe.remote_can_read) {
struct wmsg_basic *header =
calloc(1, sizeof(struct wmsg_basic));
header->size_and_type = transfer_header(
sizeof(struct wmsg_basic),
WMSG_PIPE_SHUTDOWN_R);
header->remote_id = sfd->remote_id;
transfer_add(transfers, sizeof(struct wmsg_basic),
header);
sfd->pipe.remote_can_read = false;
}
} break;
case FDC_UNKNOWN:
break;
}
}
static void increase_buffer_sizes(struct shadow_fd *sfd,
struct thread_pool *threads, size_t new_size)
{
size_t old_size = sfd->buffer_size;
munmap(sfd->mem_local, old_size);
sfd->buffer_size = new_size;
sfd->mem_local = mmap(NULL, sfd->buffer_size, PROT_READ | PROT_WRITE,
MAP_SHARED, sfd->fd_local, 0);
if (sfd->mem_local == MAP_FAILED) {
wp_error("Mmap failed to remap increased buffer for RID=%d: %s",
sfd->remote_id, strerror(errno));
return;
}
/* if resize happens before any transfers, mirror may still be zero */
if (sfd->mem_mirror) {
// todo: handle allocation failures
size_t alignment = 1u << threads->diff_alignment_bits;
void *new_mirror = zeroed_aligned_realloc(
alignz(old_size, alignment),
alignz(sfd->buffer_size, alignment), alignment,
sfd->mem_mirror, &sfd->mem_mirror_handle);
if (!new_mirror) {
wp_error("Failed to reallocate mirror");
return;
}
sfd->mem_mirror = new_mirror;
}
}
static void pipe_close_write(struct shadow_fd *sfd)
{
if (sfd->pipe.can_read) {
/* if pipe.fd is both readable and writable, assume
* socket
*/
shutdown(sfd->pipe.fd, SHUT_WR);
} else {
checked_close(sfd->pipe.fd);
if (sfd->fd_local == sfd->pipe.fd) {
sfd->fd_local = -1;
}
sfd->pipe.fd = -1;
}
sfd->pipe.can_write = false;
/* Also free any accumulated data that was not delivered */
free(sfd->pipe.send.data);
memset(&sfd->pipe.send, 0, sizeof(sfd->pipe.send));
}
static void pipe_close_read(struct shadow_fd *sfd)
{
if (sfd->pipe.can_write) {
/* if pipe.fd is both readable and writable, assume
* socket */
// TODO: check return value, can legitimately fail with ENOBUFS
shutdown(sfd->pipe.fd, SHUT_RD);
} else {
checked_close(sfd->pipe.fd);
if (sfd->fd_local == sfd->pipe.fd) {
sfd->fd_local = -1;
}
sfd->pipe.fd = -1;
}
sfd->pipe.can_read = false;
}
static int open_sfd(struct fd_translation_map *map, struct shadow_fd **sfd_ptr,
int remote_id)
{
if (*sfd_ptr) {
wp_error("shadow structure for RID=%d was already created",
remote_id);
return ERR_FATAL;
}
wp_debug("Introducing new fd, remoteid=%d", remote_id);
struct shadow_fd *sfd = calloc(1, sizeof(struct shadow_fd));
if (!sfd) {
wp_error("failed to allocate shadow structure for RID=%d",
remote_id);
return ERR_FATAL;
}
sfd->link.l_prev = &map->link;
sfd->link.l_next = map->link.l_next;
sfd->link.l_prev->l_next = &sfd->link;
sfd->link.l_next->l_prev = &sfd->link;
sfd->remote_id = remote_id;
sfd->fd_local = -1;
sfd->is_dirty = false;
/* a received file descriptor is up to date by default */
reset_damage(&sfd->damage);
sfd->only_here = false;
/* Start the object reference at one, so that, if it is owned by
* some known protocol object, it can not be deleted until the
* fd has at least be transferred over the Wayland connection */
sfd->refcount.transfer = 1;
sfd->refcount.protocol = 0;
sfd->refcount.compute = false;
*sfd_ptr = sfd;
return 0;
}
static int check_message_min_size(
enum wmsg_type type, const struct bytebuf *msg, size_t min_size)
{
if (msg->size < min_size) {
wp_error("Message size for %s is smaller than expected (%zu bytes vs %zu bytes)",
wmsg_type_to_str(type), msg->size, min_size);
return ERR_FATAL;
}
return 0;
}
static int check_sfd_type_2(struct shadow_fd *sfd, int remote_id,
enum wmsg_type mtype, enum fdcat ftype1, enum fdcat ftype2)
{
if (!sfd) {
wp_error("shadow structure for RID=%d was not available",
remote_id);
return ERR_FATAL;
}
if (sfd->type != ftype1 && sfd->type != ftype2) {
wp_error("Trying to apply %s to RID=%d which has incompatible type=%s",
wmsg_type_to_str(mtype), remote_id,
fdcat_to_str(sfd->type));
return ERR_FATAL;
}
return 0;
}
static int check_sfd_type(struct shadow_fd *sfd, int remote_id,
enum wmsg_type mtype, enum fdcat ftype)
{
return check_sfd_type_2(sfd, remote_id, mtype, ftype, ftype);
}
int apply_update(struct fd_translation_map *map, struct thread_pool *threads,
struct render_data *render, enum wmsg_type type, int remote_id,
const struct bytebuf *msg)
{
struct shadow_fd *sfd = get_shadow_for_rid(map, remote_id);
int ret = 0;
switch (type) {
default:
case WMSG_RESTART:
case WMSG_CLOSE:
case WMSG_ACK_NBLOCKS:
case WMSG_INJECT_RIDS:
case WMSG_PROTOCOL: {
if (wmsg_type_is_known(type)) {
wp_error("Unexpected update type: %s",
wmsg_type_to_str(type));
} else {
wp_error("Unidentified update type, number %u. "
"This may be caused by the Waypipe instances "
"on different sides of the connection having "
"incompatible versions or options.",
(unsigned)type);
}
return ERR_FATAL;
}
/* SFD creation messages */
case WMSG_OPEN_FILE: {
if ((ret = check_message_min_size(type, msg,
sizeof(struct wmsg_open_file))) < 0) {
return ret;
}
if ((ret = open_sfd(map, &sfd, remote_id)) < 0) {
return ret;
}
const struct wmsg_open_file header =
*(const struct wmsg_open_file *)msg->data;
sfd->type = FDC_FILE;
sfd->mem_local = NULL;
sfd->buffer_size = header.file_size;
sfd->remote_bufsize = sfd->buffer_size;
size_t alignment = 1u << threads->diff_alignment_bits;
sfd->mem_mirror = zeroed_aligned_alloc(
alignz(sfd->buffer_size, alignment), alignment,
&sfd->mem_mirror_handle);
if (!sfd->mem_mirror) {
wp_error("Failed to allocate mirror");
return 0;
}
sfd->fd_local = create_anon_file();
if (sfd->fd_local == -1) {
wp_error("Failed to create anon file for object %d: %s",
sfd->remote_id, strerror(errno));
return 0;
}
/* ftruncate zero initializes the file by default, matching
* the zeroed mem_mirror buffer */
if (ftruncate(sfd->fd_local, (off_t)sfd->buffer_size) == -1) {
wp_error("Failed to resize anon file to size %zu for reason: %s",
sfd->buffer_size, strerror(errno));
return 0;
}
sfd->mem_local = mmap(NULL, sfd->buffer_size,
PROT_READ | PROT_WRITE, MAP_SHARED,
sfd->fd_local, 0);
if (sfd->mem_local == MAP_FAILED) {
wp_error("Failed to mmap newly created shm file for object %d: %s",
sfd->remote_id, strerror(errno));
sfd->mem_local = NULL;
return 0;
}
return 0;
}
case WMSG_OPEN_DMABUF: {
if ((ret = check_message_min_size(type, msg,
sizeof(struct wmsg_open_dmabuf) +
sizeof(struct dmabuf_slice_data))) <
0) {
return ret;
}
if ((ret = open_sfd(map, &sfd, remote_id)) < 0) {
return ret;
}
sfd->type = FDC_DMABUF;
memcpy(&sfd->dmabuf_info,
msg->data + sizeof(struct wmsg_open_dmabuf),
sizeof(struct dmabuf_slice_data));
/* allocate a mirror buffer that matches dimensions of incoming
* data from the remote; this may disagree with the mapped size
* of the buffer */
sfd->buffer_size = sfd->dmabuf_info.height *
sfd->dmabuf_info.strides[0];
size_t alignment = 1u << threads->diff_alignment_bits;
sfd->mem_mirror = zeroed_aligned_alloc(
alignz(sfd->buffer_size, alignment), alignment,
&sfd->mem_mirror_handle);
sfd->dmabuf_warped = zeroed_aligned_alloc(
alignz(sfd->buffer_size, alignment), alignment,
&sfd->dmabuf_warped_handle);
if (!sfd->mem_mirror || !sfd->dmabuf_warped) {
wp_error("Failed to allocate mirror");
return 0;
}
wp_debug("Creating remote DMAbuf of %d bytes",
(int)sfd->buffer_size);
// Create mirror from first transfer
// The file can only actually be created when we know
// what type it is?
if (init_render_data(render) == -1) {
sfd->fd_local = -1;
return 0;
}
sfd->dmabuf_bo = make_dmabuf(render, &sfd->dmabuf_info);
if (!sfd->dmabuf_bo) {
sfd->fd_local = -1;
return 0;
}
sfd->fd_local = export_dmabuf(sfd->dmabuf_bo);
return 0;
}
case WMSG_OPEN_DMAVID_DST:
case WMSG_OPEN_DMAVID_DST_V2: {
const size_t min_msg_size =
sizeof(struct dmabuf_slice_data) +
((type == WMSG_OPEN_DMAVID_DST_V2)
? sizeof(struct wmsg_open_dmavid)
: sizeof(struct wmsg_open_dmabuf));
if ((ret = check_message_min_size(type, msg, min_msg_size)) <
0) {
return ret;
}
if ((ret = open_sfd(map, &sfd, remote_id)) < 0) {
return ret;
}
/* remote read data, this side writes data */
sfd->type = FDC_DMAVID_IW;
if (type == WMSG_OPEN_DMAVID_DST) {
const struct wmsg_open_dmabuf header =
*(const struct wmsg_open_dmabuf *)
msg->data;
sfd->buffer_size = header.file_size;
memcpy(&sfd->dmabuf_info,
msg->data + sizeof(struct wmsg_open_dmabuf),
sizeof(struct dmabuf_slice_data));
sfd->video_fmt = VIDEO_H264;
} else {
const struct wmsg_open_dmavid header =
*(const struct wmsg_open_dmavid *)
msg->data;
sfd->buffer_size = header.file_size;
memcpy(&sfd->dmabuf_info,
msg->data + sizeof(struct wmsg_open_dmavid),
sizeof(struct dmabuf_slice_data));
uint32_t vid_type = header.vid_flags & 0xff;
if (vid_type == (uint32_t)VIDEO_H264 ||
vid_type == (uint32_t)VIDEO_VP9 ||
vid_type == (uint32_t)VIDEO_AV1) {
sfd->video_fmt =
(enum video_coding_fmt)vid_type;
} else {
wp_error("Unidentified video format %u for RID=%d",
vid_type, sfd->remote_id);
return ERR_FATAL;
}
}
if (init_render_data(render) == -1) {
sfd->fd_local = -1;
return 0;
}
sfd->dmabuf_bo = make_dmabuf(render, &sfd->dmabuf_info);
if (!sfd->dmabuf_bo) {
wp_error("FDC_DMAVID_IW: RID=%d make_dmabuf failure, sz=%d (%d)",
sfd->remote_id, (int)sfd->buffer_size,
sizeof(struct dmabuf_slice_data));
return 0;
}
sfd->fd_local = export_dmabuf(sfd->dmabuf_bo);
if (setup_video_decode(sfd, render) == -1) {
wp_error("Video decoding setup failed for RID=%d",
sfd->remote_id);
}
return 0;
}
case WMSG_OPEN_DMAVID_SRC:
case WMSG_OPEN_DMAVID_SRC_V2: {
const size_t min_msg_size =
sizeof(struct dmabuf_slice_data) +
((type == WMSG_OPEN_DMAVID_SRC_V2)
? sizeof(struct wmsg_open_dmavid)
: sizeof(struct wmsg_open_dmabuf));
if ((ret = check_message_min_size(type, msg, min_msg_size)) <
0) {
return ret;
}
if ((ret = open_sfd(map, &sfd, remote_id)) < 0) {
return ret;
}
/* remote writes data, this side reads data */
sfd->type = FDC_DMAVID_IR;
// TODO: deduplicate this section with WMSG_OPEN_DMAVID_DST,
// or stop handling V1 and V2 in the same branch
if (type == WMSG_OPEN_DMAVID_SRC) {
const struct wmsg_open_dmabuf header =
*(const struct wmsg_open_dmabuf *)
msg->data;
sfd->buffer_size = header.file_size;
memcpy(&sfd->dmabuf_info,
msg->data + sizeof(struct wmsg_open_dmabuf),
sizeof(struct dmabuf_slice_data));
sfd->video_fmt = VIDEO_H264;
} else {
const struct wmsg_open_dmavid header =
*(const struct wmsg_open_dmavid *)
msg->data;
sfd->buffer_size = header.file_size;
memcpy(&sfd->dmabuf_info,
msg->data + sizeof(struct wmsg_open_dmavid),
sizeof(struct dmabuf_slice_data));
uint32_t vid_type = header.vid_flags & 0xff;
if (vid_type == (uint32_t)VIDEO_H264 ||
vid_type == (uint32_t)VIDEO_VP9 ||
vid_type == (uint32_t)VIDEO_AV1) {
sfd->video_fmt =
(enum video_coding_fmt)vid_type;
} else {
wp_error("Unidentified video format %u for RID=%d",
sfd->remote_id);
return ERR_FATAL;
}
}
if (init_render_data(render) == -1) {
sfd->fd_local = -1;
return 0;
}
sfd->dmabuf_bo = make_dmabuf(render, &sfd->dmabuf_info);
if (!sfd->dmabuf_bo) {
wp_error("FDC_DMAVID_IR: RID=%d make_dmabuf failure",
sfd->remote_id);
return 0;
}
sfd->fd_local = export_dmabuf(sfd->dmabuf_bo);
if (setup_video_encode(sfd, render, threads->nthreads) == -1) {
wp_error("Video encoding setup failed for RID=%d",
sfd->remote_id);
}
return 0;
}
case WMSG_OPEN_RW_PIPE:
case WMSG_OPEN_IW_PIPE:
case WMSG_OPEN_IR_PIPE: {
if ((ret = open_sfd(map, &sfd, remote_id)) < 0) {
return ret;
}
sfd->type = FDC_PIPE;
int pipedes[2];
if (type == WMSG_OPEN_RW_PIPE) {
if (socketpair(AF_UNIX, SOCK_STREAM, 0, pipedes) ==
-1) {
wp_error("Failed to create a socketpair: %s",
strerror(errno));
return 0;
}
} else {
if (pipe(pipedes) == -1) {
wp_error("Failed to create a pipe: %s",
strerror(errno));
return 0;
}
}
/* We pass 'fd_local' to the client, although we only
* read and write from pipe_fd if it exists. */
if (type == WMSG_OPEN_IR_PIPE) {
// Read end is 0; the other process writes
sfd->fd_local = pipedes[1];
sfd->pipe.fd = pipedes[0];
sfd->pipe.can_read = true;
sfd->pipe.remote_can_write = true;
} else if (type == WMSG_OPEN_IW_PIPE) {
// Write end is 1; the other process reads
sfd->fd_local = pipedes[0];
sfd->pipe.fd = pipedes[1];
sfd->pipe.can_write = true;
sfd->pipe.remote_can_read = true;
} else { // FDC_PIPE_RW
// Here, it doesn't matter which end is which
sfd->fd_local = pipedes[0];
sfd->pipe.fd = pipedes[1];
sfd->pipe.can_read = true;
sfd->pipe.can_write = true;
sfd->pipe.remote_can_read = true;
sfd->pipe.remote_can_write = true;
}
if (set_nonblocking(sfd->pipe.fd) == -1) {
wp_error("Failed to make private pipe end nonblocking: %s",
strerror(errno));
return 0;
}
return 0;
}
/* SFD update messages */
case WMSG_EXTEND_FILE: {
if ((ret = check_message_min_size(type, msg,
sizeof(struct wmsg_open_file))) < 0) {
return ret;
}
if ((ret = check_sfd_type(sfd, remote_id, type, FDC_FILE)) <
0) {
return ret;
}
const struct wmsg_open_file *header =
(const struct wmsg_open_file *)msg->data;
if (header->file_size <= sfd->buffer_size) {
wp_error("File extend message for RID=%d does not increase size %u %z",
remote_id, header->file_size,
sfd->buffer_size);
return ERR_FATAL;
}
if (ftruncate(sfd->fd_local, (off_t)header->file_size) == -1) {
wp_error("Failed to resize file buffer: %s",
strerror(errno));
return 0;
}
increase_buffer_sizes(sfd, threads, (size_t)header->file_size);
// the extension implies the remote buffer is at least as large
sfd->remote_bufsize = sfd->buffer_size;
return 0;
}
case WMSG_BUFFER_FILL: {
if ((ret = check_message_min_size(type, msg,
sizeof(struct wmsg_buffer_fill))) < 0) {
return ret;
}
if ((ret = check_sfd_type_2(sfd, remote_id, type, FDC_FILE,
FDC_DMABUF)) < 0) {
return ret;
}
if (sfd->type == FDC_FILE && sfd->file_readonly) {
wp_debug("Ignoring a fill update to readonly file at RID=%d",
remote_id);
return 0;
}
const struct wmsg_buffer_fill *header =
(const struct wmsg_buffer_fill *)msg->data;
size_t uncomp_size = header->end - header->start;
struct thread_data *local = &threads->threads[0];
if (buf_ensure_size((int)uncomp_size, 1, &local->tmp_size,
&local->tmp_buf) == -1) {
wp_error("Failed to expand temporary decompression buffer, dropping update");
return 0;
}
const char *act_buffer = NULL;
size_t act_size = 0;
uncompress_buffer(threads, &threads->threads[0].comp_ctx,
msg->size - sizeof(struct wmsg_buffer_fill),
msg->data + sizeof(struct wmsg_buffer_fill),
uncomp_size, local->tmp_buf, &act_size,
&act_buffer);
// `memsize+8*remote_nthreads` is the worst-case diff
// expansion
if (header->end > sfd->buffer_size) {
wp_error("Transfer end overflow %" PRIu32 " > %zu",
header->end, sfd->buffer_size);
return ERR_FATAL;
}
if (act_size != header->end - header->start) {
wp_error("Transfer size mismatch %zu %" PRIu32,
act_size, header->end - header->start);
return ERR_FATAL;
}
if (sfd->type == FDC_DMABUF) {
int bpp = get_shm_bytes_per_pixel(
sfd->dmabuf_info.format);
if (bpp == -1) {
wp_error("Skipping update of RID=%d, non-RGBA/monoplane fmt %x",
sfd->remote_id,
sfd->dmabuf_info.format);
return 0;
}
memcpy(sfd->mem_mirror + header->start, act_buffer,
header->end - header->start);
void *handle = NULL;
uint32_t map_stride = 0;
char *mem_local = map_dmabuf(sfd->dmabuf_bo, true,
&handle, &map_stride);
if (!mem_local) {
wp_error("Failed to apply fill to RID=%d, fd not mapped",
sfd->remote_id);
return 0;
}
uint32_t in_stride = sfd->dmabuf_info.strides[0];
if (map_stride == in_stride) {
memcpy(mem_local + header->start,
sfd->mem_mirror + header->start,
header->end - header->start);
} else {
/* stride changing transfer */
uint32_t row_length = (uint32_t)bpp *
sfd->dmabuf_info.width;
uint32_t copy_size = (uint32_t)minu(row_length,
minu(map_stride, in_stride));
stride_shifted_copy(mem_local,
act_buffer - header->start,
header->start,
header->end - header->start,
copy_size, in_stride,
map_stride);
}
if (unmap_dmabuf(sfd->dmabuf_bo, handle) == -1) {
return 0;
}
} else {
memcpy(sfd->mem_mirror + header->start, act_buffer,
header->end - header->start);
memcpy(sfd->mem_local + header->start, act_buffer,
header->end - header->start);
}
return 0;
}
case WMSG_BUFFER_DIFF: {
if ((ret = check_message_min_size(type, msg,
sizeof(struct wmsg_buffer_diff))) < 0) {
return ret;
}
if ((ret = check_sfd_type_2(sfd, remote_id, type, FDC_FILE,
FDC_DMABUF)) < 0) {
return ret;
}
if (sfd->type == FDC_FILE && sfd->file_readonly) {
wp_debug("Ignoring a diff update to readonly file at RID=%d",
remote_id);
return 0;
}
const struct wmsg_buffer_diff *header =
(const struct wmsg_buffer_diff *)msg->data;
struct thread_data *local = &threads->threads[0];
if (buf_ensure_size((int)(header->diff_size +
header->ntrailing),
1, &local->tmp_size,
&local->tmp_buf) == -1) {
wp_error("Failed to expand temporary decompression buffer, dropping update");
return 0;
}
const char *act_buffer = NULL;
size_t act_size = 0;
uncompress_buffer(threads, &threads->threads[0].comp_ctx,
msg->size - sizeof(struct wmsg_buffer_diff),
msg->data + sizeof(struct wmsg_buffer_diff),
header->diff_size + header->ntrailing,
local->tmp_buf, &act_size, &act_buffer);
// `memsize+8*remote_nthreads` is the worst-case diff
// expansion
if (act_size != header->diff_size + header->ntrailing) {
wp_error("Transfer size mismatch %zu %u", act_size,
header->diff_size + header->ntrailing);
return ERR_FATAL;
}
if (sfd->type == FDC_DMABUF) {
int bpp = get_shm_bytes_per_pixel(
sfd->dmabuf_info.format);
if (bpp == -1) {
wp_error("Skipping update of RID=%d, non-RGBA/monoplane fmt %x",
sfd->remote_id,
sfd->dmabuf_info.format);
return 0;
}
void *handle = NULL;
uint32_t map_stride = 0;
char *mem_local = map_dmabuf(sfd->dmabuf_bo, true,
&handle, &map_stride);
if (!mem_local) {
wp_error("Failed to apply diff to RID=%d, fd not mapped",
sfd->remote_id);
return 0;
}
uint32_t in_stride = sfd->dmabuf_info.strides[0];
uint32_t row_length =
(uint32_t)bpp * sfd->dmabuf_info.width;
uint32_t copy_size = (uint32_t)minu(row_length,
minu(map_stride, in_stride));
(void)in_stride;
size_t nblocks = sfd->buffer_size / sizeof(uint32_t);
size_t ndiffblocks =
header->diff_size / sizeof(uint32_t);
uint32_t *diff_blocks = (uint32_t *)act_buffer;
for (size_t i = 0; i < ndiffblocks;) {
size_t nfrom = (size_t)diff_blocks[i];
size_t nto = (size_t)diff_blocks[i + 1];
size_t span = nto - nfrom;
if (nto > nblocks || nfrom >= nto ||
i + (nto - nfrom) >=
ndiffblocks) {
wp_error("Invalid copy range [%zu,%zu) > %zu=nblocks or [%zu,%zu) > %zu=ndiffblocks",
nfrom, nto, nblocks,
i + 1, i + 1 + span,
ndiffblocks);
break;
}
memcpy(sfd->mem_mirror + sizeof(uint32_t) * nfrom,
diff_blocks + i + 2,
sizeof(uint32_t) * span);
stride_shifted_copy(mem_local,
(char *)((diff_blocks + i + 2) -
nfrom),
sizeof(uint32_t) * nfrom,
sizeof(uint32_t) * span,
copy_size, in_stride,
map_stride);
i += span + 2;
}
if (header->ntrailing > 0) {
size_t offset = sfd->buffer_size -
header->ntrailing;
memcpy(sfd->mem_mirror + offset,
act_buffer + header->diff_size,
header->ntrailing);
stride_shifted_copy(mem_local,
(act_buffer + header->diff_size) -
offset,
offset, header->ntrailing,
copy_size, in_stride,
map_stride);
}
if (unmap_dmabuf(sfd->dmabuf_bo, handle) == -1) {
return 0;
}
} else {
DTRACE_PROBE2(waypipe, apply_diff_enter,
sfd->buffer_size, header->diff_size);
apply_diff(sfd->buffer_size, sfd->mem_mirror,
sfd->mem_local, header->diff_size,
header->ntrailing, act_buffer);
DTRACE_PROBE(waypipe, apply_diff_exit);
}
return 0;
}
case WMSG_PIPE_TRANSFER: {
if ((ret = check_sfd_type(sfd, remote_id, type, FDC_PIPE)) <
0) {
return ret;
}
if (!sfd->pipe.can_write || sfd->pipe.pending_w_shutdown) {
wp_debug("Discarding transfer to pipe RID=%d, because pipe cannot be written to",
remote_id);
return 0;
}
size_t transf_data_sz = msg->size - sizeof(struct wmsg_basic);
int netsize = sfd->pipe.send.used + (int)transf_data_sz;
if (buf_ensure_size(netsize, 1, &sfd->pipe.send.size,
(void **)&sfd->pipe.send.data) == -1) {
wp_error("Failed to expand pipe transfer buffer, dropping data");
return 0;
}
memcpy(sfd->pipe.send.data + sfd->pipe.send.used,
msg->data + sizeof(struct wmsg_basic),
transf_data_sz);
sfd->pipe.send.used = netsize;
// The pipe itself will be flushed/or closed later by
// flush_writable_pipes
sfd->pipe.writable = true;
return 0;
}
case WMSG_PIPE_SHUTDOWN_R: {
if ((ret = check_sfd_type(sfd, remote_id, type, FDC_PIPE)) <
0) {
return ret;
}
sfd->pipe.remote_can_write = false;
if (!sfd->pipe.can_read) {
wp_debug("Discarding read shutdown to pipe RID=%d, which cannot read",
remote_id);
return 0;
}
pipe_close_read(sfd);
return 0;
}
case WMSG_PIPE_SHUTDOWN_W: {
if ((ret = check_sfd_type(sfd, remote_id, type, FDC_PIPE)) <
0) {
return ret;
}
sfd->pipe.remote_can_read = false;
if (!sfd->pipe.can_write) {
wp_debug("Discarding write shutdown to pipe RID=%d, which cannot write",
remote_id);
return 0;
}
if (sfd->pipe.send.used <= 0) {
pipe_close_write(sfd);
} else {
/* Shutdown as soon as the current data has been written
*/
sfd->pipe.pending_w_shutdown = true;
}
return 0;
}
case WMSG_SEND_DMAVID_PACKET: {
if ((ret = check_sfd_type(sfd, remote_id, type,
FDC_DMAVID_IW)) < 0) {
return ret;
}
if (!sfd->dmabuf_bo) {
wp_error("Applying update to nonexistent dma buffer object rid=%d",
sfd->remote_id);
return 0;
}
struct bytebuf data = {
.data = msg->data + sizeof(struct wmsg_basic),
.size = msg->size - sizeof(struct wmsg_basic)};
apply_video_packet(sfd, render, &data);
return 0;
}
};
/* all returns should happen inside switch, so none here */
}
bool shadow_decref_protocol(struct shadow_fd *sfd)
{
sfd->refcount.protocol--;
return destroy_shadow_if_unreferenced(sfd);
}
bool shadow_decref_transfer(struct shadow_fd *sfd)
{
sfd->refcount.transfer--;
if (sfd->refcount.transfer == 0 && sfd->type == FDC_PIPE) {
/* fd_local has been transferred for the last time, so close
* it and make it match pipe.fd, just as on the side where
* the original pipe was introduced */
if (sfd->pipe.fd != sfd->fd_local) {
checked_close(sfd->fd_local);
sfd->fd_local = sfd->pipe.fd;
}
}
return destroy_shadow_if_unreferenced(sfd);
}
struct shadow_fd *shadow_incref_protocol(struct shadow_fd *sfd)
{
sfd->has_owner = true;
sfd->refcount.protocol++;
return sfd;
}
struct shadow_fd *shadow_incref_transfer(struct shadow_fd *sfd)
{
sfd->has_owner = true;
if (sfd->type == FDC_PIPE && sfd->refcount.transfer == 0) {
wp_error("The other pipe end may have been closed");
}
sfd->refcount.transfer++;
return sfd;
}
void decref_transferred_fds(struct fd_translation_map *map, int nfds, int fds[])
{
for (int i = 0; i < nfds; i++) {
struct shadow_fd *sfd = get_shadow_for_local_fd(map, fds[i]);
shadow_decref_transfer(sfd);
}
}
void decref_transferred_rids(
struct fd_translation_map *map, int nids, int ids[])
{
for (int i = 0; i < nids; i++) {
struct shadow_fd *sfd = get_shadow_for_rid(map, ids[i]);
shadow_decref_transfer(sfd);
}
}
int count_npipes(const struct fd_translation_map *map)
{
int np = 0;
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
if (cur->type == FDC_PIPE) {
np++;
}
}
return np;
}
int fill_with_pipes(const struct fd_translation_map *map, struct pollfd *pfds,
bool check_read)
{
int np = 0;
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
if (cur->type == FDC_PIPE && cur->pipe.fd != -1) {
pfds[np].fd = cur->pipe.fd;
pfds[np].events = 0;
if (check_read && cur->pipe.can_read) {
pfds[np].events |= POLLIN;
}
if (cur->pipe.send.used > 0) {
pfds[np].events |= POLLOUT;
}
np++;
}
}
return np;
}
static struct shadow_fd *get_shadow_for_pipe_fd(
struct fd_translation_map *map, int pipefd)
{
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
if (cur->type == FDC_PIPE && cur->pipe.fd == pipefd) {
return cur;
}
}
return NULL;
}
void mark_pipe_object_statuses(
struct fd_translation_map *map, int nfds, struct pollfd *pfds)
{
for (int i = 0; i < nfds; i++) {
int lfd = pfds[i].fd;
struct shadow_fd *sfd = get_shadow_for_pipe_fd(map, lfd);
if (!sfd) {
wp_error("Failed to find shadow struct for .pipe_fd=%d",
lfd);
continue;
}
if (pfds[i].revents & POLLIN || pfds[i].revents & POLLHUP) {
/* In */
sfd->pipe.readable = true;
}
if (pfds[i].revents & POLLOUT) {
sfd->pipe.writable = true;
}
if (pfds[i].revents & POLLERR) {
wp_debug("Pipe poll returned POLLERR for .pipe_fd=%d, closing",
lfd);
if (sfd->pipe.can_read) {
pipe_close_read(sfd);
}
if (sfd->pipe.can_write) {
pipe_close_write(sfd);
}
}
}
}
void flush_writable_pipes(struct fd_translation_map *map)
{
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *sfd = (struct shadow_fd *)lcur;
if (sfd->type != FDC_PIPE || !sfd->pipe.writable ||
sfd->pipe.send.used <= 0) {
continue;
}
sfd->pipe.writable = false;
wp_debug("Flushing %zd bytes into RID=%d", sfd->pipe.send.used,
sfd->remote_id);
ssize_t changed = write(sfd->pipe.fd, sfd->pipe.send.data,
(size_t)sfd->pipe.send.used);
if (changed == -1 &&
(errno == EAGAIN || errno == EWOULDBLOCK)) {
wp_debug("Writing to pipe RID=%d would block",
sfd->remote_id);
continue;
} else if (changed == -1 &&
(errno == EPIPE || errno == EBADF)) {
/* No process has access to the other end of the pipe,
* or the file descriptor is otherwise permanently
* unwriteable */
pipe_close_write(sfd);
} else if (changed == -1) {
wp_error("Failed to write into pipe with remote_id=%d: %s",
sfd->remote_id, strerror(errno));
} else {
wp_debug("Wrote %zd more bytes into pipe RID=%d",
changed, sfd->remote_id);
sfd->pipe.send.used -= (int)changed;
if (sfd->pipe.send.used > 0) {
memmove(sfd->pipe.send.data,
sfd->pipe.send.data + changed,
(size_t)sfd->pipe.send.used);
}
if (sfd->pipe.send.used <= 0 &&
sfd->pipe.pending_w_shutdown) {
/* A shutdown request was made, but can only be
* applied now that the write buffer has been
* cleared */
pipe_close_write(sfd);
sfd->pipe.pending_w_shutdown = false;
}
}
}
/* Destroy any new unreferenced objects */
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
destroy_shadow_if_unreferenced(cur);
}
}
void read_readable_pipes(struct fd_translation_map *map)
{
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *sfd = (struct shadow_fd *)lcur;
if (sfd->type != FDC_PIPE || !sfd->pipe.readable) {
continue;
}
if (sfd->pipe.recv.size == 0) {
sfd->pipe.recv.size = 32768;
sfd->pipe.recv.data =
malloc((size_t)sfd->pipe.recv.size);
}
if (sfd->pipe.recv.size > sfd->pipe.recv.used) {
sfd->pipe.readable = false;
ssize_t changed = read(sfd->pipe.fd,
sfd->pipe.recv.data +
sfd->pipe.recv.used,
(size_t)(sfd->pipe.recv.size -
sfd->pipe.recv.used));
if (changed == 0) {
/* No process has access to the other end of the
* pipe */
pipe_close_read(sfd);
} else if (changed == -1 &&
(errno == EAGAIN ||
errno == EWOULDBLOCK)) {
wp_debug("Reading from pipe RID=%d would block",
sfd->remote_id);
continue;
} else if (changed == -1) {
wp_error("Failed to read from pipe with remote_id=%d: %s",
sfd->remote_id,
strerror(errno));
} else {
wp_debug("Read %zd more bytes from pipe RID=%d",
changed, sfd->remote_id);
sfd->pipe.recv.used += (int)changed;
}
}
}
/* Destroy any new unreferenced objects */
for (struct shadow_fd_link *lcur = map->link.l_next,
*lnxt = lcur->l_next;
lcur != &map->link; lcur = lnxt, lnxt = lcur->l_next) {
struct shadow_fd *cur = (struct shadow_fd *)lcur;
destroy_shadow_if_unreferenced(cur);
}
}
void extend_shm_shadow(struct thread_pool *threads, struct shadow_fd *sfd,
size_t new_size)
{
if (sfd->buffer_size >= new_size) {
return;
}
// Verify that the file size actually increased
struct stat st;
int fs = fstat(sfd->fd_local, &st);
if (fs == -1) {
wp_error("Checking file size failed: %s", strerror(errno));
return;
}
if ((size_t)st.st_size < new_size) {
wp_error("Trying to resize file larger (%d) than the actual file size (%d), ignoring",
(int)new_size, (int)st.st_size);
return;
}
increase_buffer_sizes(sfd, threads, new_size);
// leave `sfd->remote_bufsize` unchanged, and mark dirty
sfd->is_dirty = true;
}
void run_task(struct task_data *task, struct thread_data *local)
{
if (task->type == TASK_COMPRESS_BLOCK) {
worker_run_compress_block(task, local);
} else if (task->type == TASK_COMPRESS_DIFF) {
worker_run_compress_diff(task, local);
} else {
wp_error("Unidentified task type");
}
}
int start_parallel_work(struct thread_pool *pool,
struct thread_msg_recv_buf *recv_queue)
{
pthread_mutex_lock(&pool->work_mutex);
if (recv_queue->zone_start != recv_queue->zone_end) {
wp_error("Some async messages not yet sent");
}
recv_queue->zone_start = 0;
recv_queue->zone_end = 0;
int num_mt_tasks = pool->stack_count;
if (buf_ensure_size(num_mt_tasks, sizeof(struct iovec),
&recv_queue->size,
(void **)&recv_queue->data) == -1) {
wp_error("Failed to provide enough space for receive queue, skipping all work tasks");
num_mt_tasks = 0;
}
pool->do_work = num_mt_tasks > 0;
/* Start the work tasks here */
if (num_mt_tasks > 0) {
pthread_cond_broadcast(&pool->work_cond);
}
pthread_mutex_unlock(&pool->work_mutex);
return num_mt_tasks;
}
bool request_work_task(
struct thread_pool *pool, struct task_data *task, bool *is_done)
{
pthread_mutex_lock(&pool->work_mutex);
*is_done = pool->stack_count == 0 && pool->tasks_in_progress == 0;
bool has_task = false;
if (pool->stack_count > 0 && pool->do_work) {
int i = pool->stack_count - 1;
if (pool->stack[i].type != TASK_STOP) {
*task = pool->stack[i];
has_task = true;
pool->stack_count--;
pool->tasks_in_progress++;
if (pool->stack_count <= 0) {
pool->do_work = false;
}
}
}
pthread_mutex_unlock(&pool->work_mutex);
return has_task;
}
static void *worker_thread_main(void *arg)
{
struct thread_data *data = arg;
struct thread_pool *pool = data->pool;
/* The loop is globally locked by default, and only unlocked in
* pthread_cond_wait. Yes, there are fancier and faster schemes.
*/
pthread_mutex_lock(&pool->work_mutex);
while (1) {
while (!pool->do_work) {
pthread_cond_wait(&pool->work_cond, &pool->work_mutex);
}
if (pool->stack_count <= 0) {
pool->do_work = false;
continue;
}
/* Copy task, since the queue may be resized */
int i = pool->stack_count - 1;
struct task_data task = pool->stack[i];
if (task.type == TASK_STOP) {
break;
}
pool->tasks_in_progress++;
pool->stack_count--;
if (pool->stack_count <= 0) {
pool->do_work = false;
}
pthread_mutex_unlock(&pool->work_mutex);
run_task(&task, data);
pthread_mutex_lock(&pool->work_mutex);
uint8_t triv = 0;
pool->tasks_in_progress--;
if (write(pool->selfpipe_w, &triv, 1) == -1) {
wp_error("Failed to write to self-pipe");
}
}
pthread_mutex_unlock(&pool->work_mutex);
return NULL;
}
|