File size: 16,238 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// ----------------------------------------------------------------------
// Contents: Entry points for managed PowerShell plugin worker used to
// host powershell in a WSMan service.
// ----------------------------------------------------------------------
using System.Threading;
using System.Collections.Generic;
using System.Management.Automation.Internal;
using System.Management.Automation.Remoting.Client;
using System.Management.Automation.Remoting.Server;
using Microsoft.Win32.SafeHandles;
using System.Diagnostics.CodeAnalysis;
namespace System.Management.Automation.Remoting
{
internal class WSManPluginServerTransportManager : AbstractServerSessionTransportManager
{
private WSManNativeApi.WSManPluginRequest _requestDetails;
// the following variables are used to block thread from sending
// data to the client until the client sends a receive request.
private bool _isRequestPending;
private readonly object _syncObject;
private readonly ManualResetEvent _waitHandle;
private readonly Dictionary<Guid, WSManPluginServerTransportManager> _activeCmdTransportManagers;
private bool _isClosed;
// used to keep track of last error..this will be used
// for reporting operation complete to WSMan.
private Exception _lastErrorReported;
// used with RegisterWaitForSingleObject. This object needs to be freed
// upon close
private WSManPluginOperationShutdownContext _shutDownContext;
// tracker used in conjunction with WSMan API to identify a particular
// shell context.
private RegisteredWaitHandle _registeredShutDownWaitHandle;
// event that gets raised when Prepare is called. Respective Session
// object can use this callback to ReportContext to client.
public event EventHandler<EventArgs> PrepareCalled;
#region Constructor
internal WSManPluginServerTransportManager(
int fragmentSize,
PSRemotingCryptoHelper cryptoHelper)
: base(fragmentSize, cryptoHelper)
{
_syncObject = new object();
_activeCmdTransportManagers = new Dictionary<Guid, WSManPluginServerTransportManager>();
_waitHandle = new ManualResetEvent(false);
}
#endregion
#region Inherited_from_AbstractServerSessionTransportManager
internal override void Close(
Exception reasonForClose)
{
DoClose(false, reasonForClose);
}
/// <summary>
/// </summary>
/// <param name="isShuttingDown">true if the method is called from RegisterWaitForSingleObject
/// callback. This boolean is used to decide whether to UnregisterWait or
/// UnregisterWaitEx</param>
/// <param name="reasonForClose"></param>
[SuppressMessage("Microsoft.Usage", "CA1806:DoNotIgnoreMethodResults", Justification = "The WSManPluginReceiveResult return value is not documented and is not needed in this case.")]
internal void DoClose(
bool isShuttingDown,
Exception reasonForClose)
{
if (_isClosed)
{
return;
}
lock (_syncObject)
{
if (_isClosed)
{
return;
}
_isClosed = true;
_lastErrorReported = reasonForClose;
if (!_isRequestPending)
{
// release threads blocked on the sending data to client if any
_waitHandle.Set();
}
}
// only one thread will reach here
// let everyone know that we are about to close
try
{
RaiseClosingEvent();
foreach (var cmdTransportKvp in _activeCmdTransportManagers)
{
cmdTransportKvp.Value.Close(reasonForClose);
}
_activeCmdTransportManagers.Clear();
if (_registeredShutDownWaitHandle != null)
{
// This will not wait for the callback to complete.
_registeredShutDownWaitHandle.Unregister(null);
_registeredShutDownWaitHandle = null;
}
// Delete the context only if isShuttingDown != true. isShuttingDown will
// be true only when the method is called from RegisterWaitForSingleObject
// handler..in which case the context will be freed from the callback.
if (_shutDownContext != null)
{
_shutDownContext = null;
}
// This might happen when client did not send a receive request
// but the server is closing
if (_requestDetails != null)
{
// Notify that no more data is being sent on this transport.
WSManNativeApi.WSManPluginReceiveResult(
_requestDetails.unmanagedHandle,
(int)WSManNativeApi.WSManFlagReceive.WSMAN_FLAG_RECEIVE_RESULT_NO_MORE_DATA,
WSManPluginConstants.SupportedOutputStream,
IntPtr.Zero,
WSManNativeApi.WSMAN_COMMAND_STATE_DONE,
0);
WSManPluginInstance.ReportWSManOperationComplete(_requestDetails, reasonForClose);
// We should not use request details again after reporting operation complete
// so releasing the resource. Remember not to free this memory as this memory
// is allocated and owned by WSMan.
_requestDetails = null;
}
}
finally
{
// dispose resources
_waitHandle.Dispose();
}
}
/// <summary>
/// Used by powershell DS handler. notifies transport that powershell is back to running state
/// no payload.
/// </summary>
internal override void ReportExecutionStatusAsRunning()
{
if (_isClosed)
{
return;
}
int result = (int)WSManPluginErrorCodes.NoError;
// there should have been a receive request in place already
lock (_syncObject)
{
if (!_isClosed)
{
result = WSManNativeApi.WSManPluginReceiveResult(
_requestDetails.unmanagedHandle,
0,
null,
IntPtr.Zero,
WSManNativeApi.WSMAN_COMMAND_STATE_RUNNING,
0);
}
}
if (result != (int)WSManPluginErrorCodes.NoError)
{
ReportError(result, "WSManPluginReceiveResult");
}
}
/// <summary>
/// If flush is true, data will be sent immediately to the client. This is accomplished
/// by using WSMAN_FLAG_RECEIVE_FLUSH flag provided by WSMan API.
/// </summary>
/// <param name="data"></param>
/// <param name="flush"></param>
/// <param name="reportAsPending"></param>
/// <param name="reportAsDataBoundary"></param>
protected override void SendDataToClient(
byte[] data,
bool flush,
bool reportAsPending,
bool reportAsDataBoundary)
{
if (_isClosed)
{
return;
}
// double-check locking mechanism is used here to avoid entering into lock
// every time data is sent..entering/exiting from lock is costly.
if (!_isRequestPending)
{
// Dont send data until we have received request from client.
// The following blocks the calling thread. The thread is
// unblocked once a request from client arrives.
_waitHandle.WaitOne();
_isRequestPending = true;
// at this point request must be pending..so dispose waitHandle
_waitHandle.Dispose();
}
int result = (int)WSManPluginErrorCodes.NoError;
// at this point we have pending request from client. so it is safe
// to send data to client using WSMan API.
using (WSManNativeApi.WSManData_ManToUn dataToBeSent = new WSManNativeApi.WSManData_ManToUn(data))
{
lock (_syncObject)
{
if (!_isClosed)
{
int flags = 0;
if (flush)
flags |= (int)WSManNativeApi.WSManFlagReceive.WSMAN_FLAG_RECEIVE_FLUSH;
if (reportAsDataBoundary)
// currently assigning hardcoded value for this flag, this is a new change in wsman.h and needs to be replaced with the actual definition once
// modified wsman.h is in public headers
flags |= (int)WSManNativeApi.WSManFlagReceive.WSMAN_FLAG_RECEIVE_RESULT_DATA_BOUNDARY;
result = WSManNativeApi.WSManPluginReceiveResult(
_requestDetails.unmanagedHandle,
flags,
WSManPluginConstants.SupportedOutputStream,
dataToBeSent,
reportAsPending ? WSManNativeApi.WSMAN_COMMAND_STATE_PENDING : null,
0);
}
}
}
if (result != (int)WSManPluginErrorCodes.NoError)
{
ReportError(result, "WSManPluginReceiveResult");
}
}
internal override void Prepare()
{
// let the base class prepare itself.
base.Prepare();
// raise PrepareCalled event and let dependent code to ReportContext.
// null check is not performed here because Managed C++ will take care of this.
PrepareCalled(this, EventArgs.Empty);
}
/// <summary>
/// </summary>
/// <param name="powerShellCmdId"></param>
/// <returns></returns>
internal override AbstractServerTransportManager GetCommandTransportManager(
Guid powerShellCmdId)
{
return _activeCmdTransportManagers[powerShellCmdId];
}
// Used by command transport manager to manage cmd transport manager instances by session.
internal void ReportTransportMgrForCmd(
Guid cmdId,
WSManPluginServerTransportManager transportManager)
{
lock (_syncObject)
{
if (_isClosed)
{
return;
}
if (!_activeCmdTransportManagers.ContainsKey(cmdId))
{
_activeCmdTransportManagers.Add(cmdId, transportManager);
}
}
}
internal override void RemoveCommandTransportManager(
Guid cmdId)
{
lock (_syncObject)
{
if (_isClosed)
{
return;
}
_activeCmdTransportManagers.Remove(cmdId);
}
}
#endregion
internal bool EnableTransportManagerSendDataToClient(
WSManNativeApi.WSManPluginRequest requestDetails,
WSManPluginOperationShutdownContext ctxtToReport)
{
_shutDownContext = ctxtToReport;
bool isRegisterWaitForSingleObjectSucceeded = true;
lock (_syncObject)
{
if (_isRequestPending)
{
// if a request is already pending..ignore this.
WSManPluginInstance.ReportWSManOperationComplete(
requestDetails,
WSManPluginErrorCodes.NoError);
return false;
}
if (_isClosed)
{
WSManPluginInstance.ReportWSManOperationComplete(requestDetails, _lastErrorReported);
return false;
}
_isRequestPending = true;
_requestDetails = requestDetails;
if (Platform.IsWindows)
{
// Wrap the provided handle so it can be passed to the registration function
SafeWaitHandle safeWaitHandle = new SafeWaitHandle(requestDetails.shutdownNotificationHandle, false); // Owned by WinRM
EventWaitHandle eventWaitHandle = new EventWaitHandle(false, EventResetMode.AutoReset);
eventWaitHandle.SafeWaitHandle = safeWaitHandle;
_registeredShutDownWaitHandle = ThreadPool.RegisterWaitForSingleObject(
eventWaitHandle,
new WaitOrTimerCallback(WSManPluginManagedEntryWrapper.PSPluginOperationShutdownCallback),
_shutDownContext,
-1, // INFINITE
true); // TODO: Do I need to worry not being able to set missing WT_TRANSFER_IMPERSONATION?
if (_registeredShutDownWaitHandle == null)
{
isRegisterWaitForSingleObjectSucceeded = false;
}
}
// release thread waiting to send data to the client.
_waitHandle.Set();
}
if (!isRegisterWaitForSingleObjectSucceeded)
{
WSManPluginInstance.PerformCloseOperation(ctxtToReport);
WSManPluginInstance.ReportOperationComplete(
requestDetails,
WSManPluginErrorCodes.ShutdownRegistrationFailed,
StringUtil.Format(
RemotingErrorIdStrings.WSManPluginShutdownRegistrationFailed));
return false;
}
return true;
}
// This will either RaiseClosingEvent or calls DoClose()
// RaiseClosingEvent will be called if Client has already put a receive request,
// Otherwise DoClose() is called.
// This is to make sure server sends all the data it has to Client w.r.t stopping
// a command like StateChangedInfo etc.
internal void PerformStop()
{
if (_isRequestPending)
{
RaiseClosingEvent();
}
else
{
DoClose(false, null);
}
}
}
internal class WSManPluginCommandTransportManager : WSManPluginServerTransportManager
{
private readonly WSManPluginServerTransportManager _serverTransportMgr;
private System.Guid _cmdId;
// Create Cmd Transport Manager for this sessn transport manager
internal WSManPluginCommandTransportManager(WSManPluginServerTransportManager srvrTransportMgr)
: base(srvrTransportMgr.Fragmentor.FragmentSize, srvrTransportMgr.CryptoHelper)
{
_serverTransportMgr = srvrTransportMgr;
this.TypeTable = srvrTransportMgr.TypeTable;
}
internal void Initialize()
{
this.PowerShellGuidObserver += OnPowershellGuidReported;
this.MigrateDataReadyEventHandlers(_serverTransportMgr);
}
private void OnPowershellGuidReported(object src, System.EventArgs args)
{
_cmdId = (System.Guid)src;
_serverTransportMgr.ReportTransportMgrForCmd(_cmdId, this);
this.PowerShellGuidObserver -= this.OnPowershellGuidReported;
}
}
}
|