ServerService.cs 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /* Copyright (C) 2014-2018 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 string ServicePipeName = @"srvsvc";
  19. public static readonly Guid ServiceInterfaceGuid = new Guid("4B324FC8-1670-01D3-1278-5A47BF6EE188");
  20. public const int ServiceVersion = 3;
  21. public const int MaxPreferredLength = -1; // MAX_PREFERRED_LENGTH
  22. private PlatformName m_platformID;
  23. private string m_serverName;
  24. private uint m_verMajor;
  25. private uint m_verMinor;
  26. private ServerType m_serverType;
  27. private List<string> m_shares;
  28. public ServerService(string serverName, List<string> shares)
  29. {
  30. m_platformID = PlatformName.NT;
  31. m_serverName = serverName;
  32. m_verMajor = 5;
  33. m_verMinor = 2;
  34. m_serverType = ServerType.Workstation | ServerType.Server | ServerType.WindowsNT | ServerType.ServerNT | ServerType.MasterBrowser;
  35. m_shares = shares;
  36. }
  37. public override byte[] GetResponseBytes(ushort opNum, byte[] requestBytes)
  38. {
  39. switch ((ServerServiceOpName)opNum)
  40. {
  41. case ServerServiceOpName.NetrShareEnum:
  42. {
  43. NetrShareEnumRequest request = new NetrShareEnumRequest(requestBytes);
  44. NetrShareEnumResponse response = GetNetrShareEnumResponse(request);
  45. return response.GetBytes();
  46. }
  47. case ServerServiceOpName.NetrShareGetInfo:
  48. {
  49. NetrShareGetInfoRequest request = new NetrShareGetInfoRequest(requestBytes);
  50. NetrShareGetInfoResponse response = GetNetrShareGetInfoResponse(request);
  51. return response.GetBytes();
  52. }
  53. case ServerServiceOpName.NetrServerGetInfo:
  54. {
  55. NetrServerGetInfoRequest request = new NetrServerGetInfoRequest(requestBytes);
  56. NetrServerGetInfoResponse response = GetNetrWkstaGetInfoResponse(request);
  57. return response.GetBytes();
  58. }
  59. default:
  60. throw new UnsupportedOpNumException();
  61. }
  62. }
  63. public NetrShareEnumResponse GetNetrShareEnumResponse(NetrShareEnumRequest request)
  64. {
  65. NetrShareEnumResponse response = new NetrShareEnumResponse();
  66. switch (request.InfoStruct.Level)
  67. {
  68. case 0:
  69. {
  70. // We ignore request.PreferedMaximumLength
  71. ShareInfo0Container info = new ShareInfo0Container();
  72. foreach (string shareName in m_shares)
  73. {
  74. info.Add(new ShareInfo0Entry(shareName));
  75. }
  76. response.InfoStruct = new ShareEnum(info);
  77. response.TotalEntries = (uint)m_shares.Count;
  78. response.Result = Win32Error.ERROR_SUCCESS;
  79. return response;
  80. }
  81. case 1:
  82. {
  83. // We ignore request.PreferedMaximumLength
  84. ShareInfo1Container info = new ShareInfo1Container();
  85. foreach (string shareName in m_shares)
  86. {
  87. info.Add(new ShareInfo1Entry(shareName, new ShareTypeExtended(ShareType.DiskDrive)));
  88. }
  89. response.InfoStruct = new ShareEnum(info);
  90. response.TotalEntries = (uint)m_shares.Count;
  91. response.Result = Win32Error.ERROR_SUCCESS;
  92. return response;
  93. }
  94. case 2:
  95. case 501:
  96. case 502:
  97. case 503:
  98. {
  99. response.InfoStruct = new ShareEnum(request.InfoStruct.Level);
  100. response.Result = Win32Error.ERROR_NOT_SUPPORTED;
  101. return response;
  102. }
  103. default:
  104. {
  105. response.InfoStruct = new ShareEnum(request.InfoStruct.Level);
  106. response.Result = Win32Error.ERROR_INVALID_LEVEL;
  107. return response;
  108. }
  109. }
  110. }
  111. public NetrShareGetInfoResponse GetNetrShareGetInfoResponse(NetrShareGetInfoRequest request)
  112. {
  113. int shareIndex = IndexOfShare(request.NetName);
  114. NetrShareGetInfoResponse response = new NetrShareGetInfoResponse();
  115. if (shareIndex == -1)
  116. {
  117. response.InfoStruct = new ShareInfo(request.Level);
  118. response.Result = Win32Error.NERR_NetNameNotFound;
  119. return response;
  120. }
  121. switch (request.Level)
  122. {
  123. case 0:
  124. {
  125. ShareInfo0Entry info = new ShareInfo0Entry(m_shares[shareIndex]);
  126. response.InfoStruct = new ShareInfo(info);
  127. response.Result = Win32Error.ERROR_SUCCESS;
  128. return response;
  129. }
  130. case 1:
  131. {
  132. ShareInfo1Entry info = new ShareInfo1Entry(m_shares[shareIndex], new ShareTypeExtended(ShareType.DiskDrive));
  133. response.InfoStruct = new ShareInfo(info);
  134. response.Result = Win32Error.ERROR_SUCCESS;
  135. return response;
  136. }
  137. case 2:
  138. {
  139. ShareInfo2Entry info = new ShareInfo2Entry(m_shares[shareIndex], new ShareTypeExtended(ShareType.DiskDrive));
  140. response.InfoStruct = new ShareInfo(info);
  141. response.Result = Win32Error.ERROR_SUCCESS;
  142. return response;
  143. }
  144. case 501:
  145. case 502:
  146. case 503:
  147. case 1005:
  148. {
  149. response.InfoStruct = new ShareInfo(request.Level);
  150. response.Result = Win32Error.ERROR_NOT_SUPPORTED;
  151. return response;
  152. }
  153. default:
  154. {
  155. response.InfoStruct = new ShareInfo(request.Level);
  156. response.Result = Win32Error.ERROR_INVALID_LEVEL;
  157. return response;
  158. }
  159. }
  160. }
  161. public NetrServerGetInfoResponse GetNetrWkstaGetInfoResponse(NetrServerGetInfoRequest request)
  162. {
  163. NetrServerGetInfoResponse response = new NetrServerGetInfoResponse();
  164. switch (request.Level)
  165. {
  166. case 100:
  167. {
  168. ServerInfo100 info = new ServerInfo100();
  169. info.PlatformID = m_platformID;
  170. info.ServerName.Value = m_serverName;
  171. response.InfoStruct = new ServerInfo(info);
  172. response.Result = Win32Error.ERROR_SUCCESS;
  173. return response;
  174. }
  175. case 101:
  176. {
  177. ServerInfo101 info = new ServerInfo101();
  178. info.PlatformID = m_platformID;
  179. info.ServerName.Value = m_serverName;
  180. info.VerMajor = m_verMajor;
  181. info.VerMinor = m_verMinor;
  182. info.Type = m_serverType;
  183. info.Comment.Value = String.Empty;
  184. response.InfoStruct = new ServerInfo(info);
  185. response.Result = Win32Error.ERROR_SUCCESS;
  186. return response;
  187. }
  188. case 102:
  189. case 103:
  190. case 502:
  191. case 503:
  192. {
  193. response.InfoStruct = new ServerInfo(request.Level);
  194. response.Result = Win32Error.ERROR_NOT_SUPPORTED;
  195. return response;
  196. }
  197. default:
  198. {
  199. response.InfoStruct = new ServerInfo(request.Level);
  200. response.Result = Win32Error.ERROR_INVALID_LEVEL;
  201. return response;
  202. }
  203. }
  204. }
  205. private int IndexOfShare(string shareName)
  206. {
  207. for (int index = 0; index < m_shares.Count; index++)
  208. {
  209. if (m_shares[index].Equals(shareName, StringComparison.OrdinalIgnoreCase))
  210. {
  211. return index;
  212. }
  213. }
  214. return -1;
  215. }
  216. public override Guid InterfaceGuid
  217. {
  218. get
  219. {
  220. return ServiceInterfaceGuid;
  221. }
  222. }
  223. public override string PipeName
  224. {
  225. get
  226. {
  227. return ServicePipeName;
  228. }
  229. }
  230. }
  231. }