File size: 62,790 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/*
* Common file that contains interface definitions for generic server and client
* transport managers.
*
*/
using System.Management.Automation.Tracing;
using System.Text;
using System.IO;
using System.Xml;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
using System.Management.Automation.Internal;
#if !UNIX
using System.Security.Principal;
#endif
// Don't expose the System.Management.Automation namespace here. This is transport layer
// and it shouldn't know anything about the engine.
using System.Management.Automation.Remoting.Client;
// TODO: this seems ugly...Remoting datatypes should be in remoting namespace
using System.Management.Automation.Runspaces.Internal;
using PSRemotingCryptoHelper = System.Management.Automation.Internal.PSRemotingCryptoHelper;
using RunspaceConnectionInfo = System.Management.Automation.Runspaces.RunspaceConnectionInfo;
using TypeTable = System.Management.Automation.Runspaces.TypeTable;
using Dbg = System.Management.Automation.Diagnostics;
namespace System.Management.Automation.Remoting
{
#region TransportErrorOccuredEventArgs
/// <summary>
/// Transport method for error reporting.
/// </summary>
public enum TransportMethodEnum
{
/// <summary>
/// CreateShellEx
/// </summary>
CreateShellEx = 0,
/// <summary>
/// RunShellCommandEx
/// </summary>
RunShellCommandEx = 1,
/// <summary>
/// SendShellInputEx
/// </summary>
SendShellInputEx = 2,
/// <summary>
/// ReceiveShellOutputEx
/// </summary>
ReceiveShellOutputEx = 3,
/// <summary>
/// CloseShellOperationEx
/// </summary>
CloseShellOperationEx = 4,
/// <summary>
/// CommandInputEx
/// </summary>
CommandInputEx = 5,
/// <summary>
/// ReceiveCommandOutputEx
/// </summary>
ReceiveCommandOutputEx = 6,
/// <summary>
/// DisconnectShellEx
/// </summary>
DisconnectShellEx = 7,
/// <summary>
/// ReconnectShellEx
/// </summary>
ReconnectShellEx = 8,
/// <summary>
/// ConnectShellEx
/// </summary>
ConnectShellEx = 9,
/// <summary>
/// ReconnectShellCommandEx
/// </summary>
ReconnectShellCommandEx = 10,
/// <summary>
/// ConnectShellCommandEx
/// </summary>
ConnectShellCommandEx = 11,
/// <summary>
/// Unknown
/// </summary>
Unknown = 12,
}
/// <summary>
/// Event arguments passed to TransportErrorOccurred handlers.
/// </summary>
public sealed class TransportErrorOccuredEventArgs : EventArgs
{
/// <summary>
/// Constructor.
/// </summary>
/// <param name="e">
/// Error occurred.
/// </param>
/// <param name="m">
/// The transport method that raised the error.
/// </param>
public TransportErrorOccuredEventArgs(
PSRemotingTransportException e,
TransportMethodEnum m)
{
Exception = e;
ReportingTransportMethod = m;
}
/// <summary>
/// Gets the error occurred.
/// </summary>
internal PSRemotingTransportException Exception { get; set; }
/// <summary>
/// Transport method that is reporting this error.
/// </summary>
internal TransportMethodEnum ReportingTransportMethod { get; }
}
#endregion
#region ConnectionStatusEventArgs
/// <summary>
/// Robust Connection notifications.
/// </summary>
internal enum ConnectionStatus
{
NetworkFailureDetected = 1,
ConnectionRetryAttempt = 2,
ConnectionRetrySucceeded = 3,
AutoDisconnectStarting = 4,
AutoDisconnectSucceeded = 5,
InternalErrorAbort = 6
}
/// <summary>
/// ConnectionStatusEventArgs.
/// </summary>
internal class ConnectionStatusEventArgs : EventArgs
{
internal ConnectionStatusEventArgs(ConnectionStatus notification)
{
Notification = notification;
}
internal ConnectionStatus Notification { get; }
}
#endregion
#region CreateCompleteEventArgs
/// <summary>
/// CreateCompleteEventArgs.
/// </summary>
internal class CreateCompleteEventArgs : EventArgs
{
internal RunspaceConnectionInfo ConnectionInfo { get; }
internal CreateCompleteEventArgs(
RunspaceConnectionInfo connectionInfo)
{
ConnectionInfo = connectionInfo;
}
}
#endregion
/// <summary>
/// Contains implementation that is common to both client and server
/// transport managers.
/// </summary>
public abstract class BaseTransportManager : IDisposable
{
#region tracer
[TraceSource("Transport", "Traces BaseWSManTransportManager")]
private static readonly PSTraceSource s_baseTracer = PSTraceSource.GetTracer("Transport", "Traces BaseWSManTransportManager");
#endregion
#region Global Constants
// KeepAlive: Server 4 minutes, Client 3 minutes
// The server timeout value has to be bigger than the client timeout value.
// This is due to the WinRM implementation on the Listener.
// So We added a 1 minute network delay to count for this.
internal const int ServerDefaultKeepAliveTimeoutMs = 4 * 60 * 1000; // milliseconds = 4 minutes
internal const int ClientDefaultOperationTimeoutMs = 3 * 60 * 1000; // milliseconds = 3 minutes
// Close timeout: to prevent unbounded close operation, we set a 1 minute bound.
internal const int ClientCloseTimeoutMs = 60 * 1000;
// This value instructs the server to use whatever setting it has for idle timeout.
internal const int UseServerDefaultIdleTimeout = -1;
internal const uint UseServerDefaultIdleTimeoutUInt = UInt32.MaxValue;
// Minimum allowed idle timeout time is 60 seconds.
internal const int MinimumIdleTimeout = 60 * 1000;
internal const int DefaultFragmentSize = 32 << 10; // 32KB
// Quota related consts and session variables.
internal const int MaximumReceivedDataSize = 50 << 20; // 50MB
internal const int MaximumReceivedObjectSize = 10 << 20; // 10MB
// Session variables supporting powershell quotas.
internal const string MAX_RECEIVED_DATA_PER_COMMAND_MB = "PSMaximumReceivedDataSizePerCommandMB";
internal const string MAX_RECEIVED_OBJECT_SIZE_MB = "PSMaximumReceivedObjectSizeMB";
#endregion
#region Private Data
// fragmentor used to fragment & defragment objects added to this collection.
private readonly ReceiveDataCollection.OnDataAvailableCallback _onDataAvailableCallback;
// crypto helper used for encrypting/decrypting
// secure string
#endregion
#region EventHandlers
internal event EventHandler<TransportErrorOccuredEventArgs> WSManTransportErrorOccured;
/// <summary>
/// Event that is raised when a remote object is available. 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().
/// </summary>
internal event EventHandler<RemoteDataEventArgs> DataReceived;
/// <summary>
/// Listen to this event to observe the PowerShell guid of the processed object.
/// </summary>
public event EventHandler PowerShellGuidObserver;
#endregion
#region Constructor
internal BaseTransportManager(PSRemotingCryptoHelper cryptoHelper)
{
CryptoHelper = cryptoHelper;
// create a common fragmentor used by this transport manager to send and receive data.
// so type information is serialized only the first time an object of a particular type
// is sent. only data is serialized for the rest of the objects of the same type.
Fragmentor = new Fragmentor(DefaultFragmentSize, cryptoHelper);
ReceivedDataCollection = new PriorityReceiveDataCollection(Fragmentor, (this is BaseClientTransportManager));
_onDataAvailableCallback = new ReceiveDataCollection.OnDataAvailableCallback(OnDataAvailableCallback);
}
#endregion
#region Helper Methods
internal Fragmentor Fragmentor { get; set; }
/// <summary>
/// This is needed to deserialize objects coming from the network.
/// This may be null..in which case type rehydration does not happen.
/// At construction time we may not have typetable (server runspace
/// is created only when a request from the client)..so this is
/// a property on the base transport manager to allow for setting at
/// a later time.
/// </summary>
internal TypeTable TypeTable
{
get { return Fragmentor.TypeTable; }
set { Fragmentor.TypeTable = value; }
}
/// <summary>
/// Uses the "OnDataAvailableCallback" to handle Deserialized objects.
/// </summary>
/// <param name="data">
/// data to process
/// </param>
/// <param name="stream">
/// priority stream this data belongs to
/// </param>
internal virtual void ProcessRawData(byte[] data, string stream)
{
try
{
ProcessRawData(data, stream, _onDataAvailableCallback);
}
catch (Exception exception)
{
// This will get executed on a thread pool thread..
// so we need to protect that thread, hence catching
// all exceptions
s_baseTracer.WriteLine("Exception processing data. {0}", exception.Message);
PSRemotingTransportException e = new PSRemotingTransportException(exception.Message, exception);
TransportErrorOccuredEventArgs eventargs =
new TransportErrorOccuredEventArgs(e, TransportMethodEnum.ReceiveShellOutputEx);
RaiseErrorHandler(eventargs);
return;
}
}
/// <summary>
/// </summary>
/// <param name="data">
/// data to process
/// </param>
/// <param name="stream">
/// priority stream this data belongs to
/// </param>
/// <param name="dataAvailableCallback">
/// used by the caller to supply a callback to handle deserialized object.
/// </param>
/// <exception cref="Exception">
/// Since dataAvailableCallback is called in this method, and the handler
/// may be handled by 3rd party code (eventually),this may throw any exception.
/// </exception>
internal void ProcessRawData(byte[] data,
string stream,
ReceiveDataCollection.OnDataAvailableCallback dataAvailableCallback)
{
Dbg.Assert(data != null, "Cannot process null data");
s_baseTracer.WriteLine("Processing incoming data for stream {0}.", stream);
bool shouldProcess = false;
DataPriorityType dataPriority = DataPriorityType.Default;
if (stream.Equals(WSManNativeApi.WSMAN_STREAM_ID_STDIN, StringComparison.OrdinalIgnoreCase) ||
stream.Equals(WSManNativeApi.WSMAN_STREAM_ID_STDOUT, StringComparison.OrdinalIgnoreCase))
{
shouldProcess = true;
}
else if (stream.Equals(WSManNativeApi.WSMAN_STREAM_ID_PROMPTRESPONSE, StringComparison.OrdinalIgnoreCase))
{
dataPriority = DataPriorityType.PromptResponse;
shouldProcess = true;
}
if (!shouldProcess)
{
// we dont support this stream..so ignore the data
Dbg.Assert(false, string.Format(
CultureInfo.InvariantCulture,
"Data should be from one of the streams : {0} or {1} or {2}",
WSManNativeApi.WSMAN_STREAM_ID_STDIN,
WSManNativeApi.WSMAN_STREAM_ID_STDOUT,
WSManNativeApi.WSMAN_STREAM_ID_PROMPTRESPONSE));
s_baseTracer.WriteLine("{0} is not a valid stream", stream);
}
// process data
ReceivedDataCollection.ProcessRawData(data, dataPriority, dataAvailableCallback);
}
/// <summary>
/// </summary>
/// <param name="remoteObject"></param>
/// <exception cref="Exception">
/// The handler may be handled by 3rd party code (eventually),
/// this may throw any exception.
/// </exception>
internal void OnDataAvailableCallback(RemoteDataObject<PSObject> remoteObject)
{
// log the data to crimson logs
PSEtwLog.LogAnalyticInformational(PSEventId.TransportReceivedObject, PSOpcode.Open,
PSTask.None,
PSKeyword.Transport | PSKeyword.UseAlwaysAnalytic,
remoteObject.RunspacePoolId.ToString(),
remoteObject.PowerShellId.ToString(),
(UInt32)(remoteObject.Destination),
(UInt32)(remoteObject.DataType),
(UInt32)(remoteObject.TargetInterface));
// This might throw exceptions which the caller handles.
PowerShellGuidObserver.SafeInvoke(remoteObject.PowerShellId, EventArgs.Empty);
RemoteDataEventArgs eventArgs = new RemoteDataEventArgs(remoteObject);
DataReceived.SafeInvoke(this, eventArgs);
}
/// <summary>
/// Copy the DataReceived event handlers to the supplied transport Manager.
/// </summary>
/// <param name="transportManager"></param>
public void MigrateDataReadyEventHandlers(BaseTransportManager transportManager)
{
foreach (Delegate handler in transportManager.DataReceived.GetInvocationList())
{
DataReceived += (EventHandler<RemoteDataEventArgs>)handler;
}
}
/// <summary>
/// Raise the error handlers.
/// </summary>
/// <param name="eventArgs"></param>
public virtual void RaiseErrorHandler(TransportErrorOccuredEventArgs eventArgs)
{
WSManTransportErrorOccured.SafeInvoke(this, eventArgs);
}
/// <summary>
/// Crypto handler to be used for encrypting/decrypting
/// secure strings.
/// </summary>
internal PSRemotingCryptoHelper CryptoHelper { get; set; }
/// <summary>
/// A data buffer used to store data received from remote machine.
/// </summary>
internal PriorityReceiveDataCollection ReceivedDataCollection { get; }
#endregion
#region IDisposable implementation
/// <summary>
/// Dispose the transport and release resources.
/// </summary>
public void Dispose()
{
Dispose(true);
// if already disposing..no need to let finalizer thread
// put resources to clean this object.
System.GC.SuppressFinalize(this);
}
/// <summary>
/// Dispose resources.
/// </summary>
protected virtual void Dispose(bool isDisposing)
{
if (isDisposing)
{
ReceivedDataCollection.Dispose();
}
}
#endregion
}
}
namespace System.Management.Automation.Remoting.Client
{
/// <summary>
/// Remoting base client transport manager.
/// </summary>
public abstract class BaseClientTransportManager : BaseTransportManager, IDisposable
{
#region Tracer
[TraceSource("ClientTransport", "Traces ClientTransportManager")]
internal static PSTraceSource tracer = PSTraceSource.GetTracer("ClientTransport", "Traces ClientTransportManager");
#endregion
#region Data
internal bool isClosed;
internal object syncObject = new object();
internal PrioritySendDataCollection dataToBeSent;
// used to handle callbacks from the server..these are used to synchronize received callbacks
private readonly Queue<CallbackNotificationInformation> _callbackNotificationQueue;
private readonly ReceiveDataCollection.OnDataAvailableCallback _onDataAvailableCallback;
private bool _isServicingCallbacks;
private bool _suspendQueueServicing;
private bool _isDebuggerSuspend;
// this is used log crimson messages.
// keeps track of whether a receive request has been placed on transport
internal bool receiveDataInitiated;
#endregion
#region Constructors
internal BaseClientTransportManager(Guid runspaceId, PSRemotingCryptoHelper cryptoHelper)
: base(cryptoHelper)
{
RunspacePoolInstanceId = runspaceId;
dataToBeSent = new PrioritySendDataCollection();
_onDataAvailableCallback = new ReceiveDataCollection.OnDataAvailableCallback(OnDataAvailableHandler);
_callbackNotificationQueue = new Queue<CallbackNotificationInformation>();
}
#endregion
#region Events
/// <summary>
/// Event that is raised when a create operation on transport has been successfully completed
/// 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>
internal event EventHandler<CreateCompleteEventArgs> CreateCompleted;
/// <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>
/// Indicated successful completion of a connect operation on transport
///
/// Errors are reported through WSManTransportErrorOccured
/// event.
/// </summary>
internal event EventHandler<EventArgs> ConnectCompleted;
/// <summary>
/// Indicated successful completion of a disconnect operation on transport
///
/// Errors are reported through WSManTransportErrorOccured
/// event.
/// </summary>
internal event EventHandler<EventArgs> DisconnectCompleted;
/// <summary>
/// Indicated successful completion of a reconnect operation on transport
///
/// Errors are reported through WSManTransportErrorOccured
/// event.
/// </summary>
internal event EventHandler<EventArgs> ReconnectCompleted;
/// <summary>
/// Indicates that the transport/command is ready for a disconnect operation.
///
/// Errors are reported through WSManTransportErrorOccured event.
/// </summary>
internal event EventHandler<EventArgs> ReadyForDisconnect;
/// <summary>
/// Event to pass Robust Connection notifications to client.
/// </summary>
internal event EventHandler<ConnectionStatusEventArgs> RobustConnectionNotification;
/// <summary>
/// Indicates successful processing of a delay stream request on a receive operation
///
/// this event is useful when PS wants to invoke a pipeline in disconnected mode.
/// </summary>
internal event EventHandler<EventArgs> DelayStreamRequestProcessed;
#endregion
#region Properties
/// <summary>
/// Gets the data collection which is used by this transport manager to send
/// data to the server.
/// </summary>
internal PrioritySendDataCollection DataToBeSentCollection
{
get { return dataToBeSent; }
}
/// <summary>
/// Used to log crimson messages.
/// </summary>
internal Guid RunspacePoolInstanceId { get; }
/// <summary>
/// Raise the Connect completed handler.
/// </summary>
internal void RaiseCreateCompleted(CreateCompleteEventArgs eventArgs)
{
CreateCompleted.SafeInvoke(this, eventArgs);
}
internal void RaiseConnectCompleted()
{
ConnectCompleted.SafeInvoke(this, EventArgs.Empty);
}
internal void RaiseDisconnectCompleted()
{
DisconnectCompleted.SafeInvoke(this, EventArgs.Empty);
}
internal void RaiseReconnectCompleted()
{
ReconnectCompleted.SafeInvoke(this, EventArgs.Empty);
}
/// <summary>
/// Raise the close completed handler.
/// </summary>
internal void RaiseCloseCompleted()
{
CloseCompleted.SafeInvoke(this, EventArgs.Empty);
}
/// <summary>
/// Raise the ReadyForDisconnect event.
/// </summary>
internal void RaiseReadyForDisconnect()
{
ReadyForDisconnect.SafeInvoke(this, EventArgs.Empty);
}
/// <summary>
/// Queue the robust connection notification event.
/// </summary>
/// <param name="flags">Determines what kind of notification.</param>
internal void QueueRobustConnectionNotification(int flags)
{
ConnectionStatusEventArgs args = null;
switch (flags)
{
case (int)WSManNativeApi.WSManCallbackFlags.WSMAN_FLAG_CALLBACK_NETWORK_FAILURE_DETECTED:
args = new ConnectionStatusEventArgs(ConnectionStatus.NetworkFailureDetected);
break;
case (int)WSManNativeApi.WSManCallbackFlags.WSMAN_FLAG_CALLBACK_RETRYING_AFTER_NETWORK_FAILURE:
args = new ConnectionStatusEventArgs(ConnectionStatus.ConnectionRetryAttempt);
break;
case (int)WSManNativeApi.WSManCallbackFlags.WSMAN_FLAG_CALLBACK_RECONNECTED_AFTER_NETWORK_FAILURE:
args = new ConnectionStatusEventArgs(ConnectionStatus.ConnectionRetrySucceeded);
break;
case (int)WSManNativeApi.WSManCallbackFlags.WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTING:
args = new ConnectionStatusEventArgs(ConnectionStatus.AutoDisconnectStarting);
break;
case (int)WSManNativeApi.WSManCallbackFlags.WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTED:
args = new ConnectionStatusEventArgs(ConnectionStatus.AutoDisconnectSucceeded);
break;
case (int)WSManNativeApi.WSManCallbackFlags.WSMAN_FLAG_CALLBACK_RETRY_ABORTED_DUE_TO_INTERNAL_ERROR:
args = new ConnectionStatusEventArgs(ConnectionStatus.InternalErrorAbort);
break;
}
// Queue worker item to raise the event so that all robust connection
// events are raised in the same order as received.
EnqueueAndStartProcessingThread(null, null, args);
}
/// <summary>
/// Raise the Robust Connection notification event.
/// </summary>
/// <param name="args">ConnectionStatusEventArgs.</param>
internal void RaiseRobustConnectionNotification(ConnectionStatusEventArgs args)
{
RobustConnectionNotification.SafeInvoke(this, args);
}
internal void RaiseDelayStreamProcessedEvent()
{
DelayStreamRequestProcessed.SafeInvoke(this, EventArgs.Empty);
}
#endregion
#region Received Data Processing Thread
internal override void ProcessRawData(byte[] data, string stream)
{
if (isClosed)
{
return;
}
try
{
base.ProcessRawData(data, stream, _onDataAvailableCallback);
}
catch (PSRemotingTransportException pte)
{
// PSRemotingTransportException need not be wrapped in another PSRemotingTransportException.
tracer.WriteLine("Exception processing data. {0}", pte.Message);
TransportErrorOccuredEventArgs eventargs = new TransportErrorOccuredEventArgs(pte,
TransportMethodEnum.ReceiveShellOutputEx);
EnqueueAndStartProcessingThread(null, eventargs, null);
return;
}
catch (Exception exception)
{
// Enqueue an Exception to process in a thread-pool thread. Processing
// Exception in a thread pool thread is important as calling
// WSManCloseShell/Command from a Receive callback results in a deadlock.
tracer.WriteLine("Exception processing data. {0}", exception.Message);
PSRemotingTransportException e = new PSRemotingTransportException(exception.Message);
TransportErrorOccuredEventArgs eventargs = new TransportErrorOccuredEventArgs(e,
TransportMethodEnum.ReceiveShellOutputEx);
EnqueueAndStartProcessingThread(null, eventargs, null);
return;
}
}
private void OnDataAvailableHandler(RemoteDataObject<PSObject> remoteObject)
{
EnqueueAndStartProcessingThread(remoteObject, null, null);
}
/// <summary>
/// Enqueue a deserialized object or an Exception to process in a thread pool
/// thread. Processing Exception in a thread pool thread is important as calling
/// WSManCloseShell/Command from a Receive callback results in a deadlock.
/// </summary>
/// <param name="remoteObject">
/// Deserialized Object to process in a thread-pool thread. This should be null
/// when <paramref name="transportException"/> is specified.
/// </param>
/// <param name="privateData">
/// Data that is neither RemoteObject or Exception. This is used by Client Command
/// Transport manager to raise SignalCompleted callback.
/// </param>
/// <param name="transportErrorArgs">
/// Error containing transport exception.
/// </param>
internal void EnqueueAndStartProcessingThread(RemoteDataObject<PSObject> remoteObject,
TransportErrorOccuredEventArgs transportErrorArgs,
object privateData)
{
if (isClosed)
{
return;
}
lock (_callbackNotificationQueue)
{
if ((remoteObject != null) || (transportErrorArgs != null) || (privateData != null))
{
CallbackNotificationInformation rcvdDataInfo = new CallbackNotificationInformation();
rcvdDataInfo.remoteObject = remoteObject;
rcvdDataInfo.transportError = transportErrorArgs;
rcvdDataInfo.privateData = privateData;
if (remoteObject != null && (remoteObject.DataType == RemotingDataType.PublicKey ||
remoteObject.DataType == RemotingDataType.EncryptedSessionKey ||
remoteObject.DataType == RemotingDataType.PublicKeyRequest))
{
CryptoHelper.Session.BaseSessionDataStructureHandler.RaiseKeyExchangeMessageReceived(remoteObject);
}
else
{
_callbackNotificationQueue.Enqueue(rcvdDataInfo);
}
}
if (_suspendQueueServicing && _isDebuggerSuspend)
{
// Remove debugger queue suspension if remoteObject requires user response.
_suspendQueueServicing = !CheckForInteractiveHostCall(remoteObject);
}
if (_isServicingCallbacks || _suspendQueueServicing)
{
// a thread pool thread is already processing callbacks or
// the queue processing is suspended.
return;
}
if (_callbackNotificationQueue.Count > 0)
{
_isServicingCallbacks = true;
// Start a thread pool thread to process callbacks.
#if !UNIX
WindowsIdentity identityToImpersonate;
Utils.TryGetWindowsImpersonatedIdentity(out identityToImpersonate);
Utils.QueueWorkItemWithImpersonation(
identityToImpersonate,
new WaitCallback(ServicePendingCallbacks),
null);
#else
ThreadPool.QueueUserWorkItem(new WaitCallback(ServicePendingCallbacks));
#endif
}
}
}
/// <summary>
/// Helper method to check RemoteDataObject for a host call requiring user
/// interaction.
/// </summary>
/// <param name="remoteObject">Remote data object.</param>
/// <returns>True if remote data object requires a user response.</returns>
private static bool CheckForInteractiveHostCall(RemoteDataObject<PSObject> remoteObject)
{
bool interactiveHostCall = false;
if ((remoteObject != null) &&
(remoteObject.DataType == RemotingDataType.RemoteHostCallUsingPowerShellHost))
{
RemoteHostMethodId methodId = 0;
try
{
methodId = RemotingDecoder.GetPropertyValue<RemoteHostMethodId>(remoteObject.Data, RemoteDataNameStrings.MethodId);
}
catch (PSArgumentNullException) { }
catch (PSRemotingDataStructureException) { }
// If new remote host call methods are added then we need to evaluate if they are interactive.
Dbg.Assert(methodId <= RemoteHostMethodId.PromptForChoiceMultipleSelection, "A new remote host method Id was added. Update switch statement as needed.");
switch (methodId)
{
case RemoteHostMethodId.Prompt:
case RemoteHostMethodId.PromptForChoice:
case RemoteHostMethodId.PromptForChoiceMultipleSelection:
case RemoteHostMethodId.PromptForCredential1:
case RemoteHostMethodId.PromptForCredential2:
case RemoteHostMethodId.ReadKey:
case RemoteHostMethodId.ReadLine:
case RemoteHostMethodId.ReadLineAsSecureString:
interactiveHostCall = true;
break;
}
}
return interactiveHostCall;
}
internal void ServicePendingCallbacks(object objectToProcess)
{
tracer.WriteLine("ServicePendingCallbacks thread is starting");
PSEtwLog.ReplaceActivityIdForCurrentThread(RunspacePoolInstanceId,
PSEventId.OperationalTransferEventRunspacePool,
PSEventId.AnalyticTransferEventRunspacePool,
PSKeyword.Transport,
PSTask.None);
try
{
while (true)
{
// if the transport manager is closed return.
if (isClosed)
{
return;
}
CallbackNotificationInformation rcvdDataInfo = null;
lock (_callbackNotificationQueue)
{
// If queue is empty or if queue servicing is suspended
// then break out of loop.
if (_callbackNotificationQueue.Count == 0 || _suspendQueueServicing)
{
break;
}
rcvdDataInfo = _callbackNotificationQueue.Dequeue();
}
// Handle callback.
if (rcvdDataInfo != null)
{
// Handling transport exception in thread-pool thread
if (rcvdDataInfo.transportError != null)
{
RaiseErrorHandler(rcvdDataInfo.transportError);
break;
}
else if (rcvdDataInfo.privateData != null)
{
ProcessPrivateData(rcvdDataInfo.privateData);
}
else
{
base.OnDataAvailableCallback(rcvdDataInfo.remoteObject);
}
}
}
}
catch (Exception exception)
{
// This will get executed on a thread pool thread..
// so we need to protect that thread, hence catching
// all exceptions
tracer.WriteLine("Exception processing data. {0}", exception.Message);
PSRemotingTransportException e = new PSRemotingTransportException(exception.Message, exception);
TransportErrorOccuredEventArgs eventargs =
new TransportErrorOccuredEventArgs(e, TransportMethodEnum.ReceiveShellOutputEx);
RaiseErrorHandler(eventargs);
return;
}
finally
{
lock (_callbackNotificationQueue)
{
tracer.WriteLine("ServicePendingCallbacks thread is exiting");
_isServicingCallbacks = false;
// check if any new runspace request has arrived..
EnqueueAndStartProcessingThread(null, null, null);
}
}
}
internal bool IsServicing
{
get
{
lock (_callbackNotificationQueue)
{
return _isServicingCallbacks;
}
}
}
internal void SuspendQueue(bool debuggerSuspend = false)
{
lock (_callbackNotificationQueue)
{
_isDebuggerSuspend = debuggerSuspend;
_suspendQueueServicing = true;
}
}
internal void ResumeQueue()
{
lock (_callbackNotificationQueue)
{
_isDebuggerSuspend = false;
if (_suspendQueueServicing)
{
_suspendQueueServicing = false;
// Process any items in queue.
EnqueueAndStartProcessingThread(null, null, null);
}
}
}
/// <summary>
/// Used by ServicePendingCallbacks to give the control to derived classes for
/// processing data that the base class does not understand.
/// </summary>
/// <param name="privateData">
/// Derived class specific data to process. For command transport manager this
/// should be a boolean.
/// </param>
internal virtual void ProcessPrivateData(object privateData)
{
}
internal class CallbackNotificationInformation
{
// only one of the following 2 should be present..
// anyway transportException takes precedence over remoteObject.
internal RemoteDataObject<PSObject> remoteObject;
internal TransportErrorOccuredEventArgs transportError;
// Used by ServicePendingCallbacks to give the control to derived classes for
// processing data that the base class does not understand.
internal object privateData;
}
#endregion
#region Abstract / Virtual methods
/// <summary>
/// Create the transport manager and initiate connection.
/// </summary>
public abstract void CreateAsync();
internal abstract void ConnectAsync();
/// <summary>
/// The caller should make sure the call is synchronized.
/// </summary>
public virtual void CloseAsync()
{
// Clear the send collection
dataToBeSent.Clear();
}
internal virtual void StartReceivingData()
{
throw new NotImplementedException();
}
/// <summary>
/// Method to have transport prepare for a disconnect operation.
/// </summary>
internal virtual void PrepareForDisconnect()
{
throw new NotImplementedException();
}
/// <summary>
/// Method to resume post disconnect operations.
/// </summary>
internal virtual void PrepareForConnect()
{
throw new NotImplementedException();
}
#endregion
#region Clean up
/// <summary>
/// Finalizes an instance of the <see cref="BaseClientTransportManager"/> class.
/// </summary>
~BaseClientTransportManager()
{
if (isClosed)
{
Dispose(false);
}
else
{
// wait for the close to be completed and then release the resources.
this.CloseCompleted += (object source, EventArgs args) => Dispose(false);
try
{
// looks like Dispose is not called for this transport manager
// try closing the transport manager.
CloseAsync();
}
catch (ObjectDisposedException)
{
// intentionally blank
}
}
}
/// <summary>
/// Dispose resources.
/// </summary>
protected override void Dispose(bool isDisposing)
{
// clear event handlers
this.CreateCompleted = null;
this.CloseCompleted = null;
this.ConnectCompleted = null;
this.DisconnectCompleted = null;
this.ReconnectCompleted = null;
// let base dispose its resources.
base.Dispose(isDisposing);
}
#endregion
}
/// <summary>
/// Remoting base client session transport manager.
/// </summary>
public abstract class BaseClientSessionTransportManager : BaseClientTransportManager, IDisposable
{
#region Constructors
internal BaseClientSessionTransportManager(Guid runspaceId, PSRemotingCryptoHelper cryptoHelper)
: base(runspaceId, cryptoHelper)
{
}
#endregion
#region Abstract / Virtual Methods
/// <summary>
/// Creates a command transport manager. This will create a new PrioritySendDataCollection which should be used to
/// send data to the server.
/// </summary>
/// <param name="connectionInfo">
/// Connection info to be used for creating the command.
/// </param>
/// <param name="cmd">
/// Command for which transport manager is created.
/// </param>
/// <param name="noInput">
/// true if the command has input.
/// </param>
/// <returns></returns>
internal virtual BaseClientCommandTransportManager CreateClientCommandTransportManager(RunspaceConnectionInfo connectionInfo,
ClientRemotePowerShell cmd, bool noInput)
{
throw new NotImplementedException();
}
/// <summary>
/// RunspacePool data structure handler uses this method to remove association of a command transport manager
/// from a session transport manager.
/// </summary>
/// <param name="powerShellCmdId"></param>
internal virtual void RemoveCommandTransportManager(Guid powerShellCmdId)
{
}
/// <summary>
/// Temporarily disconnect an active session.
/// </summary>
internal virtual void DisconnectAsync()
{
throw new NotImplementedException();
}
/// <summary>
/// Reconnect back a temporarily disconnected session.
/// </summary>
internal virtual void ReconnectAsync()
{
throw new NotImplementedException();
}
/// <summary>
/// Redirect the transport manager to point to a new URI.
/// </summary>
/// <param name="newUri">
/// Redirect Uri to connect to.
/// </param>
/// <param name="connectionInfo">
/// Connection info object used for retrieving credential, auth. mechanism etc.
/// </param>
internal virtual void Redirect(Uri newUri, RunspaceConnectionInfo connectionInfo)
{
throw new NotImplementedException();
}
/// <summary>
/// Used by callers to prepare the session transportmanager for a URI redirection.
/// This must be called only after Create callback (or Error form create) is received.
/// Callers must catch the close completed event and call Redirect to perform the redirection.
/// </summary>
internal virtual void PrepareForRedirection()
{
throw new NotImplementedException();
}
#endregion
}
internal abstract class BaseClientCommandTransportManager : BaseClientTransportManager, IDisposable
{
#region Private / Protected Data
// pipeline in the form cmd1 | cmd2.. this is used by authz module for early validation.
protected StringBuilder cmdText;
protected SerializedDataStream serializedPipeline;
protected Guid powershellInstanceId;
protected Guid PowershellInstanceId
{
get { return powershellInstanceId; }
}
#endregion
internal bool startInDisconnectedMode = false;
#region Constructors
protected BaseClientCommandTransportManager(ClientRemotePowerShell shell,
PSRemotingCryptoHelper cryptoHelper,
BaseClientSessionTransportManager sessnTM) : base(sessnTM.RunspacePoolInstanceId, cryptoHelper)
{
Fragmentor.FragmentSize = sessnTM.Fragmentor.FragmentSize;
Fragmentor.TypeTable = sessnTM.Fragmentor.TypeTable;
dataToBeSent.Fragmentor = base.Fragmentor;
// used for Crimson logging.
powershellInstanceId = shell.PowerShell.InstanceId;
cmdText = new StringBuilder();
foreach (System.Management.Automation.Runspaces.Command cmd in shell.PowerShell.Commands.Commands)
{
cmdText.Append(cmd.CommandText);
cmdText.Append(" | ");
}
cmdText.Remove(cmdText.Length - 3, 3); // remove ending " | "
RemoteDataObject message;
if (shell.PowerShell.IsGetCommandMetadataSpecialPipeline)
{
message = RemotingEncoder.GenerateGetCommandMetadata(shell);
}
else
{
message = RemotingEncoder.GenerateCreatePowerShell(shell);
}
serializedPipeline = new SerializedDataStream(base.Fragmentor.FragmentSize);
Fragmentor.Fragment<object>(message, serializedPipeline);
}
#endregion
#region Events
internal event EventHandler<EventArgs> SignalCompleted;
internal void RaiseSignalCompleted()
{
SignalCompleted.SafeInvoke(this, EventArgs.Empty);
}
#endregion
#region Overrides
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (isDisposing)
{
// dispose serialized pipeline
serializedPipeline.Dispose();
}
}
#endregion
#region Abstract / Virtual Methods
/// <summary>
/// Reconnects a previously disconnected commandTM. Implemented by WSMan transport
/// Note that there is not explicit disconnect on commandTM. It is implicity disconnected
/// when disconnect is called on sessionTM . The TM's also dont maintain specific connection state
/// This is done by DSHandlers.
/// </summary>
internal virtual void ReconnectAsync()
{
throw new NotImplementedException();
}
/// <summary>
/// Used by powershell/pipeline to send a stop message to the server command.
/// </summary>
internal virtual void SendStopSignal()
{
throw new NotImplementedException();
}
#endregion
}
}
namespace System.Management.Automation.Remoting.Server
{
/// <summary>
/// This represents an abstraction for server transport manager.
/// </summary>
internal abstract class AbstractServerTransportManager : BaseTransportManager
{
#region Private Data
private readonly object _syncObject = new object();
// used to listen to data available events from serialized datastream.
private readonly SerializedDataStream.OnDataAvailableCallback _onDataAvailable;
// the following variable are used by onDataAvailableCallback.
private bool _shouldFlushData;
private bool _reportAsPending;
private Guid _runspacePoolInstanceId;
private Guid _powerShellInstanceId;
private RemotingDataType _dataType;
private RemotingTargetInterface _targetInterface;
// End: the following variable are used by onDataAvailableCallback.
private Queue<Tuple<RemoteDataObject, bool, bool>> _dataToBeSentQueue;
private bool _isSerializing;
#endregion
#region Constructor
protected AbstractServerTransportManager(int fragmentSize, PSRemotingCryptoHelper cryptoHelper)
: base(cryptoHelper)
{
base.Fragmentor.FragmentSize = fragmentSize;
_onDataAvailable = new SerializedDataStream.OnDataAvailableCallback(OnDataAvailable);
}
#endregion
#region Helper Methods
/// <summary>
/// Sends an object from the server end. The object is fragmented and each fragment is sent
/// separately. The call blocks until all the fragments are sent to the client. If there
/// is a failure sending any of the fragments WSManTransportErrorOccured event is raised.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="data"></param>
/// <param name="flush">
/// true to immediately send data to client.
/// </param>
/// <param name="reportPending">
/// reported as true when host message requests are sent to client
/// </param>
internal void SendDataToClient<T>(RemoteDataObject<T> data, bool flush, bool reportPending = false)
{
// make sure only one data packet can be sent in its entirety at any
// given point of time using this transport manager.
lock (_syncObject)
{
// Win8: 491001 Icm -computername $env:COMPUTERNAME {Get-NetIpInterface} fails with Unexpected ObjectId
// This is because the output object has some extended script properties. Getter of one of the
// script properties is calling write-progress. Write-Progress in turn results in a progress record
// being sent to client. This breaks the fragmentation rule when the original object (without progress)
// does not fit in fragmented packet.
// ******************** repro using powershell *********************************
// icm . {
// $a = new-object psobject
// $a.pstypenames.Insert(0, "Microsoft.PowerShell.Test.Bug491001")
// Update-TypeData -TypeName Microsoft.PowerShell.Test.Bug491001 -MemberType ScriptProperty -MemberName name -Value {( 1..50kb | % { get-random -min 97 -max 122 | % { [char]$psitem } }) -join ""}
// Update-TypeData -TypeName Microsoft.PowerShell.Test.Bug491001 -MemberType ScriptProperty -MemberName Verbose -Value {write-progress "blah" -Completed; "Some verbose data"}
// Update-TypeData -TypeName Microsoft.PowerShell.Test.Bug491001 -MemberType ScriptProperty -MemberName zname -Value {( 1..10kb | % { get-random -min 97 -max 122 | % { [char]$psitem } }) -join ""}
// $a
// }
// 1. The value of "name" property is huge 50kb and cannot fit in one fragment (with fragment size 32kb)
// 2. The value of "Verbose" is actually writing a progress record
// 3. The value of "zname" property is also huge
// 4. Notice the ascending order of property names. This is because serializer serializes properties in sort order
// ******************** End of repro ******************************************
// To fix the issue, I am creating a Queue and enqueuing the data objects if we are already serializing another data object
// Notice this is in lock() above. An object is serialized in its entirety in one thread. So, in my example above "name",
// "verbose","zname" properties are serialized in one thread. So lock() essentially protects from serializing other objects
// and not this (parent)object.
RemoteDataObject dataToBeSent = RemoteDataObject.CreateFrom(data.Destination, data.DataType,
data.RunspacePoolId, data.PowerShellId,
data.Data);
if (_isSerializing)
{
_dataToBeSentQueue ??= new Queue<Tuple<RemoteDataObject, bool, bool>>();
_dataToBeSentQueue.Enqueue(new Tuple<RemoteDataObject, bool, bool>(dataToBeSent, flush, reportPending));
return;
}
_isSerializing = true;
try
{
do
{
// tell stream to notify us whenever a fragment is available instead of writing data
// into internal buffers. This will save write + read + dispose.)
using (SerializedDataStream serializedData =
new SerializedDataStream(Fragmentor.FragmentSize, _onDataAvailable))
{
_shouldFlushData = flush;
_reportAsPending = reportPending;
_runspacePoolInstanceId = dataToBeSent.RunspacePoolId;
_powerShellInstanceId = dataToBeSent.PowerShellId;
_dataType = dataToBeSent.DataType;
_targetInterface = dataToBeSent.TargetInterface;
Fragmentor.Fragment<object>(dataToBeSent, serializedData);
}
if ((_dataToBeSentQueue != null) && (_dataToBeSentQueue.Count > 0))
{
Tuple<RemoteDataObject, bool, bool> dataToBeSentQueueItem = _dataToBeSentQueue.Dequeue();
dataToBeSent = dataToBeSentQueueItem.Item1;
flush = dataToBeSentQueueItem.Item2;
reportPending = dataToBeSentQueueItem.Item3;
}
else
{
dataToBeSent = null;
}
} while (dataToBeSent != null);
}
finally
{
_isSerializing = false;
}
}
}
private void OnDataAvailable(byte[] dataToSend, bool isEndFragment)
{
Dbg.Assert(dataToSend != null, "ServerTransportManager cannot send null fragment");
// log to crimson log.
PSEtwLog.LogAnalyticInformational(PSEventId.ServerSendData, PSOpcode.Send, PSTask.None,
PSKeyword.Transport | PSKeyword.UseAlwaysAnalytic,
_runspacePoolInstanceId.ToString(),
_powerShellInstanceId.ToString(),
dataToSend.Length.ToString(CultureInfo.InvariantCulture),
(UInt32)_dataType,
(UInt32)_targetInterface);
SendDataToClient(dataToSend, isEndFragment && _shouldFlushData, _reportAsPending, isEndFragment);
}
/// <summary>
/// Sends an object to the server end. The object is fragmented and each fragment is sent
/// separately. The call blocks until all the fragments are sent to the client. If there
/// is a failure sending any of the fragments WSManTransportErrorOccured event is raised.
/// </summary>
/// <param name="psObjectData"></param>
/// <param name="flush">
/// true to immediately send data to client.
/// </param>
/// <param name="reportAsPending">
/// reported as true when sending host message requests are reported true
/// </param>
internal void SendDataToClient(RemoteDataObject psObjectData, bool flush, bool reportAsPending = false)
{
SendDataToClient<object>((RemoteDataObject<object>)(psObjectData), flush, reportAsPending);
}
/// <summary>
/// Reports error from a thread pool thread. Thread Pool is used in order to
/// not block Pipeline closing. This method is generally called when the
/// TransportManager fails to Send data (SendDataToClient). Pipeline Execution
/// Thread directly calls SendDataToClient method from its execution thread,
/// so we cannot call Stop from the same thread (as it will result in a deadlock)
/// </summary>
internal void ReportError(int errorCode, string methodName)
{
string messageResource = RemotingErrorIdStrings.GeneralError;
string errorMessage = string.Format(CultureInfo.InvariantCulture,
messageResource, new object[] { errorCode, methodName });
PSRemotingTransportException e = new PSRemotingTransportException(errorMessage);
e.ErrorCode = errorCode;
// Use thread-pool thread to raise the error handler..see explanation
// in the method summary
ThreadPool.QueueUserWorkItem(new WaitCallback(
(object state) =>
{
TransportErrorOccuredEventArgs eventArgs = new TransportErrorOccuredEventArgs(e,
TransportMethodEnum.Unknown);
RaiseErrorHandler(eventArgs);
}));
}
/// <summary>
/// Raises the closing event.
/// </summary>
internal void RaiseClosingEvent()
{
Closing.SafeInvoke(this, EventArgs.Empty);
}
#endregion
#region Event Handlers
/// <summary>
/// Event that is raised when this transport manager is closing.
/// </summary>
internal event EventHandler Closing;
#endregion
#region Abstract interfaces
/// <summary>
/// </summary>
/// <param name="data"></param>
/// <param name="flush">
/// flush data by sending data immediately to the client.
/// </param>
/// <param name="reportAsPending">
/// reported as true when sending host message requests to client
/// </param>
/// <param name="reportAsDataBoundary">
/// reported as true when data being reported is as object boundary, i.e the corresponding fragment is an end fragment
/// </param>
protected abstract void SendDataToClient(byte[] data, bool flush, bool reportAsPending, bool reportAsDataBoundary);
/// <summary>
/// </summary>
internal abstract void ReportExecutionStatusAsRunning();
/// <summary>
/// </summary>
/// <param name="reasonForClose">
/// message describing why the transport manager must be closed
/// </param>
internal abstract void Close(Exception reasonForClose);
/// <summary>
/// Prepare the transport manager to send data (because a command
/// is about to start). This is used by underlying infrastructure
/// to send ACK to client..so client can start sending input and
/// other data to server.
/// </summary>
internal virtual void Prepare()
{
// command may hijack the calling thread to run the command
// so this method call notifies the ReceivedData buffer to
// allow another thread to ProcessRawData.
ReceivedDataCollection.AllowTwoThreadsToProcessRawData();
}
#endregion
}
/// <summary>
/// This represents an abstraction for server session transport manager.
/// </summary>
internal abstract class AbstractServerSessionTransportManager : AbstractServerTransportManager
{
#region Constructors
protected AbstractServerSessionTransportManager(int fragmentSize, PSRemotingCryptoHelper cryptoHelper)
: base(fragmentSize, cryptoHelper)
{
}
#endregion
#region Abstract interfaces
/// <summary>
/// Server RunspacePool driver uses this method to attach to a server transport manager.
/// </summary>
/// <param name="powerShellCmdId"></param>
/// <returns></returns>
internal abstract AbstractServerTransportManager GetCommandTransportManager(Guid powerShellCmdId);
/// <summary>
/// Server RunspacePool driver uses this method to remove association of a command transport manager
/// from a session transport manager.
/// </summary>
/// <param name="powerShellCmdId"></param>
internal abstract void RemoveCommandTransportManager(Guid powerShellCmdId);
#endregion
}
/// <summary>
/// A container for helper functions that accomplish common client and server tasks.
/// </summary>
internal static class ServerOperationHelpers
{
#region Public Helper Methods
/// <summary>
/// A helper method to extract a base-64 encoded XML element from a specified input
/// buffer. The calls required are not compatible with the Managed C++ CoreCLR
/// mscorlib, but this operation is supported as managed C# code.
/// </summary>
/// <param name="xmlBuffer">The input buffer to search. It must be base-64 encoded XML.</param>
/// <param name="xmlTag">The XML tag used to identify the value to extract.</param>
/// <returns>The extracted tag converted from a base-64 string.</returns>
internal static byte[] ExtractEncodedXmlElement(string xmlBuffer, string xmlTag)
{
if (xmlBuffer == null || xmlTag == null)
return new byte[1];
// the inboundShellInformation is in Xml format as per the SOAP WSMan spec.
// Retrieve the string (Base64 encoded) we are interested in.
XmlReaderSettings readerSettings = new XmlReaderSettings();
readerSettings.CheckCharacters = false;
readerSettings.IgnoreComments = true;
readerSettings.IgnoreProcessingInstructions = true;
readerSettings.XmlResolver = null;
readerSettings.ConformanceLevel = ConformanceLevel.Fragment;
readerSettings.MaxCharactersFromEntities = 1024;
readerSettings.DtdProcessing = System.Xml.DtdProcessing.Prohibit;
XmlReader reader = XmlReader.Create(new StringReader(xmlBuffer), readerSettings);
string additionalData;
if (reader.MoveToContent() == XmlNodeType.Element)
{
additionalData = reader.ReadElementContentAsString(xmlTag, reader.NamespaceURI);
}
else // No element found, so return a default value
{
return new byte[1];
}
return Convert.FromBase64String(additionalData);
}
#endregion
}
}
|