WorkstationService.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. namespace SMBLibrary.Services
  11. {
  12. /// <summary>
  13. /// [MS-WKST]
  14. /// </summary>
  15. public class WorkstationService : RemoteService
  16. {
  17. private uint m_platformID;
  18. private string m_computerName;
  19. private string m_lanGroup;
  20. private uint m_verMajor;
  21. private uint m_verMinor;
  22. public WorkstationService(string computerName, string lanGroup)
  23. {
  24. m_platformID = (uint)PlatformName.NT;
  25. m_computerName = computerName;
  26. m_lanGroup = lanGroup;
  27. m_verMajor = 5;
  28. m_verMinor = 2;
  29. }
  30. public override byte[] GetResponseBytes(ushort opNum, byte[] requestBytes)
  31. {
  32. switch (opNum)
  33. {
  34. case 0:
  35. NetrWkstaGetInfoRequest request = new NetrWkstaGetInfoRequest(requestBytes);
  36. NetrWkstaGetInfoResponse response = GetNetrWkstaGetInfoResponse(request);
  37. return response.GetBytes();
  38. default:
  39. throw new NotImplementedException();
  40. }
  41. }
  42. public NetrWkstaGetInfoResponse GetNetrWkstaGetInfoResponse(NetrWkstaGetInfoRequest request)
  43. {
  44. NetrWkstaGetInfoResponse response = new NetrWkstaGetInfoResponse();
  45. if (request.Level == 100)
  46. {
  47. WorkstationInfo100 info = new WorkstationInfo100();
  48. info.PlatformID = m_platformID;
  49. info.ComputerName.Value = m_computerName;
  50. info.LanGroup.Value = m_lanGroup;
  51. info.VerMajor = m_verMajor;
  52. info.VerMinor = m_verMinor;
  53. response.WkstaInfo = new WorkstationInfo(info);
  54. }
  55. else if (request.Level == 101)
  56. {
  57. WorkstationInfo101 info = new WorkstationInfo101();
  58. info.PlatformID = m_platformID;
  59. info.ComputerName.Value = m_computerName;
  60. info.LanGroup.Value = m_lanGroup;
  61. info.VerMajor = m_verMajor;
  62. info.VerMinor = m_verMinor;
  63. info.LanRoot.Value = m_lanGroup;
  64. response.WkstaInfo = new WorkstationInfo(info);
  65. }
  66. else
  67. {
  68. throw new NotImplementedException();
  69. }
  70. response.Result = Win32Error.ERROR_SUCCESS;
  71. return response;
  72. }
  73. public override Guid InterfaceGuid
  74. {
  75. get
  76. {
  77. return new Guid("6BFFD098-A112-3610-9833-46C3F87E345A");
  78. }
  79. }
  80. public override string PipeName
  81. {
  82. get
  83. {
  84. return "wkssvc";
  85. }
  86. }
  87. }
  88. }