SessionSetupHelper.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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.Text;
  10. using SMBLibrary.Authentication.GSSAPI;
  11. using SMBLibrary.Authentication.NTLM;
  12. using SMBLibrary.SMB1;
  13. using Utilities;
  14. namespace SMBLibrary.Server.SMB1
  15. {
  16. /// <summary>
  17. /// Session Setup helper
  18. /// </summary>
  19. internal class SessionSetupHelper
  20. {
  21. internal static SMB1Command GetSessionSetupResponse(SMB1Header header, SessionSetupAndXRequest request, GSSProvider securityProvider, SMB1ConnectionState state)
  22. {
  23. SessionSetupAndXResponse response = new SessionSetupAndXResponse();
  24. // The PrimaryDomain field in the request is used to determine with domain controller should authenticate the user credentials,
  25. // However, the domain controller itself does not use this field.
  26. // See: http://msdn.microsoft.com/en-us/library/windows/desktop/aa378749%28v=vs.85%29.aspx
  27. AuthenticateMessage message = CreateAuthenticateMessage(request.AccountName, request.OEMPassword, request.UnicodePassword);
  28. header.Status = securityProvider.NTLMAuthenticate(state.AuthenticationContext, message);
  29. if (header.Status != NTStatus.STATUS_SUCCESS)
  30. {
  31. state.LogToServer(Severity.Information, "User '{0}' failed authentication, NTStatus: {1}", message.UserName, header.Status);
  32. return new ErrorResponse(request.CommandName);
  33. }
  34. byte[] sessionKey = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.SessionKey) as byte[];
  35. object accessToken = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.AccessToken);
  36. bool? isGuest = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.IsGuest) as bool?;
  37. SMB1Session session;
  38. if (!isGuest.HasValue || !isGuest.Value)
  39. {
  40. state.LogToServer(Severity.Information, "User '{0}' authenticated successfully.", message.UserName);
  41. session = state.CreateSession(message.UserName, message.WorkStation, sessionKey, accessToken);
  42. }
  43. else
  44. {
  45. state.LogToServer(Severity.Information, "User '{0}' failed authentication, logged in as guest.", message.UserName);
  46. session = state.CreateSession("Guest", message.WorkStation, sessionKey, accessToken);
  47. response.Action = SessionSetupAction.SetupGuest;
  48. }
  49. if (session == null)
  50. {
  51. header.Status = NTStatus.STATUS_TOO_MANY_SESSIONS;
  52. return new ErrorResponse(request.CommandName);
  53. }
  54. header.UID = session.UserID;
  55. response.PrimaryDomain = request.PrimaryDomain;
  56. if ((request.Capabilities & ServerCapabilities.LargeRead) > 0)
  57. {
  58. state.LargeRead = true;
  59. }
  60. if ((request.Capabilities & ServerCapabilities.LargeWrite) > 0)
  61. {
  62. state.LargeWrite = true;
  63. }
  64. response.NativeOS = String.Empty; // "Windows Server 2003 3790 Service Pack 2"
  65. response.NativeLanMan = String.Empty; // "Windows Server 2003 5.2"
  66. return response;
  67. }
  68. internal static SMB1Command GetSessionSetupResponseExtended(SMB1Header header, SessionSetupAndXRequestExtended request, GSSProvider securityProvider, SMB1ConnectionState state)
  69. {
  70. SessionSetupAndXResponseExtended response = new SessionSetupAndXResponseExtended();
  71. // [MS-SMB] The Windows GSS implementation supports raw Kerberos / NTLM messages in the SecurityBlob
  72. byte[] outputToken;
  73. NTStatus status = securityProvider.AcceptSecurityContext(ref state.AuthenticationContext, request.SecurityBlob, out outputToken);
  74. if (status != NTStatus.STATUS_SUCCESS && status != NTStatus.SEC_I_CONTINUE_NEEDED)
  75. {
  76. string userName = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.UserName) as string;
  77. state.LogToServer(Severity.Information, "User '{0}' failed authentication, NTStatus: {1}", userName, status);
  78. header.Status = status;
  79. return new ErrorResponse(request.CommandName);
  80. }
  81. if (outputToken != null)
  82. {
  83. response.SecurityBlob = outputToken;
  84. }
  85. // According to [MS-SMB] 3.3.5.3, a UID MUST be allocated if the server returns STATUS_MORE_PROCESSING_REQUIRED
  86. if (header.UID == 0)
  87. {
  88. ushort? userID = state.AllocateUserID();
  89. if (!userID.HasValue)
  90. {
  91. header.Status = NTStatus.STATUS_TOO_MANY_SESSIONS;
  92. return new ErrorResponse(request.CommandName);
  93. }
  94. header.UID = userID.Value;
  95. }
  96. if (status == NTStatus.SEC_I_CONTINUE_NEEDED)
  97. {
  98. header.Status = NTStatus.STATUS_MORE_PROCESSING_REQUIRED;
  99. }
  100. else // header.Status == NTStatus.STATUS_SUCCESS
  101. {
  102. string userName = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.UserName) as string;
  103. string machineName = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.MachineName) as string;
  104. byte[] sessionKey = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.SessionKey) as byte[];
  105. object accessToken = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.AccessToken);
  106. bool? isGuest = securityProvider.GetContextAttribute(state.AuthenticationContext, GSSAttributeName.IsGuest) as bool?;
  107. if (!isGuest.HasValue || !isGuest.Value)
  108. {
  109. state.LogToServer(Severity.Information, "User '{0}' authenticated successfully.", userName);
  110. state.CreateSession(header.UID, userName, machineName, sessionKey, accessToken);
  111. }
  112. else
  113. {
  114. state.LogToServer(Severity.Information, "User '{0}' failed authentication, logged in as guest.", userName);
  115. state.CreateSession(header.UID, "Guest", machineName, sessionKey, accessToken);
  116. response.Action = SessionSetupAction.SetupGuest;
  117. }
  118. }
  119. response.NativeOS = String.Empty; // "Windows Server 2003 3790 Service Pack 2"
  120. response.NativeLanMan = String.Empty; // "Windows Server 2003 5.2"
  121. return response;
  122. }
  123. private static AuthenticateMessage CreateAuthenticateMessage(string accountNameToAuth, byte[] lmChallengeResponse, byte[] ntChallengeResponse)
  124. {
  125. AuthenticateMessage authenticateMessage = new AuthenticateMessage();
  126. authenticateMessage.NegotiateFlags = NegotiateFlags.UnicodeEncoding |
  127. NegotiateFlags.OEMEncoding |
  128. NegotiateFlags.Sign |
  129. NegotiateFlags.LanManagerKey |
  130. NegotiateFlags.NTLMSessionSecurity |
  131. NegotiateFlags.AlwaysSign |
  132. NegotiateFlags.Version |
  133. NegotiateFlags.Use128BitEncryption |
  134. NegotiateFlags.Use56BitEncryption;
  135. if (AuthenticationMessageUtils.IsNTLMv1ExtendedSecurity(lmChallengeResponse) ||
  136. AuthenticationMessageUtils.IsNTLMv2NTResponse(ntChallengeResponse))
  137. {
  138. authenticateMessage.NegotiateFlags |= NegotiateFlags.ExtendedSessionSecurity;
  139. }
  140. authenticateMessage.UserName = accountNameToAuth;
  141. authenticateMessage.LmChallengeResponse = lmChallengeResponse;
  142. authenticateMessage.NtChallengeResponse = ntChallengeResponse;
  143. authenticateMessage.Version = NTLMVersion.Server2003;
  144. return authenticateMessage;
  145. }
  146. }
  147. }