IntegratedNTLMAuthenticationProvider.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Net;
  10. using System.Text;
  11. using System.Runtime.InteropServices;
  12. using Utilities;
  13. using SMBLibrary.Authentication.GSSAPI;
  14. using SMBLibrary.Authentication.NTLM;
  15. using Microsoft.Win32;
  16. namespace SMBLibrary.Win32.Security
  17. {
  18. public class IntegratedNTLMAuthenticationProvider : NTLMAuthenticationProviderBase
  19. {
  20. public class AuthContext
  21. {
  22. public SecHandle ServerContext;
  23. public string WorkStation;
  24. public string UserName;
  25. public bool IsGuest;
  26. public AuthContext(SecHandle serverContext)
  27. {
  28. ServerContext = serverContext;
  29. }
  30. }
  31. public override NTStatus GetChallengeMessage(out object context, NegotiateMessage negotiateMessage, out ChallengeMessage challengeMessage)
  32. {
  33. byte[] negotiateMessageBytes = negotiateMessage.GetBytes();
  34. SecHandle serverContext;
  35. byte[] challengeMessageBytes;
  36. try
  37. {
  38. challengeMessageBytes = SSPIHelper.GetType2Message(negotiateMessageBytes, out serverContext);
  39. }
  40. catch (Exception)
  41. {
  42. context = null;
  43. challengeMessage = null;
  44. // We assume that the problem is not with our implementation.
  45. return NTStatus.SEC_E_INVALID_TOKEN;
  46. }
  47. context = new AuthContext(serverContext);
  48. challengeMessage = new ChallengeMessage(challengeMessageBytes);
  49. return NTStatus.SEC_I_CONTINUE_NEEDED;
  50. }
  51. /// <summary>
  52. /// Authenticate will return false when the password is correct in these cases:
  53. /// 1. The correct password is blank and 'limitblankpassworduse' is set to 1.
  54. /// 2. The user is listed in the "Deny access to this computer from the network" list.
  55. /// </summary>
  56. public override NTStatus Authenticate(object context, AuthenticateMessage message)
  57. {
  58. AuthContext authContext = context as AuthContext;
  59. if (authContext == null)
  60. {
  61. // There are two possible reasons for authContext to be null:
  62. // 1. We have a bug in our implementation, let's assume that's not the case,
  63. // according to [MS-SMB2] 3.3.5.5.1 we aren't allowed to return SEC_E_INVALID_HANDLE anyway.
  64. // 2. The client sent AuthenticateMessage without sending NegotiateMessage first,
  65. // in this case the correct response is SEC_E_INVALID_TOKEN.
  66. return NTStatus.SEC_E_INVALID_TOKEN;
  67. }
  68. authContext.UserName = message.UserName;
  69. authContext.WorkStation = message.WorkStation;
  70. if ((message.NegotiateFlags & NegotiateFlags.Anonymous) > 0 ||
  71. !IsUserExists(message.UserName))
  72. {
  73. if (this.EnableGuestLogin)
  74. {
  75. authContext.IsGuest = true;
  76. return NTStatus.STATUS_SUCCESS;
  77. }
  78. else
  79. {
  80. return NTStatus.STATUS_LOGON_FAILURE;
  81. }
  82. }
  83. byte[] messageBytes = message.GetBytes();
  84. bool success;
  85. try
  86. {
  87. success = SSPIHelper.AuthenticateType3Message(authContext.ServerContext, messageBytes);
  88. }
  89. catch (Exception)
  90. {
  91. // We assume that the problem is not with our implementation.
  92. return NTStatus.SEC_E_INVALID_TOKEN;
  93. }
  94. if (success)
  95. {
  96. return NTStatus.STATUS_SUCCESS;
  97. }
  98. else
  99. {
  100. Win32Error result = (Win32Error)Marshal.GetLastWin32Error();
  101. // Windows will permit fallback when these conditions are met:
  102. // 1. The guest user account is enabled.
  103. // 2. The guest user account does not have a password set.
  104. // 3. The specified account does not exist.
  105. // OR:
  106. // The password is correct but 'limitblankpassworduse' is set to 1 (logon over a network is disabled for accounts without a password).
  107. bool allowFallback = (result == Win32Error.ERROR_ACCOUNT_RESTRICTION);
  108. if (allowFallback && this.EnableGuestLogin)
  109. {
  110. authContext.IsGuest = true;
  111. return NTStatus.STATUS_SUCCESS;
  112. }
  113. else
  114. {
  115. return ToNTStatus(result);
  116. }
  117. }
  118. }
  119. public override void DeleteSecurityContext(ref object context)
  120. {
  121. AuthContext authContext = context as AuthContext;
  122. if (authContext == null)
  123. {
  124. return;
  125. }
  126. SecHandle handle = ((AuthContext)context).ServerContext;
  127. SSPIHelper.DeleteSecurityContext(ref handle);
  128. }
  129. public override object GetContextAttribute(object context, GSSAttributeName attributeName)
  130. {
  131. AuthContext authContext = context as AuthContext;
  132. if (authContext != null)
  133. {
  134. switch (attributeName)
  135. {
  136. case GSSAttributeName.AccessToken:
  137. return SSPIHelper.GetAccessToken(authContext.ServerContext);
  138. case GSSAttributeName.IsGuest:
  139. return authContext.IsGuest;
  140. case GSSAttributeName.MachineName:
  141. return authContext.WorkStation;
  142. case GSSAttributeName.SessionKey:
  143. return SSPIHelper.GetSessionKey(authContext.ServerContext);
  144. case GSSAttributeName.UserName:
  145. return authContext.UserName;
  146. }
  147. }
  148. return null;
  149. }
  150. /// <summary>
  151. /// We immitate Windows, Guest logins are disabled in any of these cases:
  152. /// 1. The Guest account is disabled.
  153. /// 2. The Guest account has password set.
  154. /// 3. The Guest account is listed in the "deny access to this computer from the network" list.
  155. /// </summary>
  156. private bool EnableGuestLogin
  157. {
  158. get
  159. {
  160. return LoginAPI.ValidateUserPassword("Guest", String.Empty, LogonType.Network);
  161. }
  162. }
  163. public static bool IsUserExists(string userName)
  164. {
  165. return NetworkAPI.IsUserExists(userName);
  166. }
  167. public static NTStatus ToNTStatus(Win32Error errorCode)
  168. {
  169. switch (errorCode)
  170. {
  171. case Win32Error.ERROR_NO_TOKEN:
  172. return NTStatus.SEC_E_INVALID_TOKEN;
  173. case Win32Error.ERROR_ACCOUNT_RESTRICTION:
  174. return NTStatus.STATUS_ACCOUNT_RESTRICTION;
  175. case Win32Error.ERROR_INVALID_LOGON_HOURS:
  176. return NTStatus.STATUS_INVALID_LOGON_HOURS;
  177. case Win32Error.ERROR_INVALID_WORKSTATION:
  178. return NTStatus.STATUS_INVALID_WORKSTATION;
  179. case Win32Error.ERROR_PASSWORD_EXPIRED:
  180. return NTStatus.STATUS_PASSWORD_EXPIRED;
  181. case Win32Error.ERROR_ACCOUNT_DISABLED:
  182. return NTStatus.STATUS_ACCOUNT_DISABLED;
  183. case Win32Error.ERROR_LOGON_TYPE_NOT_GRANTED:
  184. return NTStatus.STATUS_LOGON_TYPE_NOT_GRANTED;
  185. case Win32Error.ERROR_ACCOUNT_EXPIRED:
  186. return NTStatus.STATUS_ACCOUNT_EXPIRED;
  187. case Win32Error.ERROR_PASSWORD_MUST_CHANGE:
  188. return NTStatus.STATUS_PASSWORD_MUST_CHANGE;
  189. case Win32Error.ERROR_ACCOUNT_LOCKED_OUT:
  190. return NTStatus.STATUS_ACCOUNT_LOCKED_OUT;
  191. default:
  192. return NTStatus.STATUS_LOGON_FAILURE;
  193. }
  194. }
  195. }
  196. }