ReadWriteResponseHelper.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 SMBLibrary.Authentication;
  10. using SMBLibrary.SMB2;
  11. using Utilities;
  12. namespace SMBLibrary.Server.SMB2
  13. {
  14. internal class ReadWriteResponseHelper
  15. {
  16. internal static SMB2Command GetReadResponse(ReadRequest 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. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  23. }
  24. if (share is FileSystemShare)
  25. {
  26. if (!((FileSystemShare)share).HasReadAccess(session.SecurityContext, openFile.Path))
  27. {
  28. state.LogToServer(Severity.Verbose, "Read from '{0}{1}' failed. User '{2}' was denied access.", share.Name, openFile.Path, session.UserName);
  29. return new ErrorResponse(request.CommandName, NTStatus.STATUS_ACCESS_DENIED);
  30. }
  31. }
  32. byte[] data;
  33. NTStatus readStatus = share.FileStore.ReadFile(out data, openFile.Handle, (long)request.Offset, (int)request.ReadLength);
  34. if (readStatus != NTStatus.STATUS_SUCCESS)
  35. {
  36. return new ErrorResponse(request.CommandName, readStatus);
  37. }
  38. ReadResponse response = new ReadResponse();
  39. response.Data = data;
  40. return response;
  41. }
  42. internal static SMB2Command GetWriteResponse(WriteRequest request, ISMBShare share, SMB2ConnectionState state)
  43. {
  44. SMB2Session session = state.GetSession(request.Header.SessionID);
  45. OpenFileObject openFile = session.GetOpenFileObject(request.FileId);
  46. if (openFile == null)
  47. {
  48. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  49. }
  50. if (share is FileSystemShare)
  51. {
  52. if (!((FileSystemShare)share).HasWriteAccess(session.SecurityContext, openFile.Path))
  53. {
  54. state.LogToServer(Severity.Verbose, "Write to '{0}{1}' failed. User '{2}' was denied access.", share.Name, openFile.Path, session.UserName);
  55. return new ErrorResponse(request.CommandName, NTStatus.STATUS_ACCESS_DENIED);
  56. }
  57. }
  58. int numberOfBytesWritten;
  59. NTStatus writeStatus = share.FileStore.WriteFile(out numberOfBytesWritten, openFile.Handle, (long)request.Offset, request.Data);
  60. if (writeStatus != NTStatus.STATUS_SUCCESS)
  61. {
  62. return new ErrorResponse(request.CommandName, writeStatus);
  63. }
  64. WriteResponse response = new WriteResponse();
  65. response.Count = (uint)numberOfBytesWritten;
  66. return response;
  67. }
  68. }
  69. }