CloseHelper.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* Copyright (C) 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 SMBLibrary.SMB2;
  11. using Utilities;
  12. namespace SMBLibrary.Server.SMB2
  13. {
  14. internal class CloseHelper
  15. {
  16. internal static SMB2Command GetCloseResponse(CloseRequest request, ISMBShare share, SMB2ConnectionState state)
  17. {
  18. SMB2Session session = state.GetSession(request.Header.SessionID);
  19. OpenFileObject openFile = session.GetOpenFileObject(request.FileId);
  20. if (openFile == null)
  21. {
  22. state.LogToServer(Severity.Verbose, "Close failed. Invalid FileId.");
  23. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  24. }
  25. state.LogToServer(Severity.Information, "Close: Closing '{0}{1}'", share.Name, openFile.Path);
  26. NTStatus closeStatus = share.FileStore.CloseFile(openFile.Handle);
  27. if (closeStatus != NTStatus.STATUS_SUCCESS)
  28. {
  29. return new ErrorResponse(request.CommandName, closeStatus);
  30. }
  31. session.RemoveOpenFile(request.FileId);
  32. CloseResponse response = new CloseResponse();
  33. if (request.PostQueryAttributes)
  34. {
  35. FileNetworkOpenInformation fileInfo = NTFileStoreHelper.GetNetworkOpenInformation(share.FileStore, openFile.Path, session.SecurityContext);
  36. if (fileInfo != null)
  37. {
  38. response.CreationTime = fileInfo.CreationTime;
  39. response.LastAccessTime = fileInfo.LastAccessTime;
  40. response.LastWriteTime = fileInfo.LastWriteTime;
  41. response.ChangeTime = fileInfo.ChangeTime;
  42. response.AllocationSize = fileInfo.AllocationSize;
  43. response.EndofFile = fileInfo.EndOfFile;
  44. response.FileAttributes = fileInfo.FileAttributes;
  45. }
  46. }
  47. return response;
  48. }
  49. }
  50. }