File size: 57,547 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis; // for fxcop
using System.IO;
using System.Linq;
using System.Management.Automation.Host;
using System.Management.Automation.Internal;
using System.Management.Automation.Remoting;
using System.Runtime.Serialization;
using System.Threading;
using Microsoft.PowerShell.Commands;
using Dbg = System.Management.Automation.Diagnostics;
#if LEGACYTELEMETRY
using Microsoft.PowerShell.Telemetry.Internal;
#endif
#pragma warning disable 1634, 1691 // Stops compiler from warning about unknown warnings
namespace System.Management.Automation.Runspaces
{
/// <summary>
/// Runspace class for local runspace.
/// </summary>
internal sealed partial class LocalRunspace : RunspaceBase
{
#region constructors
/// <summary>
/// Construct an instance of an Runspace using a custom implementation
/// of PSHost.
/// </summary>
/// <param name="host">
/// The explicit PSHost implementation
/// </param>
/// <param name="initialSessionState">
/// configuration information for this minshell.
/// </param>
/// <param name="suppressClone">
/// If true, don't make a copy of the initial session state object
/// </param>
[SuppressMessage("Microsoft.Maintainability", "CA1505:AvoidUnmaintainableCode")]
internal LocalRunspace(PSHost host, InitialSessionState initialSessionState, bool suppressClone)
: base(host, initialSessionState, suppressClone)
{
}
/// <summary>
/// Construct an instance of an Runspace using a custom implementation
/// of PSHost.
/// </summary>
/// <param name="host">
/// The explicit PSHost implementation
/// </param>
/// <param name="initialSessionState">
/// configuration information for this minshell.
/// </param>
[SuppressMessage("Microsoft.Maintainability", "CA1505:AvoidUnmaintainableCode")]
internal LocalRunspace(PSHost host, InitialSessionState initialSessionState)
: base(host, initialSessionState)
{
}
#endregion constructors
/// <summary>
/// Private data to be used by applications built on top of PowerShell.
///
/// Local runspace pool is created with application private data set to an empty <see cref="PSPrimitiveDictionary"/>.
///
/// Runspaces that are part of a <see cref="RunspacePool"/> inherit application private data from the pool.
/// </summary>
public override PSPrimitiveDictionary GetApplicationPrivateData()
{
// if we didn't get applicationPrivateData from a runspace pool,
// then we create a new one
if (_applicationPrivateData == null)
{
lock (this.SyncRoot)
{
_applicationPrivateData ??= new PSPrimitiveDictionary();
}
}
return _applicationPrivateData;
}
/// <summary>
/// A method that runspace pools can use to propagate application private data into runspaces.
/// </summary>
/// <param name="applicationPrivateData"></param>
internal override void SetApplicationPrivateData(PSPrimitiveDictionary applicationPrivateData)
{
_applicationPrivateData = applicationPrivateData;
}
private PSPrimitiveDictionary _applicationPrivateData;
/// <summary>
/// Gets the event manager.
/// </summary>
public override PSEventManager Events
{
get
{
System.Management.Automation.ExecutionContext context = this.GetExecutionContext;
if (context == null)
{
return null;
}
return context.Events;
}
}
/// <summary>
/// This property determines whether a new thread is create for each invocation.
/// </summary>
/// <remarks>
/// Any updates to the value of this property must be done before the Runspace is opened
/// </remarks>
/// <exception cref="InvalidRunspaceStateException">
/// An attempt to change this property was made after opening the Runspace
/// </exception>
/// <exception cref="InvalidOperationException">
/// The thread options cannot be changed to the requested value
/// </exception>
public override PSThreadOptions ThreadOptions
{
get
{
return _createThreadOptions;
}
set
{
lock (this.SyncRoot)
{
if (value == _createThreadOptions)
{
return;
}
if (this.RunspaceStateInfo.State != RunspaceState.BeforeOpen)
{
if (!IsValidThreadOptionsConfiguration(value))
{
throw new InvalidOperationException(StringUtil.Format(RunspaceStrings.InvalidThreadOptionsChange));
}
}
_createThreadOptions = value;
}
}
}
private bool IsValidThreadOptionsConfiguration(PSThreadOptions options)
{
// If the runspace is already opened, we only allow changing options when:
// - The new value is ReuseThread, and
// - The apartment state is not STA
return options == PSThreadOptions.ReuseThread && this.ApartmentState != ApartmentState.STA;
}
private PSThreadOptions _createThreadOptions = PSThreadOptions.Default;
/// <summary>
/// Resets the runspace state to allow for fast reuse. Not all of the runspace
/// elements are reset. The goal is to minimize the chance of the user taking
/// accidental dependencies on prior runspace state.
/// </summary>
public override void ResetRunspaceState()
{
PSInvalidOperationException invalidOperation = null;
if (this.InitialSessionState == null)
{
invalidOperation = PSTraceSource.NewInvalidOperationException();
}
else if (this.RunspaceState != Runspaces.RunspaceState.Opened)
{
invalidOperation = PSTraceSource.NewInvalidOperationException(
RunspaceStrings.RunspaceNotInOpenedState, this.RunspaceState);
}
else if (this.RunspaceAvailability != Runspaces.RunspaceAvailability.Available)
{
invalidOperation = PSTraceSource.NewInvalidOperationException(
RunspaceStrings.ConcurrentInvokeNotAllowed);
}
if (invalidOperation != null)
{
invalidOperation.Source = "ResetRunspaceState";
throw invalidOperation;
}
this.InitialSessionState.ResetRunspaceState(this.ExecutionContext);
// Finally, reset history for this runspace. This needs to be done
// last to so that changes to the default MaximumHistorySize will be picked up.
_history = new History(this.ExecutionContext);
}
#region protected_methods
/// <summary>
/// Create a pipeline from a command string.
/// </summary>
/// <param name="command">A valid command string. Can be null.</param>
/// <param name="addToHistory">If true command is added to history.</param>
/// <param name="isNested">True for nested pipeline.</param>
/// <returns>
/// A pipeline pre-filled with Commands specified in commandString.
/// </returns>
protected override Pipeline CoreCreatePipeline(string command, bool addToHistory, bool isNested)
{
// NTRAID#Windows Out Of Band Releases-915851-2005/09/13
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return (Pipeline)new LocalPipeline(this, command, addToHistory, isNested);
}
#endregion protected_methods
#region protected_properties
/// <summary>
/// Gets the execution context.
/// </summary>
internal override ExecutionContext GetExecutionContext
{
get
{
if (_engine == null)
return null;
else
return _engine.Context;
}
}
/// <summary>
/// Returns true if the internal host is in a nested prompt.
/// </summary>
internal override bool InNestedPrompt
{
get
{
System.Management.Automation.ExecutionContext context = this.GetExecutionContext;
if (context == null)
{
return false;
}
return context.InternalHost.HostInNestedPrompt() || InInternalNestedPrompt;
}
}
/// <summary>
/// Allows internal nested commands to be run as "HostInNestedPrompt" so that CreatePipelineProcessor() does
/// not set CommandOrigin to Internal as it normally does by default. This then allows cmdlets like Invoke-History
/// to replay history command lines in the current runspace with the same language mode context as the host.
/// </summary>
internal bool InInternalNestedPrompt
{
get;
set;
}
#endregion protected_properties
#region internal_properties
/// <summary>
/// Gets history manager for this runspace.
/// </summary>
/// <value></value>
internal History History
{
get
{
return _history;
}
}
/// <summary>
/// Gets transcription data for this runspace.
/// </summary>
/// <value></value>
internal TranscriptionData TranscriptionData
{
get
{
return _transcriptionData;
}
}
private TranscriptionData _transcriptionData = null;
private JobRepository _jobRepository;
/// <summary>
/// List of jobs in this runspace.
/// </summary>
internal JobRepository JobRepository
{
get
{
return _jobRepository;
}
}
private JobManager _jobManager;
/// <summary>
/// Manager for JobSourceAdapters registered in this runspace.
/// </summary>
public override JobManager JobManager
{
get
{
return _jobManager;
}
}
private RunspaceRepository _runspaceRepository;
/// <summary>
/// List of remote runspaces in this runspace.
/// </summary>
internal RunspaceRepository RunspaceRepository
{
get
{
return _runspaceRepository;
}
}
#endregion internal_properties
#region Debugger
/// <summary>
/// Debugger.
/// </summary>
public override Debugger Debugger
{
get
{
return InternalDebugger ?? base.Debugger;
}
}
private static readonly string s_debugPreferenceCachePath = Path.Combine(Platform.GetFolderPath(Environment.SpecialFolder.ProgramFiles), "WindowsPowerShell", "DebugPreference.clixml");
private static readonly object s_debugPreferenceLockObject = new object();
/// <summary>
/// DebugPreference serves as a property bag to keep
/// track of all process specific debug preferences.
/// </summary>
public class DebugPreference
{
public string[] AppDomainNames;
}
/// <summary>
/// CreateDebugPerfStruct is a helper method to populate DebugPreference.
/// </summary>
/// <param name="AppDomainNames">App Domain Names.</param>
/// <returns>DebugPreference.</returns>
private static DebugPreference CreateDebugPreference(string[] AppDomainNames)
{
DebugPreference DebugPreference = new DebugPreference();
DebugPreference.AppDomainNames = AppDomainNames;
return DebugPreference;
}
/// <summary>
/// SetDebugPreference is a helper method used to enable and disable debug preference.
/// </summary>
/// <param name="processName">Process Name.</param>
/// <param name="appDomainName">App Domain Name.</param>
/// <param name="enable">Indicates if the debug preference has to be enabled or disabled.</param>
internal static void SetDebugPreference(string processName, List<string> appDomainName, bool enable)
{
lock (s_debugPreferenceLockObject)
{
bool iscacheUpdated = false;
Hashtable debugPreferenceCache = null;
string[] appDomainNames = null;
if (appDomainName != null)
{
appDomainNames = appDomainName.ToArray();
}
if (!File.Exists(LocalRunspace.s_debugPreferenceCachePath))
{
if (enable)
{
DebugPreference DebugPreference = CreateDebugPreference(appDomainNames);
debugPreferenceCache = new Hashtable();
debugPreferenceCache.Add(processName, DebugPreference);
iscacheUpdated = true;
}
}
else
{
debugPreferenceCache = GetDebugPreferenceCache(null);
if (debugPreferenceCache != null)
{
if (enable)
{
// Debug preference is set to enable.
// If the cache does not contain the process name, then we just update the cache.
if (!debugPreferenceCache.ContainsKey(processName))
{
DebugPreference DebugPreference = CreateDebugPreference(appDomainNames);
debugPreferenceCache.Add(processName, DebugPreference);
iscacheUpdated = true;
}
else
{
// In this case, the cache contains the process name, hence we check the list of
// app domains for which the debug preference is set to enable.
DebugPreference processDebugPreference = GetProcessSpecificDebugPreference(debugPreferenceCache[processName]);
// processDebugPreference would point to null if debug preference is enabled for all app domains.
// If processDebugPreference is not null then it means that user has selected specific
// appdomins for which the debug preference has to be enabled.
if (processDebugPreference != null)
{
List<string> cachedAppDomainNames = null;
if (processDebugPreference.AppDomainNames != null && processDebugPreference.AppDomainNames.Length > 0)
{
cachedAppDomainNames = new List<string>(processDebugPreference.AppDomainNames);
foreach (string currentAppDomainName in appDomainName)
{
if (!cachedAppDomainNames.Contains(currentAppDomainName, StringComparer.OrdinalIgnoreCase))
{
cachedAppDomainNames.Add(currentAppDomainName);
iscacheUpdated = true;
}
}
}
if (iscacheUpdated)
{
DebugPreference DebugPreference = CreateDebugPreference(cachedAppDomainNames.ToArray());
debugPreferenceCache[processName] = DebugPreference;
}
}
}
}
else
{
// Debug preference is set to disable.
if (debugPreferenceCache.ContainsKey(processName))
{
if (appDomainName == null)
{
debugPreferenceCache.Remove(processName);
iscacheUpdated = true;
}
else
{
DebugPreference processDebugPreference = GetProcessSpecificDebugPreference(debugPreferenceCache[processName]);
// processDebugPreference would point to null if debug preference is enabled for all app domains.
// If processDebugPreference is not null then it means that user has selected specific
// appdomins for which the debug preference has to be enabled.
if (processDebugPreference != null)
{
List<string> cachedAppDomainNames = null;
if (processDebugPreference.AppDomainNames != null && processDebugPreference.AppDomainNames.Length > 0)
{
cachedAppDomainNames = new List<string>(processDebugPreference.AppDomainNames);
foreach (string currentAppDomainName in appDomainName)
{
if (cachedAppDomainNames.Contains(currentAppDomainName, StringComparer.OrdinalIgnoreCase))
{
// remove requested appdomains debug preference details.
cachedAppDomainNames.Remove(currentAppDomainName);
iscacheUpdated = true;
}
}
}
if (iscacheUpdated)
{
DebugPreference DebugPreference = CreateDebugPreference(cachedAppDomainNames.ToArray());
debugPreferenceCache[processName] = DebugPreference;
}
}
}
}
}
}
else
{
// For whatever reason, cache is corrupted. Hence override the cache content.
if (enable)
{
debugPreferenceCache = new Hashtable();
DebugPreference DebugPreference = CreateDebugPreference(appDomainNames);
debugPreferenceCache.Add(processName, DebugPreference);
iscacheUpdated = true;
}
}
}
if (iscacheUpdated)
{
using (PowerShell ps = PowerShell.Create())
{
ps.AddCommand("Export-Clixml").AddParameter("Path", LocalRunspace.s_debugPreferenceCachePath).AddParameter("InputObject", debugPreferenceCache);
ps.Invoke();
}
}
}
}
/// <summary>
/// GetDebugPreferenceCache is a helper method used to fetch
/// the debug preference cache contents as a Hashtable.
/// </summary>
/// <param name="runspace">Runspace.</param>
/// <returns>If the Debug preference is persisted then a hashtable containing
/// the debug preference is returned or else Null is returned.</returns>
private static Hashtable GetDebugPreferenceCache(Runspace runspace)
{
Hashtable debugPreferenceCache = null;
using (PowerShell ps = PowerShell.Create())
{
if (runspace != null)
{
ps.Runspace = runspace;
}
ps.AddCommand("Import-Clixml").AddParameter("Path", LocalRunspace.s_debugPreferenceCachePath);
Collection<PSObject> psObjects = ps.Invoke();
if (psObjects != null && psObjects.Count == 1)
{
debugPreferenceCache = psObjects[0].BaseObject as Hashtable;
}
}
return debugPreferenceCache;
}
/// <summary>
/// GetProcessSpecificDebugPreference is a helper method used to fetch persisted process specific debug preference.
/// </summary>
/// <param name="debugPreference"></param>
/// <returns></returns>
private static DebugPreference GetProcessSpecificDebugPreference(object debugPreference)
{
DebugPreference processDebugPreference = null;
if (debugPreference != null)
{
PSObject debugPreferencePsObject = debugPreference as PSObject;
if (debugPreferencePsObject != null)
{
processDebugPreference = LanguagePrimitives.ConvertTo<DebugPreference>(debugPreferencePsObject);
}
}
return processDebugPreference;
}
#endregion
/// <summary>
/// Open the runspace.
/// </summary>
/// <param name="syncCall">
/// parameter which control if Open is done synchronously or asynchronously
/// </param>
protected override void OpenHelper(bool syncCall)
{
if (syncCall)
{
// Open runspace synchronously
DoOpenHelper();
}
else
{
// Open runspace in another thread
Thread asyncThread = new Thread(new ThreadStart(this.OpenThreadProc));
asyncThread.Start();
}
}
/// <summary>
/// Start method for asynchronous open.
/// </summary>
private void OpenThreadProc()
{
#pragma warning disable 56500
try
{
DoOpenHelper();
}
catch (Exception)
{
// This exception is reported by raising RunspaceState
// change event.
}
#pragma warning restore 56500
}
/// <summary>
/// Helper function used for opening a runspace.
/// </summary>
private void DoOpenHelper()
{
Dbg.Assert(InitialSessionState != null, "InitialSessionState should not be null");
// NTRAID#Windows Out Of Band Releases-915851-2005/09/13
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
bool startLifeCycleEventWritten = false;
s_runspaceInitTracer.WriteLine("begin open runspace");
try
{
_transcriptionData = new TranscriptionData();
// All ISS-based configuration of the engine itself is done by AutomationEngine,
// which calls InitialSessionState.Bind(). Anything that doesn't
// require an active and open runspace should be done in ISS.Bind()
_engine = new AutomationEngine(Host, InitialSessionState);
_engine.Context.CurrentRunspace = this;
// Log engine for start of engine life
MshLog.LogEngineLifecycleEvent(_engine.Context, EngineState.Available);
startLifeCycleEventWritten = true;
_history = new History(_engine.Context);
_jobRepository = new JobRepository();
_jobManager = new JobManager();
_runspaceRepository = new RunspaceRepository();
s_runspaceInitTracer.WriteLine("initializing built-in aliases and variable information");
InitializeDefaults();
}
catch (Exception exception)
{
s_runspaceInitTracer.WriteLine("Runspace open failed");
// Log engine health event
LogEngineHealthEvent(exception);
// Log engine for end of engine life
if (startLifeCycleEventWritten)
{
Dbg.Assert(_engine.Context != null, "if startLifeCycleEventWritten is true, ExecutionContext must be present");
MshLog.LogEngineLifecycleEvent(_engine.Context, EngineState.Stopped);
}
// Open failed. Set the RunspaceState to Broken.
SetRunspaceState(RunspaceState.Broken, exception);
// Raise the event
RaiseRunspaceStateEvents();
// Rethrow the exception. For asynchronous execution,
// OpenThreadProc will catch it. For synchronous execution
// caller of open will catch it.
throw;
}
SetRunspaceState(RunspaceState.Opened);
RunspaceOpening.Set();
// Raise the event
RaiseRunspaceStateEvents();
s_runspaceInitTracer.WriteLine("runspace opened successfully");
// Now do initial state configuration that requires an active runspace
Exception initError = InitialSessionState.BindRunspace(this, s_runspaceInitTracer);
if (initError != null)
{
// Log engine health event
LogEngineHealthEvent(initError);
// Log engine for end of engine life
Debug.Assert(_engine.Context != null,
"if startLifeCycleEventWritten is true, ExecutionContext must be present");
MshLog.LogEngineLifecycleEvent(_engine.Context, EngineState.Stopped);
// Open failed. Set the RunspaceState to Broken.
SetRunspaceState(RunspaceState.Broken, initError);
// Raise the event
RaiseRunspaceStateEvents();
// Throw the exception. For asynchronous execution,
// OpenThreadProc will catch it. For synchronous execution
// caller of open will catch it.
throw initError;
}
#if LEGACYTELEMETRY
TelemetryAPI.ReportLocalSessionCreated(InitialSessionState, TranscriptionData);
#endif
}
/// <summary>
/// Logs engine health event.
/// </summary>
internal void LogEngineHealthEvent(Exception exception)
{
LogEngineHealthEvent(
exception,
Severity.Error,
MshLog.EVENT_ID_CONFIGURATION_FAILURE,
null);
}
/// <summary>
/// Logs engine health event.
/// </summary>
internal void LogEngineHealthEvent(Exception exception,
Severity severity,
int id,
Dictionary<string, string> additionalInfo)
{
Dbg.Assert(exception != null, "Caller should validate the parameter");
LogContext logContext = new LogContext();
logContext.EngineVersion = Version.ToString();
logContext.HostId = Host.InstanceId.ToString();
logContext.HostName = Host.Name;
logContext.HostVersion = Host.Version.ToString();
logContext.RunspaceId = InstanceId.ToString();
logContext.Severity = severity.ToString();
logContext.ShellId = Utils.DefaultPowerShellShellID;
MshLog.LogEngineHealthEvent(
logContext,
id,
exception,
additionalInfo);
}
/// <summary>
/// Returns the thread that must be used to execute pipelines when CreateThreadOptions is ReuseThread.
/// </summary>
/// <remarks>
/// The pipeline calls this function after ensuring there is a single thread in the pipeline, so no locking is necessary
/// </remarks>
internal PipelineThread GetPipelineThread()
{
_pipelineThread ??= new PipelineThread(this.ApartmentState);
return _pipelineThread;
}
private PipelineThread _pipelineThread = null;
protected override void CloseHelper(bool syncCall)
{
if (syncCall)
{
// Do close synchronously
DoCloseHelper();
}
else
{
// Do close asynchronously
Thread asyncThread = new Thread(new ThreadStart(this.CloseThreadProc));
asyncThread.Start();
}
}
/// <summary>
/// Start method for asynchronous close.
/// </summary>
private void CloseThreadProc()
{
#pragma warning disable 56500
try
{
DoCloseHelper();
}
catch (Exception)
{
}
#pragma warning restore 56500
}
/// <summary>
/// Close the runspace.
/// </summary>
/// <remarks>
/// Attempts to create/execute pipelines after a call to
/// close will fail.
/// </remarks>
private void DoCloseHelper()
{
var isPrimaryRunspace = (Runspace.PrimaryRunspace == this);
var haveOpenRunspaces = false;
foreach (Runspace runspace in RunspaceList)
{
if (runspace.RunspaceStateInfo.State == RunspaceState.Opened)
{
haveOpenRunspaces = true;
break;
}
}
// When closing the primary runspace, ensure all other local runspaces are closed.
var closeAllOpenRunspaces = isPrimaryRunspace && haveOpenRunspaces;
// Stop all transcriptions and un-initialize AMSI if we're the last runspace to exit or we are exiting the primary runspace.
if (!haveOpenRunspaces)
{
ExecutionContext executionContext = this.GetExecutionContext;
if (executionContext != null)
{
PSHostUserInterface hostUI = executionContext.EngineHostInterface.UI;
hostUI?.StopAllTranscribing();
}
AmsiUtils.Uninitialize();
}
// Generate the shutdown event
Events?.GenerateEvent(PSEngineEvent.Exiting, null, Array.Empty<object>(), null, true, false);
// Stop all running pipelines
// Note:Do not perform the Cancel in lock. Reason is
// Pipeline executes in separate thread, say threadP.
// When pipeline is canceled/failed/completed in
// Pipeline.ExecuteThreadProc it removes the pipeline
// from the list of running pipelines. threadP will need
// lock to remove the pipelines from the list of running pipelines
// And we will deadlock.
// Note:It is possible that one or more pipelines in the list
// of active pipelines have completed before we call cancel.
// That is fine since Pipeline.Cancel handles that( It ignores
// the cancel request if pipeline execution has already
// completed/failed/canceled.
StopPipelines();
// Disconnect all disconnectable jobs in the job repository.
StopOrDisconnectAllJobs();
// Close or disconnect all the remote runspaces available in the
// runspace repository.
CloseOrDisconnectAllRemoteRunspaces(() =>
{
List<RemoteRunspace> runspaces = new List<RemoteRunspace>();
foreach (PSSession psSession in this.RunspaceRepository.Runspaces)
{
runspaces.Add(psSession.Runspace as RemoteRunspace);
}
return runspaces;
});
// Notify Engine components that runspace is closing.
_engine.Context.RunspaceClosingNotification();
// Log engine lifecycle event.
MshLog.LogEngineLifecycleEvent(_engine.Context, EngineState.Stopped);
// All pipelines have been canceled. Close the runspace.
_engine = null;
SetRunspaceState(RunspaceState.Closed);
// Raise Event
RaiseRunspaceStateEvents();
if (closeAllOpenRunspaces)
{
foreach (Runspace runspace in RunspaceList)
{
if (runspace.RunspaceStateInfo.State == RunspaceState.Opened)
{
runspace.Dispose();
}
}
}
// Report telemetry if we have no more open runspaces.
#if LEGACYTELEMETRY
bool allRunspacesClosed = true;
bool hostProvidesExitTelemetry = false;
foreach (var r in Runspace.RunspaceList)
{
if (r.RunspaceStateInfo.State != RunspaceState.Closed)
{
allRunspacesClosed = false;
break;
}
var localRunspace = r as LocalRunspace;
if (localRunspace != null && localRunspace.Host is IHostProvidesTelemetryData)
{
hostProvidesExitTelemetry = true;
break;
}
}
if (allRunspacesClosed && !hostProvidesExitTelemetry)
{
TelemetryAPI.ReportExitTelemetry(null);
}
#endif
}
/// <summary>
/// Closes or disconnects all the remote runspaces passed in by the getRunspace
/// function. If a remote runspace supports disconnect then it will be disconnected
/// rather than closed.
/// </summary>
private static void CloseOrDisconnectAllRemoteRunspaces(Func<List<RemoteRunspace>> getRunspaces)
{
List<RemoteRunspace> runspaces = getRunspaces();
if (runspaces.Count == 0)
{
return;
}
// whether the close of all remoterunspaces completed
using (ManualResetEvent remoteRunspaceCloseCompleted = new ManualResetEvent(false))
{
ThrottleManager throttleManager = new ThrottleManager();
throttleManager.ThrottleComplete += (object sender, EventArgs e) => remoteRunspaceCloseCompleted.Set();
foreach (RemoteRunspace remoteRunspace in runspaces)
{
IThrottleOperation operation = new CloseOrDisconnectRunspaceOperationHelper(remoteRunspace);
throttleManager.AddOperation(operation);
}
throttleManager.EndSubmitOperations();
remoteRunspaceCloseCompleted.WaitOne();
}
}
/// <summary>
/// Disconnects all disconnectable jobs listed in the JobRepository.
/// </summary>
private void StopOrDisconnectAllJobs()
{
if (JobRepository.Jobs.Count == 0)
{
return;
}
List<RemoteRunspace> disconnectRunspaces = new List<RemoteRunspace>();
using (ManualResetEvent jobsStopCompleted = new ManualResetEvent(false))
{
ThrottleManager throttleManager = new ThrottleManager();
throttleManager.ThrottleComplete += (object sender, EventArgs e) => jobsStopCompleted.Set();
foreach (Job job in this.JobRepository.Jobs)
{
// Only stop or disconnect PowerShell jobs.
if (job is not PSRemotingJob)
{
continue;
}
if (!job.CanDisconnect)
{
// If the job cannot be disconnected then add it to
// the stop list.
throttleManager.AddOperation(new StopJobOperationHelper(job));
}
else if (job.JobStateInfo.State == JobState.Running)
{
// Otherwise add disconnectable runspaces to list so that
// they can be disconnected.
IEnumerable<RemoteRunspace> jobRunspaces = job.GetRunspaces();
if (jobRunspaces != null)
{
disconnectRunspaces.AddRange(jobRunspaces);
}
}
}
// Stop jobs.
throttleManager.EndSubmitOperations();
jobsStopCompleted.WaitOne();
}
// Disconnect all disconnectable job runspaces found.
CloseOrDisconnectAllRemoteRunspaces(() => disconnectRunspaces);
}
internal void ReleaseDebugger()
{
Debugger debugger = Debugger;
if (debugger != null)
{
try
{
if (debugger.UnhandledBreakpointMode == UnhandledBreakpointProcessingMode.Wait)
{
// Sets the mode and also releases a held debug stop.
debugger.UnhandledBreakpointMode = UnhandledBreakpointProcessingMode.Ignore;
}
}
catch (PSNotImplementedException) { }
}
}
#region SessionStateProxy
protected override void DoSetVariable(string name, object value)
{
// NTRAID#Windows Out Of Band Releases-915851-2005/09/13
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
_engine.Context.EngineSessionState.SetVariableValue(name, value, CommandOrigin.Internal);
}
protected override object DoGetVariable(string name)
{
// NTRAID#Windows Out Of Band Releases-915851-2005/09/13
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.EngineSessionState.GetVariableValue(name);
}
protected override List<string> DoApplications
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.EngineSessionState.Applications;
}
}
protected override List<string> DoScripts
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.EngineSessionState.Scripts;
}
}
protected override DriveManagementIntrinsics DoDrive
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.SessionState.Drive;
}
}
protected override PSLanguageMode DoLanguageMode
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.SessionState.LanguageMode;
}
set
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
_engine.Context.SessionState.LanguageMode = value;
}
}
protected override PSModuleInfo DoModule
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.EngineSessionState.Module;
}
}
protected override PathIntrinsics DoPath
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.SessionState.Path;
}
}
protected override CmdletProviderManagementIntrinsics DoProvider
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.SessionState.Provider;
}
}
protected override PSVariableIntrinsics DoPSVariable
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.SessionState.PSVariable;
}
}
protected override CommandInvocationIntrinsics DoInvokeCommand
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.EngineIntrinsics.InvokeCommand;
}
}
protected override ProviderIntrinsics DoInvokeProvider
{
get
{
if (_disposed)
{
throw PSTraceSource.NewObjectDisposedException("runspace");
}
return _engine.Context.EngineIntrinsics.InvokeProvider;
}
}
#endregion SessionStateProxy
#region IDisposable Members
/// <summary>
/// Set to true when object is disposed.
/// </summary>
private bool _disposed;
/// <summary>
/// Protected dispose which can be overridden by derived classes.
/// </summary>
/// <param name="disposing"></param>
[SuppressMessage("Microsoft.Usage", "CA2213:DisposableFieldsShouldBeDisposed", MessageId = "pipelineThread", Justification = "pipelineThread is disposed in Close()")]
protected override void Dispose(bool disposing)
{
try
{
if (_disposed)
{
return;
}
lock (SyncRoot)
{
if (_disposed)
{
return;
}
_disposed = true;
}
if (disposing)
{
Close();
_engine = null;
_history = null;
_transcriptionData = null;
_jobManager = null;
_jobRepository = null;
_runspaceRepository = null;
if (RunspaceOpening != null)
{
RunspaceOpening.Dispose();
RunspaceOpening = null;
}
// Dispose the event manager
if (this.ExecutionContext != null && this.ExecutionContext.Events != null)
{
try
{
this.ExecutionContext.Events.Dispose();
}
catch (ObjectDisposedException)
{
}
}
}
}
finally
{
base.Dispose(disposing);
}
}
/// <summary>
/// Close the runspace.
/// </summary>
public override void Close()
{
// Do not put cleanup activities in here, as they aren't
// captured in CloseAsync() case. Instead, put them in
// DoCloseHelper()
base.Close(); // call base.Close() first to make it stop the pipeline
_pipelineThread?.Close();
}
#endregion IDisposable Members
#region private fields
/// <summary>
/// AutomationEngine instance for this runspace.
/// </summary>
private AutomationEngine _engine;
internal AutomationEngine Engine
{
get
{
return _engine;
}
}
/// <summary>
/// Manages history for this runspace.
/// </summary>
private History _history;
[TraceSource("RunspaceInit", "Initialization code for Runspace")]
private static readonly PSTraceSource s_runspaceInitTracer =
PSTraceSource.GetTracer("RunspaceInit", "Initialization code for Runspace", false);
/// <summary>
/// This ensures all processes have a server/listener.
/// </summary>
private static readonly RemoteSessionNamedPipeServer s_IPCNamedPipeServer = RemoteSessionNamedPipeServer.IPCNamedPipeServer;
#endregion private fields
}
#region Helper Class
/// <summary>
/// Helper class to stop a running job.
/// </summary>
internal sealed class StopJobOperationHelper : IThrottleOperation
{
private readonly Job _job;
/// <summary>
/// Internal constructor.
/// </summary>
/// <param name="job">Job object to stop.</param>
internal StopJobOperationHelper(Job job)
{
_job = job;
_job.StateChanged += HandleJobStateChanged;
}
/// <summary>
/// Handles the Job state change event.
/// </summary>
/// <param name="sender">Originator of event, unused.</param>
/// <param name="eventArgs">Event arguments containing Job state.</param>
private void HandleJobStateChanged(object sender, JobStateEventArgs eventArgs)
{
if (_job.IsFinishedState(_job.JobStateInfo.State))
{
// We are done when the job is in the finished state.
RaiseOperationCompleteEvent();
}
}
/// <summary>
/// Override method to start the operation.
/// </summary>
internal override void StartOperation()
{
if (_job.IsFinishedState(_job.JobStateInfo.State))
{
// The job is already in the finished state and so cannot be stopped.
RaiseOperationCompleteEvent();
}
else
{
// Otherwise stop the job.
_job.StopJob();
}
}
/// <summary>
/// Override method to stop the operation. Not used, stop operation must
/// run to completion.
/// </summary>
internal override void StopOperation()
{
}
/// <summary>
/// Event to signal ThrottleManager when the operation is complete.
/// </summary>
internal override event EventHandler<OperationStateEventArgs> OperationComplete;
/// <summary>
/// Raise the OperationComplete event.
/// </summary>
private void RaiseOperationCompleteEvent()
{
_job.StateChanged -= HandleJobStateChanged;
OperationStateEventArgs operationStateArgs = new OperationStateEventArgs();
operationStateArgs.OperationState = OperationState.StartComplete;
operationStateArgs.BaseEvent = EventArgs.Empty;
OperationComplete.SafeInvoke(this, operationStateArgs);
}
}
/// <summary>
/// Helper class to disconnect a runspace if the runspace supports disconnect
/// semantics or otherwise close the runspace.
/// </summary>
internal sealed class CloseOrDisconnectRunspaceOperationHelper : IThrottleOperation
{
private readonly RemoteRunspace _remoteRunspace;
/// <summary>
/// Internal constructor.
/// </summary>
/// <param name="remoteRunspace"></param>
internal CloseOrDisconnectRunspaceOperationHelper(RemoteRunspace remoteRunspace)
{
_remoteRunspace = remoteRunspace;
_remoteRunspace.StateChanged += HandleRunspaceStateChanged;
}
/// <summary>
/// Handle the runspace state changed event.
/// </summary>
/// <param name="sender">Sender of this information, unused.</param>
/// <param name="eventArgs">Runspace event args.</param>
private void HandleRunspaceStateChanged(object sender, RunspaceStateEventArgs eventArgs)
{
switch (eventArgs.RunspaceStateInfo.State)
{
case RunspaceState.BeforeOpen:
case RunspaceState.Closing:
case RunspaceState.Opened:
case RunspaceState.Opening:
case RunspaceState.Disconnecting:
return;
}
// remoteRunspace.Dispose();
// remoteRunspace = null;
RaiseOperationCompleteEvent();
}
/// <summary>
/// Start the operation of closing the runspace.
/// </summary>
internal override void StartOperation()
{
if (_remoteRunspace.RunspaceStateInfo.State == RunspaceState.Closed ||
_remoteRunspace.RunspaceStateInfo.State == RunspaceState.Broken ||
_remoteRunspace.RunspaceStateInfo.State == RunspaceState.Disconnected)
{
// If the runspace is currently in a disconnected state then leave it
// as is.
// in this case, calling a close won't raise any events. Simply raise
// the OperationCompleted event. After the if check, but before we
// get to this point if the state was changed, then the StateChanged
// event handler will anyway raise the event and so we are fine
RaiseOperationCompleteEvent();
}
else
{
// If the runspace supports disconnect semantics and is running a command,
// then disconnect it rather than closing it.
if (_remoteRunspace.CanDisconnect &&
_remoteRunspace.GetCurrentlyRunningPipeline() != null)
{
_remoteRunspace.DisconnectAsync();
}
else
{
_remoteRunspace.CloseAsync();
}
}
}
/// <summary>
/// There is no scenario where we are going to cancel this close
/// Hence this method is intentionally empty.
/// </summary>
internal override void StopOperation()
{
}
/// <summary>
/// Event raised when the required operation is complete.
/// </summary>
internal override event EventHandler<OperationStateEventArgs> OperationComplete;
/// <summary>
/// Raise the operation completed event.
/// </summary>
private void RaiseOperationCompleteEvent()
{
_remoteRunspace.StateChanged -= HandleRunspaceStateChanged;
OperationStateEventArgs operationStateEventArgs =
new OperationStateEventArgs();
operationStateEventArgs.OperationState =
OperationState.StartComplete;
operationStateEventArgs.BaseEvent = EventArgs.Empty;
OperationComplete.SafeInvoke(this, operationStateEventArgs);
}
}
/// <summary>
/// Defines the exception thrown an error loading modules occurs while opening the runspace. It
/// contains a list of all of the module errors that have occurred.
/// </summary>
public class RunspaceOpenModuleLoadException : RuntimeException
{
#region ctor
/// <summary>
/// Initializes a new instance of ScriptBlockToPowerShellNotSupportedException
/// with the message set to typeof(ScriptBlockToPowerShellNotSupportedException).FullName.
/// </summary>
public RunspaceOpenModuleLoadException()
: base(typeof(ScriptBlockToPowerShellNotSupportedException).FullName)
{
}
/// <summary>
/// Initializes a new instance of ScriptBlockToPowerShellNotSupportedException setting the message.
/// </summary>
/// <param name="message">The exception's message.</param>
public RunspaceOpenModuleLoadException(string message)
: base(message)
{
}
/// <summary>
/// Initializes a new instance of ScriptBlockToPowerShellNotSupportedException setting the message and innerException.
/// </summary>
/// <param name="message">The exception's message.</param>
/// <param name="innerException">The exception's inner exception.</param>
public RunspaceOpenModuleLoadException(string message, Exception innerException)
: base(message, innerException)
{
}
/// <summary>
/// Recommended constructor for the class.
/// </summary>
/// <param name="moduleName">The name of the module that cause the error.</param>
/// <param name="errors">The collection of errors that occurred during module processing.</param>
internal RunspaceOpenModuleLoadException(
string moduleName,
PSDataCollection<ErrorRecord> errors)
: base(StringUtil.Format(RunspaceStrings.ErrorLoadingModulesOnRunspaceOpen, moduleName,
(errors != null && errors.Count > 0 && errors[0] != null) ? errors[0].ToString() : string.Empty), null)
{
_errors = errors;
this.SetErrorId("ErrorLoadingModulesOnRunspaceOpen");
this.SetErrorCategory(ErrorCategory.OpenError);
}
#endregion ctor
/// <summary>
/// The collection of error records generated while loading the modules.
/// </summary>
public PSDataCollection<ErrorRecord> ErrorRecords
{
get { return _errors; }
}
private readonly PSDataCollection<ErrorRecord> _errors;
#region Serialization
/// <summary>
/// Initializes a new instance of RunspaceOpenModuleLoadException with serialization parameters.
/// </summary>
/// <param name="info">Serialization information.</param>
/// <param name="context">Streaming context.</param>
[Obsolete("Legacy serialization support is deprecated since .NET 8", DiagnosticId = "SYSLIB0051")]
protected RunspaceOpenModuleLoadException(SerializationInfo info, StreamingContext context)
{
throw new NotSupportedException();
}
#endregion Serialization
}
#endregion Helper Class
}
|