File size: 68,330 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Management.Automation.Host;
using System.Management.Automation.Remoting;
using System.Management.Automation.Remoting.Client;
using System.Management.Automation.Runspaces;
using System.Management.Automation.Runspaces.Internal;
using System.Management.Automation.Tracing;
using System.Threading;
using Dbg = System.Management.Automation.Diagnostics;
namespace System.Management.Automation.Internal
{
/// <summary>
/// Handles all PowerShell data structure handler communication with the
/// server side RunspacePool.
/// </summary>
internal sealed class ClientRunspacePoolDataStructureHandler : IDisposable
{
private bool _reconnecting = false;
#region Constructors
/// <summary>
/// Constructor which takes a client runspace pool and creates
/// an associated ClientRunspacePoolDataStructureHandler.
/// </summary>
/// <param name="clientRunspacePool">Client runspace pool object.</param>
/// <param name="typeTable">Typetable to use for serialization/deserialization.</param>
internal ClientRunspacePoolDataStructureHandler(RemoteRunspacePoolInternal clientRunspacePool,
TypeTable typeTable)
{
_clientRunspacePoolId = clientRunspacePool.InstanceId;
_minRunspaces = clientRunspacePool.GetMinRunspaces();
_maxRunspaces = clientRunspacePool.GetMaxRunspaces();
_host = clientRunspacePool.Host;
_applicationArguments = clientRunspacePool.ApplicationArguments;
RemoteSession = CreateClientRemoteSession(clientRunspacePool);
// TODO: Assign remote session name.. should be passed from clientRunspacePool
_transportManager = RemoteSession.SessionDataStructureHandler.TransportManager;
_transportManager.TypeTable = typeTable;
RemoteSession.StateChanged += HandleClientRemoteSessionStateChanged;
_reconnecting = false;
_transportManager.RobustConnectionNotification += HandleRobustConnectionNotification;
_transportManager.CreateCompleted += HandleSessionCreateCompleted;
}
#endregion Constructors
#region Data Structure Handler Methods
/// <summary>
/// Create a runspace pool asynchronously (and opens) it
/// on the server.
/// </summary>
internal void CreateRunspacePoolAndOpenAsync()
{
// #1: Connect to remote session
Dbg.Assert(RemoteSession.SessionDataStructureHandler.StateMachine.State == RemoteSessionState.Idle,
"State of ClientRemoteSession is expected to be idle before connection is established");
RemoteSession.CreateAsync();
// #2: send the message for runspace pool creation
// this is done in HandleClientRemoteSessionStateChanged
}
/// <summary>
/// Closes the server runspace pool asynchronously.
/// </summary>
internal void CloseRunspacePoolAsync()
{
RemoteSession.CloseAsync();
}
/// <summary>
/// Suspends connection to a runspace pool asynchronously.
/// </summary>
internal void DisconnectPoolAsync()
{
// Prepare running commands for disconnect and start disconnect
// when ready.
PrepareForAndStartDisconnect();
}
/// <summary>
/// Restore connection to a runspace pool asynchronously.
/// </summary>
internal void ReconnectPoolAsync()
{
// TODO: Integrate this into state machine
_reconnecting = true;
PrepareForConnect();
RemoteSession.ReconnectAsync();
}
/// <summary>
/// Creates a connection to an existing remote runspace pool.
/// </summary>
internal void ConnectPoolAsync()
{
PrepareForConnect();
RemoteSession.ConnectAsync();
}
/// <summary>
/// Process the data received from the runspace pool
/// on the server.
/// </summary>
/// <param name="receivedData">Data received.</param>
internal void ProcessReceivedData(RemoteDataObject<PSObject> receivedData)
{
// verify if this data structure handler is the intended recipient
if (receivedData.RunspacePoolId != _clientRunspacePoolId)
{
throw new PSRemotingDataStructureException(RemotingErrorIdStrings.RunspaceIdsDoNotMatch,
receivedData.RunspacePoolId, _clientRunspacePoolId);
}
// take appropriate action based on the action type
Dbg.Assert(receivedData.TargetInterface == RemotingTargetInterface.RunspacePool,
"Target interface is expected to be RunspacePool");
switch (receivedData.DataType)
{
case RemotingDataType.RemoteHostCallUsingRunspaceHost:
{
Dbg.Assert(RemoteHostCallReceived != null,
"RemoteRunspacePoolInternal should subscribe to all data structure handler events");
RemoteHostCall remoteHostCall = RemoteHostCall.Decode(receivedData.Data);
RemoteHostCallReceived.SafeInvoke(this, new RemoteDataEventArgs<RemoteHostCall>(remoteHostCall));
}
break;
case RemotingDataType.RunspacePoolInitData:
{
RunspacePoolInitInfo initInfo = RemotingDecoder.GetRunspacePoolInitInfo(receivedData.Data);
Dbg.Assert(RSPoolInitInfoReceived != null,
"RemoteRunspacePoolInternal should subscribe to all data structure handler events");
RSPoolInitInfoReceived.SafeInvoke(this,
new RemoteDataEventArgs<RunspacePoolInitInfo>(initInfo));
}
break;
case RemotingDataType.RunspacePoolStateInfo:
{
RunspacePoolStateInfo stateInfo =
RemotingDecoder.GetRunspacePoolStateInfo(receivedData.Data);
Dbg.Assert(StateInfoReceived != null,
"RemoteRunspacePoolInternal should subscribe to all data structure handler events");
StateInfoReceived.SafeInvoke(this,
new RemoteDataEventArgs<RunspacePoolStateInfo>(stateInfo));
NotifyAssociatedPowerShells(stateInfo);
}
break;
case RemotingDataType.ApplicationPrivateData:
{
PSPrimitiveDictionary applicationPrivateData = RemotingDecoder.GetApplicationPrivateData(receivedData.Data);
Dbg.Assert(ApplicationPrivateDataReceived != null,
"RemoteRunspacePoolInternal should subscribe to all data structure handler events");
ApplicationPrivateDataReceived.SafeInvoke(this,
new RemoteDataEventArgs<PSPrimitiveDictionary>(applicationPrivateData));
}
break;
case RemotingDataType.RunspacePoolOperationResponse:
{
Dbg.Assert(SetMaxMinRunspacesResponseReceived != null,
"RemoteRunspacePoolInternal should subscribe to all data structure handler events");
SetMaxMinRunspacesResponseReceived.SafeInvoke(this, new RemoteDataEventArgs<PSObject>(receivedData.Data));
}
break;
case RemotingDataType.PSEventArgs:
{
PSEventArgs psEventArgs = RemotingDecoder.GetPSEventArgs(receivedData.Data);
Dbg.Assert(PSEventArgsReceived != null,
"RemoteRunspacePoolInternal should subscribe to all data structure handler events");
PSEventArgsReceived.SafeInvoke(this, new RemoteDataEventArgs<PSEventArgs>(psEventArgs));
}
break;
}
}
/// <summary>
/// Creates a PowerShell data structure handler instance associated
/// with this runspace pool data structure handler.
/// </summary>
/// <param name="shell">Associated powershell.</param>
/// <returns>PowerShell data structure handler object.</returns>
internal ClientPowerShellDataStructureHandler CreatePowerShellDataStructureHandler(
ClientRemotePowerShell shell)
{
BaseClientCommandTransportManager clientTransportMgr =
RemoteSession.SessionDataStructureHandler.CreateClientCommandTransportManager(shell, shell.NoInput);
return new ClientPowerShellDataStructureHandler(
clientTransportMgr, _clientRunspacePoolId, shell.InstanceId);
}
/// <summary>
/// Creates a PowerShell instances on the server, associates it
/// with this runspace pool and invokes.
/// </summary>
/// <param name="shell">The client remote powershell.</param>
internal void CreatePowerShellOnServerAndInvoke(ClientRemotePowerShell shell)
{
// add to associated powershell list and send request to server
lock (_associationSyncObject)
{
_associatedPowerShellDSHandlers.Add(shell.InstanceId, shell.DataStructureHandler);
}
shell.DataStructureHandler.RemoveAssociation += HandleRemoveAssociation;
// Find out if this is an invoke and disconnect operation and if so whether the endpoint
// supports disconnect. Throw exception if disconnect is not supported.
bool invokeAndDisconnect = shell.Settings != null && shell.Settings.InvokeAndDisconnect;
if (invokeAndDisconnect && !EndpointSupportsDisconnect)
{
throw new PSRemotingDataStructureException(RemotingErrorIdStrings.EndpointDoesNotSupportDisconnect);
}
if (RemoteSession == null)
{
throw new ObjectDisposedException("ClientRunspacePoolDataStructureHandler");
}
shell.DataStructureHandler.Start(RemoteSession.SessionDataStructureHandler.StateMachine, invokeAndDisconnect);
}
/// <summary>
/// Add a ClientPowerShellDataStructureHandler to association list.
/// </summary>
/// <param name="psShellInstanceId">PowerShell Instance Id.</param>
/// <param name="psDSHandler">ClientPowerShellDataStructureHandler for PowerShell.</param>
internal void AddRemotePowerShellDSHandler(Guid psShellInstanceId, ClientPowerShellDataStructureHandler psDSHandler)
{
lock (_associationSyncObject)
{
// Remove old DSHandler and replace with new.
_associatedPowerShellDSHandlers[psShellInstanceId] = psDSHandler;
}
psDSHandler.RemoveAssociation += HandleRemoveAssociation;
}
/// <summary>
/// Dispatch the message to the associated powershell data structure handler.
/// </summary>
/// <param name="rcvdData">Message received.</param>
internal void DispatchMessageToPowerShell(RemoteDataObject<PSObject> rcvdData)
{
ClientPowerShellDataStructureHandler dsHandler =
GetAssociatedPowerShellDataStructureHandler(rcvdData.PowerShellId);
// if a data structure handler does not exist it means
// the association has been removed -
// discard messages
dsHandler?.ProcessReceivedData(rcvdData);
}
/// <summary>
/// Send the host response to the server.
/// </summary>
/// <param name="hostResponse">Host response object to send.</param>
internal void SendHostResponseToServer(RemoteHostResponse hostResponse)
{
SendDataAsync(hostResponse.Encode(), DataPriorityType.PromptResponse);
}
/// <summary>
/// Send a message to the server instructing it to reset its runspace state.
/// </summary>
/// <param name="callId">Caller Id.</param>
internal void SendResetRunspaceStateToServer(long callId)
{
RemoteDataObject message =
RemotingEncoder.GenerateResetRunspaceState(_clientRunspacePoolId, callId);
SendDataAsync(message);
}
/// <summary>
/// Sent a message to modify the max runspaces of the runspace pool.
/// </summary>
/// <param name="maxRunspaces">New maxrunspaces to set.</param>
/// <param name="callId">call id on which the calling method will
/// be blocked on</param>
internal void SendSetMaxRunspacesToServer(int maxRunspaces, long callId)
{
RemoteDataObject message =
RemotingEncoder.GenerateSetMaxRunspaces(_clientRunspacePoolId, maxRunspaces, callId);
SendDataAsync(message);
}
/// <summary>
/// Send a message to modify the min runspaces of the runspace pool.
/// </summary>
/// <param name="minRunspaces">New minrunspaces to set.</param>
/// <param name="callId">call id on which the calling method will
/// be blocked on</param>
internal void SendSetMinRunspacesToServer(int minRunspaces, long callId)
{
RemoteDataObject message =
RemotingEncoder.GenerateSetMinRunspaces(_clientRunspacePoolId, minRunspaces, callId);
SendDataAsync(message);
}
/// <summary>
/// Send a message to get the available runspaces from the server.
/// </summary>
/// <param name="callId">call id on which the calling method will
/// be blocked on</param>
internal void SendGetAvailableRunspacesToServer(long callId)
{
SendDataAsync(RemotingEncoder.GenerateGetAvailableRunspaces(_clientRunspacePoolId, callId));
}
#endregion Data Structure Handler Methods
#region Data Structure Handler events
/// <summary>
/// Event raised when a host call is received.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<RemoteHostCall>> RemoteHostCallReceived;
/// <summary>
/// Event raised when state information is received.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<RunspacePoolStateInfo>> StateInfoReceived;
/// <summary>
/// Event raised when RunspacePoolInitInfo is received. This is the first runspace pool message expected
/// after connecting to an existing remote runspace pool. RemoteRunspacePoolInternal should use this
/// notification to set the state of a reconstructed runspace to "Opened State" and use the
/// minRunspace and MaxRunspaces information to set its state.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<RunspacePoolInitInfo>> RSPoolInitInfoReceived;
/// <summary>
/// Event raised when application private data is received.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<PSPrimitiveDictionary>> ApplicationPrivateDataReceived;
/// <summary>
/// Event raised when a PSEventArgs is received.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<PSEventArgs>> PSEventArgsReceived;
/// <summary>
/// Event raised when the session is closed.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> SessionClosed;
/// <summary>
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> SessionDisconnected;
/// <summary>
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> SessionReconnected;
/// <summary>
/// Event raised when the session is closing.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> SessionClosing;
/// <summary>
/// Event raised when a response to a SetMaxRunspaces or SetMinRunspaces call
/// is received.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<PSObject>> SetMaxMinRunspacesResponseReceived;
/// <summary>
/// EventHandler used to report connection URI redirections to the application.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Uri>> URIRedirectionReported;
/// <summary>
/// Indicates that a disconnect has been initiated by the WinRM robust connections layer.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> SessionRCDisconnecting;
/// <summary>
/// Notification that session creation has completed.
/// </summary>
internal event EventHandler<CreateCompleteEventArgs> SessionCreateCompleted;
#endregion Data Structure Handler events
#region Private Methods
/// <summary>
/// Send the data specified as a RemoteDataObject asynchronously
/// to the runspace pool on the remote session.
/// </summary>
/// <param name="data">Data to send.</param>
/// <remarks>This overload takes a RemoteDataObject and should be
/// the one used within the code</remarks>
private void SendDataAsync(RemoteDataObject data)
{
_transportManager.DataToBeSentCollection.Add<object>(data);
}
/// <summary>
/// Send the data asynchronously to runspace pool driver on remote
/// session with the specified priority.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="data">Data to be sent to server.</param>
/// <param name="priority">Priority with which to send data.</param>
internal void SendDataAsync<T>(RemoteDataObject<T> data, DataPriorityType priority)
{
_transportManager.DataToBeSentCollection.Add<T>(data, priority);
}
/// <summary>
/// Send the data asynchronously to runspace pool driver on remote
/// session with the specified priority.
/// </summary>
/// <param name="data">Data object to send.</param>
/// <param name="priority">Priority with which to send data.</param>
internal void SendDataAsync(PSObject data, DataPriorityType priority)
{
RemoteDataObject<PSObject> dataToBeSent = RemoteDataObject<PSObject>.CreateFrom(RemotingDestination.Server,
RemotingDataType.InvalidDataType, _clientRunspacePoolId, Guid.Empty, data);
_transportManager.DataToBeSentCollection.Add<PSObject>(dataToBeSent);
}
/// <summary>
/// Create a client remote session based on the connection info.
/// </summary>
/// <param name="rsPoolInternal">
/// The RunspacePool object this session should map to.
/// </param>
private ClientRemoteSessionImpl CreateClientRemoteSession(
RemoteRunspacePoolInternal rsPoolInternal)
{
ClientRemoteSession.URIDirectionReported uriRedirectionHandler =
new ClientRemoteSession.URIDirectionReported(HandleURIDirectionReported);
return new ClientRemoteSessionImpl(rsPoolInternal,
uriRedirectionHandler);
}
/// <summary>
/// Handler for handling all session events.
/// </summary>
/// <param name="sender">Sender of this event.</param>
/// <param name="e">Object describing this event.</param>
private void HandleClientRemoteSessionStateChanged(
object sender, RemoteSessionStateEventArgs e)
{
// send create runspace request while sending negotiation packet. This will
// save 1 network call to create a runspace on the server.
if (e.SessionStateInfo.State == RemoteSessionState.NegotiationSending)
{
if (_createRunspaceCalled)
{
return;
}
lock (_syncObject)
{
// We are doing this check because Established event
// is raised more than once
if (_createRunspaceCalled)
{
// TODO: Put an assert here. NegotiationSending cannot
// occur multiple time in v2 remoting.
return;
}
_createRunspaceCalled = true;
}
// make client's PSVersionTable available to the server using applicationArguments
PSPrimitiveDictionary argumentsWithVersionTable =
PSPrimitiveDictionary.CloneAndAddPSVersionTable(_applicationArguments);
// send a message to the server..
SendDataAsync(RemotingEncoder.GenerateCreateRunspacePool(
_clientRunspacePoolId, _minRunspaces, _maxRunspaces, RemoteSession.RemoteRunspacePoolInternal, _host,
argumentsWithVersionTable));
}
if (e.SessionStateInfo.State == RemoteSessionState.NegotiationSendingOnConnect)
{
// send connect message to the server.
SendDataAsync(RemotingEncoder.GenerateConnectRunspacePool(
_clientRunspacePoolId, _minRunspaces, _maxRunspaces));
}
else if (e.SessionStateInfo.State == RemoteSessionState.ClosingConnection)
{
// use the first reason which caused the error
Exception reason = _closingReason;
if (reason == null)
{
reason = e.SessionStateInfo.Reason;
_closingReason = reason;
}
// close transport managers of the associated commands
List<ClientPowerShellDataStructureHandler> dsHandlers;
lock (_associationSyncObject)
{
dsHandlers = new List<ClientPowerShellDataStructureHandler>(_associatedPowerShellDSHandlers.Values);
}
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.CloseConnectionAsync(_closingReason);
}
SessionClosing.SafeInvoke(this, new RemoteDataEventArgs<Exception>(reason));
}
else if (e.SessionStateInfo.State == RemoteSessionState.Closed)
{
// use the first reason which caused the error
Exception reason = _closingReason;
if (reason == null)
{
reason = e.SessionStateInfo.Reason;
_closingReason = reason;
}
// if there is a reason associated, then most likely the
// runspace pool has broken, so notify accordingly
if (reason != null)
{
NotifyAssociatedPowerShells(new RunspacePoolStateInfo(RunspacePoolState.Broken, reason));
}
else
{
// notify the associated powershells that this
// runspace pool has closed
NotifyAssociatedPowerShells(new RunspacePoolStateInfo(RunspacePoolState.Closed, reason));
}
SessionClosed.SafeInvoke(this, new RemoteDataEventArgs<Exception>(reason));
}
else if (e.SessionStateInfo.State == RemoteSessionState.Connected)
{
// write a transfer event here
PSEtwLog.ReplaceActivityIdForCurrentThread(_clientRunspacePoolId, PSEventId.OperationalTransferEventRunspacePool,
PSEventId.AnalyticTransferEventRunspacePool, PSKeyword.Runspace, PSTask.CreateRunspace);
}
else if (e.SessionStateInfo.State == RemoteSessionState.Disconnected)
{
NotifyAssociatedPowerShells(new RunspacePoolStateInfo(
RunspacePoolState.Disconnected,
e.SessionStateInfo.Reason));
SessionDisconnected.SafeInvoke(this, new RemoteDataEventArgs<Exception>(e.SessionStateInfo.Reason));
}
else if (_reconnecting && e.SessionStateInfo.State == RemoteSessionState.Established)
{
SessionReconnected.SafeInvoke(this, new RemoteDataEventArgs<Exception>(null));
_reconnecting = false;
}
else if (e.SessionStateInfo.State == RemoteSessionState.RCDisconnecting)
{
SessionRCDisconnecting.SafeInvoke(this, new RemoteDataEventArgs<Exception>(null));
}
else
{
if (e.SessionStateInfo.Reason != null)
{
_closingReason = e.SessionStateInfo.Reason;
}
}
}
/// <summary>
/// Session is reporting that URI is getting redirected.
/// Report this information to the user by writing a warning message.
/// </summary>
/// <param name="newURI"></param>
private void HandleURIDirectionReported(Uri newURI)
{
URIRedirectionReported.SafeInvoke(this, new RemoteDataEventArgs<Uri>(newURI));
}
/// <summary>
/// Notifies associated powershell's of the runspace pool state change.
/// </summary>
/// <param name="stateInfo">state information that need to
/// be notified</param>
private void NotifyAssociatedPowerShells(RunspacePoolStateInfo stateInfo)
{
List<ClientPowerShellDataStructureHandler> dsHandlers;
if (stateInfo.State == RunspacePoolState.Disconnected)
{
lock (_associationSyncObject)
{
dsHandlers = new List<ClientPowerShellDataStructureHandler>(_associatedPowerShellDSHandlers.Values);
}
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.ProcessDisconnect(stateInfo);
}
return;
}
// if the runspace pool is broken or closed then set all
// associated powershells to stopped
if (stateInfo.State == RunspacePoolState.Broken || stateInfo.State == RunspacePoolState.Closed)
{
lock (_associationSyncObject)
{
dsHandlers = new List<ClientPowerShellDataStructureHandler>(_associatedPowerShellDSHandlers.Values);
_associatedPowerShellDSHandlers.Clear();
}
if (stateInfo.State == RunspacePoolState.Broken)
{
// set the state to failed, outside the lock
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.SetStateToFailed(stateInfo.Reason);
}
}
else if (stateInfo.State == RunspacePoolState.Closed)
{
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.SetStateToStopped(stateInfo.Reason);
}
}
return;
}
}
/// <summary>
/// Gets the ClientPowerShellDataStructureHandler instance for the specified id.
/// </summary>
/// <param name="clientPowerShellId">Id of the client remote powershell.</param>
/// <returns>ClientPowerShellDataStructureHandler object.</returns>
private ClientPowerShellDataStructureHandler GetAssociatedPowerShellDataStructureHandler
(Guid clientPowerShellId)
{
ClientPowerShellDataStructureHandler dsHandler = null;
lock (_associationSyncObject)
{
bool success = _associatedPowerShellDSHandlers.TryGetValue(clientPowerShellId, out dsHandler);
if (!success)
{
dsHandler = null;
}
}
return dsHandler;
}
/// <summary>
/// Remove the association of the powershell from the runspace pool.
/// </summary>
/// <param name="sender">Sender of this event.</param>
/// <param name="e">Unused.</param>
private void HandleRemoveAssociation(object sender, EventArgs e)
{
Dbg.Assert(sender is ClientPowerShellDataStructureHandler, @"sender of the event
must be ClientPowerShellDataStructureHandler");
ClientPowerShellDataStructureHandler dsHandler =
sender as ClientPowerShellDataStructureHandler;
lock (_associationSyncObject)
{
_associatedPowerShellDSHandlers.Remove(dsHandler.PowerShellId);
}
_transportManager.RemoveCommandTransportManager(dsHandler.PowerShellId);
}
/// <summary>
/// Calls each running command Transport manager PrepareForDisconnect method.
/// Each transport manager object will raise an event when the command/transport
/// is ready to be disconnected. Disconnect will begin when all is ready.
/// </summary>
private void PrepareForAndStartDisconnect()
{
bool startDisconnectNow;
lock (_associationSyncObject)
{
if (_associatedPowerShellDSHandlers.Count == 0)
{
// There are no running commands associated with this runspace pool.
startDisconnectNow = true;
_preparingForDisconnectList = null;
}
else
{
// Delay starting the disconnect operation until all running commands are prepared.
startDisconnectNow = false;
// Create and fill list of active transportmanager objects to be disconnected.
// Add ready-for-disconnect callback handler to DSHandler transportmanager objects.
Dbg.Assert(_preparingForDisconnectList == null, "Cannot prepare for disconnect while disconnect is pending.");
_preparingForDisconnectList = new List<BaseClientCommandTransportManager>();
foreach (ClientPowerShellDataStructureHandler dsHandler in _associatedPowerShellDSHandlers.Values)
{
_preparingForDisconnectList.Add(dsHandler.TransportManager);
dsHandler.TransportManager.ReadyForDisconnect += HandleReadyForDisconnect;
}
}
}
if (startDisconnectNow)
{
// Ok to start on this thread.
StartDisconnectAsync(RemoteSession);
}
else
{
// Start preparation for disconnect. The HandleReadyForDisconnect callback will be
// called when a transportManager is ready for disconnect.
List<ClientPowerShellDataStructureHandler> dsHandlers;
lock (_associationSyncObject)
{
dsHandlers = new List<ClientPowerShellDataStructureHandler>(_associatedPowerShellDSHandlers.Values);
}
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.TransportManager.PrepareForDisconnect();
}
}
}
/// <summary>
/// Allows each running command to resume processing command input for when
/// the runspacepool and running commands are connected.
/// </summary>
private void PrepareForConnect()
{
List<ClientPowerShellDataStructureHandler> dsHandlers;
lock (_associationSyncObject)
{
dsHandlers = new List<ClientPowerShellDataStructureHandler>(_associatedPowerShellDSHandlers.Values);
}
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.TransportManager.ReadyForDisconnect -= HandleReadyForDisconnect;
dsHandler.TransportManager.PrepareForConnect();
}
}
/// <summary>
/// Handler of the transport ReadyForDisconnect event. When all command
/// transports are ready for disconnect we can start the disconnect process.
/// </summary>
/// <param name="sender"></param>
/// <param name="args"></param>
private void HandleReadyForDisconnect(object sender, EventArgs args)
{
if (sender == null)
{
return;
}
BaseClientCommandTransportManager bcmdTM = (BaseClientCommandTransportManager)sender;
lock (_associationSyncObject)
{
// Ignore extra event calls after disconnect is started.
if (_preparingForDisconnectList == null)
{
return;
}
_preparingForDisconnectList.Remove(bcmdTM);
if (_preparingForDisconnectList.Count == 0)
{
_preparingForDisconnectList = null;
// Start the asynchronous disconnect on a worker thread because we don't know
// what thread this callback is made from. If it was made from a transport
// callback event then a deadlock may occur when DisconnectAsync is called on
// that same thread.
ThreadPool.QueueUserWorkItem(new WaitCallback(StartDisconnectAsync));
}
}
}
/// <summary>
/// WaitCallback method to start an asynchronous disconnect.
/// </summary>
/// <param name="state"></param>
private void StartDisconnectAsync(object state)
{
var remoteSession = RemoteSession;
try
{
remoteSession?.DisconnectAsync();
}
catch
{
// remoteSession may have already been disposed resulting in unexpected exceptions.
}
}
/// <summary>
/// Forwards robust connection notifications to associated PowerShell clients.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void HandleRobustConnectionNotification(
object sender,
ConnectionStatusEventArgs e)
{
List<ClientPowerShellDataStructureHandler> dsHandlers;
lock (_associationSyncObject)
{
dsHandlers = new List<ClientPowerShellDataStructureHandler>(_associatedPowerShellDSHandlers.Values);
}
foreach (ClientPowerShellDataStructureHandler dsHandler in dsHandlers)
{
dsHandler.ProcessRobustConnectionNotification(e);
}
}
/// <summary>
/// Forwards the session create completion event.
/// </summary>
/// <param name="sender">Transport sender.</param>
/// <param name="eventArgs">CreateCompleteEventArgs.</param>
private void HandleSessionCreateCompleted(object sender, CreateCompleteEventArgs eventArgs)
{
SessionCreateCompleted.SafeInvoke<CreateCompleteEventArgs>(this, eventArgs);
}
#endregion Private Methods
#region Private Members
private readonly Guid _clientRunspacePoolId;
private readonly object _syncObject = new object();
private bool _createRunspaceCalled = false;
private Exception _closingReason;
private readonly int _minRunspaces;
private readonly int _maxRunspaces;
private readonly PSHost _host;
private readonly PSPrimitiveDictionary _applicationArguments;
private readonly Dictionary<Guid, ClientPowerShellDataStructureHandler> _associatedPowerShellDSHandlers
= new Dictionary<Guid, ClientPowerShellDataStructureHandler>();
// data structure handlers of all ClientRemotePowerShell which are
// associated with this runspace pool
private readonly object _associationSyncObject = new object();
// object to synchronize operations to above
private readonly BaseClientSessionTransportManager _transportManager;
// session transport manager associated with this runspace
private List<BaseClientCommandTransportManager> _preparingForDisconnectList;
#endregion Private Members
#region Internal Properties
/// <summary>
/// The remote session associated with this runspace pool
/// data structure handler.
/// </summary>
internal ClientRemoteSession RemoteSession { get; private set; }
/// <summary>
/// Transport manager used by this data structure handler.
/// </summary>
internal BaseClientSessionTransportManager TransportManager
{
get
{
if (RemoteSession != null)
{
return RemoteSession.SessionDataStructureHandler.TransportManager;
}
else
{
return null;
}
}
}
/// <summary>
/// Returns robust connection maximum retry time in milliseconds, if supported
/// by underlying transport manager.
/// </summary>
internal int MaxRetryConnectionTime
{
get
{
if (_transportManager != null &&
_transportManager is WSManClientSessionTransportManager)
{
return ((WSManClientSessionTransportManager)(_transportManager)).MaxRetryConnectionTime;
}
return 0;
}
}
/// <summary>
/// Indicates whether the currently connected runspace endpoint supports
/// disconnect/connect semantics.
/// </summary>
internal bool EndpointSupportsDisconnect
{
get
{
WSManClientSessionTransportManager wsmanTransportManager = _transportManager as WSManClientSessionTransportManager;
return wsmanTransportManager != null && wsmanTransportManager.SupportsDisconnect;
}
}
#endregion Internal Properties
#region IDisposable
/// <summary>
/// Public interface for dispose.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Release all resources.
/// </summary>
/// <param name="disposing">If true, release all managed resources.</param>
public void Dispose(bool disposing)
{
if (disposing)
{
if (RemoteSession != null)
{
((ClientRemoteSessionImpl)RemoteSession).Dispose();
RemoteSession = null;
}
}
}
#endregion IDisposable
}
/// <summary>
/// Base class for ClientPowerShellDataStructureHandler to handle all
/// references.
/// </summary>
internal sealed class ClientPowerShellDataStructureHandler
{
#region Data Structure Handler events
/// <summary>
/// This event is raised when the state of associated
/// powershell is terminal and the runspace pool has
/// to detach the association.
/// </summary>
internal event EventHandler RemoveAssociation;
/// <summary>
/// This event is raised when a state information object
/// is received from the server.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<PSInvocationStateInfo>> InvocationStateInfoReceived;
/// <summary>
/// This event is raised when an output object is received
/// from the server.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<object>> OutputReceived;
/// <summary>
/// This event is raised when an error record is received
/// from the server.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<ErrorRecord>> ErrorReceived;
/// <summary>
/// This event is raised when an informational message -
/// debug, verbose, warning, progress is received from
/// the server.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<InformationalMessage>> InformationalMessageReceived;
/// <summary>
/// This event is raised when a host call is targeted to the
/// powershell.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<RemoteHostCall>> HostCallReceived;
/// <summary>
/// This event is raised when a runspace pool data structure handler notifies an
/// associated powershell data structure handler that its closed.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> ClosedNotificationFromRunspacePool;
/// <summary>
/// Event that is raised when a remote connection is successfully closed. The event is raised
/// from a WSMan transport thread. Since this thread can hold on to a HTTP
/// connection, the event handler should complete processing as fast as possible.
/// Importantly the event handler should not generate any call that results in a
/// user request like host.ReadLine().
///
/// Errors (occurred during connection attempt) are reported through WSManTransportErrorOccured
/// event.
/// </summary>
/// <remarks>
/// The eventhandler should make sure not to throw any exceptions.
/// </remarks>
internal event EventHandler<EventArgs> CloseCompleted;
/// <summary>
/// This event is raised when a runspace pool data structure handler notifies an
/// associated powershell data structure handler that its broken.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> BrokenNotificationFromRunspacePool;
/// <summary>
/// This event is raised when reconnect async operation on the associated powershell/pipeline instance is completed.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> ReconnectCompleted;
/// <summary>
/// This event is raised when connect async operation on the associated powershell/pipeline instance is completed.
/// </summary>
internal event EventHandler<RemoteDataEventArgs<Exception>> ConnectCompleted;
/// <summary>
/// This event is raised when a Robust Connection layer notification is available.
/// </summary>
internal event EventHandler<ConnectionStatusEventArgs> RobustConnectionNotification;
#endregion Data Structure Handler events
#region Data Structure Handler Methods
/// <summary>
/// Start the command operation.
/// </summary>
internal void Start(ClientRemoteSessionDSHandlerStateMachine stateMachine, bool inDisconnectMode)
{
// Add all callbacks to transport manager.
SetupTransportManager(inDisconnectMode);
TransportManager.CreateAsync();
}
private void HandleDelayStreamRequestProcessed(object sender, EventArgs e)
{
// client's request to start pipeline in disconnected mode has been successfully processed
ProcessDisconnect(null);
}
internal void HandleReconnectCompleted(object sender, EventArgs args)
{
int currentState = Interlocked.CompareExchange(ref _connectionState, (int)connectionStates.Connected, (int)connectionStates.Reconnecting);
ReconnectCompleted.SafeInvoke(this, new RemoteDataEventArgs<Exception>(null));
return;
}
internal void HandleConnectCompleted(object sender, EventArgs args)
{
int currentState = Interlocked.CompareExchange(ref _connectionState, (int)connectionStates.Connected, (int)connectionStates.Connecting);
ConnectCompleted.SafeInvoke(this, new RemoteDataEventArgs<Exception>(null));
return;
}
/// <summary>
/// Handler which handles transport errors.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
internal void HandleTransportError(object sender, TransportErrorOccuredEventArgs e)
{
// notify associated powershell about the error and close transport manager
PSInvocationStateInfo stateInfo = new PSInvocationStateInfo(PSInvocationState.Failed, e.Exception);
InvocationStateInfoReceived.SafeInvoke(this, new RemoteDataEventArgs<PSInvocationStateInfo>(stateInfo));
// The handler to InvocationStateInfoReceived would have already
// closed the connection. No need to do it here again
}
/// <summary>
/// Send a stop powershell message to the server.
/// </summary>
internal void SendStopPowerShellMessage()
{
TransportManager.CryptoHelper.CompleteKeyExchange();
TransportManager.SendStopSignal();
}
/// <summary>
/// Event that gets raised when stop signal is completed.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void OnSignalCompleted(object sender, EventArgs e)
{
// Raise stopped event locally...By the time this event
// is raised, the remote server would have sent state changed info.
// A bad server may not send appropriate sate info, in which case we
// fail safely
PSRemotingDataStructureException exception = new PSRemotingDataStructureException(
RemotingErrorIdStrings.PipelineStopped);
InvocationStateInfoReceived.SafeInvoke(this,
new RemoteDataEventArgs<PSInvocationStateInfo>(
new PSInvocationStateInfo(PSInvocationState.Stopped, exception)));
}
/// <summary>
/// Send the host response to the server.
/// </summary>
/// <param name="hostResponse">Host response to send.</param>
internal void SendHostResponseToServer(RemoteHostResponse hostResponse)
{
RemoteDataObject<PSObject> dataToBeSent =
RemoteDataObject<PSObject>.CreateFrom(RemotingDestination.Server,
RemotingDataType.RemotePowerShellHostResponseData,
_clientRunspacePoolId,
_clientPowerShellId,
hostResponse.Encode());
TransportManager.DataToBeSentCollection.Add<PSObject>(dataToBeSent,
DataPriorityType.PromptResponse);
}
/// <summary>
/// Attach the specified data collection as input
/// to the remote powershell.
/// </summary>
/// <param name="inputstream"></param>
internal void SendInput(ObjectStreamBase inputstream)
{
if (!inputstream.IsOpen && inputstream.Count == 0)
{
// there is no input, send an end of input
// message
lock (_inputSyncObject)
{
// send input closed information to server
SendDataAsync(RemotingEncoder.GeneratePowerShellInputEnd(
_clientRunspacePoolId, _clientPowerShellId));
}
}
else
{
// its possible that in client input data is written in a thread
// other than the current thread. Since we want to write input
// to the server in the order in which it was received, this
// operation of writing to the server need to be synced
// Also we need to ensure that all the data currently available
// for enumeration are written out before any newly added data
// is written. Hence the lock is made even before the handler is
// registered
lock (_inputSyncObject)
{
inputstream.DataReady += HandleInputDataReady;
WriteInput(inputstream);
}
}
}
/// <summary>
/// Process the data received from the runspace pool
/// on the server.
/// </summary>
/// <param name="receivedData">Data received.</param>
internal void ProcessReceivedData(RemoteDataObject<PSObject> receivedData)
{
// verify if this data structure handler is the intended recipient
if (receivedData.PowerShellId != _clientPowerShellId)
{
throw new PSRemotingDataStructureException(RemotingErrorIdStrings.PipelineIdsDoNotMatch,
receivedData.PowerShellId, _clientPowerShellId);
}
// decode the message and take appropriate action
Dbg.Assert(receivedData.TargetInterface == RemotingTargetInterface.PowerShell,
"Target interface is expected to be Pipeline");
switch (receivedData.DataType)
{
case RemotingDataType.PowerShellStateInfo:
{
PSInvocationStateInfo stateInfo =
RemotingDecoder.GetPowerShellStateInfo(receivedData.Data);
Dbg.Assert(InvocationStateInfoReceived != null,
"ClientRemotePowerShell should subscribe to all data structure handler events");
InvocationStateInfoReceived.SafeInvoke(this,
new RemoteDataEventArgs<PSInvocationStateInfo>(stateInfo));
}
break;
case RemotingDataType.PowerShellOutput:
{
object outputObject =
RemotingDecoder.GetPowerShellOutput(receivedData.Data);
// since it is possible that powershell can have
// strongly typed output, origin information will
// not be added in this case. If a remoting cmdlet
// is using PowerShell, then it should take care
// of adding the origin information
Dbg.Assert(OutputReceived != null,
"ClientRemotePowerShell should subscribe to all data structure handler events");
OutputReceived.SafeInvoke(this,
new RemoteDataEventArgs<object>(outputObject));
}
break;
case RemotingDataType.PowerShellErrorRecord:
{
ErrorRecord errorRecord =
RemotingDecoder.GetPowerShellError(receivedData.Data);
// since it is possible that powershell can have
// strongly typed output, origin information will
// not be added for output. Therefore, origin
// information will not be added for error records
// as well. If a remoting cmdlet
// is using PowerShell, then it should take care
// of adding the origin information
Dbg.Assert(ErrorReceived != null,
"ClientRemotePowerShell should subscribe to all data structure handler events");
ErrorReceived.SafeInvoke(this,
new RemoteDataEventArgs<ErrorRecord>(errorRecord));
}
break;
case RemotingDataType.PowerShellDebug:
{
DebugRecord record = RemotingDecoder.GetPowerShellDebug(receivedData.Data);
InformationalMessageReceived.SafeInvoke(this,
new RemoteDataEventArgs<InformationalMessage>(
new InformationalMessage(record, RemotingDataType.PowerShellDebug)));
}
break;
case RemotingDataType.PowerShellVerbose:
{
VerboseRecord record = RemotingDecoder.GetPowerShellVerbose(receivedData.Data);
InformationalMessageReceived.SafeInvoke(this,
new RemoteDataEventArgs<InformationalMessage>(
new InformationalMessage(record, RemotingDataType.PowerShellVerbose)));
}
break;
case RemotingDataType.PowerShellWarning:
{
WarningRecord record = RemotingDecoder.GetPowerShellWarning(receivedData.Data);
InformationalMessageReceived.SafeInvoke(this,
new RemoteDataEventArgs<InformationalMessage>(
new InformationalMessage(record, RemotingDataType.PowerShellWarning)));
}
break;
case RemotingDataType.PowerShellProgress:
{
ProgressRecord record = RemotingDecoder.GetPowerShellProgress(receivedData.Data);
InformationalMessageReceived.SafeInvoke(this,
new RemoteDataEventArgs<InformationalMessage>(
new InformationalMessage(record, RemotingDataType.PowerShellProgress)));
}
break;
case RemotingDataType.PowerShellInformationStream:
{
InformationRecord record = RemotingDecoder.GetPowerShellInformation(receivedData.Data);
InformationalMessageReceived.SafeInvoke(this,
new RemoteDataEventArgs<InformationalMessage>(
new InformationalMessage(record, RemotingDataType.PowerShellInformationStream)));
}
break;
case RemotingDataType.RemoteHostCallUsingPowerShellHost:
{
RemoteHostCall remoteHostCall = RemoteHostCall.Decode(receivedData.Data);
HostCallReceived.SafeInvoke(this, new RemoteDataEventArgs<RemoteHostCall>(remoteHostCall));
}
break;
default:
{
Dbg.Assert(false, "we should not be encountering this");
}
break;
}
}
/// <summary>
/// Set the state of the associated powershell to stopped.
/// </summary>
/// <param name="reason">reason why this state change
/// should occur</param>
/// <remarks>This method is called by the associated
/// runspace pool data structure handler when the server runspace pool
/// goes into a closed or broken state</remarks>
internal void SetStateToFailed(Exception reason)
{
Dbg.Assert(BrokenNotificationFromRunspacePool != null,
"ClientRemotePowerShell should subscribe to all data structure handler events");
BrokenNotificationFromRunspacePool.SafeInvoke(this, new RemoteDataEventArgs<Exception>(reason));
}
/// <summary>
/// Sets the state of the powershell to stopped.
/// </summary>
/// <param name="reason">reason why the powershell has to be
/// set to a stopped state.</param>
internal void SetStateToStopped(Exception reason)
{
Dbg.Assert(ClosedNotificationFromRunspacePool != null,
"ClientRemotePowerShell should subscribe to all data structure handler events");
ClosedNotificationFromRunspacePool.SafeInvoke(this, new RemoteDataEventArgs<Exception>(reason));
}
/// <summary>
/// Closes transport manager.
/// </summary>
internal void CloseConnectionAsync(Exception sessionCloseReason)
{
_sessionClosedReason = sessionCloseReason;
// wait for the close to complete and then dispose the transport manager
TransportManager.CloseCompleted += (object source, EventArgs args) =>
{
if (CloseCompleted != null)
{
// If the provided event args are empty then call CloseCompleted with
// RemoteSessionStateEventArgs containing session closed reason exception.
EventArgs closeCompletedEventArgs = (args == EventArgs.Empty) ?
new RemoteSessionStateEventArgs(new RemoteSessionStateInfo(RemoteSessionState.Closed, _sessionClosedReason)) :
args;
CloseCompleted(this, closeCompletedEventArgs);
}
TransportManager.Dispose();
};
TransportManager.CloseAsync();
}
/// <summary>
/// Raise a remove association event. This is raised
/// when the powershell has gone into a terminal state
/// and the runspace pool need not maintain any further
/// associations.
/// </summary>
internal void RaiseRemoveAssociationEvent()
{
RemoveAssociation.SafeInvoke(this, EventArgs.Empty);
}
/// <summary>
/// Called from runspace DS handler while disconnecting
/// This will set the state of the pipeline DS handler to disconnected.
/// </summary>
internal void ProcessDisconnect(RunspacePoolStateInfo rsStateInfo)
{
// disconnect may be called on a pipeline that is already disconnected.
PSInvocationStateInfo stateInfo =
new PSInvocationStateInfo(PSInvocationState.Disconnected,
rsStateInfo?.Reason);
Dbg.Assert(InvocationStateInfoReceived != null,
"ClientRemotePowerShell should subscribe to all data structure handler events");
InvocationStateInfoReceived.SafeInvoke(this,
new RemoteDataEventArgs<PSInvocationStateInfo>(stateInfo));
Interlocked.CompareExchange(ref _connectionState, (int)connectionStates.Disconnected, (int)connectionStates.Connected);
}
/// <summary>
/// This does not ensure that the corresponding session/runspacepool is in connected stated
/// It's the caller responsibility to ensure that this is the case
/// At the protocols layers, this logic is delegated to the transport layer.
/// WSMan transport ensures that WinRS commands cannot be reconnected when the parent shell is not in connected state.
/// </summary>
internal void ReconnectAsync()
{
int currentState = Interlocked.CompareExchange(ref _connectionState, (int)connectionStates.Reconnecting, (int)connectionStates.Disconnected);
if ((currentState != (int)connectionStates.Disconnected))
{
Dbg.Assert(false, "Pipeline DS Handler is in unexpected connection state");
// TODO: Raise appropriate exception
return;
}
TransportManager.ReconnectAsync();
}
// Called from session DSHandler. Connects to a remote powershell instance.
internal void ConnectAsync()
{
int currentState = Interlocked.CompareExchange(ref _connectionState, (int)connectionStates.Connecting, (int)connectionStates.Disconnected);
// Connect is called for *reconstruct* connection case and so
// we need to set up all transport manager callbacks.
SetupTransportManager(false);
TransportManager.ConnectAsync();
}
/// <summary>
/// Called from session DSHandler. Notify client of robust connection
/// message.
/// </summary>
/// <param name="e"></param>
internal void ProcessRobustConnectionNotification(
ConnectionStatusEventArgs e)
{
// Raise event for PowerShell client.
RobustConnectionNotification.SafeInvoke(this, e);
}
#endregion Data Structure Handler Methods
#region Constructors
/// <summary>
/// Default internal constructor.
/// </summary>
/// <param name="clientRunspacePoolId">id of the client
/// remote runspace pool associated with this data structure handler
/// </param>
/// <param name="clientPowerShellId">id of the client
/// powershell associated with this data structure handler</param>
/// <param name="transportManager">transport manager associated
/// with this connection</param>
internal ClientPowerShellDataStructureHandler(BaseClientCommandTransportManager transportManager,
Guid clientRunspacePoolId, Guid clientPowerShellId)
{
TransportManager = transportManager;
_clientRunspacePoolId = clientRunspacePoolId;
_clientPowerShellId = clientPowerShellId;
transportManager.SignalCompleted += OnSignalCompleted;
}
#endregion Constructors
#region Internal Methods
/// <summary>
/// Client PowerShell Id of the powershell this
/// data structure handler is associated with.
/// </summary>
internal Guid PowerShellId
{
get
{
return _clientPowerShellId;
}
}
/// <summary>
/// Transport manager used by this data structure handler.
/// </summary>
internal BaseClientCommandTransportManager TransportManager { get; }
#endregion Internal Methods
#region Private Methods
/// <summary>
/// Send the data specified as a RemoteDataObject asynchronously
/// to the powershell on server.
/// </summary>
/// <param name="data">Data to send.</param>
/// <remarks>This overload takes a RemoteDataObject and should be
/// the one used within the code</remarks>
private void SendDataAsync(RemoteDataObject data)
{
RemoteDataObject<object> dataToBeSent = (RemoteDataObject<object>)data;
TransportManager.DataToBeSentCollection.Add<object>(dataToBeSent);
}
/// <summary>
/// Handle data added to input.
/// </summary>
/// <param name="sender">Sender of this event.</param>
/// <param name="e">Information describing this event.</param>
private void HandleInputDataReady(object sender, EventArgs e)
{
// make sure only one thread calls the WriteInput.
lock (_inputSyncObject)
{
ObjectStreamBase inputstream = sender as ObjectStreamBase;
WriteInput(inputstream);
}
}
/// <summary>
/// </summary>
/// <remarks>This method doesn't lock and its the responsibility
/// of the caller to actually do the locking</remarks>
/// <param name="inputstream"></param>
private void WriteInput(ObjectStreamBase inputstream)
{
Collection<object> inputObjects = inputstream.ObjectReader.NonBlockingRead(Int32.MaxValue);
foreach (object inputObject in inputObjects)
{
SendDataAsync(RemotingEncoder.GeneratePowerShellInput(inputObject,
_clientRunspacePoolId, _clientPowerShellId));
}
if (!inputstream.IsOpen)
{
// Write any data written after the NonBlockingRead call above.
inputObjects = inputstream.ObjectReader.NonBlockingRead(Int32.MaxValue);
foreach (object inputObject in inputObjects)
{
SendDataAsync(RemotingEncoder.GeneratePowerShellInput(inputObject,
_clientRunspacePoolId, _clientPowerShellId));
}
// we are sending input end to the server. Ignore the future
// DataReady events (A DataReady event is raised while Closing
// the stream as well)
inputstream.DataReady -= HandleInputDataReady;
// stream close: send end of input
SendDataAsync(RemotingEncoder.GeneratePowerShellInputEnd(
_clientRunspacePoolId, _clientPowerShellId));
}
}
/// <summary>
/// Helper method to add transport manager callbacks and set transport
/// manager disconnected state.
/// </summary>
/// <param name="inDisconnectMode">Boolean.</param>
private void SetupTransportManager(bool inDisconnectMode)
{
TransportManager.WSManTransportErrorOccured += HandleTransportError;
TransportManager.ReconnectCompleted += HandleReconnectCompleted;
TransportManager.ConnectCompleted += HandleConnectCompleted;
TransportManager.DelayStreamRequestProcessed += HandleDelayStreamRequestProcessed;
TransportManager.startInDisconnectedMode = inDisconnectMode;
}
#endregion Private Methods
#region Private Members
private readonly Guid _clientRunspacePoolId;
private readonly Guid _clientPowerShellId;
// object for synchronizing input to be sent
// to server powershell
private readonly object _inputSyncObject = new object();
private enum connectionStates
{
Connected = 1, Disconnected = 3, Reconnecting = 4, Connecting = 5
}
private int _connectionState = (int)connectionStates.Connected;
// Contains the associated session closed reason exception if any,
// otherwise is null.
private Exception _sessionClosedReason;
#endregion Private Members
}
internal sealed class InformationalMessage
{
internal object Message { get; }
internal RemotingDataType DataType { get; }
internal InformationalMessage(object message, RemotingDataType dataType)
{
DataType = dataType;
Message = message;
}
}
}
|