ServerResponseHelper.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.IO;
  10. using System.Text;
  11. using SMBLibrary.SMB1;
  12. using Utilities;
  13. namespace SMBLibrary.Server.SMB1
  14. {
  15. internal partial class ServerResponseHelper
  16. {
  17. internal static SMB1Command GetCloseResponse(SMB1Header header, CloseRequest request, ISMBShare share, SMB1ConnectionState state)
  18. {
  19. SMB1Session session = state.GetSession(header.UID);
  20. OpenFileObject openFile = session.GetOpenFileObject(request.FID);
  21. if (openFile == null)
  22. {
  23. state.LogToServer(Severity.Verbose, "Close failed. Invalid FID.");
  24. header.Status = NTStatus.STATUS_SMB_BAD_FID;
  25. return new ErrorResponse(request.CommandName);
  26. }
  27. state.LogToServer(Severity.Information, "Close: Closing '{0}{1}'", share.Name, openFile.Path);
  28. header.Status = share.FileStore.CloseFile(openFile.Handle);
  29. if (header.Status != NTStatus.STATUS_SUCCESS)
  30. {
  31. return new ErrorResponse(request.CommandName);
  32. }
  33. session.RemoveOpenFile(request.FID);
  34. return new CloseResponse();
  35. }
  36. internal static SMB1Command GetFindClose2Request(SMB1Header header, FindClose2Request request, SMB1ConnectionState state)
  37. {
  38. SMB1Session session = state.GetSession(header.UID);
  39. session.RemoveOpenSearch(request.SearchHandle);
  40. return new FindClose2Response();
  41. }
  42. internal static List<SMB1Command> GetEchoResponse(EchoRequest request)
  43. {
  44. List<SMB1Command> response = new List<SMB1Command>();
  45. for (int index = 0; index < request.EchoCount; index++)
  46. {
  47. EchoResponse echo = new EchoResponse();
  48. echo.SequenceNumber = (ushort)index;
  49. echo.SMBData = request.SMBData;
  50. response.Add(echo);
  51. }
  52. return response;
  53. }
  54. }
  55. }