1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2024 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package requestrules_test
import (
"encoding/json"
"errors"
"fmt"
"os"
"path/filepath"
"sort"
"strings"
"sync"
"syscall"
"testing"
"time"
"golang.org/x/sys/unix"
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/interfaces/prompting"
prompting_errors "github.com/snapcore/snapd/interfaces/prompting/errors"
"github.com/snapcore/snapd/interfaces/prompting/patterns"
"github.com/snapcore/snapd/interfaces/prompting/requestrules"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/testutil"
)
func Test(t *testing.T) { TestingT(t) }
type noticeInfo struct {
userID uint32
ruleID prompting.IDType
data map[string]string
}
func (ni *noticeInfo) String() string {
return fmt.Sprintf("{\n\tuserID: %x\n\truleID: %s\n\tdata: %#v\n}", ni.userID, ni.ruleID, ni.data)
}
type requestrulesSuite struct {
testutil.BaseTest
defaultNotifyRule func(userID uint32, ruleID prompting.IDType, data map[string]string) error
defaultUser uint32
ruleNotices []*noticeInfo
}
var _ = Suite(&requestrulesSuite{})
func (s *requestrulesSuite) SetUpTest(c *C) {
s.defaultUser = 1000
s.defaultNotifyRule = func(userID uint32, ruleID prompting.IDType, data map[string]string) error {
info := ¬iceInfo{
userID: userID,
ruleID: ruleID,
data: data,
}
s.ruleNotices = append(s.ruleNotices, info)
return nil
}
s.ruleNotices = make([]*noticeInfo, 0)
dirs.SetRootDir(c.MkDir())
s.AddCleanup(func() { dirs.SetRootDir("") })
c.Assert(os.MkdirAll(dirs.SnapdStateDir(dirs.GlobalRootDir), 0o755), IsNil)
}
func mustParsePathPattern(c *C, patternStr string) *patterns.PathPattern {
pattern, err := patterns.ParsePathPattern(patternStr)
c.Assert(err, IsNil)
return pattern
}
func (s *requestrulesSuite) TestNew(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
}
func (s *requestrulesSuite) TestNewErrors(c *C) {
// Create file at dirs.SnapInterfacesRequestsStateDir so that dir creation fails
stateDir := dirs.SnapInterfacesRequestsStateDir
f, err := os.Create(stateDir)
c.Assert(err, IsNil)
f.Close() // No need to keep the file open
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, ErrorMatches, "cannot create interfaces requests state directory.*") // Error from os.MkdirAll
c.Assert(rdb, IsNil)
// Remove the state dir file so we can continue
c.Assert(os.Remove(stateDir), IsNil)
// Create directory to conflict with max ID mmap
maxIDFilepath := filepath.Join(dirs.SnapInterfacesRequestsStateDir, "request-rule-max-id")
c.Assert(os.MkdirAll(maxIDFilepath, 0o700), IsNil)
rdb, err = requestrules.New(s.defaultNotifyRule)
c.Assert(err, ErrorMatches, "cannot open max ID file:.*")
c.Assert(rdb, IsNil)
// Remove the conflicting directory so we can continue
c.Assert(os.Remove(maxIDFilepath), IsNil)
}
// prepDBPath creates the the prompting state dir and returns the path of the
// rule DB.
func (s *requestrulesSuite) prepDBPath(c *C) string {
dbPath := filepath.Join(dirs.SnapInterfacesRequestsStateDir, "request-rules.json")
parent := filepath.Dir(dbPath)
c.Assert(os.MkdirAll(parent, 0o755), IsNil)
return dbPath
}
func (s *requestrulesSuite) testLoadError(c *C, expectedErr string, rules []*requestrules.Rule, checkWritten bool) {
logbuf, restore := logger.MockLogger()
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Check(err, IsNil)
c.Check(rdb, NotNil)
logErr := fmt.Errorf("%s", strings.TrimSpace(logbuf.String()))
c.Check(logErr, ErrorMatches, fmt.Sprintf(".*cannot load rule database: %s; using new empty rule database", expectedErr))
if checkWritten {
s.checkWrittenRuleDB(c, nil)
}
s.checkNewNoticesSimple(c, map[string]string{"removed": "dropped"}, rules...)
}
func (s *requestrulesSuite) checkWrittenRuleDB(c *C, expectedRules []*requestrules.Rule) {
dbPath := filepath.Join(dirs.SnapInterfacesRequestsStateDir, "request-rules.json")
if expectedRules == nil {
expectedRules = []*requestrules.Rule{}
}
wrapper := requestrules.RulesDBJSON{Rules: expectedRules}
marshalled, err := json.Marshal(wrapper)
c.Assert(err, IsNil)
writtenData, err := os.ReadFile(dbPath)
c.Check(err, IsNil)
c.Check(string(writtenData), Equals, string(marshalled))
}
func (s *requestrulesSuite) checkNewNoticesSimple(c *C, data map[string]string, rules ...*requestrules.Rule) {
expectedNotices := make([]*noticeInfo, len(rules))
for i, rule := range rules {
info := ¬iceInfo{
userID: rule.User,
ruleID: rule.ID,
data: data,
}
expectedNotices[i] = info
}
s.checkNewNotices(c, expectedNotices)
}
func (s *requestrulesSuite) checkNewNotices(c *C, expectedNotices []*noticeInfo) {
if len(expectedNotices) == 0 {
expectedNotices = []*noticeInfo{}
}
c.Check(s.ruleNotices, DeepEquals, expectedNotices, Commentf("\nReceived: %s\nExpected: %s", s.ruleNotices, expectedNotices))
s.ruleNotices = s.ruleNotices[:0]
}
func (s *requestrulesSuite) checkNewNoticesUnordered(c *C, expectedNotices []*noticeInfo) {
sort.Slice(sortSliceParams(s.ruleNotices))
sort.Slice(sortSliceParams(expectedNotices))
s.checkNewNotices(c, expectedNotices)
}
func sortSliceParams(list []*noticeInfo) ([]*noticeInfo, func(i, j int) bool) {
less := func(i, j int) bool {
return list[i].ruleID < list[j].ruleID
}
return list, less
}
func (s *requestrulesSuite) TestLoadErrorOpen(c *C) {
dbPath := s.prepDBPath(c)
// Create unreadable DB file to cause open failure
f, err := os.Create(dbPath)
c.Assert(err, IsNil)
c.Assert(f.Chmod(0o000), IsNil)
checkWritten := false
s.testLoadError(c, "cannot open rule database file:.*", nil, checkWritten)
}
func (s *requestrulesSuite) TestLoadErrorUnmarshal(c *C) {
dbPath := s.prepDBPath(c)
// Create malformed file in place of DB to cause unmarshal failure
c.Assert(os.WriteFile(dbPath, []byte("foo"), 0o700), IsNil)
checkWritten := true
s.testLoadError(c, "cannot read stored request rules:.*", nil, checkWritten)
}
func (s *requestrulesSuite) TestLoadErrorValidate(c *C) {
dbPath := s.prepDBPath(c)
good1 := s.ruleTemplateWithRead(c, prompting.IDType(1))
bad := s.ruleTemplateWithRead(c, prompting.IDType(2))
bad.Interface = "foo" // will cause validate() to fail with invalid constraints
good2 := s.ruleTemplateWithRead(c, prompting.IDType(3))
good2.Constraints.Permissions["read"].Outcome = prompting.OutcomeDeny
// Doesn't matter that rules have conflicting patterns/permissions,
// validate() should catch invalid rule and exit before attempting to add.
rules := []*requestrules.Rule{good1, bad, good2}
s.writeRules(c, dbPath, rules)
checkWritten := true
s.testLoadError(c, `internal error: invalid interface: "foo".*`, rules, checkWritten)
}
func (s *requestrulesSuite) ruleTemplateWithReadPathPattern(c *C, id prompting.IDType, pattern string) *requestrules.Rule {
rule := s.ruleTemplateWithRead(c, id)
rule.Constraints.PathPattern = mustParsePathPattern(c, pattern)
return rule
}
// ruleTemplateWithRead returns a rule with valid contents, intended to be customized.
func (s *requestrulesSuite) ruleTemplateWithRead(c *C, id prompting.IDType) *requestrules.Rule {
rule := s.ruleTemplate(c, id)
rule.Constraints.Permissions["read"] = &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
// No expiration for lifespan forever
}
return rule
}
// ruleTemplateWithPathPattern returns a rule with valid contents, intended to be customized.
func (s *requestrulesSuite) ruleTemplateWithPathPattern(c *C, id prompting.IDType, pattern string) *requestrules.Rule {
rule := s.ruleTemplate(c, id)
rule.Constraints.PathPattern = mustParsePathPattern(c, pattern)
return rule
}
// ruleTemplate returns a rule with valid contents, intended to be customized.
func (s *requestrulesSuite) ruleTemplate(c *C, id prompting.IDType) *requestrules.Rule {
constraints := prompting.RuleConstraints{
PathPattern: mustParsePathPattern(c, "/home/test/foo"),
Permissions: make(prompting.RulePermissionMap),
}
rule := requestrules.Rule{
ID: id,
Timestamp: time.Now(),
User: s.defaultUser,
Snap: "firefox",
Interface: "home",
Constraints: &constraints,
}
return &rule
}
func (s *requestrulesSuite) writeRules(c *C, dbPath string, rules []*requestrules.Rule) {
if rules == nil {
rules = []*requestrules.Rule{}
}
wrapper := requestrules.RulesDBJSON{Rules: rules}
marshalled, err := json.Marshal(wrapper)
c.Assert(err, IsNil)
c.Assert(os.WriteFile(dbPath, marshalled, 0o600), IsNil)
}
func (s *requestrulesSuite) TestLoadErrorConflictingID(c *C) {
dbPath := s.prepDBPath(c)
currTime := time.Now()
good := s.ruleTemplateWithRead(c, prompting.IDType(1))
// Expired rules should still get a {"removed": "expired"} notice, even if they don't conflict
expired := s.ruleTemplateWithPathPattern(c, prompting.IDType(2), "/home/test/other")
setPermissionsOutcomeLifespanExpirationSession(c, expired, []string{"read"}, prompting.OutcomeAllow, prompting.LifespanTimespan, currTime.Add(-10*time.Second), 0)
// Add rule which conflicts with IDs but doesn't otherwise conflict
conflicting := s.ruleTemplateWithRead(c, prompting.IDType(1))
conflicting.Constraints.PathPattern = mustParsePathPattern(c, "/home/test/another")
rules := []*requestrules.Rule{good, expired, conflicting}
s.writeRules(c, dbPath, rules)
checkWritten := true
s.testLoadError(c, fmt.Sprintf("cannot add rule: %v.*", prompting_errors.ErrRuleIDConflict), rules, checkWritten)
}
func setPermissionsOutcomeLifespanExpirationSession(c *C, rule *requestrules.Rule, permissions []string, outcome prompting.OutcomeType, lifespan prompting.LifespanType, expiration time.Time, userSessionID prompting.IDType) {
for _, perm := range permissions {
rule.Constraints.Permissions[perm] = &prompting.RulePermissionEntry{
Outcome: outcome,
Lifespan: lifespan,
Expiration: expiration,
SessionID: userSessionID,
}
}
}
func (s *requestrulesSuite) TestLoadErrorConflictingPattern(c *C) {
dbPath := s.prepDBPath(c)
currTime := time.Now()
good := s.ruleTemplateWithReadPathPattern(c, prompting.IDType(1), "/home/test/{foo,bar}")
// Expired rules should still get a {"removed": "expired"} notice, even if they don't conflict
expired := s.ruleTemplateWithRead(c, prompting.IDType(2))
expired.Constraints.PathPattern = mustParsePathPattern(c, "/home/test/other")
setPermissionsOutcomeLifespanExpirationSession(c, expired, []string{"read"}, prompting.OutcomeAllow, prompting.LifespanTimespan, currTime.Add(-10*time.Second), 0)
// Add rule with conflicting permissions but not conflicting ID.
conflicting := s.ruleTemplateWithReadPathPattern(c, prompting.IDType(3), "/home/test/{bar,foo}")
// Even with not all permissions being in conflict, still error
var timeZero time.Time
setPermissionsOutcomeLifespanExpirationSession(c, conflicting, []string{"read", "write"}, prompting.OutcomeDeny, prompting.LifespanForever, timeZero, 0)
rules := []*requestrules.Rule{good, expired, conflicting}
s.writeRules(c, dbPath, rules)
checkWritten := true
s.testLoadError(c, fmt.Sprintf("cannot add rule: %v.*", prompting_errors.ErrRuleConflict), rules, checkWritten)
}
func (s *requestrulesSuite) TestLoadExpiredRules(c *C) {
dbPath := s.prepDBPath(c)
currTime := time.Now()
var timeZero time.Time
good1 := s.ruleTemplateWithReadPathPattern(c, prompting.IDType(1), "/home/test/{foo,bar}")
// At the moment, expired rules with conflicts are discarded without error,
// but we don't want to test this as part of our contract
expired1 := s.ruleTemplateWithPathPattern(c, prompting.IDType(2), "/home/test/other")
setPermissionsOutcomeLifespanExpirationSession(c, expired1, []string{"read"}, prompting.OutcomeAllow, prompting.LifespanSession, timeZero, prompting.IDType(0x12345))
// Rules with overlapping pattern but non-conflicting permissions do not conflict
good2 := s.ruleTemplateWithPathPattern(c, prompting.IDType(3), "/home/test/{bar,foo}")
setPermissionsOutcomeLifespanExpirationSession(c, good2, []string{"write"}, prompting.OutcomeDeny, prompting.LifespanForever, timeZero, 0)
expired2 := s.ruleTemplateWithPathPattern(c, prompting.IDType(4), "/home/test/another")
setPermissionsOutcomeLifespanExpirationSession(c, expired2, []string{"read"}, prompting.OutcomeAllow, prompting.LifespanTimespan, currTime.Add(-time.Nanosecond), 0)
// Rules with different pattern and conflicting permissions do not conflict
good3 := s.ruleTemplateWithRead(c, prompting.IDType(5))
good3.Constraints.PathPattern = mustParsePathPattern(c, "/home/test/no-conflict")
rules := []*requestrules.Rule{good1, expired1, good2, expired2, good3}
s.writeRules(c, dbPath, rules)
logbuf, restore := logger.MockLogger()
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Check(err, IsNil)
c.Check(rdb, NotNil)
// Check that no error was logged
c.Check(logbuf.String(), HasLen, 0)
expectedWrittenRules := []*requestrules.Rule{good1, good2, good3}
s.checkWrittenRuleDB(c, expectedWrittenRules)
expectedNoticeInfo := []*noticeInfo{
{
userID: good1.User,
ruleID: good1.ID,
data: nil,
},
{
userID: expired1.User,
ruleID: expired1.ID,
data: map[string]string{"removed": "expired"},
},
{
userID: good2.User,
ruleID: good2.ID,
data: nil,
},
{
userID: expired2.User,
ruleID: expired2.ID,
data: map[string]string{"removed": "expired"},
},
{
userID: good3.User,
ruleID: good3.ID,
data: nil,
},
}
s.checkNewNotices(c, expectedNoticeInfo)
}
func (s *requestrulesSuite) TestLoadMergedRules(c *C) {
dbPath := s.prepDBPath(c)
good1 := s.ruleTemplateWithReadPathPattern(c, prompting.IDType(1), "/home/test/{foo,bar}")
identical1 := s.ruleTemplateWithReadPathPattern(c, prompting.IDType(2), "/home/test/{foo,bar}")
expected1 := good1
expected1.Timestamp = identical1.Timestamp // Timestamp should be the second timestamp
// Rules with identical pattern but non-overlapping permissions do not conflict
good2 := s.ruleTemplateWithPathPattern(c, prompting.IDType(3), "/home/test/something")
good2.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
}
nonOverlap2 := s.ruleTemplateWithPathPattern(c, prompting.IDType(4), "/home/test/something")
nonOverlap2.Constraints.Permissions = prompting.RulePermissionMap{
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Expiration: nonOverlap2.Timestamp.Add(10 * time.Second),
},
}
expected2 := s.ruleTemplateWithPathPattern(c, prompting.IDType(3), "/home/test/something")
expected2.Timestamp = nonOverlap2.Timestamp // Timestamp should be the second timestamp
expected2.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
// Expiration should be based on nonOverlap2 timestamp
Expiration: nonOverlap2.Timestamp.Add(10 * time.Second),
},
}
// Rules which overlap but don't conflict preserve longer lifespan
good3 := s.ruleTemplateWithPathPattern(c, prompting.IDType(5), "/home/test/another")
good3.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Expiration: good3.Timestamp.Add(10 * time.Second),
},
"execute": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Expiration: good3.Timestamp.Add(time.Second),
},
}
overlap3 := s.ruleTemplateWithPathPattern(c, prompting.IDType(6), "/home/test/another")
overlap3.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Expiration: overlap3.Timestamp.Add(10 * time.Second),
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
}
expected3 := s.ruleTemplateWithPathPattern(c, prompting.IDType(5), "/home/test/another")
expected3.Timestamp = overlap3.Timestamp // Timestamp should be the second timestamp
expected3.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
// Expiration should be based on good3 timestamp
Expiration: good3.Timestamp.Add(time.Second),
},
}
// Rules which overlap but don't conflict preserve longer lifespan, and
// will be merged into existing rule even if that rule is completely
// superseded.
good4 := s.ruleTemplateWithPathPattern(c, prompting.IDType(7), "/home/test/one/more")
good4.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Expiration: good4.Timestamp.Add(10 * time.Second),
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Expiration: good4.Timestamp.Add(10 * time.Second),
},
"execute": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Expiration: good4.Timestamp.Add(time.Nanosecond), // will expire
},
}
overlap4 := s.ruleTemplateWithPathPattern(c, prompting.IDType(8), "/home/test/one/more")
overlap4.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Expiration: overlap4.Timestamp.Add(20 * time.Second),
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
}
expected4 := s.ruleTemplateWithPathPattern(c, prompting.IDType(7), "/home/test/one/more")
expected4.Timestamp = overlap4.Timestamp // Timestamp should be the second timestamp
expected4.Constraints.Permissions = prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
// Expiration should be based on overlap4 timestamp
Expiration: overlap4.Timestamp.Add(20 * time.Second),
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
}
rules := []*requestrules.Rule{good1, identical1, good2, nonOverlap2, good3, overlap3, good4, overlap4}
s.writeRules(c, dbPath, rules)
logbuf, restore := logger.MockLogger()
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Check(err, IsNil)
c.Check(rdb, NotNil)
// Check that no error was logged
c.Check(logbuf.String(), HasLen, 0)
expectedWrittenRules := []*requestrules.Rule{expected1, expected2, expected3, expected4}
s.checkWrittenRuleDB(c, expectedWrittenRules)
expectedNoticeInfo := []*noticeInfo{
{
userID: good1.User,
ruleID: good1.ID,
data: nil,
},
{
userID: identical1.User,
ruleID: identical1.ID,
data: map[string]string{
"removed": "merged",
"merged-into": good1.ID.String(),
},
},
{
userID: good2.User,
ruleID: good2.ID,
data: nil,
},
{
userID: nonOverlap2.User,
ruleID: nonOverlap2.ID,
data: map[string]string{
"removed": "merged",
"merged-into": good2.ID.String(),
},
},
{
userID: good3.User,
ruleID: good3.ID,
data: nil,
},
{
userID: overlap3.User,
ruleID: overlap3.ID,
data: map[string]string{
"removed": "merged",
"merged-into": good3.ID.String(),
},
},
{
userID: good4.User,
ruleID: good4.ID,
data: nil,
},
{
userID: overlap4.User,
ruleID: overlap4.ID,
data: map[string]string{
"removed": "merged",
"merged-into": good4.ID.String(),
},
},
}
s.checkNewNotices(c, expectedNoticeInfo)
}
func (s *requestrulesSuite) TestLoadHappy(c *C) {
dbPath := s.prepDBPath(c)
good1 := s.ruleTemplateWithRead(c, prompting.IDType(1))
// Rules with different users don't conflict
good2 := s.ruleTemplateWithRead(c, prompting.IDType(2))
good2.User = s.defaultUser + 1
// Rules with different snaps don't conflict
good3 := s.ruleTemplateWithRead(c, prompting.IDType(3))
good3.Snap = "thunderbird"
rules := []*requestrules.Rule{good1, good2, good3}
s.writeRules(c, dbPath, rules)
logbuf, restore := logger.MockLogger()
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Check(err, IsNil)
c.Check(rdb, NotNil)
// Check that no error was logged
c.Check(logbuf.String(), HasLen, 0)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil, rules...)
}
func (s *requestrulesSuite) TestJoinInternalErrors(c *C) {
// Check that empty list or list of nil error(s) result in nil error.
for _, errs := range [][]error{
{},
{nil},
{nil, nil, nil},
} {
err := requestrules.JoinInternalErrors(errs)
c.Check(err, IsNil)
}
errFoo := errors.New("foo")
errBar := errors.New("bar")
errBaz := errors.New("baz")
// Check that a list containing non-nil errors results in a joined error
// which is prompting_errors.ErrRuleDBInconsistent
errs := []error{nil, errFoo, nil}
err := requestrules.JoinInternalErrors(errs)
c.Check(errors.Is(err, prompting_errors.ErrRuleDBInconsistent), Equals, true)
// XXX: check the following when we're on golang v1.20+
// c.Check(errors.Is(err, errFoo), Equals, true)
c.Check(errors.Is(err, errBar), Equals, false)
c.Check(err.Error(), Equals, fmt.Sprintf("%v\n%v", prompting_errors.ErrRuleDBInconsistent, errFoo))
errs = append(errs, errBar, errBaz)
err = requestrules.JoinInternalErrors(errs)
c.Check(errors.Is(err, prompting_errors.ErrRuleDBInconsistent), Equals, true)
// XXX: check the following when we're on golang v1.20+
// c.Check(errors.Is(err, errFoo), Equals, true)
// c.Check(errors.Is(err, errBar), Equals, true)
// c.Check(errors.Is(err, errBaz), Equals, true)
c.Check(err.Error(), Equals, fmt.Sprintf("%v\n%v\n%v\n%v", prompting_errors.ErrRuleDBInconsistent, errFoo, errBar, errBaz))
}
func (s *requestrulesSuite) TestClose(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Check(rdb.Close(), IsNil)
}
func (s *requestrulesSuite) TestCloseSaves(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
// Add a rule, then mutate it in memory, then check that it is saved to
// disk when DB is closed.
constraints := &prompting.Constraints{
PathPattern: mustParsePathPattern(c, "/home/test/foo"),
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
}
rule, err := rdb.AddRule(s.defaultUser, "firefox", "home", constraints)
c.Assert(err, IsNil)
// Check that new rule is on disk
s.checkWrittenRuleDB(c, []*requestrules.Rule{rule})
// Mutate rule in memory
rule.Constraints.Permissions["read"].Outcome = prompting.OutcomeDeny
// Close DB
c.Check(rdb.Close(), IsNil)
// Check that modified rule was written to disk
s.checkWrittenRuleDB(c, []*requestrules.Rule{rule})
}
func (s *requestrulesSuite) TestCloseRepeatedly(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Check(rdb.Close(), IsNil)
// Check that closing repeatedly results in ErrClosed
c.Check(rdb.Close(), Equals, prompting_errors.ErrRulesClosed)
c.Check(rdb.Close(), Equals, prompting_errors.ErrRulesClosed)
c.Check(rdb.Close(), Equals, prompting_errors.ErrRulesClosed)
}
func (s *requestrulesSuite) TestCloseErrors(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
// Mark state dir as non-writeable so save fails
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o500), IsNil)
defer os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o755)
c.Check(rdb.Close(), NotNil)
}
func (s *requestrulesSuite) TestUserSessionPath(c *C) {
for _, testCase := range []struct {
userID uint32
expected string
}{
{1000, "/run/user/1000"},
{0, "/run/user/0"},
{1, "/run/user/1"},
{65535, "/run/user/65535"},
{65536, "/run/user/65536"},
{4294967295, "/run/user/4294967295"},
} {
expectedWithTestPrefix := filepath.Join(dirs.GlobalRootDir, testCase.expected)
c.Check(requestrules.UserSessionPath(testCase.userID), Equals, expectedWithTestPrefix)
}
}
func (s *requestrulesSuite) TestReadOrAssignUserSessionID(c *C) {
userSessionIDXattr, restore := requestrules.MockUserSessionIDXattr()
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
// If there is no user session dir, expect errNoUserSession
noSessionID, err := rdb.ReadOrAssignUserSessionID(1000)
c.Assert(err, ErrorMatches, "cannot find systemd user session tmpfs for user: 1000")
c.Assert(noSessionID, Equals, prompting.IDType(0))
// Make user session dir, as if systemd had done so for this user
c.Assert(os.MkdirAll(filepath.Join(dirs.GlobalRootDir, "run/user/1000"), 0o700), IsNil)
// If there is a user session dir, expect some non-zero user ID
origID, err := rdb.ReadOrAssignUserSessionID(1000)
if errors.Is(err, syscall.EOPNOTSUPP) {
c.Skip("xttrs are not supported on this system")
}
c.Assert(err, IsNil)
c.Assert(origID, Not(Equals), prompting.IDType(0))
// If a user session ID is already present for this session, retrieve it
// rather than defining a new one
retrievedID, err := rdb.ReadOrAssignUserSessionID(1000)
c.Assert(err, IsNil)
c.Assert(retrievedID, Equals, origID)
// Try again, for good measure
retrievedID, err = rdb.ReadOrAssignUserSessionID(1000)
c.Assert(err, IsNil)
c.Assert(retrievedID, Equals, origID)
// If the user session restarts, the user session tmpfs is deleted and
// re-created, so the xattr is no longer present. So we set a new ID.
c.Assert(os.Remove(filepath.Join(dirs.GlobalRootDir, "run/user/1000")), IsNil)
c.Assert(os.MkdirAll(filepath.Join(dirs.GlobalRootDir, "run/user/1000"), 0o700), IsNil)
newID, err := rdb.ReadOrAssignUserSessionID(1000)
c.Assert(err, IsNil)
c.Assert(newID, Not(Equals), 0)
c.Assert(newID, Not(Equals), origID)
// If we try for a different user without a session, we get the error
noSessionID, err = rdb.ReadOrAssignUserSessionID(1234)
c.Assert(err, ErrorMatches, "cannot find systemd user session tmpfs for user: 1234")
c.Assert(noSessionID, Equals, prompting.IDType(0))
// Make user session dir, as if systemd had done so for this user
c.Assert(os.MkdirAll(filepath.Join(dirs.GlobalRootDir, "run/user/1234"), 0o700), IsNil)
// If there is a user session dir, expect some non-zero user ID different
// from that of the other user
secondUserID, err := rdb.ReadOrAssignUserSessionID(1234)
c.Assert(err, IsNil)
c.Assert(secondUserID, Not(Equals), prompting.IDType(0))
c.Assert(secondUserID, Not(Equals), newID)
// If we get the first user's session ID, it's still the same
firstUserID, err := rdb.ReadOrAssignUserSessionID(1000)
c.Assert(err, IsNil)
c.Assert(firstUserID, Not(Equals), prompting.IDType(0))
c.Assert(firstUserID, Not(Equals), secondUserID)
c.Assert(firstUserID, Equals, newID)
// If we remove the user session for the first user, we get the error again
c.Assert(os.Remove(filepath.Join(dirs.GlobalRootDir, "run/user/1000")), IsNil)
noSessionID, err = rdb.ReadOrAssignUserSessionID(1000)
c.Assert(err, ErrorMatches, "cannot find systemd user session tmpfs for user: 1000")
c.Assert(noSessionID, Equals, prompting.IDType(0))
// But we can still retrieve the session ID for the second user
retrievedID, err = rdb.ReadOrAssignUserSessionID(1234)
c.Assert(err, IsNil)
c.Assert(retrievedID, Not(Equals), prompting.IDType(0))
c.Assert(retrievedID, Equals, secondUserID)
// If the xattr is corrupted, we get a new ID
c.Assert(unix.Setxattr(filepath.Join(dirs.GlobalRootDir, "run/user/1234"), userSessionIDXattr, []byte("foo"), 0), IsNil)
regeneratedID, err := rdb.ReadOrAssignUserSessionID(1234)
c.Assert(err, IsNil)
c.Assert(regeneratedID, Not(Equals), prompting.IDType(0))
c.Assert(regeneratedID, Not(Equals), secondUserID)
}
func (s *requestrulesSuite) TestReadOrAssignUserSessionIDConcurrent(c *C) {
_, restore := requestrules.MockUserSessionIDXattr()
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
// Multiple threads acting at once all return the same ID
c.Assert(os.MkdirAll(filepath.Join(dirs.GlobalRootDir, "run/user/5000"), 0o700), IsNil)
startChan := make(chan struct{}) // close to broadcast to all threads
count := 10
var startWG sync.WaitGroup
startWG.Add(count)
resultChan := make(chan prompting.IDType, count)
errChan := make(chan error, count)
for i := 0; i < count; i++ {
go func() {
startWG.Done()
<-startChan // wait for broadcast
sessionID, err := rdb.ReadOrAssignUserSessionID(5000)
if err != nil {
errChan <- err
} else {
c.Assert(sessionID, Not(Equals), prompting.IDType(0))
resultChan <- sessionID
}
}()
}
startWG.Wait()
time.Sleep(10 * time.Millisecond) // wait until they're all waiting on startChan
// Start all goroutines simultaneously
close(startChan)
// Get session ID from first that sends one
var firstID prompting.IDType
select {
case firstID = <-resultChan:
c.Assert(firstID, NotNil)
c.Assert(firstID, Not(Equals), prompting.IDType(0))
case err := <-errChan:
if errors.Is(err, syscall.EOPNOTSUPP) {
c.Skip("xttrs are not supported on this system")
}
c.Assert(err, IsNil)
case <-time.NewTimer(time.Second).C:
c.Fatal("timed out waiting for first user ID")
}
// Check that each other goroutine retrieved the same session ID
for i := 1; i < count; i++ {
select {
case retrievedID := <-resultChan:
c.Assert(retrievedID, NotNil)
c.Assert(retrievedID, Not(Equals), prompting.IDType(0))
c.Assert(retrievedID, Equals, firstID)
case <-time.NewTimer(time.Second).C:
c.Fatalf("timed out waiting for %dth ID", i)
}
}
}
type addRuleContents struct {
User uint32
Snap string
Interface string
PathPattern string
Permissions []string
Outcome prompting.OutcomeType
Lifespan prompting.LifespanType
Duration string
}
func (s *requestrulesSuite) TestAddRuleHappy(c *C) {
currSession := prompting.IDType(0x12345)
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "lxd",
Interface: "home",
PathPattern: "/home/test/Pictures/**/*.{jpg,png,svg}",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
var addedRules []*requestrules.Rule
// Add one rule matching template, then rules with at least one differing
// field and check that all rules add without error.
for _, ruleContents := range []*addRuleContents{
{}, // use template
{User: s.defaultUser + 1},
{Snap: "thunderbird"},
// Can't change interface, as only "home" is supported for now (TODO: update)
{PathPattern: "/home/test/**/*.{jpg,png,svg}"}, // no /Pictures/
// Differing Outcome, Lifespan or Duration does not prevent conflict
{PathPattern: "/home/test/1", Outcome: prompting.OutcomeDeny},
{PathPattern: "/home/test/2", Lifespan: prompting.LifespanTimespan, Duration: "10s"},
{PathPattern: "/home/test/3", Lifespan: prompting.LifespanSession},
} {
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Add a rule identical to the template but with additional permissions,
// and see that it merges with the existing rule with the same path pattern.
contents := &addRuleContents{Permissions: []string{"read", "execute"}}
rule, err := addRuleFromTemplate(c, rdb, template, contents)
c.Check(err, IsNil)
c.Check(rule.ID, Equals, addedRules[0].ID)
// Prepare the list of current rules, which should contain the new rule and
// not the original rule with that ID. The order is based on the current
// implementation, is not part of the contract and is subject to change, but
// it makes testing easier.
expected := make([]*requestrules.Rule, 0, len(addedRules))
// Final rule was swapped to the start when the first was removed
expected = append(expected, addedRules[len(addedRules)-1])
// The rest of the rules between the first and the last were left unchanged
expected = append(expected, addedRules[1:len(addedRules)-1]...)
// The "new" rule with the same ID as the original rule was appended
expected = append(expected, rule)
s.checkWrittenRuleDB(c, expected)
// We get a notice because the original rule was "modified" when the new
// rule was merged into it (though no notice for its intermediate removal).
s.checkNewNoticesSimple(c, nil, rule)
}
// addRuleFromTemplate takes a template contents and a partial contents and,
// for every empty field in the partial contents, fills it with the details
// from the template contents, and then calls rdb.AddRule with the fields from
// the filled-in contents, and returns the results.
func addRuleFromTemplate(c *C, rdb *requestrules.RuleDB, template *addRuleContents, partial *addRuleContents) (*requestrules.Rule, error) {
if partial == nil {
partial = &addRuleContents{}
}
if partial.User == 0 {
partial.User = template.User
}
if partial.Snap == "" {
partial.Snap = template.Snap
}
if partial.Interface == "" {
partial.Interface = template.Interface
}
if partial.PathPattern == "" {
partial.PathPattern = template.PathPattern
}
if partial.Permissions == nil {
partial.Permissions = template.Permissions
}
if partial.Outcome == prompting.OutcomeUnset {
partial.Outcome = template.Outcome
}
if partial.Lifespan == prompting.LifespanUnset {
partial.Lifespan = template.Lifespan
}
// Duration default is empty string, so just use partial.Duration
replyConstraints := &prompting.ReplyConstraints{
PathPattern: mustParsePathPattern(c, partial.PathPattern),
Permissions: partial.Permissions,
}
constraints, err := replyConstraints.ToConstraints(partial.Interface, partial.Outcome, partial.Lifespan, partial.Duration)
if err != nil {
return nil, err
}
return rdb.AddRule(partial.User, partial.Snap, partial.Interface, constraints)
}
func (s *requestrulesSuite) TestAddRuleRemoveRuleDuplicateVariants(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
ruleContents := &addRuleContents{
User: s.defaultUser,
Snap: "nextcloud",
Interface: "home",
PathPattern: "/home/test/{{foo/{bar,baz},123},{123,foo{/bar,/baz}}}",
Permissions: []string{"read"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
// Test that rule with a pattern which renders into duplicate variants does
// not conflict with itself while adding
var addedRules []*requestrules.Rule
rule, err := addRuleFromTemplate(c, rdb, ruleContents, ruleContents)
c.Check(err, IsNil)
c.Check(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
// Test that the rule exists
found, err := rdb.RuleWithID(rule.User, rule.ID)
c.Assert(err, IsNil)
c.Check(found, DeepEquals, rule)
// Test that the rule's path pattern really renders to duplicate variants
variantList := make([]string, 0, found.Constraints.PathPattern.NumVariants())
variantSet := make(map[string]int, found.Constraints.PathPattern.NumVariants())
found.Constraints.PathPattern.RenderAllVariants(func(index int, variant patterns.PatternVariant) {
variantStr := variant.String()
variantList = append(variantList, variantStr)
variantSet[variantStr] += 1
})
c.Check(variantSet, Not(HasLen), len(variantList), Commentf("variant list: %q\nvariant set: %q", variantList, variantSet))
// Test that rule with a pattern which renders into duplicate variants does
// not cause an error while removing by trying to remove the same variant
// twice and finding it already removed the second time
removed, err := rdb.RemoveRule(rule.User, rule.ID)
c.Assert(err, IsNil)
c.Check(removed, DeepEquals, rule)
}
func (s *requestrulesSuite) TestAddRuleErrors(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "lxd",
Interface: "home",
PathPattern: "/home/test/Pictures/**/*.{jpg,png,svg}",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
// Add one good rule
good, err := addRuleFromTemplate(c, rdb, template, template)
c.Assert(err, IsNil)
c.Assert(good, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil, good)
// Preserve final error so it can be checked later
var finalErr error
for _, testCase := range []struct {
contents *addRuleContents
errStr string
}{
{ // Non-empty duration with lifespan Forever
&addRuleContents{Duration: "10m"},
"invalid duration: cannot have specified duration.*",
},
{ // Empty duration with lifespan Timespan
&addRuleContents{Lifespan: prompting.LifespanTimespan},
"invalid duration: cannot have unspecified duration.*",
},
{ // Invalid duration
&addRuleContents{Lifespan: prompting.LifespanTimespan, Duration: "invalid"},
"invalid duration: cannot parse duration:.*",
},
{ // Negative duration
&addRuleContents{Lifespan: prompting.LifespanTimespan, Duration: "-10s"},
"invalid duration: cannot have zero or negative duration:.*",
},
{ // Invalid lifespan "session" when no active user session
&addRuleContents{Lifespan: prompting.LifespanSession},
prompting_errors.ErrNewSessionRuleNoSession.Error(),
},
{ // Invalid lifespan
&addRuleContents{Lifespan: prompting.LifespanType("invalid")},
`invalid lifespan: "invalid"`,
},
{ // Invalid outcome
&addRuleContents{Outcome: prompting.OutcomeType("invalid")},
`invalid outcome: "invalid"`,
},
{ // Invalid lifespan (for rules)
&addRuleContents{Lifespan: prompting.LifespanSingle},
prompting_errors.NewRuleLifespanSingleError(prompting.SupportedRuleLifespans).Error(),
},
{ // Conflicting rule with overlapping pattern variants
&addRuleContents{
PathPattern: "/home/test/Pictures/**/*.{svg,jpg}",
Permissions: []string{"read", "write"},
Outcome: prompting.OutcomeDeny,
},
fmt.Sprintf("cannot add rule: %v", prompting_errors.ErrRuleConflict),
},
{ // Conflicting rule with identical path pattern
&addRuleContents{
Permissions: []string{"read", "write"},
Outcome: prompting.OutcomeDeny,
},
fmt.Sprintf("cannot add rule: %v", prompting_errors.ErrRuleConflict),
},
} {
result, err := addRuleFromTemplate(c, rdb, template, testCase.contents)
c.Check(err, ErrorMatches, testCase.errStr)
c.Check(result, IsNil)
// Check that rule DB was unchanged and no notices were recorded
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil)
finalErr = err
}
// Check that the conflicting rule error can be unwrapped as ErrRuleConflict
c.Check(errors.Is(finalErr, prompting_errors.ErrRuleConflict), Equals, true)
// Failure to save rule DB should roll-back adding the rule when it does not
// merge with an existing rule, and leave the DB unchanged.
// Set DB parent directory as read-only.
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o500), IsNil)
result, err := addRuleFromTemplate(c, rdb, template, &addRuleContents{PathPattern: "/other", Permissions: []string{"execute"}})
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o755), IsNil)
c.Check(err, NotNil)
c.Check(result, IsNil)
// Failure should result in no changes to rules, written or in-memory, and no notices
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, []*requestrules.Rule{good})
// Failure to save rule DB should roll-back adding the rule when it merges
// with an existing rule, re-add the original rule, and leave the DB
// unchanged.
// Set DB parent directory as read-only.
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o500), IsNil)
result, err = addRuleFromTemplate(c, rdb, template, &addRuleContents{Permissions: []string{"execute"}})
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o755), IsNil)
c.Check(err, NotNil)
c.Check(result, IsNil)
// Failure should result in no changes to rules, written or in-memory, and no notices
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, []*requestrules.Rule{good})
// Remove read-only so we can continue
// Adding rule after the rule DB has been closed should return an error
// immediately.
c.Assert(rdb.Close(), IsNil)
// Make sure the save triggered by Close() didn't mess up the written rules
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil)
result, err = addRuleFromTemplate(c, rdb, template, &addRuleContents{Permissions: []string{"execute"}})
c.Check(err, Equals, prompting_errors.ErrRulesClosed)
c.Check(result, IsNil)
// Failure should result in no changes to written rules and no notices
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestAddRuleOverlapping(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "lxd",
Interface: "home",
PathPattern: "/home/test/Pictures/**/*.png",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
var addedRules []*requestrules.Rule
// Add one rule matching template, then various overlapping rules, and
// check that all rules add without error.
for _, ruleContents := range []*addRuleContents{
{}, // use template
{PathPattern: "/home/test/Pictures/**/*.{jpg,png,svg}"},
{PathPattern: "/home/test/Pictures/**/*.{jp,pn,sv}g"},
{PathPattern: "/home/test/{Documents,Pictures}/**/*.{jpg,png,svg}", Permissions: []string{"read", "write", "execute"}},
} {
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Check(err, IsNil)
c.Check(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Add conflicting rule, and check that it conflicts with all the prior rules.
//
// Due to implementation details, its path pattern cannot be identical to
// any of the previous rules, else it will only conflict with that rule, as
// this is checked before checking other rules with different path patterns.
rule, err := addRuleFromTemplate(c, rdb, template, &addRuleContents{
PathPattern: "/home/test/{Pictures,Videos}/**/*.png",
Outcome: prompting.OutcomeDeny,
})
c.Check(err, NotNil)
c.Check(rule, IsNil)
var ruleConflictErr *prompting_errors.RuleConflictError
if !errors.As(err, &ruleConflictErr) {
c.Fatalf("cannot cast error as RuleConflictError: %v", err)
}
c.Check(ruleConflictErr.Conflicts, HasLen, len(addedRules))
outer:
for _, existing := range addedRules {
for _, conflict := range ruleConflictErr.Conflicts {
if conflict.ConflictingID == existing.ID.String() {
continue outer
}
}
c.Errorf("conflict error does not include existing rule: %+v", existing)
}
}
func (s *requestrulesSuite) TestAddRuleMerges(c *C) {
currSession := prompting.IDType(0x12345)
// Session will be found for all test cases, so rules with LifespanSession
// will never be expired. It would be nice to test expired "session" rules
// here too, but we can do this in other easier to implement tests.
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
for _, testCase := range []struct {
input []prompting.PermissionMap
output []prompting.PermissionMap
}{
{
input: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
{
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
},
},
output: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
},
},
},
{
input: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "1s",
},
},
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanSession,
},
},
},
output: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanSession,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "1s",
},
},
},
},
{
// First rule is entirely superseded by the latter, but still use
// the ID of the former in the merged rule.
input: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanSession,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "1ns", // Will expire and be dropped
},
},
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "20s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
},
output: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "20s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
},
},
{
// First rule is fully expired but would otherwise conflict with
// the second rule.
input: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "1ns", // Will expire and not conflict
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "1ns", // Will expire and not conflict
},
},
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
},
},
output: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
},
},
},
{
// First rule is partially expired but would otherwise conflict
// with the second rule.
input: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "1ns", // Will expire and not conflict
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
},
},
output: []prompting.PermissionMap{
{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
},
},
} {
// Set root so rule creation does not interfere between test cases
dirs.SetRootDir(c.MkDir())
s.AddCleanup(func() { dirs.SetRootDir("") })
c.Assert(os.MkdirAll(dirs.SnapdStateDir(dirs.GlobalRootDir), 0o755), IsNil)
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
user := s.defaultUser
snap := "firefox"
iface := "home"
pathPattern := mustParsePathPattern(c, "/path/to/foo/ba{r,z}/**")
// Add all the rules
for _, perms := range testCase.input {
constraints := &prompting.Constraints{
PathPattern: pathPattern,
Permissions: perms,
}
_, err = rdb.AddRule(user, snap, iface, constraints)
c.Assert(err, IsNil, Commentf("\ntestCase: %+v\nperms: %+v", testCase, perms))
}
rules := rdb.Rules(s.defaultUser)
c.Check(rules, HasLen, len(testCase.output), Commentf("\ntestCase: %+v\nrules: %+v", testCase, rules))
for i, perms := range testCase.output {
// Build RuleConstraints based on output perms using the timestamp
// of the corresponding rule.
rule := rules[i]
constraints := &prompting.Constraints{
PathPattern: pathPattern,
Permissions: perms,
}
at := prompting.At{
Time: rule.Timestamp,
SessionID: prompting.IDType(0x12345),
}
ruleConstraints, err := constraints.ToRuleConstraints(iface, at)
c.Assert(err, IsNil)
expectedPerms := ruleConstraints.Permissions
// Check that the permissions match what is expected.
// Other parameters should be trivially identical.
// Need to be careful because timestamps aren't "DeepEqual", so
// first set equivalent timestamps equal to each other.
for perm, entry := range rule.Constraints.Permissions {
expectedEntry, exists := expectedPerms[perm]
c.Assert(exists, Equals, true, Commentf("\ntestCase: %+v\nrules: %+v\npermission not found: %s", testCase, rules, perm))
c.Check(entry.Lifespan, Equals, expectedEntry.Lifespan, Commentf("\ntestCase: %+v\nrules: %+v\nlifespans not equal: %v != %v", testCase, rules, entry.Lifespan, expectedEntry.Lifespan))
// Expiration will be duration after the timestamp of one of
// the created rules, but it may not be the final one which was
// merged into the resulting rule, so we don't actually have an
// absolute timestamp with which we can compute an expiration
// using the duration. So subtract the timestamps and check
// that the difference is less than 100ms. We'll always have
// deltas of 1s for time differences we care about.
difference := entry.Expiration.Sub(expectedEntry.Expiration)
// TODO: call Abs() once we're on Go 1.19+
if difference < 0 {
difference *= -1
}
c.Check(difference < 100*time.Millisecond, Equals, true, Commentf("\ntestCase: %+v\nrules: %+v\nexpirations not within 100ms: %v != %v", testCase, rules, entry.Expiration, expectedEntry.Expiration))
expectedEntry.Expiration = entry.Expiration
}
c.Check(rule.Constraints.Permissions, DeepEquals, expectedPerms)
}
c.Assert(rdb.Close(), IsNil)
}
}
func (s *requestrulesSuite) TestAddRuleExpired(c *C) {
var currSession prompting.IDType
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "lxd",
Interface: "home",
PathPattern: "/home/test/**/{private,secret}/**",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
// Add unrelated rule which should stick around throughout the test.
good, err := addRuleFromTemplate(c, rdb, template, &addRuleContents{Snap: "gimp"})
c.Assert(err, IsNil)
c.Assert(good, NotNil)
// initialSessionAllow rule should still be on disk, along with new rule
s.checkWrittenRuleDB(c, []*requestrules.Rule{good})
s.checkNewNoticesSimple(c, nil, good)
// First add deny rule with lifespan "session"
currSession = prompting.IDType(0x12345)
initialSessionDeny, err := addRuleFromTemplate(c, rdb, template, &addRuleContents{
Outcome: prompting.OutcomeDeny,
// Make path pattern conflict but not be identical
PathPattern: "/home/test/**/{secret,private,foo}/**",
Lifespan: prompting.LifespanSession,
})
c.Assert(err, IsNil)
c.Assert(initialSessionDeny, NotNil)
// Rule should be on disk and have notice
s.checkWrittenRuleDB(c, []*requestrules.Rule{good, initialSessionDeny})
s.checkNewNoticesSimple(c, nil, initialSessionDeny)
// Next add conflicting allow rule with lifespan "session"
currSession = prompting.IDType(0xabcdef)
initialSessionAllow, err := addRuleFromTemplate(c, rdb, template, &addRuleContents{
Outcome: prompting.OutcomeAllow,
// Make path pattern conflict but not be identical
PathPattern: "/home/test/**/{secret,private,bar}/**",
Lifespan: prompting.LifespanSession,
})
c.Assert(err, IsNil)
c.Assert(initialSessionAllow, NotNil)
// Rule should be on disk and have notice, along with notice for expired rule
s.checkWrittenRuleDB(c, []*requestrules.Rule{good, initialSessionAllow})
expectedNoticeInfo := []*noticeInfo{
{
userID: initialSessionDeny.User,
ruleID: initialSessionDeny.ID,
data: map[string]string{"removed": "expired"},
},
{
userID: initialSessionAllow.User,
ruleID: initialSessionAllow.ID,
},
}
s.checkNewNotices(c, expectedNoticeInfo)
// Change user session to 0 (as if session ended) so future timespan rule
// will conflict and expire this rule.
currSession = prompting.IDType(0)
// Add initial LifespanTimespan rule which will conflict with
// initialSessionAllow and then expire quickly
prev, err := addRuleFromTemplate(c, rdb, template, &addRuleContents{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "1ms",
})
c.Assert(err, IsNil)
c.Assert(prev, NotNil)
time.Sleep(time.Millisecond)
// Both rules should be on disk and have notices
s.checkWrittenRuleDB(c, []*requestrules.Rule{good, prev})
expectedNoticeInfo = []*noticeInfo{
{
userID: initialSessionAllow.User,
ruleID: initialSessionAllow.ID,
data: map[string]string{"removed": "expired"},
},
{
userID: prev.User,
ruleID: prev.ID,
},
}
s.checkNewNotices(c, expectedNoticeInfo)
// Add rules which all conflict but each expire before the next is added,
// thus causing the prior one to be removed and not causing a conflict error.
for _, ruleContents := range []*addRuleContents{
{Outcome: prompting.OutcomeAllow, PathPattern: "/home/test/{**/secret,**/private}/**"},
{Outcome: prompting.OutcomeDeny, PathPattern: "/home/test/**/{sec,priv}{ret,ate}/**", Permissions: []string{"read", "write"}},
{Outcome: prompting.OutcomeAllow, Permissions: []string{"write", "execute"}},
{Outcome: prompting.OutcomeDeny, PathPattern: "/home/test/*{*/secret/*,*/private/*}*"},
} {
ruleContents.Lifespan = prompting.LifespanTimespan
ruleContents.Duration = "1ms"
newRule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Check(err, IsNil)
c.Assert(newRule, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{good, newRule})
expectedNoticeInfo := []*noticeInfo{
{
userID: prev.User,
ruleID: prev.ID,
data: map[string]string{"removed": "expired"},
},
{
userID: newRule.User,
ruleID: newRule.ID,
data: nil,
},
}
s.checkNewNotices(c, expectedNoticeInfo)
time.Sleep(time.Millisecond)
// Store newRule as prev for next iteration
prev = newRule
}
// Lastly, add a rule with a lifespan of forever which would also conflict
// if not for the previous rules having expired.
final, err := addRuleFromTemplate(c, rdb, template, template)
c.Assert(err, IsNil)
c.Assert(final, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{good, final})
expectedNoticeInfo = []*noticeInfo{
{
userID: prev.User,
ruleID: prev.ID,
data: map[string]string{"removed": "expired"},
},
{
userID: final.User,
ruleID: final.ID,
data: nil,
},
}
s.checkNewNotices(c, expectedNoticeInfo)
}
func (s *requestrulesSuite) TestAddRulePartiallyExpired(c *C) {
var currSession prompting.IDType
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
user := s.defaultUser
snap := "firefox"
iface := "home"
currSession = prompting.IDType(0x12345)
constraints1 := &prompting.Constraints{
PathPattern: mustParsePathPattern(c, "/path/to/{foo,bar}"),
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "1ns",
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanSession,
},
},
}
rule1, err := rdb.AddRule(user, snap, iface, constraints1)
c.Assert(err, IsNil)
c.Assert(rule1, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{rule1})
s.checkNewNoticesSimple(c, nil, rule1)
// Now that the rule has been added, change the user session ID so the
// execute permission is treated as expired
currSession = prompting.IDType(0xf00)
constraints2 := &prompting.Constraints{
PathPattern: mustParsePathPattern(c, "/path/to/{bar,baz}"), // overlap
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny, // conflicting
Lifespan: prompting.LifespanTimespan,
Duration: "1ns",
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
},
}
rule2, err := rdb.AddRule(user, snap, iface, constraints2)
c.Assert(err, IsNil)
c.Assert(rule2, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{rule1, rule2})
s.checkNewNoticesSimple(c, nil, rule2)
// Check that "read" and "execute" were removed from rule1
_, exists := rule1.Constraints.Permissions["read"]
c.Check(exists, Equals, false)
// Even though "execute" did not conflict, expired entries are removed from
// the variant entry's rule entries whenever a new entry is added to it.
_, exists = rule1.Constraints.Permissions["execute"]
c.Check(exists, Equals, false)
// Check that "write" was not removed from rule1
_, exists = rule1.Constraints.Permissions["write"]
c.Check(exists, Equals, true)
// Check that "read" was not removed from rule2 (even though it's since expired)
_, exists = rule2.Constraints.Permissions["read"]
c.Check(exists, Equals, true)
// Check that "execute" was not removed from rule2
_, exists = rule2.Constraints.Permissions["execute"]
c.Check(exists, Equals, true)
}
type isPathPermAllowedResult struct {
allowed bool
err error
}
func (s *requestrulesSuite) TestIsRequestAllowed(c *C) {
rdb, err := requestrules.New(nil)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
user := uint32(1234)
snap := "firefox"
iface := "powerful"
path := "/path/to/something"
for _, testCase := range []struct {
requestedPerms []string
permReturns map[string]isPathPermAllowedResult
allowedPerms []string
anyDenied bool
outstandingPerms []string
errStr string
}{
{
requestedPerms: []string{"foo", "bar", "baz"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {true, nil},
"bar": {true, nil},
"baz": {true, nil},
},
allowedPerms: []string{"foo", "bar", "baz"},
anyDenied: false,
outstandingPerms: []string{},
errStr: "",
},
{
requestedPerms: []string{"foo", "bar", "baz"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {true, prompting_errors.ErrNoMatchingRule},
"bar": {false, prompting_errors.ErrNoMatchingRule},
"baz": {true, prompting_errors.ErrNoMatchingRule},
},
allowedPerms: []string{},
anyDenied: false,
outstandingPerms: []string{"foo", "bar", "baz"},
errStr: "",
},
{
requestedPerms: []string{"foo", "bar", "baz"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {true, prompting_errors.ErrNoMatchingRule},
"bar": {true, nil},
"baz": {false, prompting_errors.ErrNoMatchingRule},
},
allowedPerms: []string{"bar"},
anyDenied: false,
outstandingPerms: []string{"foo", "baz"},
errStr: "",
},
{
requestedPerms: []string{"foo", "bar", "baz"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {false, nil},
"bar": {true, nil},
"baz": {false, prompting_errors.ErrNoMatchingRule},
},
allowedPerms: []string{"bar"},
anyDenied: true,
outstandingPerms: []string{"baz"},
errStr: "",
},
{
requestedPerms: []string{"foo", "bar"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {true, nil},
"bar": {true, nil},
"baz": {true, fmt.Errorf("baz")},
},
allowedPerms: []string{"foo", "bar"},
anyDenied: false,
outstandingPerms: []string{},
errStr: "",
},
{
requestedPerms: []string{"foo", "bar", "baz"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {true, fmt.Errorf("foo")},
"bar": {true, nil},
"baz": {true, nil},
},
allowedPerms: []string{"bar", "baz"},
anyDenied: false,
outstandingPerms: []string{},
errStr: "foo",
},
{
requestedPerms: []string{"foo", "bar", "baz", "qux", "fizz", "buzz"},
permReturns: map[string]isPathPermAllowedResult{
"foo": {true, fmt.Errorf("foo")},
"bar": {true, nil},
"baz": {true, prompting_errors.ErrNoMatchingRule},
"qux": {false, fmt.Errorf("qux")},
"fizz": {false, nil},
"buzz": {false, prompting_errors.ErrNoMatchingRule},
},
allowedPerms: []string{"bar"},
anyDenied: true,
outstandingPerms: []string{"baz", "buzz"},
errStr: "foo\nqux",
},
} {
before := time.Now()
restore := requestrules.MockIsPathPermAllowed(func(r *requestrules.RuleDB, u uint32, s string, i string, p string, perm string, at prompting.At) (bool, error) {
c.Assert(r, Equals, rdb)
c.Assert(u, Equals, user)
c.Assert(s, Equals, snap)
c.Assert(i, Equals, iface)
c.Assert(p, Equals, path)
c.Assert(at.Time.IsZero(), Equals, false)
c.Assert(at.Time.After(before), Equals, true)
c.Assert(at.Time.Before(time.Now()), Equals, true)
result := testCase.permReturns[perm]
return result.allowed, result.err
})
defer restore()
allowedPerms, anyDenied, outstandingPerms, err := rdb.IsRequestAllowed(user, snap, iface, path, testCase.requestedPerms)
c.Check(allowedPerms, DeepEquals, testCase.allowedPerms)
c.Check(anyDenied, Equals, testCase.anyDenied)
c.Check(outstandingPerms, DeepEquals, testCase.outstandingPerms)
if testCase.errStr == "" {
c.Check(err, IsNil)
} else {
c.Check(err, ErrorMatches, testCase.errStr)
}
}
}
func (s *requestrulesSuite) TestIsPathPermAllowedSimple(c *C) {
currSession := prompting.IDType(0x12345)
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
// Target
user := s.defaultUser
snap := "firefox"
iface := "home"
path := "/home/test/path/to/file.txt"
permission := "read"
template := &addRuleContents{
User: user,
Snap: snap,
Interface: iface,
PathPattern: path,
Permissions: []string{permission},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
}
for _, testCase := range []struct {
ruleContents *addRuleContents
allowed bool
err error
}{
{ // No rules
ruleContents: nil,
allowed: false,
err: prompting_errors.ErrNoMatchingRule,
},
{ // Matching allow rule
ruleContents: template,
allowed: true,
err: nil,
},
{ // Matching deny rule
ruleContents: &addRuleContents{Outcome: prompting.OutcomeDeny},
allowed: false,
err: nil,
},
{ // Matching allow rule with expiration
ruleContents: &addRuleContents{Lifespan: prompting.LifespanTimespan, Duration: "10s"},
allowed: true,
err: nil,
},
{ // Matching deny rule with expiration
ruleContents: &addRuleContents{Outcome: prompting.OutcomeDeny, Lifespan: prompting.LifespanTimespan, Duration: "24h"},
allowed: false,
err: nil,
},
{ // Matching allow session rule
ruleContents: &addRuleContents{Lifespan: prompting.LifespanSession},
allowed: true,
err: nil,
},
{ // Matching deny session rule
ruleContents: &addRuleContents{Outcome: prompting.OutcomeDeny, Lifespan: prompting.LifespanSession},
allowed: false,
err: nil,
},
{ // Rule with wrong user
ruleContents: &addRuleContents{User: s.defaultUser + 1},
allowed: false,
err: prompting_errors.ErrNoMatchingRule,
},
{ // Rule with wrong snap
ruleContents: &addRuleContents{Snap: "thunderbird"},
allowed: false,
err: prompting_errors.ErrNoMatchingRule,
},
{ // Rule with wrong pattern
ruleContents: &addRuleContents{PathPattern: "/home/test/path/to/other.txt"},
allowed: false,
err: prompting_errors.ErrNoMatchingRule,
},
{ // Rule with wrong permissions
ruleContents: &addRuleContents{Permissions: []string{"write"}},
allowed: false,
err: prompting_errors.ErrNoMatchingRule,
},
} {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
if testCase.ruleContents != nil {
rule, err := addRuleFromTemplate(c, rdb, template, testCase.ruleContents)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{rule})
s.checkNewNoticesSimple(c, nil, rule)
} else {
s.checkNewNoticesSimple(c, nil)
}
at := prompting.At{
Time: time.Now(),
SessionID: currSession,
}
allowed, err := rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, Equals, testCase.err)
c.Check(allowed, Equals, testCase.allowed)
// Check that no notices were recorded when checking
s.checkNewNoticesSimple(c, nil)
if testCase.ruleContents != nil {
// Clean up the rules DB so the next rdb has a clean slate
dbPath := filepath.Join(dirs.SnapInterfacesRequestsStateDir, "request-rules.json")
c.Assert(os.Remove(dbPath), IsNil)
}
}
}
func (s *requestrulesSuite) TestIsPathPermAllowedPrecedence(c *C) {
// Target
user := s.defaultUser
snap := "firefox"
iface := "home"
path := "/home/test/Documents/foo/bar/baz/file.txt"
permission := "read"
template := &addRuleContents{
User: user,
Snap: snap,
Interface: iface,
PathPattern: path,
Permissions: []string{permission},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
}
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
var addedRules []*requestrules.Rule
// Add these rules in order, where each has higher precedence than prior
// rules. After adding each, check whether file is allowed. Result should
// always match the most recent rule contents.
for i, ruleContents := range []*addRuleContents{
{PathPattern: "/home/test/**"},
{PathPattern: "/home/test/Doc*/**"},
{PathPattern: "/home/test/Documents/**"},
{PathPattern: "/home/test/Documents/foo/**"},
{PathPattern: "/home/test/Documents/foo/**/ba?/*.txt"},
{PathPattern: "/home/test/Documents/foo/**/ba?/file.txt"},
{PathPattern: "/home/test/Documents/foo/**/bar/**"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/**"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/*"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/*.txt"},
{PathPattern: "/home/test/Documents/foo/**/bar/{somewhere/else,baz}/file.txt"},
{PathPattern: "/home/test/Documents/foo/*/baz/file.{txt,md,pdf}"},
{PathPattern: "/home/test/{Documents,Pictures}/foo/bar/baz/file.{txt,md,pdf,png,jpg,svg}"},
} {
if i%2 == 0 {
ruleContents.Outcome = prompting.OutcomeAllow
} else {
ruleContents.Outcome = prompting.OutcomeDeny
}
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
mostRecentOutcome, err := ruleContents.Outcome.AsBool()
c.Check(err, IsNil)
// The point in time doesn't matter for this test
at := prompting.At{
Time: time.Now(),
SessionID: prompting.IDType(0x12345),
}
allowed, err := rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, IsNil)
c.Check(allowed, Equals, mostRecentOutcome, Commentf("most recent: %+v", ruleContents))
}
}
func (s *requestrulesSuite) TestIsPathPermAllowedExpiration(c *C) {
// Target
user := s.defaultUser
snap := "firefox"
iface := "home"
path := "/home/test/Documents/foo/bar/baz/file.txt"
permission := "read"
template := &addRuleContents{
User: user,
Snap: snap,
Interface: iface,
PathPattern: path,
Permissions: []string{permission},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanTimespan,
Duration: "1h",
}
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
var addedRules []*requestrules.Rule
// Add these rules, where each has higher precedence than prior rules.
// Then, from last to first, mark the rule as expired by setting the
// expiration timestamp to the past, and then test that the
// always match the most recent rule contents.
toAdd := []*addRuleContents{
{PathPattern: "/home/test/**"},
{PathPattern: "/home/test/Doc*/**"},
{PathPattern: "/home/test/Documents/**"},
{PathPattern: "/home/test/Documents/foo/**"},
{PathPattern: "/home/test/Documents/foo/**/ba?/*.txt"},
{PathPattern: "/home/test/Documents/foo/**/ba?/file.txt"},
{PathPattern: "/home/test/Documents/foo/**/bar/**"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/**"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/*"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/*.txt"},
{PathPattern: "/home/test/Documents/foo/**/bar/{somewhere/else,baz}/file.txt"},
{PathPattern: "/home/test/Documents/foo/*/baz/file.{txt,md,pdf}"},
{PathPattern: "/home/test/{Documents,Pictures}/foo/bar/baz/file.{txt,md,pdf,png,jpg,svg}"},
}
for i, ruleContents := range toAdd {
// Set duration to 1h for last rule, 2h for second to last rule, etc.
ruleContents.Duration = fmt.Sprintf("%dh", len(toAdd)-i)
if i%2 == 0 {
ruleContents.Outcome = prompting.OutcomeAllow
} else {
ruleContents.Outcome = prompting.OutcomeDeny
}
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
}
// The point in time is set after all rules have been added but before any
// have expired.
at := prompting.At{
Time: time.Now(),
SessionID: prompting.IDType(0x12345), // doesn't matter for this test
}
for i := len(addedRules) - 1; i >= 0; i-- {
rule := addedRules[i]
expectedOutcome, err := rule.Constraints.Permissions["read"].Outcome.AsBool()
c.Check(err, IsNil)
// Check that the outcome of the most specific unexpired rule has precedence
allowed, err := rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, IsNil)
c.Check(allowed, Equals, expectedOutcome, Commentf("last unexpired: %+v", rule))
// Check that no new notices are recorded from lookup or expiration
s.checkNewNoticesSimple(c, nil)
// Advance the point in time to cause highest precedence rule to expire.
at.Time = at.Time.Add(time.Hour)
}
}
func (s *requestrulesSuite) TestIsPathPermAllowedSession(c *C) {
var currSession prompting.IDType
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
// Target
user := s.defaultUser
snap := "firefox"
iface := "home"
path := "/home/test/Documents/foo/bar/baz/file.txt"
permission := "read"
template := &addRuleContents{
User: user,
Snap: snap,
Interface: iface,
PathPattern: path,
Permissions: []string{permission},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanSession,
Duration: "1h",
}
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
// Add all rules initially with session ID 0x12345
currSession = prompting.IDType(0x12345)
// Define another session ID which rules will change to later to emulate expiration
otherSession := prompting.IDType(0xabcd)
var addedRules []*requestrules.Rule
at := prompting.At{
Time: time.Now(), // doesn't matter for this test
SessionID: currSession,
}
// Add these rules, where each has higher precedence than prior rules.
// Then, from last to first, mark the rule as expired by setting the
// session ID to something else, and then test that they always match the
// most specific rule contents.
for i, ruleContents := range []*addRuleContents{
{PathPattern: "/home/test/**"},
{PathPattern: "/home/test/Doc*/**"},
{PathPattern: "/home/test/Documents/**"},
{PathPattern: "/home/test/Documents/foo/**"},
{PathPattern: "/home/test/Documents/foo/**/ba?/*.txt"},
{PathPattern: "/home/test/Documents/foo/**/ba?/file.txt"},
{PathPattern: "/home/test/Documents/foo/**/bar/**"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/**"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/*"},
{PathPattern: "/home/test/Documents/foo/**/bar/baz/*.txt"},
{PathPattern: "/home/test/Documents/foo/**/bar/{somewhere/else,baz}/file.txt"},
{PathPattern: "/home/test/Documents/foo/*/baz/file.{txt,md,pdf}"},
{PathPattern: "/home/test/{Documents,Pictures}/foo/bar/baz/file.{txt,md,pdf,png,jpg,svg}"},
} {
if i%2 == 0 {
ruleContents.Outcome = prompting.OutcomeAllow
} else {
ruleContents.Outcome = prompting.OutcomeDeny
}
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Rules were added from lowest to highest precedence, so iterate backwards
// to check that the last rule has precedence, then expire it, then check
// that the second to last rule has precedence, etc.
for i := len(addedRules) - 1; i >= 0; i-- {
rule := addedRules[i]
expectedOutcome, err := rule.Constraints.Permissions["read"].Outcome.AsBool()
c.Check(err, IsNil)
// Check that the outcome of the most specific unexpired rule has precedence
allowed, err := rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, IsNil)
c.Check(allowed, Equals, expectedOutcome, Commentf("last unexpired: %+v", rule))
// Check that no new notices are recorded from lookup or expiration
s.checkNewNoticesSimple(c, nil)
// Expire the highest precedence rule by changing its session to be
// different from the session at the current point in time
rule.Constraints.Permissions["read"].SessionID = otherSession
}
// Now that currSession is different from the session of any of the rules,
// there should be no matching rules.
allowed, err := rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, Equals, prompting_errors.ErrNoMatchingRule)
c.Check(allowed, Equals, false)
// Same if the user session ends (at.SessionID = 0)
at.SessionID = 0
allowed, err = rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, Equals, prompting_errors.ErrNoMatchingRule)
c.Check(allowed, Equals, false)
// But if the session matches that of the rules, they'll again match
at.SessionID = otherSession
_, err = rdb.IsPathPermAllowed(user, snap, iface, path, permission, at)
c.Check(err, IsNil)
}
func (s *requestrulesSuite) TestRuleWithID(c *C) {
rdb, _ := requestrules.New(s.defaultNotifyRule)
template := &addRuleContents{
User: s.defaultUser,
Snap: "lxd",
Interface: "home",
PathPattern: "/home/test/Documents/**",
Permissions: []string{"read", "write", "execute"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
}
rule, err := addRuleFromTemplate(c, rdb, template, template)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{rule})
s.checkNewNoticesSimple(c, nil, rule)
// Should find correct rule for user and ID
accessedRule, err := rdb.RuleWithID(s.defaultUser, rule.ID)
c.Check(err, IsNil)
c.Check(accessedRule, DeepEquals, rule)
// Should not find rule for correct user and incorrect ID
accessedRule, err = rdb.RuleWithID(s.defaultUser, prompting.IDType(1234567890))
c.Check(err, Equals, prompting_errors.ErrRuleNotFound)
c.Check(accessedRule, IsNil)
// Should not find rule for incorrect user and correct ID
accessedRule, err = rdb.RuleWithID(s.defaultUser+1, rule.ID)
c.Check(err, Equals, prompting_errors.ErrRuleNotAllowed)
c.Check(accessedRule, IsNil)
// Reading (or failing to read) a notice should not record a notice
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestRules(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
c.Check(rdb.Rules(s.defaultUser), HasLen, 0)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
// The final rule is for another user, and should be excluded
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
// Getting rules should cause no notices
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) prepRuleDBForRulesForSnapInterface(c *C, rdb *requestrules.RuleDB) []*requestrules.Rule {
template := &addRuleContents{
User: s.defaultUser,
Snap: "spotify",
Interface: "home",
PathPattern: "/home/test/Music/**/*.{flac,mp3,aac,m4a}",
Permissions: []string{"read"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
var addedRules []*requestrules.Rule
for _, ruleContents := range []*addRuleContents{
{},
{PathPattern: "/home/test/other", Permissions: []string{"write"}},
{Snap: "amberol"},
{Snap: "amberol", PathPattern: "/home/test/other", Permissions: []string{"write"}}, // change interface later
{User: s.defaultUser + 1},
} {
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Assert(err, IsNil)
c.Assert(rule, NotNil)
addedRules = append(addedRules, rule)
s.checkWrittenRuleDB(c, addedRules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Change interface of rules[3]
addedRules[3].Interface = "audio-playback"
return addedRules
}
func (s *requestrulesSuite) TestRulesExpired(c *C) {
currSession := prompting.IDType(0x12345)
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
c.Check(rdb.Rules(s.defaultUser), HasLen, 0)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
// Set some rules to be expired
// This is brittle, relies on details of the rules added by prepRuleDBForRulesForSnapInterface
rules[0].Constraints.Permissions["read"].Lifespan = prompting.LifespanTimespan
rules[0].Constraints.Permissions["read"].Expiration = time.Now()
rules[1].Constraints.Permissions["write"].Lifespan = prompting.LifespanSession
rules[1].Constraints.Permissions["write"].SessionID = currSession // not expired
rules[2].Constraints.Permissions["read"].Lifespan = prompting.LifespanSession
rules[2].Constraints.Permissions["read"].SessionID = currSession + 1 // expired
rules[4].Constraints.Permissions["read"].Lifespan = prompting.LifespanTimespan
rules[4].Constraints.Permissions["read"].Expiration = time.Now()
// Expired rules are excluded from the Rules*() functions
c.Check(rdb.Rules(s.defaultUser), DeepEquals, []*requestrules.Rule{rules[1], rules[3]})
// If we set the current session to 0, all LifespanSession rules should be
// treated as expired.
currSession = 0
c.Check(rdb.Rules(s.defaultUser), DeepEquals, []*requestrules.Rule{rules[3]})
// Getting rules should cause no notices
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestRulesForSnap(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
c.Check(rdb.Rules(s.defaultUser), HasLen, 0)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
c.Check(rdb.RulesForSnap(s.defaultUser, "amberol"), DeepEquals, rules[2:4])
// Getting rules should cause no notices
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestRulesForInterface(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
c.Check(rdb.Rules(s.defaultUser), HasLen, 0)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
c.Check(rdb.RulesForInterface(s.defaultUser, "home"), DeepEquals, rules[:3])
// Getting rules should cause no notices
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestRulesForSnapInterface(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
c.Check(rdb.Rules(s.defaultUser), HasLen, 0)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
c.Check(rdb.RulesForSnapInterface(s.defaultUser, "amberol", "audio-playback"), DeepEquals, []*requestrules.Rule{rules[3]})
// Getting rules should cause no notices
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestRemoveRuleForward(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
addedRules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
for _, rule := range addedRules {
s.testRemoveRule(c, rdb, rule)
}
}
func (s *requestrulesSuite) TestRemoveRuleBackward(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
addedRules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
for i := len(addedRules) - 1; i >= 0; i-- {
rule := addedRules[i]
s.testRemoveRule(c, rdb, rule)
}
}
func (s *requestrulesSuite) testRemoveRule(c *C, rdb *requestrules.RuleDB, rule *requestrules.Rule) {
// Pre-check that rule exists
found, err := rdb.RuleWithID(rule.User, rule.ID)
c.Check(err, IsNil)
c.Check(found, DeepEquals, rule)
// Remove the rule
removed, err := rdb.RemoveRule(rule.User, rule.ID)
c.Check(err, IsNil)
c.Check(removed, DeepEquals, rule)
// Notice should be recorded immediately
s.checkNewNoticesSimple(c, map[string]string{"removed": "removed"}, removed)
// Post-check that rule no longer exists
missing, err := rdb.RuleWithID(rule.User, rule.ID)
c.Check(err, Equals, prompting_errors.ErrRuleNotFound)
c.Check(missing, IsNil)
}
func (s *requestrulesSuite) TestRemoveRuleErrors(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
addedRules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
rule := addedRules[0]
// Attempt to remove rule with wrong user
result, err := rdb.RemoveRule(rule.User+1, rule.ID)
c.Check(err, Equals, prompting_errors.ErrRuleNotAllowed)
c.Check(result, IsNil)
// Attempt to remove rule with wrong ID
result, err = rdb.RemoveRule(rule.User, rule.ID+1234)
c.Check(err, Equals, prompting_errors.ErrRuleNotFound)
c.Check(result, IsNil)
// Failure to save rule DB should roll-back removal and leave DB unchanged.
// Set DB parent directory as read-only.
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o500), IsNil)
result, err = rdb.RemoveRule(rule.User, rule.ID)
c.Check(err, NotNil)
c.Check(result, IsNil)
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o755), IsNil)
// Check that rule remains and no notices have been recorded
accessed, err := rdb.RuleWithID(rule.User, rule.ID)
c.Check(err, IsNil)
c.Check(accessed, DeepEquals, rule)
s.checkNewNoticesSimple(c, nil)
// Corrupt rules to trigger internal errors, which aren't returned.
// Internal errors while removing are ignored and the rule is still removed.
// Cause "path pattern variant maps to different rule ID"
addedRules[1].Snap = addedRules[0].Snap
result, err = rdb.RemoveRule(addedRules[1].User, addedRules[1].ID)
c.Check(err, IsNil)
c.Check(result, DeepEquals, addedRules[1])
// Cause "variant not found in rule tree"
addedRules[2].Constraints.PathPattern = mustParsePathPattern(c, "/path/to/nowhere")
result, err = rdb.RemoveRule(addedRules[2].User, addedRules[2].ID)
c.Check(err, IsNil)
c.Check(result, DeepEquals, addedRules[2])
// Cause "no rules in rule tree for..."
addedRules[3].Snap = "invalid"
result, err = rdb.RemoveRule(addedRules[3].User, addedRules[3].ID)
c.Check(err, IsNil)
c.Check(result, DeepEquals, addedRules[3])
// Since removal succeeded for all corrupted rules (despite internal errors),
// should get "removed" notices for each removed rule.
s.checkNewNoticesSimple(c, map[string]string{"removed": "removed"}, addedRules[1:4]...)
// Removing a rule after the rule DB has been closed should return an error
// immediately.
c.Assert(rdb.Close(), IsNil)
result, err = rdb.RemoveRule(rule.User, rule.ID)
c.Check(err, NotNil)
c.Check(result, IsNil)
// Check that rule remains and no notices have been recorded.
// RuleWithID still works after the rule DB has been closed, so we can
// still check that the rule remains. XXX: don't rely on this.
accessed, err = rdb.RuleWithID(rule.User, rule.ID)
c.Check(err, IsNil)
c.Check(accessed, DeepEquals, rule)
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestRemoveRulesForSnap(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
removed, err := rdb.RemoveRulesForSnap(s.defaultUser, "amberol")
c.Check(err, IsNil)
c.Check(removed, DeepEquals, rules[2:4])
s.checkWrittenRuleDB(c, append(rules[:2], rules[4]))
s.checkNewNoticesSimple(c, map[string]string{"removed": "removed"}, removed...)
}
func (s *requestrulesSuite) TestRemoveRulesForInterface(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
removed, err := rdb.RemoveRulesForInterface(s.defaultUser, "home")
c.Check(err, IsNil)
c.Check(removed, DeepEquals, rules[:3])
s.checkWrittenRuleDB(c, []*requestrules.Rule{rules[4], rules[3]}) // removal reorders
s.checkNewNoticesSimple(c, map[string]string{"removed": "removed"}, removed...)
}
func (s *requestrulesSuite) TestRemoveRulesForSnapInterface(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
removed, err := rdb.RemoveRulesForSnapInterface(s.defaultUser, "amberol", "audio-playback")
c.Check(err, IsNil)
c.Check(removed, DeepEquals, []*requestrules.Rule{rules[3]})
s.checkWrittenRuleDB(c, append(rules[:3], rules[4]))
s.checkNewNoticesSimple(c, map[string]string{"removed": "removed"}, removed...)
}
func (s *requestrulesSuite) TestRemoveRulesForSnapInterfaceErrors(c *C) {
dbPath := filepath.Join(dirs.SnapInterfacesRequestsStateDir, "request-rules.json")
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
c.Assert(rdb, NotNil)
// Removing when no rules exist should not be an error
removed, err := rdb.RemoveRulesForSnap(s.defaultUser, "foo")
c.Check(err, IsNil)
c.Check(removed, HasLen, 0)
removed, err = rdb.RemoveRulesForInterface(s.defaultUser, "foo")
c.Check(err, IsNil)
c.Check(removed, HasLen, 0)
removed, err = rdb.RemoveRulesForSnapInterface(s.defaultUser, "foo", "bar")
c.Check(err, IsNil)
c.Check(removed, HasLen, 0)
// Add some rules with different snaps and interfaces
rules := s.prepRuleDBForRulesForSnapInterface(c, rdb)
c.Assert(rules, HasLen, 5)
// Removing when rules exist but none match should not be an error
removed, err = rdb.RemoveRulesForSnap(s.defaultUser, "foo")
c.Check(err, IsNil)
c.Check(removed, HasLen, 0)
removed, err = rdb.RemoveRulesForInterface(s.defaultUser, "foo")
c.Check(err, IsNil)
c.Check(removed, HasLen, 0)
removed, err = rdb.RemoveRulesForSnapInterface(s.defaultUser, "foo", "bar")
c.Check(err, IsNil)
c.Check(removed, HasLen, 0)
// Check that original rules are still on disk, and no notices were recorded.
// Be careful, since no write has occurred, the manually-edited rules[3]
// still has "home" interface on disk.
c.Assert(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
rules[3].Interface = "home"
s.checkWrittenRuleDB(c, rules)
rules[3].Interface = "audio-playback"
s.checkNewNoticesSimple(c, nil)
// Failure to save rule DB should roll-back removing the rules and leave the
// DB unchanged. Set DB parent directory as read-only.
func() {
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o500), IsNil)
defer os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o755)
removed, err := rdb.RemoveRulesForSnap(s.defaultUser, "amberol")
c.Check(err, ErrorMatches, ".*permission denied")
c.Check(removed, IsNil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
removed, err = rdb.RemoveRulesForInterface(s.defaultUser, "audio-playback")
c.Check(err, ErrorMatches, ".*permission denied")
c.Check(removed, IsNil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
removed, err = rdb.RemoveRulesForSnapInterface(s.defaultUser, "amberol", "audio-playback")
c.Check(err, ErrorMatches, ".*permission denied")
c.Check(removed, IsNil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
// Check that original rules are still on disk, and no notices were recorded.
// Be careful, since no write has occurred, the manually-edited rules[3]
// still has "home" interface on disk.
rules[3].Interface = "home"
defer func() { rules[3].Interface = "audio-playback" }()
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
}()
// Removing rules after the DB has been closed should return an error
// immediately.
c.Assert(rdb.Close(), IsNil)
c.Assert(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
// For some reason, Close() calling save() causes the rules to be reordered
// on disk, but not in memory. Preserve current written DB so we can check
// that it hasn't changed after trying to remove rules.
currentWrittenData, err := os.ReadFile(dbPath)
c.Assert(err, IsNil)
removed, err = rdb.RemoveRulesForSnap(s.defaultUser, "amberol")
c.Check(err, Equals, prompting_errors.ErrRulesClosed)
c.Check(removed, IsNil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
removed, err = rdb.RemoveRulesForInterface(s.defaultUser, "audio-playback")
c.Check(err, Equals, prompting_errors.ErrRulesClosed)
c.Check(removed, IsNil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
removed, err = rdb.RemoveRulesForSnapInterface(s.defaultUser, "amberol", "audio-playback")
c.Check(err, Equals, prompting_errors.ErrRulesClosed)
c.Check(removed, IsNil)
c.Check(rdb.Rules(s.defaultUser), DeepEquals, rules[:4])
// Check that the data on disk has not changed
finalWrittenData, err := os.ReadFile(dbPath)
c.Assert(err, IsNil)
c.Assert(string(finalWrittenData), Equals, string(currentWrittenData))
// Check that no notices have been recorded
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestPatchRule(c *C) {
currSession := prompting.IDType(0x12345)
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "thunderbird",
Interface: "home",
PathPattern: "/home/test/{Downloads,Documents}/**/*.{ical,mail,txt,gpg}",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
var rules []*requestrules.Rule
for _, ruleContents := range []*addRuleContents{
{PathPattern: "/home/test/foo"},
{Permissions: []string{"read"}},
} {
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Check(err, IsNil)
c.Check(rule, NotNil)
rules = append(rules, rule)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Patch last rule in various ways, then patch it back to its original state
rule := rules[len(rules)-1]
origRule := *rule
// Check that patching with no changes works fine, and updates timestamp
patched, err := rdb.PatchRule(rule.User, rule.ID, nil)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, append(rules[:len(rules)-1], patched))
s.checkNewNoticesSimple(c, nil, rule)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp the same again, check that the rules are identical
patched.Timestamp = rule.Timestamp
c.Check(patched, DeepEquals, rule)
rule = patched
// Check that patching with identical content works fine, and updates timestamp
constraintsPatch := &prompting.RuleConstraintsPatch{
PathPattern: rule.Constraints.PathPattern,
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: rule.Constraints.Permissions["read"].Outcome,
Lifespan: rule.Constraints.Permissions["read"].Lifespan,
},
},
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, append(rules[:len(rules)-1], patched))
s.checkNewNoticesSimple(c, nil, rule)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp the same again, check that the rules are identical
patched.Timestamp = origRule.Timestamp
c.Check(patched, DeepEquals, &origRule)
rule = patched
constraintsPatch = &prompting.RuleConstraintsPatch{
Permissions: prompting.PermissionMap{
"execute": &prompting.PermissionEntry{
Outcome: rule.Constraints.Permissions["read"].Outcome,
Lifespan: rule.Constraints.Permissions["read"].Lifespan,
},
},
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, append(rules[:len(rules)-1], patched))
s.checkNewNoticesSimple(c, nil, rule)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp the same again, check that the rules are identical
patched.Timestamp = rule.Timestamp
rule.Constraints = &prompting.RuleConstraints{
PathPattern: patched.Constraints.PathPattern,
Permissions: prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: patched.Constraints.Permissions["read"].Outcome,
Lifespan: patched.Constraints.Permissions["read"].Lifespan,
},
"execute": &prompting.RulePermissionEntry{
Outcome: patched.Constraints.Permissions["read"].Outcome,
Lifespan: patched.Constraints.Permissions["read"].Lifespan,
},
},
}
c.Check(patched, DeepEquals, rule)
rule = patched
constraintsPatch = &prompting.RuleConstraintsPatch{
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
},
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, append(rules[:len(rules)-1], patched))
s.checkNewNoticesSimple(c, nil, rule)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp the same again, check that the rules are identical
patched.Timestamp = rule.Timestamp
rule.Constraints.Permissions["read"].Outcome = prompting.OutcomeDeny
rule.Constraints.Permissions["execute"].Outcome = prompting.OutcomeDeny
c.Check(patched, DeepEquals, rule)
rule = patched
constraintsPatch = &prompting.RuleConstraintsPatch{
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanTimespan,
Duration: "10s",
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanSession,
},
},
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, append(rules[:len(rules)-1], patched))
s.checkNewNoticesSimple(c, nil, rule)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp the same again, check that the rules are identical
patched.Timestamp = rule.Timestamp
rule.Constraints.Permissions["read"].Lifespan = prompting.LifespanTimespan
rule.Constraints.Permissions["read"].Expiration = patched.Constraints.Permissions["read"].Expiration
rule.Constraints.Permissions["execute"].Lifespan = prompting.LifespanSession
rule.Constraints.Permissions["execute"].SessionID = currSession
c.Check(patched, DeepEquals, rule)
rule = patched
constraintsPatch = &prompting.RuleConstraintsPatch{
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: origRule.Constraints.Permissions["read"].Outcome,
Lifespan: origRule.Constraints.Permissions["read"].Lifespan,
},
"execute": nil,
},
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, append(rules[:len(rules)-1], patched))
s.checkNewNoticesSimple(c, nil, rule)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp the same again, check that the rules are identical
patched.Timestamp = origRule.Timestamp
c.Check(patched, DeepEquals, &origRule)
rule = patched
// Patch rule so it has the same path pattern as an existing rule, and check
// that this results in the rules being merged
constraintsPatch = &prompting.RuleConstraintsPatch{
PathPattern: mustParsePathPattern(c, "/home/test/foo"),
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
// Check that rule inherited the ID of the rule with which it was merged
c.Check(patched.ID, Equals, rules[0].ID)
// Check that the ID of the patched rule changed, rather than that of the
// rule into which it was merged.
c.Check(patched.ID, Not(Equals), rule.ID)
s.checkWrittenRuleDB(c, []*requestrules.Rule{patched})
s.checkNewNoticesSimple(c, nil, patched)
}
func (s *requestrulesSuite) TestPatchRuleErrors(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "thunderbird",
Interface: "home",
PathPattern: "/home/test/{Downloads,Documents}/**/*.{ical,mail,txt,gpg}",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
var rules []*requestrules.Rule
for _, ruleContents := range []*addRuleContents{
{PathPattern: "/home/test/foo"},
{Permissions: []string{"read"}},
} {
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Check(err, IsNil)
c.Check(rule, NotNil)
rules = append(rules, rule)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Patch last rule in various ways, then patch it back to its original state
rule := rules[len(rules)-1]
// Wrong user
result, err := rdb.PatchRule(rule.User+1, rule.ID, nil)
c.Check(err, Equals, prompting_errors.ErrRuleNotAllowed)
c.Check(result, IsNil)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
// Wrong ID
result, err = rdb.PatchRule(rule.User, prompting.IDType(1234), nil)
c.Check(err, Equals, prompting_errors.ErrRuleNotFound)
c.Check(result, IsNil)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
// Invalid lifespan
badPatch := &prompting.RuleConstraintsPatch{
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanSingle,
},
},
}
result, err = rdb.PatchRule(rule.User, rule.ID, badPatch)
c.Check(err, ErrorMatches, prompting_errors.NewRuleLifespanSingleError(prompting.SupportedRuleLifespans).Error())
c.Check(result, IsNil)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
// Conflicting with other rule
conflictingPatch := &prompting.RuleConstraintsPatch{
PathPattern: mustParsePathPattern(c, "/home/test/{foo,{Downloads,Documents}/**/*.{ical,mail,txt,gpg}}"),
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
},
}
result, err = rdb.PatchRule(rule.User, rule.ID, conflictingPatch)
c.Check(err, ErrorMatches, fmt.Sprintf("cannot patch rule: %v", prompting_errors.ErrRuleConflict))
c.Check(result, IsNil)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
// Save fails
func() {
c.Assert(os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o500), IsNil)
defer os.Chmod(dirs.SnapInterfacesRequestsStateDir, 0o755)
result, err = rdb.PatchRule(rule.User, rule.ID, nil)
c.Check(err, NotNil)
c.Check(result, IsNil)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
}()
// DB Closed
c.Assert(rdb.Close(), IsNil)
result, err = rdb.PatchRule(rule.User, rule.ID, nil)
c.Check(err, Equals, prompting_errors.ErrRulesClosed)
c.Check(result, IsNil)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil)
}
func (s *requestrulesSuite) TestPatchRuleExpired(c *C) {
currSession := prompting.IDType(0x12345)
restore := requestrules.MockReadOrAssignUserSessionID(func(rdb *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
return currSession, nil
})
defer restore()
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
template := &addRuleContents{
User: s.defaultUser,
Snap: "thunderbird",
Interface: "home",
Permissions: []string{"write"},
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
Duration: "",
}
var rules []*requestrules.Rule
for _, ruleContents := range []*addRuleContents{
{PathPattern: "/foo", Lifespan: prompting.LifespanTimespan, Duration: "1ms"},
{PathPattern: "/bar", Lifespan: prompting.LifespanSession, Permissions: []string{"read"}},
{PathPattern: "/baz", Permissions: []string{"execute"}},
} {
rule, err := addRuleFromTemplate(c, rdb, template, ruleContents)
c.Check(err, IsNil)
c.Check(rule, NotNil)
rules = append(rules, rule)
s.checkWrittenRuleDB(c, rules)
s.checkNewNoticesSimple(c, nil, rule)
}
// Expire first two rules by advancing time and changing current session ID
time.Sleep(time.Millisecond)
currSession += 1
// Patching doesn't conflict with already-expired rules
rule := rules[2]
constraintsPatch := &prompting.RuleConstraintsPatch{
PathPattern: mustParsePathPattern(c, "/{foo,bar}"),
Permissions: prompting.PermissionMap{
"read": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanSession,
},
"write": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
},
}
patched, err := rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{patched})
expectedNotices := []*noticeInfo{
{
userID: rules[0].User,
ruleID: rules[0].ID,
data: map[string]string{"removed": "expired"},
},
{
userID: rules[1].User,
ruleID: rules[1].ID,
data: map[string]string{"removed": "expired"},
},
{
userID: rules[2].User,
ruleID: rules[2].ID,
data: nil,
},
}
s.checkNewNoticesUnordered(c, expectedNotices)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// After making timestamp and constraints the same again, check that the rules are identical
patched.Timestamp = rule.Timestamp
rule.Constraints = &prompting.RuleConstraints{
PathPattern: mustParsePathPattern(c, "/{foo,bar}"),
Permissions: prompting.RulePermissionMap{
"read": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanSession,
SessionID: currSession,
},
"write": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
"execute": &prompting.RulePermissionEntry{
Outcome: prompting.OutcomeDeny,
Lifespan: prompting.LifespanForever,
},
},
}
c.Check(patched, DeepEquals, rule)
// If the user session ends, any entries with LifespanSession expire
currSession = 0
constraintsPatch = &prompting.RuleConstraintsPatch{
Permissions: prompting.PermissionMap{
"execute": &prompting.PermissionEntry{
Outcome: prompting.OutcomeAllow,
Lifespan: prompting.LifespanForever,
},
},
}
patched, err = rdb.PatchRule(rule.User, rule.ID, constraintsPatch)
c.Assert(err, IsNil)
s.checkWrittenRuleDB(c, []*requestrules.Rule{patched})
s.checkNewNoticesSimple(c, nil, patched)
// Check that timestamp has changed
c.Check(patched.Timestamp.Equal(rule.Timestamp), Equals, false)
// Update the timestamp and check that the patched rule no longer has the
// permission entry for "read", which was LifespanSession for expired session
patched.Timestamp = rule.Timestamp
rule.Constraints.Permissions["execute"].Outcome = prompting.OutcomeAllow
delete(rule.Constraints.Permissions, "read")
c.Check(patched, DeepEquals, rule)
}
func (s *requestrulesSuite) TestUserSessionIDCache(c *C) {
rdb, err := requestrules.New(s.defaultNotifyRule)
c.Assert(err, IsNil)
checkedDiskForUser := make(map[uint32]int)
restore := requestrules.MockReadOrAssignUserSessionID(func(ruleDB *requestrules.RuleDB, user uint32) (prompting.IDType, error) {
c.Assert(ruleDB, Equals, rdb)
checkedDiskForUser[user] += 1
switch user {
case 1000:
return prompting.IDType(0x12345), nil
case 1234:
return prompting.IDType(0xabcd), nil
case 11235:
// Pretend there's no user session for this user
return prompting.IDType(0), fmt.Errorf("foo: %w", requestrules.ErrNoUserSession)
case 5000:
// Pretend there's some other error
return prompting.IDType(0), errors.New("foo")
}
c.Fatalf("unexpected user: %d", user)
return 0, fmt.Errorf("unexpected user: %d", user)
})
defer restore()
cache := make(requestrules.UserSessionIDCache)
// Get the same user multiple times
for i := 0; i < 5; i++ {
result, err := cache.GetUserSessionID(rdb, 1000)
c.Assert(err, IsNil)
c.Assert(result, Equals, prompting.IDType(0x12345))
}
// Check that readOrAssignUserSessionID was only called once
count, ok := checkedDiskForUser[1000]
c.Assert(count, Equals, 1)
c.Assert(ok, Equals, true)
// Get some other user several times
for i := 0; i < 5; i++ {
result, err := cache.GetUserSessionID(rdb, 1234)
c.Assert(err, IsNil)
c.Assert(result, Equals, prompting.IDType(0xabcd))
}
// Check that readOrAssignUserSessionID was only called once
count, ok = checkedDiskForUser[1234]
c.Assert(count, Equals, 1)
c.Assert(ok, Equals, true)
// Get a user which has no session
for i := 0; i < 5; i++ {
result, err := cache.GetUserSessionID(rdb, 11235)
// Error should be nil even though there was no session
c.Assert(err, IsNil)
c.Assert(result, Equals, prompting.IDType(0))
}
// Check that readOrAssignUserSessionID was only called once
count, ok = checkedDiskForUser[11235]
c.Assert(count, Equals, 1)
c.Assert(ok, Equals, true)
// Get a user which causes error
for i := 0; i < 5; i++ {
result, err := cache.GetUserSessionID(rdb, 5000)
c.Assert(err, ErrorMatches, "foo")
c.Assert(result, Equals, prompting.IDType(0))
}
// With other error, readOrAssignUserSessionID should be called every time
count, ok = checkedDiskForUser[5000]
c.Assert(count, Equals, 5)
c.Assert(ok, Equals, true)
// Get a previous user again, it should again reuse the cache
result, err := cache.GetUserSessionID(rdb, 1000)
c.Assert(err, IsNil)
c.Assert(result, Equals, prompting.IDType(0x12345))
// Check that readOrAssignUserSessionID was only called once
count, ok = checkedDiskForUser[1000]
c.Assert(count, Equals, 1)
c.Assert(ok, Equals, true)
}
|