ServerService.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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 Utilities;
  11. namespace SMBLibrary.Services
  12. {
  13. /// <summary>
  14. /// [MS-SRVS]
  15. /// </summary>
  16. public class ServerService : RemoteService
  17. {
  18. public const int MaxPreferredLength = -1; // MAX_PREFERRED_LENGTH
  19. private PlatformName m_platformID;
  20. private string m_serverName;
  21. private uint m_verMajor;
  22. private uint m_verMinor;
  23. private ServerType m_serverType;
  24. private List<string> m_shares;
  25. public ServerService(string serverName, List<string> shares)
  26. {
  27. m_platformID = PlatformName.NT;
  28. m_serverName = serverName;
  29. m_verMajor = 5;
  30. m_verMinor = 2;
  31. m_serverType = ServerType.Workstation | ServerType.Server | ServerType.WindowsNT | ServerType.ServerNT | ServerType.MasterBrowser;
  32. m_shares = shares;
  33. }
  34. public override byte[] GetResponseBytes(ushort opNum, byte[] requestBytes)
  35. {
  36. switch (opNum)
  37. {
  38. case 15:
  39. {
  40. NetrShareEnumRequest request = new NetrShareEnumRequest(requestBytes);
  41. NetrShareEnumResponse response = GetNetrShareEnumResponse(request);
  42. return response.GetBytes();
  43. }
  44. case 16:
  45. {
  46. NetrShareGetInfoRequest request = new NetrShareGetInfoRequest(requestBytes);
  47. NetrShareGetInfoResponse response = GetNetrShareGetInfoResponse(request);
  48. return response.GetBytes();
  49. }
  50. case 21:
  51. {
  52. NetrServerGetInfoRequest request = new NetrServerGetInfoRequest(requestBytes);
  53. NetrServerGetInfoResponse response = GetNetrWkstaGetInfoResponse(request);
  54. return response.GetBytes();
  55. }
  56. default:
  57. throw new NotImplementedException();
  58. }
  59. }
  60. public NetrShareEnumResponse GetNetrShareEnumResponse(NetrShareEnumRequest request)
  61. {
  62. NetrShareEnumResponse response = new NetrShareEnumResponse();
  63. if (request.InfoStruct.Level == 0)
  64. {
  65. // We ignore request.PreferedMaximumLength
  66. ShareInfo0Container info = new ShareInfo0Container();
  67. foreach (string shareName in m_shares)
  68. {
  69. info.Add(new ShareInfo0Entry(shareName));
  70. }
  71. response.InfoStruct = new ShareEnum(info);
  72. response.TotalEntries = (uint)m_shares.Count;
  73. }
  74. else if (request.InfoStruct.Level == 1)
  75. {
  76. // We ignore request.PreferedMaximumLength
  77. ShareInfo1Container info = new ShareInfo1Container();
  78. foreach (string shareName in m_shares)
  79. {
  80. info.Add(new ShareInfo1Entry(shareName, new ShareTypeExtended(ShareType.DiskDrive)));
  81. }
  82. response.InfoStruct = new ShareEnum(info);
  83. response.TotalEntries = (uint)m_shares.Count;
  84. }
  85. else
  86. {
  87. throw new NotImplementedException();
  88. }
  89. response.Result = Win32Error.ERROR_SUCCESS;
  90. return response;
  91. }
  92. public NetrShareGetInfoResponse GetNetrShareGetInfoResponse(NetrShareGetInfoRequest request)
  93. {
  94. int shareIndex = IndexOfShare(request.NetName);
  95. NetrShareGetInfoResponse response = new NetrShareGetInfoResponse();
  96. if (shareIndex == -1)
  97. {
  98. response.InfoStruct = new ShareInfo(request.Level);
  99. response.Result = Win32Error.NERR_NetNameNotFound;
  100. return response;
  101. }
  102. if (request.Level == 0)
  103. {
  104. ShareInfo0Entry info = new ShareInfo0Entry(m_shares[shareIndex]);
  105. response.InfoStruct = new ShareInfo(info);
  106. }
  107. else if (request.Level == 1)
  108. {
  109. ShareInfo1Entry info = new ShareInfo1Entry(m_shares[shareIndex], new ShareTypeExtended(ShareType.DiskDrive));
  110. response.InfoStruct = new ShareInfo(info);
  111. }
  112. else if (request.Level == 2)
  113. {
  114. ShareInfo2Entry info = new ShareInfo2Entry(m_shares[shareIndex], new ShareTypeExtended(ShareType.DiskDrive));
  115. response.InfoStruct = new ShareInfo(info);
  116. }
  117. else
  118. {
  119. throw new NotImplementedException();
  120. }
  121. response.Result = Win32Error.ERROR_SUCCESS;
  122. return response;
  123. }
  124. public NetrServerGetInfoResponse GetNetrWkstaGetInfoResponse(NetrServerGetInfoRequest request)
  125. {
  126. NetrServerGetInfoResponse response = new NetrServerGetInfoResponse();
  127. if (request.Level == 100)
  128. {
  129. ServerInfo100 info = new ServerInfo100();
  130. info.PlatformID = m_platformID;
  131. info.ServerName.Value = m_serverName;
  132. response.InfoStruct = new ServerInfo(info);
  133. }
  134. else if (request.Level == 101)
  135. {
  136. ServerInfo101 info = new ServerInfo101();
  137. info.PlatformID = m_platformID;
  138. info.ServerName.Value = m_serverName;
  139. info.VerMajor = m_verMajor;
  140. info.VerMinor = m_verMinor;
  141. info.Type = m_serverType;
  142. info.Comment.Value = String.Empty;
  143. response.InfoStruct = new ServerInfo(info);
  144. }
  145. else
  146. {
  147. throw new NotImplementedException();
  148. }
  149. response.Result = Win32Error.ERROR_SUCCESS;
  150. return response;
  151. }
  152. private int IndexOfShare(string shareName)
  153. {
  154. for (int index = 0; index < m_shares.Count; index++)
  155. {
  156. if (m_shares[index].Equals(shareName, StringComparison.OrdinalIgnoreCase))
  157. {
  158. return index;
  159. }
  160. }
  161. return -1;
  162. }
  163. public override Guid InterfaceGuid
  164. {
  165. get
  166. {
  167. return new Guid("4B324FC8-1670-01D3-1278-5A47BF6EE188");
  168. }
  169. }
  170. public override string PipeName
  171. {
  172. get
  173. {
  174. return "srvsvc";
  175. }
  176. }
  177. }
  178. }