File size: 111,310 Bytes
8c763fb | 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Management.Automation.Host;
using System.Management.Automation.Internal;
using System.Management.Automation.Remoting;
using System.Management.Automation.Remoting.Server;
using System.Management.Automation.Runspaces;
using System.Management.Automation.Security;
#if !UNIX
using System.Security.Principal;
#endif
using System.Threading;
using Dbg = System.Management.Automation.Diagnostics;
namespace System.Management.Automation
{
/// <summary>
/// Interface exposing driver single thread invoke enter/exit
/// nested pipeline.
/// </summary>
#nullable enable
internal interface IRSPDriverInvoke
{
void EnterNestedPipeline();
void ExitNestedPipeline();
bool HandleStopSignal();
}
#nullable restore
/// <summary>
/// This class wraps a RunspacePoolInternal object. It is used to function
/// as a server side runspacepool.
/// </summary>
internal class ServerRunspacePoolDriver : IRSPDriverInvoke
{
#region Private Members
// local runspace pool at the server
// Optional initial location of the PowerShell session
private readonly string _initialLocation;
// Script to run after a RunspacePool/Runspace is created in this session.
private readonly ConfigurationDataFromXML _configData;
// application private data to send back to the client in when we get into "opened" state
private PSPrimitiveDictionary _applicationPrivateData;
// the client runspacepool's guid that is
// associated with this runspace pool driver
// data structure handler object to handle all communications
// with the client
// powershell's associated with this runspace pool
private readonly Dictionary<Guid, ServerPowerShellDriver> _associatedShells
= new Dictionary<Guid, ServerPowerShellDriver>();
// remote host associated with this runspacepool
private readonly ServerDriverRemoteHost _remoteHost;
private bool _isClosed;
// server capability reported to the client during negotiation (not the actual capability)
private readonly RemoteSessionCapability _serverCapability;
private Runspace _rsToUseForSteppablePipeline;
// steppable pipeline event subscribers exist per-session
private readonly ServerSteppablePipelineSubscriber _eventSubscriber = new ServerSteppablePipelineSubscriber();
private PSDataCollection<object> _inputCollection; // PowerShell driver input collection
// Object to invoke nested PowerShell drivers on single pipeline worker thread.
private readonly PowerShellDriverInvoker _driverNestedInvoker;
// Remote wrapper for script debugger.
private ServerRemoteDebugger _serverRemoteDebugger;
// Version of PowerShell client.
private readonly Version _clientPSVersion;
// Optional endpoint configuration name.
// Used in OutOfProc scenarios that do not support PSSession endpoint configuration.
// Results in a configured remote runspace pushed onto driver host.
private readonly string _configurationName;
/// <summary>
/// Event that get raised when the RunspacePool is closed.
/// </summary>
internal EventHandler<EventArgs> Closed;
#endregion Private Members
#region Constructors
/// <summary>
/// Initializes a new instance of the runspace pool driver.
/// </summary>
/// <param name="clientRunspacePoolId">Client runspace pool id to associate.</param>
/// <param name="transportManager">Transport manager associated with this
/// runspace pool driver.</param>
/// <param name="maxRunspaces">Maximum runspaces to open.</param>
/// <param name="minRunspaces">Minimum runspaces to open.</param>
/// <param name="threadOptions">Threading options for the runspaces in the pool.</param>
/// <param name="apartmentState">Apartment state for the runspaces in the pool.</param>
/// <param name="hostInfo">Host information about client side host.</param>
/// <param name="configData">Contains:
/// 1. Script to run after a RunspacePool/Runspace is created in this session.
/// For RunspacePool case, every newly created Runspace (in the pool) will run
/// this script.
/// 2. ThreadOptions for RunspacePool/Runspace
/// 3. ThreadApartment for RunspacePool/Runspace
/// </param>
/// <param name="initialSessionState">Configuration of the runspace.</param>
/// <param name="applicationPrivateData">Application private data.</param>
/// <param name="isAdministrator">True if the driver is being created by an administrator.</param>
/// <param name="serverCapability">Server capability reported to the client during negotiation (not the actual capability).</param>
/// <param name="psClientVersion">Client PowerShell version.</param>
/// <param name="configurationName">Optional endpoint configuration name to create a pushed configured runspace.</param>
/// <param name="initialLocation">Optional initial location of the powershell.</param>
internal ServerRunspacePoolDriver(
Guid clientRunspacePoolId,
int minRunspaces,
int maxRunspaces,
PSThreadOptions threadOptions,
ApartmentState apartmentState,
HostInfo hostInfo,
InitialSessionState initialSessionState,
PSPrimitiveDictionary applicationPrivateData,
ConfigurationDataFromXML configData,
AbstractServerSessionTransportManager transportManager,
bool isAdministrator,
RemoteSessionCapability serverCapability,
Version psClientVersion,
string configurationName,
string initialLocation)
{
Dbg.Assert(configData != null, "ConfigurationData cannot be null");
_serverCapability = serverCapability;
_clientPSVersion = psClientVersion;
_configurationName = configurationName;
_initialLocation = initialLocation;
// Create a new server host and associate for host call
// integration
_remoteHost = new ServerDriverRemoteHost(
clientRunspacePoolId, Guid.Empty, hostInfo, transportManager, null);
_configData = configData;
_applicationPrivateData = applicationPrivateData;
RunspacePool = RunspaceFactory.CreateRunspacePool(
minRunspaces, maxRunspaces, initialSessionState, _remoteHost);
// Set ThreadOptions for this RunspacePool
// The default server settings is to make new commands execute in the calling thread...this saves
// thread switching time and thread pool pressure on the service.
// Users can override the server settings only if they are administrators
PSThreadOptions serverThreadOptions = configData.ShellThreadOptions ?? PSThreadOptions.UseCurrentThread;
if (threadOptions == PSThreadOptions.Default || threadOptions == serverThreadOptions)
{
RunspacePool.ThreadOptions = serverThreadOptions;
}
else
{
if (!isAdministrator)
{
throw new InvalidOperationException(PSRemotingErrorInvariants.FormatResourceString(RemotingErrorIdStrings.MustBeAdminToOverrideThreadOptions));
}
RunspacePool.ThreadOptions = threadOptions;
}
// Set Thread ApartmentState for this RunspacePool
ApartmentState serverApartmentState = configData.ShellThreadApartmentState ?? Runspace.DefaultApartmentState;
if (apartmentState == ApartmentState.Unknown || apartmentState == serverApartmentState)
{
RunspacePool.ApartmentState = serverApartmentState;
}
else
{
RunspacePool.ApartmentState = apartmentState;
}
// If we have a runspace pool with a single runspace then we can run nested pipelines on
// on it in a single pipeline invoke thread.
if (maxRunspaces == 1 &&
(RunspacePool.ThreadOptions == PSThreadOptions.Default ||
RunspacePool.ThreadOptions == PSThreadOptions.UseCurrentThread))
{
_driverNestedInvoker = new PowerShellDriverInvoker();
}
InstanceId = clientRunspacePoolId;
DataStructureHandler = new ServerRunspacePoolDataStructureHandler(this, transportManager);
// handle the StateChanged event of the runspace pool
RunspacePool.StateChanged += HandleRunspacePoolStateChanged;
// listen for events on the runspace pool
RunspacePool.ForwardEvent += HandleRunspacePoolForwardEvent;
RunspacePool.RunspaceCreated += HandleRunspaceCreated;
// register for all the events from the data structure handler
DataStructureHandler.CreateAndInvokePowerShell += HandleCreateAndInvokePowerShell;
DataStructureHandler.GetCommandMetadata += HandleGetCommandMetadata;
DataStructureHandler.HostResponseReceived += HandleHostResponseReceived;
DataStructureHandler.SetMaxRunspacesReceived += HandleSetMaxRunspacesReceived;
DataStructureHandler.SetMinRunspacesReceived += HandleSetMinRunspacesReceived;
DataStructureHandler.GetAvailableRunspacesReceived += HandleGetAvailableRunspacesReceived;
DataStructureHandler.ResetRunspaceState += HandleResetRunspaceState;
}
#endregion Constructors
#region Internal Methods
/// <summary>
/// Data structure handler for communicating with client.
/// </summary>
internal ServerRunspacePoolDataStructureHandler DataStructureHandler { get; }
/// <summary>
/// The server host associated with the runspace pool.
/// </summary>
internal ServerRemoteHost ServerRemoteHost
{
get { return _remoteHost; }
}
/// <summary>
/// The client runspacepool id.
/// </summary>
internal Guid InstanceId { get; }
/// <summary>
/// The local runspace pool associated with
/// this driver.
/// </summary>
internal RunspacePool RunspacePool { get; private set; }
/// <summary>
/// Start the RunspacePoolDriver. This will open the
/// underlying RunspacePool.
/// </summary>
internal void Start()
{
// open the runspace pool
RunspacePool.Open();
}
/// <summary>
/// Send application private data to client
/// will be called during runspace creation
/// and each time a new client connects to the server session.
/// </summary>
internal void SendApplicationPrivateDataToClient()
{
// Include Debug mode information.
_applicationPrivateData ??= new PSPrimitiveDictionary();
if (_serverRemoteDebugger != null)
{
// Current debug mode.
DebugModes debugMode = _serverRemoteDebugger.DebugMode;
if (_applicationPrivateData.ContainsKey(RemoteDebugger.DebugModeSetting))
{
_applicationPrivateData[RemoteDebugger.DebugModeSetting] = (int)debugMode;
}
else
{
_applicationPrivateData.Add(RemoteDebugger.DebugModeSetting, (int)debugMode);
}
// Current debug state.
bool inBreakpoint = _serverRemoteDebugger.InBreakpoint;
if (_applicationPrivateData.ContainsKey(RemoteDebugger.DebugStopState))
{
_applicationPrivateData[RemoteDebugger.DebugStopState] = inBreakpoint;
}
else
{
_applicationPrivateData.Add(RemoteDebugger.DebugStopState, inBreakpoint);
}
// Current debug breakpoint count.
int breakpointCount = _serverRemoteDebugger.GetBreakpointCount();
if (_applicationPrivateData.ContainsKey(RemoteDebugger.DebugBreakpointCount))
{
_applicationPrivateData[RemoteDebugger.DebugBreakpointCount] = breakpointCount;
}
else
{
_applicationPrivateData.Add(RemoteDebugger.DebugBreakpointCount, breakpointCount);
}
// Current debugger BreakAll option setting.
bool breakAll = _serverRemoteDebugger.IsDebuggerSteppingEnabled;
if (_applicationPrivateData.ContainsKey(RemoteDebugger.BreakAllSetting))
{
_applicationPrivateData[RemoteDebugger.BreakAllSetting] = breakAll;
}
else
{
_applicationPrivateData.Add(RemoteDebugger.BreakAllSetting, breakAll);
}
// Current debugger PreserveUnhandledBreakpoints setting.
UnhandledBreakpointProcessingMode bpMode = _serverRemoteDebugger.UnhandledBreakpointMode;
if (_applicationPrivateData.ContainsKey(RemoteDebugger.UnhandledBreakpointModeSetting))
{
_applicationPrivateData[RemoteDebugger.UnhandledBreakpointModeSetting] = (int)bpMode;
}
else
{
_applicationPrivateData.Add(RemoteDebugger.UnhandledBreakpointModeSetting, (int)bpMode);
}
}
DataStructureHandler.SendApplicationPrivateDataToClient(_applicationPrivateData, _serverCapability);
}
/// <summary>
/// Dispose the runspace pool driver and release all its resources.
/// </summary>
internal void Close()
{
if (!_isClosed)
{
_isClosed = true;
if ((_remoteHost != null) && (_remoteHost.IsRunspacePushed))
{
Runspace runspaceToDispose = _remoteHost.PushedRunspace;
_remoteHost.PopRunspace();
runspaceToDispose?.Dispose();
}
DisposeRemoteDebugger();
RunspacePool.Close();
RunspacePool.StateChanged -= HandleRunspacePoolStateChanged;
RunspacePool.ForwardEvent -= HandleRunspacePoolForwardEvent;
RunspacePool.Dispose();
RunspacePool = null;
if (_rsToUseForSteppablePipeline != null)
{
_rsToUseForSteppablePipeline.Close();
_rsToUseForSteppablePipeline.Dispose();
_rsToUseForSteppablePipeline = null;
}
Closed.SafeInvoke(this, EventArgs.Empty);
}
}
#endregion Internal Methods
#region IRSPDriverInvoke interface methods
/// <summary>
/// This method blocks the current thread execution and starts a
/// new Invoker pump that will handle invoking client side nested commands.
/// This method returns after ExitNestedPipeline is called.
/// </summary>
public void EnterNestedPipeline()
{
if (_driverNestedInvoker == null)
{
throw new PSNotSupportedException(RemotingErrorIdStrings.NestedPipelineNotSupported);
}
_driverNestedInvoker.PushInvoker();
}
/// <summary>
/// Removes current nested command Invoker pump and allows parent command
/// to continue running.
/// </summary>
public void ExitNestedPipeline()
{
if (_driverNestedInvoker == null)
{
throw new PSNotSupportedException(RemotingErrorIdStrings.NestedPipelineNotSupported);
}
_driverNestedInvoker.PopInvoker();
}
/// <summary>
/// If script execution is currently in debugger stopped mode, this will
/// release the debugger and terminate script execution, or if processing
/// a debug command will stop the debug command.
/// This is used to implement the remote stop signal and ensures a command
/// will stop even when in debug stop mode.
/// </summary>
public bool HandleStopSignal()
{
if (_serverRemoteDebugger != null)
{
return _serverRemoteDebugger.HandleStopSignal();
}
return false;
}
#endregion
#region Private Methods
/// <summary>
/// RunspaceCreated eventhandler. This is used to set TypeTable for TransportManager.
/// TransportManager needs TypeTable for Serializing/Deserializing objects.
/// </summary>
/// <param name="sender"></param>
/// <param name="args"></param>
private void HandleRunspaceCreatedForTypeTable(object sender, RunspaceCreatedEventArgs args)
{
DataStructureHandler.TypeTable = args.Runspace.ExecutionContext.TypeTable;
_rsToUseForSteppablePipeline = args.Runspace;
SetupRemoteDebugger(_rsToUseForSteppablePipeline);
if (!string.IsNullOrEmpty(_configurationName))
{
// Client is requesting a configured session.
// Create a configured remote runspace and push onto host stack.
if ((_remoteHost != null) && !(_remoteHost.IsRunspacePushed))
{
// Let exceptions propagate.
RemoteRunspace remoteRunspace = HostUtilities.CreateConfiguredRunspace(_configurationName, _remoteHost);
_remoteHost.PropagatePop = true;
_remoteHost.PushRunspace(remoteRunspace);
}
}
}
private void SetupRemoteDebugger(Runspace runspace)
{
CmdletInfo cmdletInfo = runspace.ExecutionContext.SessionState.InvokeCommand.GetCmdlet(ServerRemoteDebugger.SetPSBreakCommandText);
if (cmdletInfo == null)
{
if ((runspace.ExecutionContext.LanguageMode != PSLanguageMode.FullLanguage) &&
(!runspace.ExecutionContext.UseFullLanguageModeInDebugger))
{
return;
}
}
else
{
if (cmdletInfo.Visibility != SessionStateEntryVisibility.Public)
{
return;
}
}
// Remote debugger is created only when client version is PSVersion (4.0)
// or greater, and remote session supports debugging.
if ((_driverNestedInvoker != null) &&
(_clientPSVersion != null && _clientPSVersion.Major >= 4) &&
(runspace != null && runspace.Debugger != null))
{
_serverRemoteDebugger = new ServerRemoteDebugger(this, runspace, runspace.Debugger);
_remoteHost.ServerDebugger = _serverRemoteDebugger;
}
}
private void DisposeRemoteDebugger() => _serverRemoteDebugger?.Dispose();
/// <summary>
/// Invokes a script.
/// </summary>
/// <param name="cmdToRun"></param>
/// <param name="args"></param>
/// <returns></returns>
private PSDataCollection<PSObject> InvokeScript(Command cmdToRun, RunspaceCreatedEventArgs args)
{
Debug.Assert(cmdToRun != null, "cmdToRun shouldn't be null");
// Don't invoke initialization script as trusted (CommandOrigin == Internal) if the system is in lock down mode.
cmdToRun.CommandOrigin = (SystemPolicy.GetSystemLockdownPolicy() == SystemEnforcementMode.Enforce) ? CommandOrigin.Runspace : CommandOrigin.Internal;
cmdToRun.MergeMyResults(PipelineResultTypes.Error, PipelineResultTypes.Output);
PowerShell powershell = PowerShell.Create();
powershell.AddCommand(cmdToRun).AddCommand("out-default");
return InvokePowerShell(powershell, args);
}
/// <summary>
/// Invokes a PowerShell instance.
/// </summary>
/// <param name="powershell"></param>
/// <param name="args"></param>
/// <returns></returns>
private PSDataCollection<PSObject> InvokePowerShell(PowerShell powershell, RunspaceCreatedEventArgs args)
{
Debug.Assert(powershell != null, "powershell shouldn't be null");
// run the startup script on the runspace's host
HostInfo hostInfo = _remoteHost.HostInfo;
ServerPowerShellDriver driver = new ServerPowerShellDriver(
powershell,
null,
true,
Guid.Empty,
this.InstanceId,
this,
args.Runspace.ApartmentState,
hostInfo,
RemoteStreamOptions.AddInvocationInfo,
false,
args.Runspace);
IAsyncResult asyncResult = driver.Start();
// if there was an exception running the script..this may throw..this will
// result in the runspace getting closed/broken.
PSDataCollection<PSObject> results = powershell.EndInvoke(asyncResult);
// find out if there are any error records reported. If there is one, report the error..
// this will result in the runspace getting closed/broken.
ArrayList errorList = (ArrayList)powershell.Runspace.GetExecutionContext.DollarErrorVariable;
if (errorList.Count > 0)
{
string exceptionThrown;
ErrorRecord lastErrorRecord = errorList[0] as ErrorRecord;
if (lastErrorRecord != null)
{
exceptionThrown = lastErrorRecord.ToString();
}
else
{
Exception lastException = errorList[0] as Exception;
if (lastException != null)
{
exceptionThrown = lastException.Message ?? string.Empty;
}
else
{
exceptionThrown = string.Empty;
}
}
throw PSTraceSource.NewInvalidOperationException(RemotingErrorIdStrings.StartupScriptThrewTerminatingError, exceptionThrown);
}
return results;
}
/// <summary>
/// Raised by RunspacePool whenever a new runspace is created. This is used
/// by the driver to run startup script as well as set personal folder
/// as the current working directory.
/// </summary>
/// <param name="sender"></param>
/// <param name="args">
/// Runspace that was created by the RunspacePool.
/// </param>
private void HandleRunspaceCreated(object sender, RunspaceCreatedEventArgs args)
{
this.ServerRemoteHost.Runspace = args.Runspace;
// If the system lockdown policy says "Enforce", do so (unless it's in the
// more restrictive NoLanguage mode)
Utils.EnforceSystemLockDownLanguageMode(args.Runspace.ExecutionContext);
// Set the current location to MyDocuments folder for this runspace.
// This used to be set to the Personal folder but was changed to MyDocuments folder for
// compatibility with PowerShell on Nano Server for PowerShell V5.
// This is needed because in the remoting scenario, Environment.CurrentDirectory
// always points to System Folder (%windir%\system32) irrespective of the
// user as %HOMEDRIVE% and %HOMEPATH% are not available for the logon process.
// Doing this here than AutomationEngine as I dont want to introduce a dependency
// on Remoting in PowerShell engine
try
{
string personalfolder = Platform.GetFolderPath(Environment.SpecialFolder.MyDocuments);
args.Runspace.ExecutionContext.EngineSessionState.SetLocation(personalfolder);
}
catch (Exception)
{
// SetLocation API can call 3rd party code and so there is no telling what exception may be thrown.
// Setting location is not critical and is expected not to work with some account types, so we want
// to ignore all but critical errors.
}
if (!string.IsNullOrWhiteSpace(_initialLocation))
{
var setLocationCommand = new Command("Set-Location");
setLocationCommand.Parameters.Add(new CommandParameter("LiteralPath", _initialLocation));
InvokeScript(setLocationCommand, args);
}
// Run startup scripts
InvokeStartupScripts(args);
// Now that the server side runspace is set up allow the secondary handler to run.
HandleRunspaceCreatedForTypeTable(sender, args);
}
private void InvokeStartupScripts(RunspaceCreatedEventArgs args)
{
Command cmdToRun = null;
if (!string.IsNullOrEmpty(_configData.StartupScript))
{
// build the startup script..merge output / error.
cmdToRun = new Command(_configData.StartupScript, false, false);
}
else if (!string.IsNullOrEmpty(_configData.InitializationScriptForOutOfProcessRunspace))
{
cmdToRun = new Command(_configData.InitializationScriptForOutOfProcessRunspace, true, false);
}
if (cmdToRun != null)
{
InvokeScript(cmdToRun, args);
// if startup script set $PSApplicationPrivateData, then use that value as ApplicationPrivateData
// instead of using results from PSSessionConfiguration.GetApplicationPrivateData()
if (RunspacePool.RunspacePoolStateInfo.State == RunspacePoolState.Opening)
{
object privateDataVariable = args.Runspace.SessionStateProxy.PSVariable.GetValue("global:PSApplicationPrivateData");
if (privateDataVariable != null)
{
_applicationPrivateData = (PSPrimitiveDictionary)LanguagePrimitives.ConvertTo(
privateDataVariable,
typeof(PSPrimitiveDictionary),
true,
CultureInfo.InvariantCulture,
null);
}
}
}
}
/// <summary>
/// Handler to the runspace pool state changed events.
/// </summary>
/// <param name="sender">Sender of this events.</param>
/// <param name="eventArgs">arguments which describe the
/// RunspacePool's StateChanged event</param>
private void HandleRunspacePoolStateChanged(object sender,
RunspacePoolStateChangedEventArgs eventArgs)
{
RunspacePoolState state = eventArgs.RunspacePoolStateInfo.State;
Exception reason = eventArgs.RunspacePoolStateInfo.Reason;
switch (state)
{
case RunspacePoolState.Broken:
case RunspacePoolState.Closing:
case RunspacePoolState.Closed:
{
DataStructureHandler.SendStateInfoToClient(new RunspacePoolStateInfo(state, reason));
}
break;
case RunspacePoolState.Opened:
{
SendApplicationPrivateDataToClient();
DataStructureHandler.SendStateInfoToClient(new RunspacePoolStateInfo(state, reason));
}
break;
}
}
/// <summary>
/// Handler to the runspace pool psevents.
/// </summary>
private void HandleRunspacePoolForwardEvent(object sender, PSEventArgs e)
{
if (e.ForwardEvent)
{
DataStructureHandler.SendPSEventArgsToClient(e);
}
}
/// <summary>
/// Handle the invocation of powershell.
/// </summary>
/// <param name="_">Sender of this event, unused.</param>
/// <param name="eventArgs">Arguments describing this event.</param>
private void HandleCreateAndInvokePowerShell(object _, RemoteDataEventArgs<RemoteDataObject<PSObject>> eventArgs)
{
RemoteDataObject<PSObject> data = eventArgs.Data;
// it is sufficient to just construct the powershell
// driver, the local powershell on server side is
// invoked from within the driver
HostInfo hostInfo = RemotingDecoder.GetHostInfo(data.Data);
ApartmentState apartmentState = RemotingDecoder.GetApartmentState(data.Data);
RemoteStreamOptions streamOptions = RemotingDecoder.GetRemoteStreamOptions(data.Data);
PowerShell powershell = RemotingDecoder.GetPowerShell(data.Data);
bool noInput = RemotingDecoder.GetNoInput(data.Data);
bool addToHistory = RemotingDecoder.GetAddToHistory(data.Data);
bool isNested = false;
// The server would've dropped the protocol version of an older client was connecting
if (_serverCapability.ProtocolVersion >= RemotingConstants.ProtocolVersion_2_2)
{
isNested = RemotingDecoder.GetIsNested(data.Data);
}
// Perform pre-processing of command for over the wire debugging commands.
if (_serverRemoteDebugger != null)
{
DebuggerCommandArgument commandArgument;
bool terminateImmediate = false;
Collection<object> preProcessOutput = new Collection<object>();
try
{
var result = PreProcessDebuggerCommand(powershell.Commands, _serverRemoteDebugger, preProcessOutput, out commandArgument);
switch (result)
{
case PreProcessCommandResult.SetDebuggerAction:
// Run this directly on the debugger and terminate the remote command.
_serverRemoteDebugger.SetDebuggerAction(commandArgument.ResumeAction.Value);
terminateImmediate = true;
break;
case PreProcessCommandResult.SetDebugMode:
// Set debug mode directly and terminate remote command.
_serverRemoteDebugger.SetDebugMode(commandArgument.Mode.Value);
terminateImmediate = true;
break;
case PreProcessCommandResult.SetDebuggerStepMode:
// Enable debugger and set to step action, then terminate remote command.
_serverRemoteDebugger.SetDebuggerStepMode(commandArgument.DebuggerStepEnabled.Value);
terminateImmediate = true;
break;
case PreProcessCommandResult.SetPreserveUnhandledBreakpointMode:
_serverRemoteDebugger.UnhandledBreakpointMode = commandArgument.UnhandledBreakpointMode.Value;
terminateImmediate = true;
break;
case PreProcessCommandResult.ValidNotProcessed:
terminateImmediate = true;
break;
case PreProcessCommandResult.BreakpointManagement:
terminateImmediate = true;
break;
}
}
catch (Exception ex)
{
terminateImmediate = true;
preProcessOutput.Add(
PSObject.AsPSObject(ex));
}
// If we don't want to run or queue a command to run in the server session then
// terminate the command here by making it a No Op.
if (terminateImmediate)
{
ServerPowerShellDriver noOpDriver = new ServerPowerShellDriver(
powershell,
null,
noInput,
data.PowerShellId,
data.RunspacePoolId,
this,
apartmentState,
hostInfo,
streamOptions,
addToHistory,
null);
noOpDriver.RunNoOpCommand(preProcessOutput);
return;
}
}
if (_remoteHost.IsRunspacePushed)
{
// If we have a pushed runspace then execute there.
// Ensure debugger is enabled to the original mode it was set to.
_serverRemoteDebugger?.CheckDebuggerState();
StartPowerShellCommandOnPushedRunspace(
powershell,
null,
data.PowerShellId,
data.RunspacePoolId,
hostInfo,
streamOptions,
noInput,
addToHistory);
return;
}
else if (isNested)
{
if (RunspacePool.GetMaxRunspaces() == 1)
{
if (_driverNestedInvoker != null && _driverNestedInvoker.IsActive)
{
if (!_driverNestedInvoker.IsAvailable)
{
// A nested command is already running.
throw new PSInvalidOperationException(
StringUtil.Format(RemotingErrorIdStrings.CannotInvokeNestedCommandNestedCommandRunning));
}
// Handle as nested pipeline invocation.
powershell.SetIsNested(true);
// Always invoke PowerShell commands on pipeline worker thread
// for single runspace case, to support nested invocation requests (debugging scenario).
ServerPowerShellDriver srdriver = new ServerPowerShellDriver(
powershell,
null,
noInput,
data.PowerShellId,
data.RunspacePoolId,
this,
apartmentState,
hostInfo,
streamOptions,
addToHistory,
_rsToUseForSteppablePipeline);
_inputCollection = srdriver.InputCollection;
_driverNestedInvoker.InvokeDriverAsync(srdriver);
return;
}
else if (_serverRemoteDebugger != null &&
_serverRemoteDebugger.InBreakpoint &&
_serverRemoteDebugger.IsPushed)
{
_serverRemoteDebugger.StartPowerShellCommand(
powershell,
data.PowerShellId,
data.RunspacePoolId,
this,
apartmentState,
_remoteHost,
hostInfo,
streamOptions,
addToHistory);
return;
}
else if (powershell.Commands.Commands.Count == 1 &&
!powershell.Commands.Commands[0].IsScript &&
(powershell.Commands.Commands[0].CommandText.Contains("Get-PSDebuggerStopArgs", StringComparison.OrdinalIgnoreCase) ||
powershell.Commands.Commands[0].CommandText.Contains("Set-PSDebuggerAction", StringComparison.OrdinalIgnoreCase)))
{
// We do not want to invoke debugger commands in the steppable pipeline.
// Consider adding IsSteppable message to PSRP to handle this.
// This will be caught on the client.
throw new PSInvalidOperationException();
}
ServerPowerShellDataStructureHandler psHandler = DataStructureHandler.GetPowerShellDataStructureHandler();
if (psHandler != null)
{
// Have steppable invocation request.
powershell.SetIsNested(false);
// Execute command concurrently
ServerSteppablePipelineDriver spDriver = new ServerSteppablePipelineDriver(
powershell,
noInput,
data.PowerShellId,
data.RunspacePoolId,
this,
apartmentState,
hostInfo,
streamOptions,
addToHistory,
_rsToUseForSteppablePipeline,
_eventSubscriber,
_inputCollection);
spDriver.Start();
return;
}
}
// Allow command to run as non-nested and non-stepping.
powershell.SetIsNested(false);
}
// Invoke command normally. Ensure debugger is enabled to the
// original mode it was set to.
_serverRemoteDebugger?.CheckDebuggerState();
// Invoke PowerShell on driver runspace pool.
ServerPowerShellDriver driver = new ServerPowerShellDriver(
powershell,
null,
noInput,
data.PowerShellId,
data.RunspacePoolId,
this,
apartmentState,
hostInfo,
streamOptions,
addToHistory,
null);
_inputCollection = driver.InputCollection;
driver.Start();
}
private bool? _initialSessionStateIncludesGetCommandWithListImportedSwitch;
private readonly object _initialSessionStateIncludesGetCommandWithListImportedSwitchLock = new object();
private bool DoesInitialSessionStateIncludeGetCommandWithListImportedSwitch()
{
if (!_initialSessionStateIncludesGetCommandWithListImportedSwitch.HasValue)
{
lock (_initialSessionStateIncludesGetCommandWithListImportedSwitchLock)
{
if (!_initialSessionStateIncludesGetCommandWithListImportedSwitch.HasValue)
{
bool newValue = false;
InitialSessionState iss = this.RunspacePool.InitialSessionState;
if (iss != null)
{
IEnumerable<SessionStateCommandEntry> publicGetCommandEntries = iss
.Commands["Get-Command"]
.Where(static entry => entry.Visibility == SessionStateEntryVisibility.Public);
SessionStateFunctionEntry getCommandProxy = publicGetCommandEntries.OfType<SessionStateFunctionEntry>().FirstOrDefault();
if (getCommandProxy != null)
{
if (getCommandProxy.ScriptBlock.ParameterMetadata.BindableParameters.ContainsKey("ListImported"))
{
newValue = true;
}
}
else
{
SessionStateCmdletEntry getCommandCmdlet = publicGetCommandEntries.OfType<SessionStateCmdletEntry>().FirstOrDefault();
if ((getCommandCmdlet != null) && (getCommandCmdlet.ImplementingType.Equals(typeof(Microsoft.PowerShell.Commands.GetCommandCommand))))
{
newValue = true;
}
}
}
_initialSessionStateIncludesGetCommandWithListImportedSwitch = newValue;
}
}
}
return _initialSessionStateIncludesGetCommandWithListImportedSwitch.Value;
}
/// <summary>
/// Handle the invocation of command discovery pipeline.
/// </summary>
/// <param name="sender">Sender of this event, unused.</param>
/// <param name="eventArgs">Arguments describing this event.</param>
private void HandleGetCommandMetadata(object sender, RemoteDataEventArgs<RemoteDataObject<PSObject>> eventArgs)
{
RemoteDataObject<PSObject> data = eventArgs.Data;
PowerShell countingPipeline = RemotingDecoder.GetCommandDiscoveryPipeline(data.Data);
if (this.DoesInitialSessionStateIncludeGetCommandWithListImportedSwitch())
{
countingPipeline.AddParameter("ListImported", true);
}
countingPipeline
.AddParameter("ErrorAction", "SilentlyContinue")
.AddCommand("Measure-Object")
.AddCommand("Select-Object")
.AddParameter("Property", "Count");
PowerShell mainPipeline = RemotingDecoder.GetCommandDiscoveryPipeline(data.Data);
if (this.DoesInitialSessionStateIncludeGetCommandWithListImportedSwitch())
{
mainPipeline.AddParameter("ListImported", true);
}
mainPipeline
.AddCommand("Select-Object")
.AddParameter("Property", new string[] {
"Name", "Namespace", "HelpUri", "CommandType", "ResolvedCommandName", "OutputType", "Parameters" });
HostInfo useRunspaceHost = new HostInfo(null);
useRunspaceHost.UseRunspaceHost = true;
if (_remoteHost.IsRunspacePushed)
{
// If we have a pushed runspace then execute there.
StartPowerShellCommandOnPushedRunspace(
countingPipeline,
mainPipeline,
data.PowerShellId,
data.RunspacePoolId,
useRunspaceHost,
0,
true,
false);
}
else
{
// Run on usual driver.
ServerPowerShellDriver driver = new ServerPowerShellDriver(
countingPipeline,
mainPipeline,
true /* no input */,
data.PowerShellId,
data.RunspacePoolId,
this,
ApartmentState.Unknown,
useRunspaceHost,
0 /* stream options */,
false /* addToHistory */,
null /* use default rsPool runspace */);
driver.Start();
}
}
/// <summary>
/// Handles host responses.
/// </summary>
/// <param name="sender">Sender of this event, unused.</param>
/// <param name="eventArgs">Arguments describing this event.</param>
private void HandleHostResponseReceived(object sender,
RemoteDataEventArgs<RemoteHostResponse> eventArgs)
{
_remoteHost.ServerMethodExecutor.HandleRemoteHostResponseFromClient((eventArgs.Data));
}
/// <summary>
/// Sets the maximum runspace of the runspace pool and sends a response back.
/// </summary>
/// <param name="sender">Sender of this event, unused.</param>
/// <param name="eventArgs">contains information about the new maxRunspaces
/// and the callId at the client</param>
private void HandleSetMaxRunspacesReceived(object sender, RemoteDataEventArgs<PSObject> eventArgs)
{
PSObject data = eventArgs.Data;
int maxRunspaces = (int)((PSNoteProperty)data.Properties[RemoteDataNameStrings.MaxRunspaces]).Value;
long callId = (long)((PSNoteProperty)data.Properties[RemoteDataNameStrings.CallId]).Value;
bool response = RunspacePool.SetMaxRunspaces(maxRunspaces);
DataStructureHandler.SendResponseToClient(callId, response);
}
/// <summary>
/// Sets the minimum runspace of the runspace pool and sends a response back.
/// </summary>
/// <param name="sender">Sender of this event, unused.</param>
/// <param name="eventArgs">contains information about the new minRunspaces
/// and the callId at the client</param>
private void HandleSetMinRunspacesReceived(object sender, RemoteDataEventArgs<PSObject> eventArgs)
{
PSObject data = eventArgs.Data;
int minRunspaces = (int)((PSNoteProperty)data.Properties[RemoteDataNameStrings.MinRunspaces]).Value;
long callId = (long)((PSNoteProperty)data.Properties[RemoteDataNameStrings.CallId]).Value;
bool response = RunspacePool.SetMinRunspaces(minRunspaces);
DataStructureHandler.SendResponseToClient(callId, response);
}
/// <summary>
/// Gets the available runspaces from the server and sends it across
/// to the client.
/// </summary>
/// <param name="sender">Sender of this event, unused.</param>
/// <param name="eventArgs">Contains information on the callid.</param>
private void HandleGetAvailableRunspacesReceived(object sender, RemoteDataEventArgs<PSObject> eventArgs)
{
PSObject data = eventArgs.Data;
long callId = (long)((PSNoteProperty)data.Properties[RemoteDataNameStrings.CallId]).Value;
int availableRunspaces = RunspacePool.GetAvailableRunspaces();
DataStructureHandler.SendResponseToClient(callId, availableRunspaces);
}
/// <summary>
/// Forces a state reset on a single runspace pool.
/// </summary>
/// <param name="sender"></param>
/// <param name="eventArgs"></param>
private void HandleResetRunspaceState(object sender, RemoteDataEventArgs<PSObject> eventArgs)
{
long callId = (long)((PSNoteProperty)(eventArgs.Data).Properties[RemoteDataNameStrings.CallId]).Value;
bool response = ResetRunspaceState();
DataStructureHandler.SendResponseToClient(callId, response);
}
/// <summary>
/// Resets the single runspace in the runspace pool.
/// </summary>
/// <returns></returns>
private bool ResetRunspaceState()
{
LocalRunspace runspaceToReset = _rsToUseForSteppablePipeline as LocalRunspace;
if ((runspaceToReset == null) || (RunspacePool.GetMaxRunspaces() > 1))
{
return false;
}
try
{
// Local runspace state reset.
runspaceToReset.ResetRunspaceState();
}
catch (Exception)
{
return false;
}
return true;
}
/// <summary>
/// Starts the PowerShell command on the currently pushed Runspace.
/// </summary>
/// <param name="powershell">PowerShell command or script.</param>
/// <param name="extraPowerShell">PowerShell command to run after first completes.</param>
/// <param name="powershellId">PowerShell Id.</param>
/// <param name="runspacePoolId">RunspacePool Id.</param>
/// <param name="hostInfo">Host Info.</param>
/// <param name="streamOptions">Remote stream options.</param>
/// <param name="noInput">False when input is provided.</param>
/// <param name="addToHistory">Add to history.</param>
private void StartPowerShellCommandOnPushedRunspace(
PowerShell powershell,
PowerShell extraPowerShell,
Guid powershellId,
Guid runspacePoolId,
HostInfo hostInfo,
RemoteStreamOptions streamOptions,
bool noInput,
bool addToHistory)
{
Runspace runspace = _remoteHost.PushedRunspace;
ServerPowerShellDriver driver = new ServerPowerShellDriver(
powershell,
extraPowerShell,
noInput,
powershellId,
runspacePoolId,
this,
ApartmentState.MTA,
hostInfo,
streamOptions,
addToHistory,
runspace);
try
{
driver.Start();
}
catch (Exception)
{
// Pop runspace on error.
_remoteHost.PopRunspace();
throw;
}
}
#endregion Private Methods
#region Remote Debugger Command Helpers
/// <summary>
/// Debugger command pre processing result type.
/// </summary>
private enum PreProcessCommandResult
{
/// <summary>
/// No debugger pre-processing. "Get" commands use this so that the
/// data they retrieve can be sent back to the caller.
/// </summary>
None = 0,
/// <summary>
/// This is a valid debugger command but was not processed because
/// the debugger state was not correct.
/// </summary>
ValidNotProcessed,
/// <summary>
/// SetDebuggerAction.
/// </summary>
SetDebuggerAction,
/// <summary>
/// SetDebugMode.
/// </summary>
SetDebugMode,
/// <summary>
/// SetDebuggerStepMode.
/// </summary>
SetDebuggerStepMode,
/// <summary>
/// SetPreserveUnhandledBreakpointMode.
/// </summary>
SetPreserveUnhandledBreakpointMode,
/// <summary>
/// The PreProcessCommandResult used for managing breakpoints.
/// </summary>
BreakpointManagement,
}
private sealed class DebuggerCommandArgument
{
public DebugModes? Mode { get; set; }
public DebuggerResumeAction? ResumeAction { get; set; }
public bool? DebuggerStepEnabled { get; set; }
public UnhandledBreakpointProcessingMode? UnhandledBreakpointMode { get; set; }
}
/// <summary>
/// Pre-processor for debugger commands.
/// Parses special debugger commands and converts to equivalent script for remote execution as needed.
/// </summary>
/// <param name="commands">The PSCommand.</param>
/// <param name="serverRemoteDebugger">The debugger that can be used to invoke debug operations via API.</param>
/// <param name="preProcessOutput">A Collection that can be used to send output to the client.</param>
/// <param name="commandArgument">Command argument.</param>
/// <returns>PreProcessCommandResult type if preprocessing occurred.</returns>
private static PreProcessCommandResult PreProcessDebuggerCommand(
PSCommand commands,
ServerRemoteDebugger serverRemoteDebugger,
Collection<object> preProcessOutput,
out DebuggerCommandArgument commandArgument)
{
commandArgument = new DebuggerCommandArgument();
PreProcessCommandResult result = PreProcessCommandResult.None;
if (commands.Commands.Count == 0 || commands.Commands[0].IsScript)
{
return result;
}
var command = commands.Commands[0];
string commandText = command.CommandText;
if (commandText.Equals(RemoteDebuggingCommands.GetDebuggerStopArgs, StringComparison.OrdinalIgnoreCase))
{
// __Get-PSDebuggerStopArgs private virtual command.
// No input parameters.
// Returns DebuggerStopEventArgs object.
// Evaluate this command only if the debugger is activated.
if (!serverRemoteDebugger.IsActive)
{
return PreProcessCommandResult.ValidNotProcessed;
}
ReplaceVirtualCommandWithScript(commands, "$host.Runspace.Debugger.GetDebuggerStopArgs()");
}
else if (commandText.Equals(RemoteDebuggingCommands.SetDebuggerAction, StringComparison.OrdinalIgnoreCase))
{
// __Set-PSDebuggerAction private virtual command.
// DebuggerResumeAction enum input parameter.
// Returns void.
// Evaluate this command only if the debugger is activated.
if (!serverRemoteDebugger.IsActive)
{
return PreProcessCommandResult.ValidNotProcessed;
}
if ((command.Parameters == null) || (command.Parameters.Count == 0) ||
(!command.Parameters[0].Name.Equals("ResumeAction", StringComparison.OrdinalIgnoreCase)))
{
throw new PSArgumentException("ResumeAction");
}
DebuggerResumeAction? resumeAction = null;
PSObject resumeObject = command.Parameters[0].Value as PSObject;
if (resumeObject != null)
{
try
{
resumeAction = (DebuggerResumeAction)resumeObject.BaseObject;
}
catch (InvalidCastException)
{
// Do nothing.
}
}
commandArgument.ResumeAction = resumeAction ?? throw new PSArgumentException("ResumeAction");
result = PreProcessCommandResult.SetDebuggerAction;
}
else if (commandText.Equals(RemoteDebuggingCommands.SetDebugMode, StringComparison.OrdinalIgnoreCase))
{
// __Set-PSDebugMode private virtual command.
// DebugModes enum input parameter.
// Returns void.
if ((command.Parameters == null) || (command.Parameters.Count == 0) ||
(!command.Parameters[0].Name.Equals("Mode", StringComparison.OrdinalIgnoreCase)))
{
throw new PSArgumentException("Mode");
}
DebugModes? mode = null;
PSObject modeObject = command.Parameters[0].Value as PSObject;
if (modeObject != null)
{
try
{
mode = (DebugModes)modeObject.BaseObject;
}
catch (InvalidCastException)
{
// Do nothing.
}
}
commandArgument.Mode = mode ?? throw new PSArgumentException("Mode");
result = PreProcessCommandResult.SetDebugMode;
}
else if (commandText.Equals(RemoteDebuggingCommands.SetDebuggerStepMode, StringComparison.OrdinalIgnoreCase))
{
// __Set-PSDebuggerStepMode private virtual command.
// Boolean Enabled input parameter.
// Returns void.
if ((command.Parameters == null) || (command.Parameters.Count == 0) ||
(!command.Parameters[0].Name.Equals("Enabled", StringComparison.OrdinalIgnoreCase)))
{
throw new PSArgumentException("Enabled");
}
bool enabled = (bool)command.Parameters[0].Value;
commandArgument.DebuggerStepEnabled = enabled;
result = PreProcessCommandResult.SetDebuggerStepMode;
}
else if (commandText.Equals(RemoteDebuggingCommands.SetUnhandledBreakpointMode, StringComparison.OrdinalIgnoreCase))
{
// __Set-PSUnhandledBreakpointMode private virtual command.
// UnhandledBreakpointMode input parameter.
// Returns void.
if ((command.Parameters == null) || (command.Parameters.Count == 0) ||
(!command.Parameters[0].Name.Equals("UnhandledBreakpointMode", StringComparison.OrdinalIgnoreCase)))
{
throw new PSArgumentException("UnhandledBreakpointMode");
}
UnhandledBreakpointProcessingMode? mode = null;
PSObject modeObject = command.Parameters[0].Value as PSObject;
if (modeObject != null)
{
try
{
mode = (UnhandledBreakpointProcessingMode)modeObject.BaseObject;
}
catch (InvalidCastException)
{
// Do nothing.
}
}
commandArgument.UnhandledBreakpointMode = mode ?? throw new PSArgumentException("Mode");
result = PreProcessCommandResult.SetPreserveUnhandledBreakpointMode;
}
else if (commandText.Equals(RemoteDebuggingCommands.GetBreakpoint, StringComparison.OrdinalIgnoreCase))
{
// __Get-PSBreakpoint private virtual command.
// Input parameters:
// [-Id <int>]
// Returns Breakpoint object(s).
TryGetParameter<int?>(command, "RunspaceId", out int? runspaceId);
if (TryGetParameter<int>(command, "Id", out int breakpointId))
{
preProcessOutput.Add(serverRemoteDebugger.GetBreakpoint(breakpointId, runspaceId));
}
else
{
foreach (Breakpoint breakpoint in serverRemoteDebugger.GetBreakpoints(runspaceId))
{
preProcessOutput.Add(breakpoint);
}
}
result = PreProcessCommandResult.BreakpointManagement;
}
else if (commandText.Equals(RemoteDebuggingCommands.SetBreakpoint, StringComparison.OrdinalIgnoreCase))
{
// __Set-PSBreakpoint private virtual command.
// Input parameters:
// -Breakpoint <Breakpoint> or -BreakpointList <IEnumerable<Breakpoint>>
// [-RunspaceId <int?>]
// Returns Breakpoint object(s).
TryGetParameter<Breakpoint>(command, "Breakpoint", out Breakpoint breakpoint);
TryGetParameter<ArrayList>(command, "BreakpointList", out ArrayList breakpoints);
if (breakpoint == null && breakpoints == null)
{
throw new PSArgumentException(DebuggerStrings.BreakpointOrBreakpointListNotSpecified);
}
TryGetParameter<int?>(command, "RunspaceId", out int? runspaceId);
commands.Clear();
// Any collection comes through remoting as an ArrayList of Objects so we convert each object
// into a breakpoint and add it to the list.
var bps = new List<Breakpoint>();
if (breakpoints != null)
{
foreach (object obj in breakpoints)
{
if (!LanguagePrimitives.TryConvertTo<Breakpoint>(obj, out Breakpoint bp))
{
throw new PSArgumentException(DebuggerStrings.BreakpointListContainedANonBreakpoint);
}
bps.Add(bp);
}
}
else
{
bps.Add(breakpoint);
}
serverRemoteDebugger.SetBreakpoints(bps, runspaceId);
foreach (var bp in bps)
{
preProcessOutput.Add(bp);
}
result = PreProcessCommandResult.BreakpointManagement;
}
else if (commandText.Equals(RemoteDebuggingCommands.RemoveBreakpoint, StringComparison.OrdinalIgnoreCase))
{
// __Remove-PSBreakpoint private virtual command.
// Input parameters:
// -Id <int>
// [-RunspaceId <int?>]
// Returns bool.
int breakpointId = GetParameter<int>(command, "Id");
TryGetParameter<int?>(command, "RunspaceId", out int? runspaceId);
Breakpoint breakpoint = serverRemoteDebugger.GetBreakpoint(breakpointId, runspaceId);
preProcessOutput.Add(
breakpoint != null && serverRemoteDebugger.RemoveBreakpoint(breakpoint, runspaceId));
result = PreProcessCommandResult.BreakpointManagement;
}
else if (commandText.Equals(RemoteDebuggingCommands.EnableBreakpoint, StringComparison.OrdinalIgnoreCase))
{
// __Enable-PSBreakpoint private virtual command.
// Input parameters:
// -Id <int>
// [-RunspaceId <int?>]
// Returns Breakpoint object.
int breakpointId = GetParameter<int>(command, "Id");
TryGetParameter<int?>(command, "RunspaceId", out int? runspaceId);
Breakpoint bp = serverRemoteDebugger.GetBreakpoint(breakpointId, runspaceId);
if (bp != null)
{
preProcessOutput.Add(serverRemoteDebugger.EnableBreakpoint(bp, runspaceId));
}
result = PreProcessCommandResult.BreakpointManagement;
}
else if (commandText.Equals(RemoteDebuggingCommands.DisableBreakpoint, StringComparison.OrdinalIgnoreCase))
{
// __Disable-PSBreakpoint private virtual command.
// Input parameters:
// -Id <int>
// [-RunspaceId <int?>]
// Returns Breakpoint object.
int breakpointId = GetParameter<int>(command, "Id");
TryGetParameter<int?>(command, "RunspaceId", out int? runspaceId);
Breakpoint bp = serverRemoteDebugger.GetBreakpoint(breakpointId, runspaceId);
if (bp != null)
{
preProcessOutput.Add(serverRemoteDebugger.DisableBreakpoint(bp, runspaceId));
}
result = PreProcessCommandResult.BreakpointManagement;
}
return result;
}
private static void ReplaceVirtualCommandWithScript(PSCommand commands, string script)
{
ScriptBlock scriptBlock = ScriptBlock.Create(script);
scriptBlock.LanguageMode = PSLanguageMode.FullLanguage;
commands.Clear();
commands.AddCommand("Invoke-Command")
.AddParameter("ScriptBlock", scriptBlock)
.AddParameter("NoNewScope", true);
}
private static T GetParameter<T>(Command command, string parameterName)
{
if (command.Parameters?.Count == 0)
{
throw new PSArgumentException(parameterName);
}
foreach (CommandParameter param in command.Parameters)
{
if (string.Equals(param.Name, parameterName, StringComparison.OrdinalIgnoreCase))
{
return LanguagePrimitives.ConvertTo<T>(param.Value);
}
}
throw new PSArgumentException(parameterName);
}
private static bool TryGetParameter<T>(Command command, string parameterName, out T value)
{
try
{
value = GetParameter<T>(command, parameterName);
return true;
}
catch (Exception ex) when (
ex is PSArgumentException ||
ex is InvalidCastException ||
ex is PSInvalidCastException)
{
value = default(T);
return false;
}
}
#endregion
#region Private Classes
/// <summary>
/// Helper class to run ServerPowerShellDriver objects on a single thread. This is
/// needed to support nested pipeline execution and remote debugging.
/// </summary>
private sealed class PowerShellDriverInvoker
{
#region Private Members
private readonly ConcurrentStack<InvokePump> _invokePumpStack;
#endregion
#region Constructor
/// <summary>
/// Constructor.
/// </summary>
public PowerShellDriverInvoker()
{
_invokePumpStack = new ConcurrentStack<InvokePump>();
}
#endregion
#region Properties
/// <summary>
/// IsActive.
/// </summary>
public bool IsActive
{
get { return !_invokePumpStack.IsEmpty; }
}
/// <summary>
/// True if thread is ready to invoke a PowerShell driver.
/// </summary>
public bool IsAvailable
{
get
{
InvokePump pump;
if (!_invokePumpStack.TryPeek(out pump))
{
pump = null;
}
return (pump != null) && !(pump.IsBusy);
}
}
#endregion
#region Public Methods
/// <summary>
/// Submit a driver object to be invoked.
/// </summary>
/// <param name="driver">ServerPowerShellDriver.</param>
public void InvokeDriverAsync(ServerPowerShellDriver driver)
{
InvokePump currentPump;
if (!_invokePumpStack.TryPeek(out currentPump))
{
throw new PSInvalidOperationException(RemotingErrorIdStrings.PowerShellInvokerInvalidState);
}
currentPump.Dispatch(driver);
}
/// <summary>
/// Blocking call that creates a new pump object and pumps
/// driver invokes until stopped via a PopInvoker call.
/// </summary>
public void PushInvoker()
{
InvokePump newPump = new InvokePump();
_invokePumpStack.Push(newPump);
// Blocking call while new driver invocations are handled on
// new pump.
newPump.Start();
}
/// <summary>
/// Stops the current driver invoker and restores the previous
/// invoker object on the stack, if any, to handle driver invocations.
/// </summary>
public void PopInvoker()
{
InvokePump oldPump;
if (_invokePumpStack.TryPop(out oldPump))
{
oldPump.Stop();
}
else
{
throw new PSInvalidOperationException(RemotingErrorIdStrings.CannotExitNestedPipeline);
}
}
#endregion
#region Private classes
/// <summary>
/// Class that queues and invokes ServerPowerShellDriver objects
/// in sequence.
/// </summary>
private sealed class InvokePump
{
private readonly Queue<ServerPowerShellDriver> _driverInvokeQueue;
private readonly ManualResetEvent _processDrivers;
private readonly object _syncObject;
private bool _stopPump;
private bool _isDisposed;
public InvokePump()
{
_driverInvokeQueue = new Queue<ServerPowerShellDriver>();
_processDrivers = new ManualResetEvent(false);
_syncObject = new object();
}
public void Start()
{
try
{
while (true)
{
_processDrivers.WaitOne();
// Synchronously invoke one ServerPowerShellDriver at a time.
ServerPowerShellDriver driver = null;
lock (_syncObject)
{
if (_stopPump)
{
break;
}
if (_driverInvokeQueue.Count > 0)
{
driver = _driverInvokeQueue.Dequeue();
}
if (_driverInvokeQueue.Count == 0)
{
_processDrivers.Reset();
}
}
if (driver != null)
{
try
{
IsBusy = true;
driver.InvokeMain();
}
catch (Exception)
{
}
finally
{
IsBusy = false;
}
}
}
}
finally
{
_isDisposed = true;
_processDrivers.Dispose();
}
}
public void Dispatch(ServerPowerShellDriver driver)
{
CheckDisposed();
lock (_syncObject)
{
_driverInvokeQueue.Enqueue(driver);
_processDrivers.Set();
}
}
public void Stop()
{
CheckDisposed();
lock (_syncObject)
{
_stopPump = true;
_processDrivers.Set();
}
}
public bool IsBusy { get; private set; }
private void CheckDisposed()
{
if (_isDisposed)
{
throw new ObjectDisposedException("InvokePump");
}
}
}
#endregion
}
#endregion
}
/// <summary>
/// This class wraps the script debugger for a ServerRunspacePoolDriver runspace.
/// </summary>
internal sealed class ServerRemoteDebugger : Debugger, IDisposable
{
#region Private Members
private readonly IRSPDriverInvoke _driverInvoker;
private readonly Runspace _runspace;
private readonly ObjectRef<Debugger> _wrappedDebugger;
private bool _inDebugMode;
private DebuggerStopEventArgs _debuggerStopEventArgs;
private ManualResetEventSlim _nestedDebugStopCompleteEvent;
private bool _nestedDebugging;
private ManualResetEventSlim _processCommandCompleteEvent;
private ThreadCommandProcessing _threadCommandProcessing;
private bool _raiseStopEventLocally;
internal const string SetPSBreakCommandText = "Set-PSBreakpoint";
#endregion
#region Constructor
private ServerRemoteDebugger() { }
/// <summary>
/// Constructor.
/// </summary>
/// <param name="driverInvoker"></param>
/// <param name="runspace"></param>
/// <param name="debugger"></param>
internal ServerRemoteDebugger(
IRSPDriverInvoke driverInvoker,
Runspace runspace,
Debugger debugger)
{
if (driverInvoker == null)
{
throw new PSArgumentNullException(nameof(driverInvoker));
}
if (runspace == null)
{
throw new PSArgumentNullException(nameof(runspace));
}
if (debugger == null)
{
throw new PSArgumentNullException(nameof(debugger));
}
_driverInvoker = driverInvoker;
_runspace = runspace;
_wrappedDebugger = new ObjectRef<Debugger>(debugger);
SetDebuggerCallbacks();
_runspace.Name = "RemoteHost";
_runspace.InternalDebugger = this;
}
#endregion
#region Debugger overrides
/// <summary>
/// True when debugger is stopped at a breakpoint.
/// </summary>
public override bool InBreakpoint
{
get { return _inDebugMode; }
}
/// <summary>
/// Adds the provided set of breakpoints to the debugger.
/// </summary>
/// <param name="breakpoints">List of breakpoints.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override void SetBreakpoints(IEnumerable<Breakpoint> breakpoints, int? runspaceId) =>
_wrappedDebugger.Value.SetBreakpoints(breakpoints, runspaceId);
/// <summary>
/// Get a breakpoint by id, primarily for Enable/Disable/Remove-PSBreakpoint cmdlets.
/// </summary>
/// <param name="id">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The breakpoint with the specified id.</returns>
public override Breakpoint GetBreakpoint(int id, int? runspaceId) =>
_wrappedDebugger.Value.GetBreakpoint(id, runspaceId);
/// <summary>
/// Returns breakpoints on a runspace.
/// </summary>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>A list of breakpoints in a runspace.</returns>
public override List<Breakpoint> GetBreakpoints(int? runspaceId) =>
_wrappedDebugger.Value.GetBreakpoints(runspaceId);
/// <summary>
/// Sets a command breakpoint in the debugger.
/// </summary>
/// <param name="command">The name of the command that will trigger the breakpoint. This value may not be null.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the command is invoked.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The command breakpoint that was set.</returns>
public override CommandBreakpoint SetCommandBreakpoint(string command, ScriptBlock action, string path, int? runspaceId) =>
_wrappedDebugger.Value.SetCommandBreakpoint(command, action, path, runspaceId);
/// <summary>
/// Sets a line breakpoint in the debugger.
/// </summary>
/// <param name="path">The path to the script file where the breakpoint may be hit. This value may not be null.</param>
/// <param name="line">The line in the script file where the breakpoint may be hit. This value must be greater than or equal to 1.</param>
/// <param name="column">The column in the script file where the breakpoint may be hit. If 0, the breakpoint will trigger on any statement on the line.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The line breakpoint that was set.</returns>
public override LineBreakpoint SetLineBreakpoint(string path, int line, int column, ScriptBlock action, int? runspaceId) =>
_wrappedDebugger.Value.SetLineBreakpoint(path, line, column, action, runspaceId);
/// <summary>
/// Sets a variable breakpoint in the debugger.
/// </summary>
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value may not be null.</param>
/// <param name="accessMode">The variable access mode that will trigger the breakpoint.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the variable is accessed using the specified access mode.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The variable breakpoint that was set.</returns>
public override VariableBreakpoint SetVariableBreakpoint(string variableName, VariableAccessMode accessMode, ScriptBlock action, string path, int? runspaceId) =>
_wrappedDebugger.Value.SetVariableBreakpoint(variableName, accessMode, action, path, runspaceId);
/// <summary>
/// Removes a breakpoint from the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to remove from the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>True if the breakpoint was removed from the debugger; false otherwise.</returns>
public override bool RemoveBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
_wrappedDebugger.Value.RemoveBreakpoint(breakpoint, runspaceId);
/// <summary>
/// Enables a breakpoint in the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public override Breakpoint EnableBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
_wrappedDebugger.Value.EnableBreakpoint(breakpoint, runspaceId);
/// <summary>
/// Disables a breakpoint in the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public override Breakpoint DisableBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
_wrappedDebugger.Value.DisableBreakpoint(breakpoint, runspaceId);
/// <summary>
/// Exits debugger mode with the provided resume action.
/// </summary>
/// <param name="resumeAction">DebuggerResumeAction.</param>
public override void SetDebuggerAction(DebuggerResumeAction resumeAction)
{
if (!_inDebugMode)
{
throw new PSInvalidOperationException(
StringUtil.Format(DebuggerStrings.CannotSetRemoteDebuggerAction));
}
ExitDebugMode(resumeAction);
}
/// <summary>
/// Returns debugger stop event args if in debugger stop state.
/// </summary>
/// <returns>DebuggerStopEventArgs.</returns>
public override DebuggerStopEventArgs GetDebuggerStopArgs()
{
return _wrappedDebugger.Value.GetDebuggerStopArgs();
}
/// <summary>
/// ProcessCommand.
/// </summary>
/// <param name="command">Command.</param>
/// <param name="output">Output.</param>
/// <returns></returns>
public override DebuggerCommandResults ProcessCommand(PSCommand command, PSDataCollection<PSObject> output)
{
if (LocalDebugMode)
{
return _wrappedDebugger.Value.ProcessCommand(command, output);
}
if (!InBreakpoint || (_threadCommandProcessing != null))
{
throw new PSInvalidOperationException(
StringUtil.Format(DebuggerStrings.CannotProcessDebuggerCommandNotStopped));
}
_processCommandCompleteEvent ??= new ManualResetEventSlim(false);
_threadCommandProcessing = new ThreadCommandProcessing(command, output, _wrappedDebugger.Value, _processCommandCompleteEvent);
try
{
return _threadCommandProcessing.Invoke(_nestedDebugStopCompleteEvent);
}
finally
{
_threadCommandProcessing = null;
}
}
/// <summary>
/// StopProcessCommand.
/// </summary>
public override void StopProcessCommand()
{
if (LocalDebugMode)
{
_wrappedDebugger.Value.StopProcessCommand();
}
ThreadCommandProcessing threadCommandProcessing = _threadCommandProcessing;
threadCommandProcessing?.Stop();
}
/// <summary>
/// SetDebugMode.
/// </summary>
/// <param name="mode"></param>
public override void SetDebugMode(DebugModes mode)
{
_wrappedDebugger.Value.SetDebugMode(mode);
base.SetDebugMode(mode);
}
/// <summary>
/// True when debugger is active with breakpoints.
/// </summary>
public override bool IsActive
{
get
{
return (InBreakpoint || _wrappedDebugger.Value.IsActive || _wrappedDebugger.Value.InBreakpoint);
}
}
/// <summary>
/// Sets debugger stepping mode.
/// </summary>
/// <param name="enabled">True if stepping is to be enabled.</param>
public override void SetDebuggerStepMode(bool enabled)
{
// Enable both the wrapper and wrapped debuggers for debugging before setting step mode.
const DebugModes mode = DebugModes.LocalScript | DebugModes.RemoteScript;
base.SetDebugMode(mode);
_wrappedDebugger.Value.SetDebugMode(mode);
_wrappedDebugger.Value.SetDebuggerStepMode(enabled);
}
/// <summary>
/// InternalProcessCommand.
/// </summary>
/// <param name="command"></param>
/// <param name="output"></param>
/// <returns></returns>
internal override DebuggerCommand InternalProcessCommand(string command, IList<PSObject> output)
{
return _wrappedDebugger.Value.InternalProcessCommand(command, output);
}
/// <summary>
/// Sets up debugger to debug provided job or its child jobs.
/// </summary>
/// <param name="job">
/// Job object that is either a debuggable job or a container of
/// debuggable child jobs.
/// </param>
/// <param name="breakAll">
/// If true, the debugger automatically invokes a break all when it
/// attaches to the job.
/// </param>
internal override void DebugJob(Job job, bool breakAll) =>
_wrappedDebugger.Value.DebugJob(job, breakAll);
/// <summary>
/// Removes job from debugger job list and pops its
/// debugger from the active debugger stack.
/// </summary>
/// <param name="job">Job.</param>
internal override void StopDebugJob(Job job)
{
_wrappedDebugger.Value.StopDebugJob(job);
}
/// <summary>
/// Sets up debugger to debug provided Runspace in a nested debug session.
/// </summary>
/// <param name="runspace">
/// Runspace to debug.
/// </param>
/// <param name="breakAll">
/// When true, this command will invoke a BreakAll when the debugger is
/// first attached.
/// </param>
internal override void DebugRunspace(Runspace runspace, bool breakAll)
{
_wrappedDebugger.Value.DebugRunspace(runspace, breakAll);
}
/// <summary>
/// Removes the provided Runspace from the nested "active" debugger state.
/// </summary>
/// <param name="runspace">Runspace.</param>
internal override void StopDebugRunspace(Runspace runspace)
{
_wrappedDebugger.Value.StopDebugRunspace(runspace);
}
/// <summary>
/// IsPushed.
/// </summary>
internal override bool IsPushed
{
get
{
return _wrappedDebugger.Value.IsPushed;
}
}
/// <summary>
/// IsRemote.
/// </summary>
internal override bool IsRemote
{
get
{
return _wrappedDebugger.Value.IsRemote;
}
}
/// <summary>
/// IsDebuggerSteppingEnabled.
/// </summary>
internal override bool IsDebuggerSteppingEnabled
{
get
{
return _wrappedDebugger.Value.IsDebuggerSteppingEnabled;
}
}
/// <summary>
/// UnhandledBreakpointMode.
/// </summary>
internal override UnhandledBreakpointProcessingMode UnhandledBreakpointMode
{
get
{
return _wrappedDebugger.Value.UnhandledBreakpointMode;
}
set
{
_wrappedDebugger.Value.UnhandledBreakpointMode = value;
if (value == UnhandledBreakpointProcessingMode.Ignore &&
_inDebugMode)
{
// Release debugger stop hold.
ExitDebugMode(DebuggerResumeAction.Continue);
}
}
}
/// <summary>
/// IsPendingDebugStopEvent.
/// </summary>
internal override bool IsPendingDebugStopEvent
{
get { return _wrappedDebugger.Value.IsPendingDebugStopEvent; }
}
/// <summary>
/// ReleaseSavedDebugStop.
/// </summary>
internal override void ReleaseSavedDebugStop()
{
_wrappedDebugger.Value.ReleaseSavedDebugStop();
}
/// <summary>
/// Returns IEnumerable of CallStackFrame objects.
/// </summary>
/// <returns></returns>
public override IEnumerable<CallStackFrame> GetCallStack()
{
return _wrappedDebugger.Value.GetCallStack();
}
internal override void Break(object triggerObject = null)
{
_wrappedDebugger.Value.Break(triggerObject);
}
#endregion
#region IDisposable
/// <summary>
/// Dispose.
/// </summary>
public void Dispose()
{
RemoveDebuggerCallbacks();
if (_inDebugMode)
{
ExitDebugMode(DebuggerResumeAction.Stop);
}
_nestedDebugStopCompleteEvent?.Dispose();
_processCommandCompleteEvent?.Dispose();
}
#endregion
#region Private Classes
private sealed class ThreadCommandProcessing
{
// Members
private readonly ManualResetEventSlim _commandCompleteEvent;
private readonly Debugger _wrappedDebugger;
private readonly PSCommand _command;
private readonly PSDataCollection<PSObject> _output;
private DebuggerCommandResults _results;
private Exception _exception;
#if !UNIX
private WindowsIdentity _identityToImpersonate;
#endif
// Constructors
private ThreadCommandProcessing() { }
public ThreadCommandProcessing(
PSCommand command,
PSDataCollection<PSObject> output,
Debugger debugger,
ManualResetEventSlim processCommandCompleteEvent)
{
_command = command;
_output = output;
_wrappedDebugger = debugger;
_commandCompleteEvent = processCommandCompleteEvent;
}
// Methods
public DebuggerCommandResults Invoke(ManualResetEventSlim startInvokeEvent)
{
#if !UNIX
// Get impersonation information to flow if any.
Utils.TryGetWindowsImpersonatedIdentity(out _identityToImpersonate);
#endif
// Signal thread to process command.
Dbg.Assert(!_commandCompleteEvent.IsSet, "Command complete event shoulds always be non-signaled here.");
Dbg.Assert(!startInvokeEvent.IsSet, "The event should always be in non-signaled state here.");
startInvokeEvent.Set();
// Wait for completion.
_commandCompleteEvent.Wait();
_commandCompleteEvent.Reset();
#if !UNIX
if (_identityToImpersonate != null)
{
_identityToImpersonate.Dispose();
_identityToImpersonate = null;
}
#endif
// Propagate exception.
if (_exception != null)
{
throw _exception;
}
// Return command processing results.
return _results;
}
public void Stop()
{
Debugger debugger = _wrappedDebugger;
debugger?.StopProcessCommand();
}
internal void DoInvoke()
{
try
{
#if !UNIX
if (_identityToImpersonate != null)
{
_results = WindowsIdentity.RunImpersonated(
_identityToImpersonate.AccessToken,
() => _wrappedDebugger.ProcessCommand(_command, _output));
return;
}
#endif
_results = _wrappedDebugger.ProcessCommand(_command, _output);
}
catch (Exception e)
{
_exception = e;
}
finally
{
_commandCompleteEvent.Set();
}
}
}
#endregion
#region Private methods
/// <summary>
/// Add Debugger suspend execution callback.
/// </summary>
private void SetDebuggerCallbacks()
{
if (_runspace != null &&
_runspace.ExecutionContext != null &&
_wrappedDebugger.Value != null)
{
SubscribeWrappedDebugger(_wrappedDebugger.Value);
// Register debugger events for remote forwarding.
var eventManager = _runspace.ExecutionContext.Events;
if (!eventManager.GetEventSubscribers(RemoteDebugger.RemoteDebuggerStopEvent).GetEnumerator().MoveNext())
{
eventManager.SubscribeEvent(
source: null,
eventName: null,
sourceIdentifier: RemoteDebugger.RemoteDebuggerStopEvent,
data: null,
action: null,
supportEvent: true,
forwardEvent: true);
}
if (!eventManager.GetEventSubscribers(RemoteDebugger.RemoteDebuggerBreakpointUpdatedEvent).GetEnumerator().MoveNext())
{
eventManager.SubscribeEvent(
source: null,
eventName: null,
sourceIdentifier: RemoteDebugger.RemoteDebuggerBreakpointUpdatedEvent,
data: null,
action: null,
supportEvent: true,
forwardEvent: true);
}
}
}
/// <summary>
/// Remove the suspend execution callback.
/// </summary>
private void RemoveDebuggerCallbacks()
{
if (_runspace != null &&
_runspace.ExecutionContext != null &&
_wrappedDebugger.Value != null)
{
UnsubscribeWrappedDebugger(_wrappedDebugger.Value);
// Unregister debugger events for remote forwarding.
var eventManager = _runspace.ExecutionContext.Events;
foreach (var subscriber in eventManager.GetEventSubscribers(RemoteDebugger.RemoteDebuggerStopEvent))
{
eventManager.UnsubscribeEvent(subscriber);
}
foreach (var subscriber in eventManager.GetEventSubscribers(RemoteDebugger.RemoteDebuggerBreakpointUpdatedEvent))
{
eventManager.UnsubscribeEvent(subscriber);
}
}
}
/// <summary>
/// Handler for debugger events.
/// </summary>
private void HandleDebuggerStop(object sender, DebuggerStopEventArgs e)
{
// Ignore if we are in restricted mode.
if (!IsDebuggingSupported())
{
return;
}
if (LocalDebugMode)
{
// Forward event locally.
RaiseDebuggerStopEvent(e);
return;
}
if ((DebugMode & DebugModes.RemoteScript) != DebugModes.RemoteScript)
{
return;
}
_debuggerStopEventArgs = e;
PSHost contextHost = null;
try
{
// Save current context remote host.
contextHost = _runspace.ExecutionContext.InternalHost.ExternalHost;
// Forward event to remote client.
Dbg.Assert(_runspace != null, "Runspace cannot be null.");
_runspace.ExecutionContext.Events.GenerateEvent(
sourceIdentifier: RemoteDebugger.RemoteDebuggerStopEvent,
sender: null,
args: new object[] { e },
extraData: null);
//
// Start the debug mode. This is a blocking call and will return only
// after ExitDebugMode() is called.
//
EnterDebugMode(_wrappedDebugger.Value.IsPushed);
// Restore original context remote host.
_runspace.ExecutionContext.InternalHost.SetHostRef(contextHost);
}
catch (Exception)
{
}
finally
{
_debuggerStopEventArgs = null;
}
}
/// <summary>
/// HandleBreakpointUpdated.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void HandleBreakpointUpdated(object sender, BreakpointUpdatedEventArgs e)
{
// Ignore if we are in restricted mode.
if (!IsDebuggingSupported())
{
return;
}
if (LocalDebugMode)
{
// Forward event locally.
RaiseBreakpointUpdatedEvent(e);
return;
}
try
{
// Forward event to remote client.
Dbg.Assert(_runspace != null, "Runspace cannot be null.");
_runspace.ExecutionContext.Events.GenerateEvent(
sourceIdentifier: RemoteDebugger.RemoteDebuggerBreakpointUpdatedEvent,
sender: null,
args: new object[] { e },
extraData: null);
}
catch (Exception)
{
}
}
private void HandleNestedDebuggingCancelEvent(object sender, EventArgs e)
{
// Forward cancel event from wrapped debugger.
RaiseNestedDebuggingCancelEvent();
// Release debugger.
if (_inDebugMode)
{
ExitDebugMode(DebuggerResumeAction.Continue);
}
}
/// <summary>
/// Sends a DebuggerStop event to the client and enters a nested pipeline.
/// </summary>
private void EnterDebugMode(bool isNestedStop)
{
_inDebugMode = true;
try
{
_runspace.ExecutionContext.SetVariable(SpecialVariables.NestedPromptCounterVarPath, 1);
if (isNestedStop)
{
// Blocking call for nested debugger execution (Debug-Runspace) stop events.
// The root debugger never makes two EnterDebugMode calls without an ExitDebugMode.
_nestedDebugStopCompleteEvent ??= new ManualResetEventSlim(false);
_nestedDebugging = true;
OnEnterDebugMode(_nestedDebugStopCompleteEvent);
}
else
{
// Blocking call.
// Process all client commands as nested until nested pipeline is exited at
// which point this call returns.
_driverInvoker.EnterNestedPipeline();
}
}
catch (Exception)
{
}
finally
{
_inDebugMode = false;
_nestedDebugging = false;
}
// Check to see if we should re-raise the stop event locally.
if (_raiseStopEventLocally)
{
_raiseStopEventLocally = false;
LocalDebugMode = true;
HandleDebuggerStop(this, _debuggerStopEventArgs);
}
}
/// <summary>
/// Blocks DebuggerStop event thread until exit debug mode is
/// received from the client.
/// </summary>
private void OnEnterDebugMode(ManualResetEventSlim debugModeCompletedEvent)
{
Dbg.Assert(!debugModeCompletedEvent.IsSet, "Event should always be non-signaled here.");
while (true)
{
debugModeCompletedEvent.Wait();
debugModeCompletedEvent.Reset();
if (_threadCommandProcessing != null)
{
// Process command.
_threadCommandProcessing.DoInvoke();
_threadCommandProcessing = null;
}
else
{
// No command to process. Exit debug mode.
break;
}
}
}
/// <summary>
/// Exits the server side nested pipeline.
/// </summary>
private void ExitDebugMode(DebuggerResumeAction resumeAction)
{
_debuggerStopEventArgs.ResumeAction = resumeAction;
try
{
if (_nestedDebugging)
{
// Release nested debugger.
_nestedDebugStopCompleteEvent.Set();
}
else
{
// Release EnterDebugMode blocking call.
_driverInvoker.ExitNestedPipeline();
}
_runspace.ExecutionContext.SetVariable(SpecialVariables.NestedPromptCounterVarPath, 0);
}
catch (Exception)
{
}
}
private void SubscribeWrappedDebugger(Debugger wrappedDebugger)
{
wrappedDebugger.DebuggerStop += HandleDebuggerStop;
wrappedDebugger.BreakpointUpdated += HandleBreakpointUpdated;
wrappedDebugger.NestedDebuggingCancelledEvent += HandleNestedDebuggingCancelEvent;
}
private void UnsubscribeWrappedDebugger(Debugger wrappedDebugger)
{
wrappedDebugger.DebuggerStop -= HandleDebuggerStop;
wrappedDebugger.BreakpointUpdated -= HandleBreakpointUpdated;
wrappedDebugger.NestedDebuggingCancelledEvent -= HandleNestedDebuggingCancelEvent;
}
private bool IsDebuggingSupported()
{
// Restriction only occurs on a (non-pushed) local runspace.
LocalRunspace localRunspace = _runspace as LocalRunspace;
if (localRunspace != null)
{
CmdletInfo cmdletInfo = localRunspace.ExecutionContext.EngineSessionState.GetCmdlet(SetPSBreakCommandText);
if ((cmdletInfo != null) && (cmdletInfo.Visibility != SessionStateEntryVisibility.Public))
{
return false;
}
}
return true;
}
#endregion
#region Internal Methods
/// <summary>
/// HandleStopSignal.
/// </summary>
/// <returns>True if stop signal is handled.</returns>
internal bool HandleStopSignal()
{
// If in pushed mode then stop any running command.
if (IsPushed && (_threadCommandProcessing != null))
{
StopProcessCommand();
return true;
}
// Set debug mode to "None" so that current command can stop and not
// potentially not respond in a debugger stop. Use RestoreDebugger() to
// restore debugger to original mode.
_wrappedDebugger.Value.SetDebugMode(DebugModes.None);
if (InBreakpoint)
{
try
{
SetDebuggerAction(DebuggerResumeAction.Continue);
}
catch (PSInvalidOperationException) { }
}
return false;
}
// Sets the wrapped debugger to the same mode as the wrapper
// server remote debugger, enabling it if remote debugging is enabled.
internal void CheckDebuggerState()
{
if ((_wrappedDebugger.Value.DebugMode == DebugModes.None &&
(DebugMode & DebugModes.RemoteScript) == DebugModes.RemoteScript))
{
_wrappedDebugger.Value.SetDebugMode(DebugMode);
}
}
internal void StartPowerShellCommand(
PowerShell powershell,
Guid powershellId,
Guid runspacePoolId,
ServerRunspacePoolDriver runspacePoolDriver,
ApartmentState apartmentState,
ServerRemoteHost remoteHost,
HostInfo hostInfo,
RemoteStreamOptions streamOptions,
bool addToHistory)
{
// For nested debugger command processing, invoke command on new local runspace since
// the root script debugger runspace is unavailable (it is running a PS script).
Runspace runspace = (remoteHost != null) ?
RunspaceFactory.CreateRunspace(remoteHost) : RunspaceFactory.CreateRunspace();
runspace.Open();
try
{
powershell.InvocationStateChanged += HandlePowerShellInvocationStateChanged;
powershell.SetIsNested(false);
const string script = @"
param ($Debugger, $Commands, $output)
trap { throw $_ }
$Debugger.ProcessCommand($Commands, $output)
";
PSDataCollection<PSObject> output = new PSDataCollection<PSObject>();
PSCommand Commands = new PSCommand(powershell.Commands);
powershell.Commands.Clear();
powershell.AddScript(script).AddParameter("Debugger", this).AddParameter("Commands", Commands).AddParameter("output", output);
ServerPowerShellDriver driver = new ServerPowerShellDriver(
powershell,
null,
true,
powershellId,
runspacePoolId,
runspacePoolDriver,
apartmentState,
hostInfo,
streamOptions,
addToHistory,
runspace,
output);
driver.Start();
}
catch (Exception)
{
runspace.Close();
runspace.Dispose();
}
}
private void HandlePowerShellInvocationStateChanged(object sender, PSInvocationStateChangedEventArgs e)
{
if (e.InvocationStateInfo.State == PSInvocationState.Completed ||
e.InvocationStateInfo.State == PSInvocationState.Stopped ||
e.InvocationStateInfo.State == PSInvocationState.Failed)
{
PowerShell powershell = sender as PowerShell;
powershell.InvocationStateChanged -= HandlePowerShellInvocationStateChanged;
Runspace runspace = powershell.GetRunspaceConnection() as Runspace;
runspace.Close();
runspace.Dispose();
}
}
internal int GetBreakpointCount()
{
ScriptDebugger scriptDebugger = _wrappedDebugger.Value as ScriptDebugger;
if (scriptDebugger != null)
{
return scriptDebugger.GetBreakpoints().Count;
}
else
{
return 0;
}
}
internal void PushDebugger(Debugger debugger)
{
if (debugger == null)
{
return;
}
if (debugger.Equals(this))
{
throw new PSInvalidOperationException(DebuggerStrings.RemoteServerDebuggerCannotPushSelf);
}
if (_wrappedDebugger.IsOverridden)
{
throw new PSInvalidOperationException(DebuggerStrings.RemoteServerDebuggerAlreadyPushed);
}
// Swap wrapped debugger.
UnsubscribeWrappedDebugger(_wrappedDebugger.Value);
_wrappedDebugger.Override(debugger);
SubscribeWrappedDebugger(_wrappedDebugger.Value);
}
internal void PopDebugger()
{
if (!_wrappedDebugger.IsOverridden)
{
return;
}
// Swap wrapped debugger.
UnsubscribeWrappedDebugger(_wrappedDebugger.Value);
_wrappedDebugger.Revert();
SubscribeWrappedDebugger(_wrappedDebugger.Value);
}
internal void ReleaseAndRaiseDebugStopLocal()
{
if (_inDebugMode)
{
// Release debugger stop and signal to re-raise locally.
_raiseStopEventLocally = true;
ExitDebugMode(DebuggerResumeAction.Continue);
}
}
#endregion
#region Internal Properties
/// <summary>
/// When true, this debugger is being used for local debugging (not remote debugging)
/// via the Debug-Runspace cmdlet.
/// </summary>
internal bool LocalDebugMode
{
get;
set;
}
#endregion
}
}
|