/BladeLogic/sshNET/Renci.SshNet/PasswordAuthenticationMethod.cs

# · C# · 199 lines · 117 code · 39 blank · 43 comment · 12 complexity · b2e121bc1a1de1a5e5b0939cb166c931 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using Renci.SshNet.Common;
  7. using Renci.SshNet.Messages.Authentication;
  8. using Renci.SshNet.Messages;
  9. namespace Renci.SshNet
  10. {
  11. /// <summary>
  12. /// Provides functionality to perform password authentication.
  13. /// </summary>
  14. public partial class PasswordAuthenticationMethod : AuthenticationMethod, IDisposable
  15. {
  16. private AuthenticationResult _authenticationResult = AuthenticationResult.Failure;
  17. private Session _session;
  18. private EventWaitHandle _authenticationCompleted = new AutoResetEvent(false);
  19. private Exception _exception;
  20. private RequestMessage _requestMessage;
  21. private string _password;
  22. /// <summary>
  23. /// Gets authentication method name
  24. /// </summary>
  25. public override string Name
  26. {
  27. get { return this._requestMessage.MethodName; }
  28. }
  29. /// <summary>
  30. /// Occurs when user's password has expired and needs to be changed.
  31. /// </summary>
  32. public event EventHandler<AuthenticationPasswordChangeEventArgs> PasswordExpired;
  33. /// <summary>
  34. /// Initializes a new instance of the <see cref="PasswordAuthenticationMethod"/> class.
  35. /// </summary>
  36. /// <param name="host">The host.</param>
  37. /// <param name="port">The port.</param>
  38. /// <param name="username">The username.</param>
  39. /// <param name="password">The password.</param>
  40. public PasswordAuthenticationMethod(string username, string password)
  41. : base(username)
  42. {
  43. if (password == null)
  44. throw new ArgumentNullException("password");
  45. this._password = password;
  46. this._requestMessage = new RequestMessagePassword(ServiceName.Connection, this.Username, password);
  47. }
  48. /// <summary>
  49. /// Authenticates the specified session.
  50. /// </summary>
  51. /// <param name="session">The session to authenticate.</param>
  52. /// <returns></returns>
  53. public override AuthenticationResult Authenticate(Session session)
  54. {
  55. this._session = session;
  56. session.UserAuthenticationSuccessReceived += Session_UserAuthenticationSuccessReceived;
  57. session.UserAuthenticationFailureReceived += Session_UserAuthenticationFailureReceived;
  58. session.MessageReceived += Session_MessageReceived;
  59. session.RegisterMessage("SSH_MSG_USERAUTH_PASSWD_CHANGEREQ");
  60. session.SendMessage(this._requestMessage);
  61. session.WaitHandle(this._authenticationCompleted);
  62. session.UserAuthenticationSuccessReceived -= Session_UserAuthenticationSuccessReceived;
  63. session.UserAuthenticationFailureReceived -= Session_UserAuthenticationFailureReceived;
  64. session.MessageReceived -= Session_MessageReceived;
  65. if (this._exception != null)
  66. {
  67. throw this._exception;
  68. }
  69. return this._authenticationResult;
  70. }
  71. private void Session_UserAuthenticationSuccessReceived(object sender, MessageEventArgs<SuccessMessage> e)
  72. {
  73. this._authenticationResult = AuthenticationResult.Success;
  74. this._authenticationCompleted.Set();
  75. }
  76. private void Session_UserAuthenticationFailureReceived(object sender, MessageEventArgs<FailureMessage> e)
  77. {
  78. if (e.Message.PartialSuccess)
  79. this._authenticationResult = AuthenticationResult.PartialSuccess;
  80. else
  81. this._authenticationResult = AuthenticationResult.Failure;
  82. // Copy allowed authentication methods
  83. this.AllowedAuthentications = e.Message.AllowedAuthentications.ToList();
  84. this._authenticationCompleted.Set();
  85. }
  86. private void Session_MessageReceived(object sender, MessageEventArgs<Message> e)
  87. {
  88. if (e.Message is PasswordChangeRequiredMessage)
  89. {
  90. this._session.UnRegisterMessage("SSH_MSG_USERAUTH_PASSWD_CHANGEREQ");
  91. this.ExecuteThread(() =>
  92. {
  93. try
  94. {
  95. var eventArgs = new AuthenticationPasswordChangeEventArgs(this.Username);
  96. // Raise an event to allow user to supply a new password
  97. if (this.PasswordExpired != null)
  98. {
  99. this.PasswordExpired(this, eventArgs);
  100. }
  101. // Send new authentication request with new password
  102. this._session.SendMessage(new RequestMessagePassword(ServiceName.Connection, this.Username, this._password, eventArgs.NewPassword));
  103. }
  104. catch (Exception exp)
  105. {
  106. this._exception = exp;
  107. this._authenticationCompleted.Set();
  108. }
  109. });
  110. }
  111. }
  112. partial void ExecuteThread(Action action);
  113. #region IDisposable Members
  114. private bool isDisposed = false;
  115. /// <summary>
  116. /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
  117. /// </summary>
  118. public void Dispose()
  119. {
  120. Dispose(true);
  121. GC.SuppressFinalize(this);
  122. }
  123. /// <summary>
  124. /// Releases unmanaged and - optionally - managed resources
  125. /// </summary>
  126. /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
  127. protected virtual void Dispose(bool disposing)
  128. {
  129. // Check to see if Dispose has already been called.
  130. if (!this.isDisposed)
  131. {
  132. // If disposing equals true, dispose all managed
  133. // and unmanaged resources.
  134. if (disposing)
  135. {
  136. // Dispose managed resources.
  137. if (this._authenticationCompleted != null)
  138. {
  139. this._authenticationCompleted.Dispose();
  140. this._authenticationCompleted = null;
  141. }
  142. }
  143. // Note disposing has been done.
  144. isDisposed = true;
  145. }
  146. }
  147. /// <summary>
  148. /// Releases unmanaged resources and performs other cleanup operations before the
  149. /// <see cref="PasswordConnectionInfo"/> is reclaimed by garbage collection.
  150. /// </summary>
  151. ~PasswordAuthenticationMethod()
  152. {
  153. // Do not re-create Dispose clean-up code here.
  154. // Calling Dispose(false) is optimal in terms of
  155. // readability and maintainability.
  156. Dispose(false);
  157. }
  158. #endregion
  159. }
  160. }