Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /remoting /commands /PushRunspaceCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Host; | |
| using System.Management.Automation.Internal; | |
| using System.Management.Automation.Remoting; | |
| using System.Management.Automation.Runspaces; | |
| using System.Threading; | |
| using Microsoft.PowerShell.Commands.Internal.Format; | |
| using Dbg = System.Management.Automation.Diagnostics; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Enter-PSSession cmdlet. | |
| /// </summary> | |
| [ | |
| ] | |
| public class EnterPSSessionCommand : PSRemotingBaseCmdlet | |
| { | |
| private const string InstanceIdParameterSet = "InstanceId"; | |
| private const string IdParameterSet = "Id"; | |
| private const string NameParameterSet = "Name"; | |
| /// <summary> | |
| /// Disable ThrottleLimit parameter inherited from base class. | |
| /// </summary> | |
| public new int ThrottleLimit { get { return 0; } set { } } | |
| private ObjectStream _stream; | |
| private RemoteRunspace _tempRunspace; | |
| /// <summary> | |
| /// Host name for an SSH remote connection. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public new string HostName { get; set; } | |
| /// <summary> | |
| /// Gets or sets the Hashtable containing options to be passed to OpenSSH. | |
| /// </summary> | |
| [] | |
| [] | |
| public override Hashtable Options | |
| { | |
| get | |
| { | |
| return base.Options; | |
| } | |
| set | |
| { | |
| base.Options = value; | |
| } | |
| } | |
| /// <summary> | |
| /// Computer name parameter. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| [] | |
| public new string ComputerName { get; set; } | |
| /// <summary> | |
| /// Runspace parameter. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| [] | |
| public new PSSession Session { get; set; } | |
| /// <summary> | |
| /// ConnectionUri parameter. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| [] | |
| public new Uri ConnectionUri { get; set; } | |
| /// <summary> | |
| /// RemoteRunspaceId of the remote runspace info object. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| [] | |
| public Guid InstanceId { get; set; } | |
| /// <summary> | |
| /// SessionId of the remote runspace info object. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public int Id { get; set; } | |
| /// <summary> | |
| /// Name of the remote runspace info object. | |
| /// </summary> | |
| [ | |
| ] | |
| public string Name { get; set; } | |
| /// <summary> | |
| /// When set and in loopback scenario (localhost) this enables creation of WSMan | |
| /// host process with the user interactive token, allowing PowerShell script network access, | |
| /// i.e., allows going off box. When this property is true and a PSSession is disconnected, | |
| /// reconnection is allowed only if reconnecting from a PowerShell session on the same box. | |
| /// </summary> | |
| [] | |
| [] | |
| public SwitchParameter EnableNetworkAccess { get; set; } | |
| /// <summary> | |
| /// Virtual machine ID. | |
| /// </summary> | |
| [] | |
| [ | |
| ] | |
| [] | |
| public new Guid VMId { get; set; } | |
| /// <summary> | |
| /// Virtual machine name. | |
| /// </summary> | |
| [] | |
| [ | |
| ] | |
| public new string VMName { get; set; } | |
| /// <summary> | |
| /// Specifies the credentials of the user to impersonate in the | |
| /// virtual machine. If this parameter is not specified then the | |
| /// credentials of the current user process will be assumed. | |
| /// </summary> | |
| [ | |
| ] | |
| [ | |
| ] | |
| [ | |
| ] | |
| [ | |
| ] | |
| [] | |
| public override PSCredential Credential | |
| { | |
| get { return base.Credential; } | |
| set { base.Credential = value; } | |
| } | |
| /// <summary> | |
| /// The Id of the target container. | |
| /// </summary> | |
| [] | |
| [ | |
| ] | |
| public new string ContainerId { get; set; } | |
| /// <summary> | |
| /// For WSMan sessions: | |
| /// If this parameter is not specified then the value specified in | |
| /// the environment variable DEFAULTREMOTESHELLNAME will be used. If | |
| /// this is not set as well, then Microsoft.PowerShell is used. | |
| /// | |
| /// For VM/Container sessions: | |
| /// If this parameter is not specified then no configuration is used. | |
| /// </summary> | |
| [ | |
| ] | |
| [ | |
| ] | |
| [ | |
| ] | |
| [ | |
| ] | |
| [ | |
| ] | |
| public string ConfigurationName { get; set; } | |
| /// <summary> | |
| /// Suppress SSHConnection parameter set. | |
| /// </summary> | |
| public override Hashtable[] SSHConnection | |
| { | |
| get { return null; } | |
| } | |
| /// <summary> | |
| /// Resolves shellname and appname. | |
| /// </summary> | |
| protected override void BeginProcessing() | |
| { | |
| base.BeginProcessing(); | |
| if (string.IsNullOrEmpty(ConfigurationName)) | |
| { | |
| if ((ParameterSetName == EnterPSSessionCommand.ComputerNameParameterSet) || | |
| (ParameterSetName == EnterPSSessionCommand.UriParameterSet)) | |
| { | |
| // set to default value for WSMan session | |
| ConfigurationName = ResolveShell(null); | |
| } | |
| else | |
| { | |
| // convert null to string.Empty for VM/Container session | |
| ConfigurationName = string.Empty; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Process record. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| // Push the remote runspace on the local host. | |
| IHostSupportsInteractiveSession host = this.Host as IHostSupportsInteractiveSession; | |
| if (host == null) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(GetMessage(RemotingErrorIdStrings.HostDoesNotSupportPushRunspace)), | |
| nameof(PSRemotingErrorId.HostDoesNotSupportPushRunspace), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| return; | |
| } | |
| // for the console host and Graphical PowerShell host | |
| // we want to skip pushing into the runspace if | |
| // the host is in a nested prompt | |
| System.Management.Automation.Internal.Host.InternalHost chost = | |
| this.Host as System.Management.Automation.Internal.Host.InternalHost; | |
| if (!IsParameterSetForVM() && | |
| !IsParameterSetForContainer() && | |
| !IsParameterSetForVMContainerSession() && | |
| chost != null && chost.HostInNestedPrompt()) | |
| { | |
| ThrowTerminatingError(new ErrorRecord( | |
| new InvalidOperationException(PSRemotingErrorInvariants.FormatResourceString(RemotingErrorIdStrings.HostInNestedPrompt)), | |
| "HostInNestedPrompt", ErrorCategory.InvalidOperation, chost)); | |
| } | |
| /*Microsoft.Windows.PowerShell.Gui.Internal.GPSHost ghost = this.Host as Microsoft.Windows.PowerShell.Gui.Internal.GPSHost; | |
| if (ghost != null && ghost.HostInNestedPrompt()) | |
| { | |
| ThrowTerminatingError(new ErrorRecord( | |
| new InvalidOperationException(PSRemotingErrorInvariants.FormatResourceString(PSRemotingErrorId.HostInNestedPrompt)), | |
| "HostInNestedPrompt", ErrorCategory.InvalidOperation, wpshost)); | |
| }*/ | |
| // Get the remote runspace. | |
| RemoteRunspace remoteRunspace = null; | |
| switch (ParameterSetName) | |
| { | |
| case ComputerNameParameterSet: | |
| remoteRunspace = CreateRunspaceWhenComputerNameParameterSpecified(); | |
| break; | |
| case UriParameterSet: | |
| remoteRunspace = CreateRunspaceWhenUriParameterSpecified(); | |
| break; | |
| case SessionParameterSet: | |
| remoteRunspace = (RemoteRunspace)Session.Runspace; | |
| break; | |
| case InstanceIdParameterSet: | |
| remoteRunspace = GetRunspaceMatchingRunspaceId(this.InstanceId); | |
| break; | |
| case IdParameterSet: | |
| remoteRunspace = GetRunspaceMatchingSessionId(this.Id); | |
| break; | |
| case NameParameterSet: | |
| remoteRunspace = GetRunspaceMatchingName(this.Name); | |
| break; | |
| case VMIdParameterSet: | |
| case VMNameParameterSet: | |
| remoteRunspace = GetRunspaceForVMSession(); | |
| break; | |
| case ContainerIdParameterSet: | |
| remoteRunspace = GetRunspaceForContainerSession(); | |
| break; | |
| case SSHHostParameterSet: | |
| remoteRunspace = GetRunspaceForSSHSession(); | |
| break; | |
| } | |
| // If runspace is null then the error record has already been written and we can exit. | |
| if (remoteRunspace == null) | |
| { | |
| return; | |
| } | |
| // If the runspace is in a disconnected state try to connect. | |
| bool runspaceConnected = false; | |
| if (remoteRunspace.RunspaceStateInfo.State == RunspaceState.Disconnected) | |
| { | |
| if (!remoteRunspace.CanConnect) | |
| { | |
| string message = StringUtil.Format(RemotingErrorIdStrings.SessionNotAvailableForConnection); | |
| WriteError( | |
| new ErrorRecord( | |
| new RuntimeException(message), "EnterPSSessionCannotConnectDisconnectedSession", | |
| ErrorCategory.InvalidOperation, remoteRunspace)); | |
| return; | |
| } | |
| // Connect the runspace. | |
| Exception ex = null; | |
| try | |
| { | |
| remoteRunspace.Connect(); | |
| runspaceConnected = true; | |
| } | |
| catch (System.Management.Automation.Remoting.PSRemotingTransportException e) | |
| { | |
| ex = e; | |
| } | |
| catch (PSInvalidOperationException e) | |
| { | |
| ex = e; | |
| } | |
| catch (InvalidRunspacePoolStateException e) | |
| { | |
| ex = e; | |
| } | |
| if (ex != null) | |
| { | |
| string message = StringUtil.Format(RemotingErrorIdStrings.SessionConnectFailed); | |
| WriteError( | |
| new ErrorRecord( | |
| new RuntimeException(message, ex), "EnterPSSessionConnectSessionFailed", | |
| ErrorCategory.InvalidOperation, remoteRunspace)); | |
| return; | |
| } | |
| } | |
| // Verify that the runspace is open. | |
| if (remoteRunspace.RunspaceStateInfo.State != RunspaceState.Opened) | |
| { | |
| if (ParameterSetName == SessionParameterSet) | |
| { | |
| string sessionName = (Session != null) ? Session.Name : string.Empty; | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(GetMessage(RemotingErrorIdStrings.EnterPSSessionBrokenSession, | |
| sessionName, remoteRunspace.ConnectionInfo.ComputerName, remoteRunspace.InstanceId)), | |
| nameof(PSRemotingErrorId.PushedRunspaceMustBeOpen), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| } | |
| else | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(GetMessage(RemotingErrorIdStrings.PushedRunspaceMustBeOpen)), | |
| nameof(PSRemotingErrorId.PushedRunspaceMustBeOpen), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| } | |
| return; | |
| } | |
| Debugger debugger = null; | |
| try | |
| { | |
| if (host.Runspace != null) | |
| { | |
| debugger = host.Runspace.Debugger; | |
| } | |
| } | |
| catch (PSNotImplementedException) { } | |
| bool supportRunningCommand = ((debugger != null) && ((debugger.DebugMode & DebugModes.RemoteScript) == DebugModes.RemoteScript)); | |
| if (remoteRunspace.RunspaceAvailability != RunspaceAvailability.Available) | |
| { | |
| // Session has running command. | |
| if (!supportRunningCommand) | |
| { | |
| // Host does not support remote debug and cannot connect to running command. | |
| if (runspaceConnected) | |
| { | |
| // If we succeeded connecting the session (runspace) but it is already running a command, | |
| // emit an error for this case because since it is disconnected this session object will | |
| // never complete and the user must use *reconstruct* scenario to retrieve data. | |
| string message = StringUtil.Format(RemotingErrorIdStrings.EnterPSSessionDisconnected, | |
| remoteRunspace.PSSessionName); | |
| WriteError( | |
| new ErrorRecord( | |
| new RuntimeException(message), "EnterPSSessionConnectSessionNotAvailable", | |
| ErrorCategory.InvalidOperation, Session)); | |
| // Leave session in original disconnected state. | |
| remoteRunspace.DisconnectAsync(); | |
| return; | |
| } | |
| else | |
| { | |
| // If the remote runspace is currently not available then let user know that this command | |
| // will not complete until it becomes available. | |
| WriteWarning(GetMessage(RunspaceStrings.RunspaceNotReady)); | |
| } | |
| } | |
| else | |
| { | |
| // Running commands supported. | |
| // Warn user that they are entering a session that is running a command and output may | |
| // be going to a job object. | |
| Job job = FindJobForRunspace(remoteRunspace.InstanceId); | |
| string msg; | |
| if (job != null) | |
| { | |
| msg = StringUtil.Format( | |
| RunspaceStrings.RunningCmdWithJob, | |
| (!string.IsNullOrEmpty(job.Name)) ? job.Name : string.Empty); | |
| } | |
| else | |
| { | |
| if (remoteRunspace.RunspaceAvailability == RunspaceAvailability.RemoteDebug) | |
| { | |
| msg = StringUtil.Format( | |
| RunspaceStrings.RunningCmdDebugStop); | |
| } | |
| else | |
| { | |
| msg = StringUtil.Format( | |
| RunspaceStrings.RunningCmdWithoutJob); | |
| } | |
| } | |
| WriteWarning(msg); | |
| } | |
| } | |
| // Make sure any PSSession object passed in is saved in the local runspace repository. | |
| if (Session != null) | |
| { | |
| this.RunspaceRepository.AddOrReplace(Session); | |
| } | |
| // prepare runspace for prompt | |
| SetRunspacePrompt(remoteRunspace); | |
| try | |
| { | |
| host.PushRunspace(remoteRunspace); | |
| } | |
| catch (Exception) | |
| { | |
| // A third-party host can throw any exception here..we should | |
| // clean the runspace created in this case. | |
| if ((remoteRunspace != null) && (remoteRunspace.ShouldCloseOnPop)) | |
| { | |
| remoteRunspace.Close(); | |
| } | |
| // rethrow the exception after cleanup. | |
| throw; | |
| } | |
| } | |
| /// <summary> | |
| /// This method will until the runspace is opened and warnings if any | |
| /// are reported. | |
| /// </summary> | |
| protected override void EndProcessing() | |
| { | |
| if (_stream != null) | |
| { | |
| while (true) | |
| { | |
| // Keep reading objects until end of stream is encountered | |
| _stream.ObjectReader.WaitHandle.WaitOne(); | |
| if (!_stream.ObjectReader.EndOfPipeline) | |
| { | |
| object streamObject = _stream.ObjectReader.Read(); | |
| WriteStreamObject((Action<Cmdlet>)streamObject); | |
| } | |
| else | |
| { | |
| break; | |
| } | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// </summary> | |
| protected override void StopProcessing() | |
| { | |
| var remoteRunspace = _tempRunspace; | |
| if (remoteRunspace != null) | |
| { | |
| try | |
| { | |
| remoteRunspace.CloseAsync(); | |
| } | |
| catch (InvalidRunspaceStateException) { } | |
| return; | |
| } | |
| IHostSupportsInteractiveSession host = this.Host as IHostSupportsInteractiveSession; | |
| if (host == null) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(GetMessage(RemotingErrorIdStrings.HostDoesNotSupportPushRunspace)), | |
| nameof(PSRemotingErrorId.HostDoesNotSupportPushRunspace), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| return; | |
| } | |
| host.PopRunspace(); | |
| } | |
| /// <summary> | |
| /// Create temporary remote runspace. | |
| /// </summary> | |
| private RemoteRunspace CreateTemporaryRemoteRunspace(PSHost host, WSManConnectionInfo connectionInfo) | |
| { | |
| // Create and open the runspace. | |
| int rsId; | |
| string rsName = PSSession.GenerateRunspaceName(out rsId); | |
| RemoteRunspace remoteRunspace = new RemoteRunspace( | |
| Utils.GetTypeTableFromExecutionContextTLS(), | |
| connectionInfo, | |
| host, | |
| this.SessionOption.ApplicationArguments, | |
| rsName, | |
| rsId); | |
| Dbg.Assert(remoteRunspace != null, "Expected remoteRunspace != null"); | |
| remoteRunspace.URIRedirectionReported += HandleURIDirectionReported; | |
| _stream = new ObjectStream(); | |
| try | |
| { | |
| remoteRunspace.Open(); | |
| // Mark this temporary runspace so that it closes on pop. | |
| remoteRunspace.ShouldCloseOnPop = true; | |
| } | |
| finally | |
| { | |
| // unregister uri redirection handler | |
| remoteRunspace.URIRedirectionReported -= HandleURIDirectionReported; | |
| // close the internal object stream after runspace is opened | |
| // Runspace.Open() might throw exceptions..this will make sure | |
| // the stream is always closed. | |
| _stream.ObjectWriter.Close(); | |
| // make sure we dispose the temporary runspace if something bad happens | |
| if (remoteRunspace.RunspaceStateInfo.State != RunspaceState.Opened) | |
| { | |
| remoteRunspace.Dispose(); | |
| remoteRunspace = null; | |
| } | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Write error create remote runspace failed. | |
| /// </summary> | |
| private void WriteErrorCreateRemoteRunspaceFailed(Exception exception, object argument) | |
| { | |
| // set the transport message in the error detail so that | |
| // the user can directly get to see the message without | |
| // having to mine through the error record details | |
| PSRemotingTransportException transException = | |
| exception as PSRemotingTransportException; | |
| string errorDetails = null; | |
| if ((transException != null) && | |
| (transException.ErrorCode == | |
| System.Management.Automation.Remoting.Client.WSManNativeApi.ERROR_WSMAN_REDIRECT_REQUESTED)) | |
| { | |
| // Handling a special case for redirection..we should talk about | |
| // AllowRedirection parameter and WSManMaxRedirectionCount preference | |
| // variables | |
| string message = PSRemotingErrorInvariants.FormatResourceString( | |
| RemotingErrorIdStrings.URIRedirectionReported, | |
| transException.Message, | |
| "MaximumConnectionRedirectionCount", | |
| Microsoft.PowerShell.Commands.PSRemotingBaseCmdlet.DEFAULT_SESSION_OPTION, | |
| "AllowRedirection"); | |
| errorDetails = message; | |
| } | |
| ErrorRecord errorRecord = new ErrorRecord(exception, argument, | |
| "CreateRemoteRunspaceFailed", | |
| ErrorCategory.InvalidArgument, | |
| null, null, null, null, null, errorDetails, null); | |
| WriteError(errorRecord); | |
| } | |
| /// <summary> | |
| /// Write invalid argument error. | |
| /// </summary> | |
| private void WriteInvalidArgumentError(PSRemotingErrorId errorId, string resourceString, object errorArgument) | |
| { | |
| string message = GetMessage(resourceString, errorArgument); | |
| WriteError(new ErrorRecord(new ArgumentException(message), errorId.ToString(), | |
| ErrorCategory.InvalidArgument, errorArgument)); | |
| } | |
| /// <summary> | |
| /// When the client remote session reports a URI redirection, this method will report the | |
| /// message to the user as a Warning using Host method calls. | |
| /// </summary> | |
| /// <param name="sender"></param> | |
| /// <param name="eventArgs"></param> | |
| private void HandleURIDirectionReported(object sender, RemoteDataEventArgs<Uri> eventArgs) | |
| { | |
| string message = StringUtil.Format(RemotingErrorIdStrings.URIRedirectWarningToHost, eventArgs.Data.OriginalString); | |
| Action<Cmdlet> streamObject = (Cmdlet cmdlet) => cmdlet.WriteWarning(message); | |
| _stream.Write(streamObject); | |
| } | |
| /// <summary> | |
| /// Create runspace when computer name parameter specified. | |
| /// </summary> | |
| private RemoteRunspace CreateRunspaceWhenComputerNameParameterSpecified() | |
| { | |
| RemoteRunspace remoteRunspace = null; | |
| string resolvedComputerName = ResolveComputerName(ComputerName); | |
| try | |
| { | |
| WSManConnectionInfo connectionInfo = null; | |
| connectionInfo = new WSManConnectionInfo(); | |
| string scheme = UseSSL.IsPresent ? WSManConnectionInfo.HttpsScheme : WSManConnectionInfo.HttpScheme; | |
| connectionInfo.ComputerName = resolvedComputerName; | |
| connectionInfo.Port = Port; | |
| connectionInfo.AppName = ApplicationName; | |
| connectionInfo.ShellUri = ConfigurationName; | |
| connectionInfo.Scheme = scheme; | |
| if (CertificateThumbprint != null) | |
| { | |
| connectionInfo.CertificateThumbprint = CertificateThumbprint; | |
| } | |
| else | |
| { | |
| connectionInfo.Credential = Credential; | |
| } | |
| connectionInfo.AuthenticationMechanism = Authentication; | |
| UpdateConnectionInfo(connectionInfo); | |
| connectionInfo.EnableNetworkAccess = EnableNetworkAccess; | |
| remoteRunspace = CreateTemporaryRemoteRunspace(this.Host, connectionInfo); | |
| } | |
| catch (InvalidOperationException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, resolvedComputerName); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, resolvedComputerName); | |
| } | |
| catch (PSRemotingTransportException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, resolvedComputerName); | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Create runspace when uri parameter specified. | |
| /// </summary> | |
| private RemoteRunspace CreateRunspaceWhenUriParameterSpecified() | |
| { | |
| RemoteRunspace remoteRunspace = null; | |
| try | |
| { | |
| WSManConnectionInfo connectionInfo = new WSManConnectionInfo(); | |
| connectionInfo.ConnectionUri = ConnectionUri; | |
| connectionInfo.ShellUri = ConfigurationName; | |
| if (CertificateThumbprint != null) | |
| { | |
| connectionInfo.CertificateThumbprint = CertificateThumbprint; | |
| } | |
| else | |
| { | |
| connectionInfo.Credential = Credential; | |
| } | |
| connectionInfo.AuthenticationMechanism = Authentication; | |
| UpdateConnectionInfo(connectionInfo); | |
| connectionInfo.EnableNetworkAccess = EnableNetworkAccess; | |
| remoteRunspace = CreateTemporaryRemoteRunspace(this.Host, connectionInfo); | |
| } | |
| catch (UriFormatException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, ConnectionUri); | |
| } | |
| catch (InvalidOperationException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, ConnectionUri); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, ConnectionUri); | |
| } | |
| catch (PSRemotingTransportException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, ConnectionUri); | |
| } | |
| catch (NotSupportedException e) | |
| { | |
| WriteErrorCreateRemoteRunspaceFailed(e, ConnectionUri); | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Get runspace matching condition. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceMatchingCondition( | |
| Predicate<PSSession> condition, | |
| PSRemotingErrorId tooFew, | |
| PSRemotingErrorId tooMany, | |
| string tooFewResourceString, | |
| string tooManyResourceString, | |
| object errorArgument) | |
| { | |
| // Find matches. | |
| List<PSSession> matches = this.RunspaceRepository.Runspaces.FindAll(condition); | |
| // Validate. | |
| RemoteRunspace remoteRunspace = null; | |
| if (matches.Count == 0) | |
| { | |
| WriteInvalidArgumentError(tooFew, tooFewResourceString, errorArgument); | |
| } | |
| else if (matches.Count > 1) | |
| { | |
| WriteInvalidArgumentError(tooMany, tooManyResourceString, errorArgument); | |
| } | |
| else | |
| { | |
| remoteRunspace = (RemoteRunspace)matches[0].Runspace; | |
| Dbg.Assert(remoteRunspace != null, "Expected remoteRunspace != null"); | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Get runspace matching runspace id. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceMatchingRunspaceId(Guid remoteRunspaceId) | |
| { | |
| return GetRunspaceMatchingCondition( | |
| condition: info => info.InstanceId == remoteRunspaceId, | |
| tooFew: PSRemotingErrorId.RemoteRunspaceNotAvailableForSpecifiedRunspaceId, | |
| tooMany: PSRemotingErrorId.RemoteRunspaceHasMultipleMatchesForSpecifiedRunspaceId, | |
| tooFewResourceString: RemotingErrorIdStrings.RemoteRunspaceNotAvailableForSpecifiedRunspaceId, | |
| tooManyResourceString: RemotingErrorIdStrings.RemoteRunspaceHasMultipleMatchesForSpecifiedRunspaceId, | |
| errorArgument: remoteRunspaceId); | |
| } | |
| /// <summary> | |
| /// Get runspace matching session id. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceMatchingSessionId(int sessionId) | |
| { | |
| return GetRunspaceMatchingCondition( | |
| condition: info => info.Id == sessionId, | |
| tooFew: PSRemotingErrorId.RemoteRunspaceNotAvailableForSpecifiedSessionId, | |
| tooMany: PSRemotingErrorId.RemoteRunspaceHasMultipleMatchesForSpecifiedSessionId, | |
| tooFewResourceString: RemotingErrorIdStrings.RemoteRunspaceNotAvailableForSpecifiedSessionId, | |
| tooManyResourceString: RemotingErrorIdStrings.RemoteRunspaceHasMultipleMatchesForSpecifiedSessionId, | |
| errorArgument: sessionId); | |
| } | |
| /// <summary> | |
| /// Get runspace matching name. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceMatchingName(string name) | |
| { | |
| return GetRunspaceMatchingCondition( | |
| condition: info => info.Name.Equals(name, StringComparison.OrdinalIgnoreCase), | |
| tooFew: PSRemotingErrorId.RemoteRunspaceNotAvailableForSpecifiedName, | |
| tooMany: PSRemotingErrorId.RemoteRunspaceHasMultipleMatchesForSpecifiedName, | |
| tooFewResourceString: RemotingErrorIdStrings.RemoteRunspaceNotAvailableForSpecifiedName, | |
| tooManyResourceString: RemotingErrorIdStrings.RemoteRunspaceHasMultipleMatchesForSpecifiedName, | |
| errorArgument: name); | |
| } | |
| private Job FindJobForRunspace(Guid id) | |
| { | |
| foreach (var repJob in this.JobRepository.Jobs) | |
| { | |
| foreach (Job childJob in repJob.ChildJobs) | |
| { | |
| PSRemotingChildJob remotingChildJob = childJob as PSRemotingChildJob; | |
| if (remotingChildJob != null && | |
| remotingChildJob.Runspace != null && | |
| remotingChildJob.JobStateInfo.State == JobState.Running && | |
| remotingChildJob.Runspace.InstanceId.Equals(id)) | |
| { | |
| return repJob; | |
| } | |
| } | |
| } | |
| return null; | |
| } | |
| private bool IsParameterSetForVM() | |
| { | |
| return ((ParameterSetName == VMIdParameterSet) || | |
| (ParameterSetName == VMNameParameterSet)); | |
| } | |
| private bool IsParameterSetForContainer() | |
| { | |
| return (ParameterSetName == ContainerIdParameterSet); | |
| } | |
| /// <summary> | |
| /// Whether the input is a session object or property that corresponds to | |
| /// VM or container. | |
| /// </summary> | |
| private bool IsParameterSetForVMContainerSession() | |
| { | |
| RemoteRunspace remoteRunspace = null; | |
| switch (ParameterSetName) | |
| { | |
| case SessionParameterSet: | |
| if (this.Session != null) | |
| { | |
| remoteRunspace = (RemoteRunspace)this.Session.Runspace; | |
| } | |
| break; | |
| case InstanceIdParameterSet: | |
| remoteRunspace = GetRunspaceMatchingRunspaceId(this.InstanceId); | |
| break; | |
| case IdParameterSet: | |
| remoteRunspace = GetRunspaceMatchingSessionId(this.Id); | |
| break; | |
| case NameParameterSet: | |
| remoteRunspace = GetRunspaceMatchingName(this.Name); | |
| break; | |
| default: | |
| break; | |
| } | |
| if ((remoteRunspace != null) && | |
| (remoteRunspace.ConnectionInfo != null)) | |
| { | |
| if ((remoteRunspace.ConnectionInfo is VMConnectionInfo) || | |
| (remoteRunspace.ConnectionInfo is ContainerConnectionInfo)) | |
| { | |
| return true; | |
| } | |
| } | |
| return false; | |
| } | |
| /// <summary> | |
| /// Create runspace for VM session. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceForVMSession() | |
| { | |
| RemoteRunspace remoteRunspace = null; | |
| string command; | |
| Collection<PSObject> results; | |
| if (ParameterSetName == VMIdParameterSet) | |
| { | |
| command = "Get-VM -Id $args[0]"; | |
| try | |
| { | |
| results = this.InvokeCommand.InvokeScript( | |
| command, false, PipelineResultTypes.None, null, this.VMId); | |
| } | |
| catch (CommandNotFoundException) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(RemotingErrorIdStrings.HyperVModuleNotAvailable), | |
| nameof(PSRemotingErrorId.HyperVModuleNotAvailable), | |
| ErrorCategory.NotInstalled, | |
| null)); | |
| return null; | |
| } | |
| if (results.Count != 1) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(RemotingErrorIdStrings.InvalidVMId), | |
| nameof(PSRemotingErrorId.InvalidVMId), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| return null; | |
| } | |
| this.VMName = (string)results[0].Properties["VMName"].Value; | |
| } | |
| else | |
| { | |
| Dbg.Assert(ParameterSetName == VMNameParameterSet, "Expected ParameterSetName == VMName"); | |
| command = "Get-VM -Name $args"; | |
| try | |
| { | |
| results = this.InvokeCommand.InvokeScript( | |
| command, false, PipelineResultTypes.None, null, this.VMName); | |
| } | |
| catch (CommandNotFoundException) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(RemotingErrorIdStrings.HyperVModuleNotAvailable), | |
| nameof(PSRemotingErrorId.HyperVModuleNotAvailable), | |
| ErrorCategory.NotInstalled, | |
| null)); | |
| return null; | |
| } | |
| if (results.Count == 0) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(RemotingErrorIdStrings.InvalidVMNameNoVM), | |
| nameof(PSRemotingErrorId.InvalidVMNameNoVM), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| return null; | |
| } | |
| else if (results.Count > 1) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(RemotingErrorIdStrings.InvalidVMNameMultipleVM), | |
| nameof(PSRemotingErrorId.InvalidVMNameMultipleVM), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| return null; | |
| } | |
| this.VMId = (Guid)results[0].Properties["VMId"].Value; | |
| this.VMName = (string)results[0].Properties["VMName"].Value; | |
| } | |
| // | |
| // VM should be in running state. | |
| // | |
| if (GetVMStateProperty(results[0]) != VMState.Running) | |
| { | |
| WriteError( | |
| new ErrorRecord( | |
| new ArgumentException(GetMessage(RemotingErrorIdStrings.InvalidVMState, | |
| this.VMName)), | |
| nameof(PSRemotingErrorId.InvalidVMState), | |
| ErrorCategory.InvalidArgument, | |
| null)); | |
| return null; | |
| } | |
| try | |
| { | |
| VMConnectionInfo connectionInfo; | |
| connectionInfo = new VMConnectionInfo(this.Credential, this.VMId, this.VMName, this.ConfigurationName); | |
| remoteRunspace = CreateTemporaryRemoteRunspaceForPowerShellDirect(this.Host, connectionInfo); | |
| } | |
| catch (InvalidOperationException e) | |
| { | |
| ErrorRecord errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForVMFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| WriteError(errorRecord); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| ErrorRecord errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForVMFailed", | |
| ErrorCategory.InvalidArgument, | |
| null); | |
| WriteError(errorRecord); | |
| } | |
| catch (PSRemotingDataStructureException e) | |
| { | |
| ErrorRecord errorRecord; | |
| // | |
| // In case of PSDirectException, we should output the precise error message | |
| // in inner exception instead of the generic one in outer exception. | |
| // | |
| if ((e.InnerException != null) && (e.InnerException is PSDirectException)) | |
| { | |
| errorRecord = new ErrorRecord(e.InnerException, | |
| "CreateRemoteRunspaceForVMFailed", | |
| ErrorCategory.InvalidArgument, | |
| null); | |
| } | |
| else | |
| { | |
| errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForVMFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| } | |
| WriteError(errorRecord); | |
| } | |
| catch (Exception e) | |
| { | |
| ErrorRecord errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForVMFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| WriteError(errorRecord); | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Create temporary remote runspace. | |
| /// </summary> | |
| private static RemoteRunspace CreateTemporaryRemoteRunspaceForPowerShellDirect(PSHost host, RunspaceConnectionInfo connectionInfo) | |
| { | |
| // Create and open the runspace. | |
| TypeTable typeTable = TypeTable.LoadDefaultTypeFiles(); | |
| RemoteRunspace remoteRunspace = RunspaceFactory.CreateRunspace(connectionInfo, host, typeTable) as RemoteRunspace; | |
| remoteRunspace.Name = "PowerShellDirectAttach"; | |
| Dbg.Assert(remoteRunspace != null, "Expected remoteRunspace != null"); | |
| try | |
| { | |
| remoteRunspace.Open(); | |
| // Mark this temporary runspace so that it closes on pop. | |
| remoteRunspace.ShouldCloseOnPop = true; | |
| } | |
| finally | |
| { | |
| // Make sure we dispose the temporary runspace if something bad happens. | |
| if (remoteRunspace.RunspaceStateInfo.State != RunspaceState.Opened) | |
| { | |
| remoteRunspace.Dispose(); | |
| remoteRunspace = null; | |
| } | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Set prompt for VM/Container sessions. | |
| /// </summary> | |
| private void SetRunspacePrompt(RemoteRunspace remoteRunspace) | |
| { | |
| if (IsParameterSetForVM() || | |
| IsParameterSetForContainer() || | |
| IsParameterSetForVMContainerSession()) | |
| { | |
| string targetName = string.Empty; | |
| switch (ParameterSetName) | |
| { | |
| case VMIdParameterSet: | |
| case VMNameParameterSet: | |
| targetName = this.VMName; | |
| break; | |
| case ContainerIdParameterSet: | |
| targetName = (this.ContainerId.Length <= 15) ? this.ContainerId | |
| : this.ContainerId.Remove(14) + PSObjectHelper.Ellipsis; | |
| break; | |
| case SessionParameterSet: | |
| targetName = (this.Session != null) ? this.Session.ComputerName : string.Empty; | |
| break; | |
| case InstanceIdParameterSet: | |
| case IdParameterSet: | |
| case NameParameterSet: | |
| if ((remoteRunspace != null) && | |
| (remoteRunspace.ConnectionInfo != null)) | |
| { | |
| targetName = remoteRunspace.ConnectionInfo.ComputerName; | |
| } | |
| break; | |
| default: | |
| Dbg.Assert(false, "Unrecognized parameter set."); | |
| break; | |
| } | |
| string promptFn = StringUtil.Format(RemotingErrorIdStrings.EnterVMSessionPrompt, | |
| @"function global:prompt { """, | |
| targetName, | |
| @"PS $($executionContext.SessionState.Path.CurrentLocation)> "" }"); | |
| // Set prompt in pushed named pipe runspace. | |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) | |
| { | |
| ps.Runspace = remoteRunspace; | |
| try | |
| { | |
| // Set pushed runspace prompt. | |
| ps.AddScript(promptFn).Invoke(); | |
| } | |
| catch (Exception) | |
| { | |
| } | |
| } | |
| } | |
| return; | |
| } | |
| /// <summary> | |
| /// Create runspace for container session. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceForContainerSession() | |
| { | |
| RemoteRunspace remoteRunspace = null; | |
| try | |
| { | |
| Dbg.Assert(!string.IsNullOrEmpty(ContainerId), "ContainerId has to be set."); | |
| ContainerConnectionInfo connectionInfo = null; | |
| // | |
| // Hyper-V container uses Hype-V socket as transport. | |
| // Windows Server container uses named pipe as transport. | |
| // | |
| connectionInfo = ContainerConnectionInfo.CreateContainerConnectionInfo(ContainerId, RunAsAdministrator.IsPresent, this.ConfigurationName); | |
| connectionInfo.CreateContainerProcess(); | |
| remoteRunspace = CreateTemporaryRemoteRunspaceForPowerShellDirect(this.Host, connectionInfo); | |
| } | |
| catch (InvalidOperationException e) | |
| { | |
| ErrorRecord errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForContainerFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| WriteError(errorRecord); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| ErrorRecord errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForContainerFailed", | |
| ErrorCategory.InvalidArgument, | |
| null); | |
| WriteError(errorRecord); | |
| } | |
| catch (PSRemotingDataStructureException e) | |
| { | |
| ErrorRecord errorRecord; | |
| // | |
| // In case of PSDirectException, we should output the precise error message | |
| // in inner exception instead of the generic one in outer exception. | |
| // | |
| if ((e.InnerException != null) && (e.InnerException is PSDirectException)) | |
| { | |
| errorRecord = new ErrorRecord(e.InnerException, | |
| "CreateRemoteRunspaceForContainerFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| } | |
| else | |
| { | |
| errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForContainerFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| } | |
| WriteError(errorRecord); | |
| } | |
| catch (Exception e) | |
| { | |
| ErrorRecord errorRecord = new ErrorRecord(e, | |
| "CreateRemoteRunspaceForContainerFailed", | |
| ErrorCategory.InvalidOperation, | |
| null); | |
| WriteError(errorRecord); | |
| } | |
| return remoteRunspace; | |
| } | |
| /// <summary> | |
| /// Create remote runspace for SSH session. | |
| /// </summary> | |
| private RemoteRunspace GetRunspaceForSSHSession() | |
| { | |
| ParseSshHostName(HostName, out string host, out string userName, out int port); | |
| var sshConnectionInfo = new SSHConnectionInfo(userName, host, KeyFilePath, port, Subsystem, ConnectingTimeout, Options); | |
| var typeTable = TypeTable.LoadDefaultTypeFiles(); | |
| // Use the class _tempRunspace field while the runspace is being opened so that StopProcessing can be handled at that time. | |
| // This is only needed for SSH sessions where a Ctrl+C during an SSH password prompt can abort the session before a connection | |
| // is established. | |
| _tempRunspace = RunspaceFactory.CreateRunspace(sshConnectionInfo, this.Host, typeTable) as RemoteRunspace; | |
| _tempRunspace.Open(); | |
| _tempRunspace.ShouldCloseOnPop = true; | |
| var remoteRunspace = _tempRunspace; | |
| _tempRunspace = null; | |
| return remoteRunspace; | |
| } | |
| internal static RemotePipeline ConnectRunningPipeline(RemoteRunspace remoteRunspace) | |
| { | |
| RemotePipeline cmd = null; | |
| if (remoteRunspace.RemoteCommand != null) | |
| { | |
| // Reconstruct scenario. | |
| // Newly connected pipeline object is added to the RemoteRunspace running | |
| // pipeline list. | |
| cmd = new RemotePipeline(remoteRunspace); | |
| } | |
| else | |
| { | |
| // Reconnect scenario. | |
| cmd = remoteRunspace.GetCurrentlyRunningPipeline() as RemotePipeline; | |
| } | |
| // Connect the runspace pipeline so that debugging and output data from | |
| // remote server can continue. | |
| if (cmd != null && | |
| cmd.PipelineStateInfo.State == PipelineState.Disconnected) | |
| { | |
| using (ManualResetEvent connected = new ManualResetEvent(false)) | |
| { | |
| cmd.StateChanged += (sender, args) => | |
| { | |
| if (args.PipelineStateInfo.State != PipelineState.Disconnected) | |
| { | |
| try | |
| { | |
| connected.Set(); | |
| } | |
| catch (ObjectDisposedException) { } | |
| } | |
| }; | |
| cmd.ConnectAsync(); | |
| connected.WaitOne(); | |
| } | |
| } | |
| return cmd; | |
| } | |
| internal static void ContinueCommand(RemoteRunspace remoteRunspace, Pipeline cmd, PSHost host, bool inDebugMode, System.Management.Automation.ExecutionContext context) | |
| { | |
| RemotePipeline remotePipeline = cmd as RemotePipeline; | |
| if (remotePipeline != null) | |
| { | |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) | |
| { | |
| PSInvocationSettings settings = new PSInvocationSettings() | |
| { | |
| Host = host | |
| }; | |
| PSDataCollection<PSObject> input = new PSDataCollection<PSObject>(); | |
| CommandInfo commandInfo = new CmdletInfo("Out-Default", typeof(OutDefaultCommand), null, null, context); | |
| Command outDefaultCommand = new Command(commandInfo); | |
| ps.AddCommand(outDefaultCommand); | |
| IAsyncResult async = ps.BeginInvoke<PSObject>(input, settings, null, null); | |
| RemoteDebugger remoteDebugger = remoteRunspace.Debugger as RemoteDebugger; | |
| if (remoteDebugger != null) | |
| { | |
| // Update client with breakpoint information from pushed runspace. | |
| // Information will be passed to the client via the Debugger.BreakpointUpdated event. | |
| remoteDebugger.SendBreakpointUpdatedEvents(); | |
| if (!inDebugMode) | |
| { | |
| // Enter debug mode if remote runspace is in debug stop mode. | |
| remoteDebugger.CheckStateAndRaiseStopEvent(); | |
| } | |
| } | |
| // Wait for debugged cmd to complete. | |
| while (!remotePipeline.Output.EndOfPipeline) | |
| { | |
| remotePipeline.Output.WaitHandle.WaitOne(); | |
| while (remotePipeline.Output.Count > 0) | |
| { | |
| input.Add(remotePipeline.Output.Read()); | |
| } | |
| } | |
| input.Complete(); | |
| ps.EndInvoke(async); | |
| } | |
| } | |
| } | |
| } | |
| } | |