| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using Renci.SshNet.Messages.Authentication;using Renci.SshNet.Messages;using Renci.SshNet.Common;namespace Renci.SshNet{    /// <summary>    /// Provides connection information when keyboard interactive authentication method is used    /// </summary>    public partial class KeyboardInteractiveConnectionInfo : ConnectionInfo, IDisposable    {        private EventWaitHandle _authenticationCompleted = new AutoResetEvent(false);        private Exception _exception;        private RequestMessage _requestMessage;        /// <summary>        /// Gets connection name        /// </summary>        public override string Name        {            get            {                return this._requestMessage.MethodName;            }        }        /// <summary>        /// Occurs when server prompts for more authentication information.        /// </summary>        public event EventHandler<AuthenticationPromptEventArgs> AuthenticationPrompt;        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">The host.</param>        /// <param name="username">The username.</param>        public KeyboardInteractiveConnectionInfo(string host, string username)            : this(host, 22, username, ProxyTypes.None, string.Empty, 0, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">The host.</param>        /// <param name="port">The port.</param>        /// <param name="username">The username.</param>        public KeyboardInteractiveConnectionInfo(string host, int port, string username)            : this(host, port, username, ProxyTypes.None, string.Empty, 0, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">Connection port.</param>        /// <param name="username">Connection username.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        public KeyboardInteractiveConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort)            : this(host, port, username, proxyType, proxyHost, proxyPort, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">Connection port.</param>        /// <param name="username">Connection username.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        public KeyboardInteractiveConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)            : this(host, port, username, proxyType, proxyHost, proxyPort, proxyUsername, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        public KeyboardInteractiveConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort)            : this(host, 22, username, proxyType, proxyHost, proxyPort, string.Empty, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        public KeyboardInteractiveConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)            : this(host, 22, username, proxyType, proxyHost, proxyPort, proxyUsername, string.Empty)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="username">Connection username.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        /// <param name="proxyPassword">The proxy password.</param>        public KeyboardInteractiveConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)            : this(host, 22, username, proxyType, proxyHost, proxyPort, proxyUsername, proxyPassword)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="KeyboardInteractiveConnectionInfo"/> class.        /// </summary>        /// <param name="host">Connection host.</param>        /// <param name="port">Connection port.</param>        /// <param name="username">Connection username.</param>        /// <param name="proxyType">Type of the proxy.</param>        /// <param name="proxyHost">The proxy host.</param>        /// <param name="proxyPort">The proxy port.</param>        /// <param name="proxyUsername">The proxy username.</param>        /// <param name="proxyPassword">The proxy password.</param>        public KeyboardInteractiveConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)            : base(host, port, username, proxyType, proxyHost, proxyPort, proxyUsername, proxyPassword)        {            this._requestMessage = new RequestMessageKeyboardInteractive(ServiceName.Connection, username);        }        /// <summary>        /// Called when connection needs to be authenticated.        /// </summary>        protected override void OnAuthenticate()        {            this.Session.RegisterMessage("SSH_MSG_USERAUTH_INFO_REQUEST");            this.SendMessage(this._requestMessage);            this.WaitHandle(this._authenticationCompleted);            this.Session.UnRegisterMessage("SSH_MSG_USERAUTH_INFO_REQUEST");            if (this._exception != null)            {                throw this._exception;            }        }        /// <summary>        /// Handles the UserAuthenticationSuccessMessageReceived event of the session.        /// </summary>        /// <param name="sender">The source of the event.</param>        /// <param name="e">The event data.</param>        protected override void Session_UserAuthenticationSuccessMessageReceived(object sender, MessageEventArgs<SuccessMessage> e)        {            base.Session_UserAuthenticationSuccessMessageReceived(sender, e);            this._authenticationCompleted.Set();        }        /// <summary>        /// Handles the UserAuthenticationFailureReceived event of the session.        /// </summary>        /// <param name="sender">The source of the event.</param>        /// <param name="e">The event data.</param>        protected override void Session_UserAuthenticationFailureReceived(object sender, MessageEventArgs<FailureMessage> e)        {            base.Session_UserAuthenticationFailureReceived(sender, e);            this._authenticationCompleted.Set();        }        /// <summary>        /// Handles the MessageReceived event of the session.        /// </summary>        /// <param name="sender">The source of the event.</param>        /// <param name="e">The event data.</param>        protected override void Session_MessageReceived(object sender, MessageEventArgs<Message> e)        {            var informationRequestMessage = e.Message as InformationRequestMessage;            if (informationRequestMessage != null)            {                var eventArgs = new AuthenticationPromptEventArgs(this.Username, informationRequestMessage.Instruction, informationRequestMessage.Language, informationRequestMessage.Prompts);                this.ExecuteThread(() =>                {                    try                    {                        if (this.AuthenticationPrompt != null)                        {                            this.AuthenticationPrompt(this, eventArgs);                        }                        var informationResponse = new InformationResponseMessage();                        foreach (var response in from r in eventArgs.Prompts orderby r.Id ascending select r.Response)                        {                            informationResponse.Responses.Add(response);                        }                        //  Send information response message                        this.SendMessage(informationResponse);                    }                    catch (Exception exp)                    {                        this._exception = exp;                        this._authenticationCompleted.Set();                    }                });            }        }        partial void ExecuteThread(Action action);        #region IDisposable Members        private bool isDisposed = false;        /// <summary>        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.        /// </summary>        public void Dispose()        {            Dispose(true);            GC.SuppressFinalize(this);        }        /// <summary>        /// Releases unmanaged and - optionally - managed resources        /// </summary>        /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>        protected virtual void Dispose(bool disposing)        {            // Check to see if Dispose has already been called.            if (!this.isDisposed)            {                // If disposing equals true, dispose all managed                // and unmanaged resources.                if (disposing)                {                    // Dispose managed resources.                    if (this._authenticationCompleted != null)                    {                        this._authenticationCompleted.Dispose();                        this._authenticationCompleted = null;                    }                }                // Note disposing has been done.                isDisposed = true;            }        }        /// <summary>        /// Releases unmanaged resources and performs other cleanup operations before the        /// <see cref="KeyboardInteractiveConnectionInfo"/> is reclaimed by garbage collection.        /// </summary>        ~KeyboardInteractiveConnectionInfo()        {            // Do not re-create Dispose clean-up code here.            // Calling Dispose(false) is optimal in terms of            // readability and maintainability.            Dispose(false);        }        #endregion    }}
 |