CloseHelper.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. (SessionID: {0}, TreeID: {1}, FileId: {2})", request.Header.SessionID, request.Header.TreeID, request.FileId.Volatile);
  23. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  24. }
  25. NTStatus closeStatus = share.FileStore.CloseFile(openFile.Handle);
  26. if (closeStatus != NTStatus.STATUS_SUCCESS)
  27. {
  28. state.LogToServer(Severity.Information, "Close: Closing '{0}{1}' failed. NTStatus: {2}. (SessionID: {3}, TreeID: {4}, FileId: {5})", share.Name, openFile.Path, closeStatus, request.Header.SessionID, request.Header.TreeID, request.FileId.Volatile);
  29. return new ErrorResponse(request.CommandName, closeStatus);
  30. }
  31. state.LogToServer(Severity.Information, "Close: Closed '{0}{1}'. (SessionID: {2}, TreeID: {3}, FileId: {4})", share.Name, openFile.Path, request.Header.SessionID, request.Header.TreeID, request.FileId.Volatile);
  32. session.RemoveOpenFile(request.FileId);
  33. CloseResponse response = new CloseResponse();
  34. if (request.PostQueryAttributes)
  35. {
  36. FileNetworkOpenInformation fileInfo = NTFileStoreHelper.GetNetworkOpenInformation(share.FileStore, openFile.Path, session.SecurityContext);
  37. if (fileInfo != null)
  38. {
  39. response.CreationTime = fileInfo.CreationTime;
  40. response.LastAccessTime = fileInfo.LastAccessTime;
  41. response.LastWriteTime = fileInfo.LastWriteTime;
  42. response.ChangeTime = fileInfo.ChangeTime;
  43. response.AllocationSize = fileInfo.AllocationSize;
  44. response.EndofFile = fileInfo.EndOfFile;
  45. response.FileAttributes = fileInfo.FileAttributes;
  46. }
  47. }
  48. return response;
  49. }
  50. }
  51. }