QueryInfoHelper.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 QueryInfoHelper
  15. {
  16. internal static SMB2Command GetQueryInfoResponse(QueryInfoRequest request, ISMBShare share, SMB2ConnectionState state)
  17. {
  18. SMB2Session session = state.GetSession(request.Header.SessionID);
  19. if (request.InfoType == InfoType.File)
  20. {
  21. OpenFileObject openFile = session.GetOpenFileObject(request.FileId);
  22. if (openFile == null)
  23. {
  24. state.LogToServer(Severity.Verbose, "GetFileInformation failed. Invalid FileId.");
  25. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  26. }
  27. if (share is FileSystemShare)
  28. {
  29. if (!((FileSystemShare)share).HasReadAccess(session.SecurityContext, openFile.Path))
  30. {
  31. state.LogToServer(Severity.Verbose, "GetFileInformation on '{0}{1}' failed. User '{2}' was denied access.", share.Name, openFile.Path, session.UserName);
  32. return new ErrorResponse(request.CommandName, NTStatus.STATUS_ACCESS_DENIED);
  33. }
  34. }
  35. FileInformation fileInformation;
  36. NTStatus queryStatus = share.FileStore.GetFileInformation(out fileInformation, openFile.Handle, request.FileInformationClass);
  37. if (queryStatus != NTStatus.STATUS_SUCCESS)
  38. {
  39. state.LogToServer(Severity.Verbose, "GetFileInformation on '{0}{1}' failed. Information class: {2}, NTStatus: {3}", share.Name, openFile.Path, request.FileInformationClass, queryStatus);
  40. return new ErrorResponse(request.CommandName, queryStatus);
  41. }
  42. state.LogToServer(Severity.Information, "GetFileInformation on '{0}{1}' succeeded. Information class: {2}", share.Name, openFile.Path, request.FileInformationClass);
  43. QueryInfoResponse response = new QueryInfoResponse();
  44. response.SetFileInformation(fileInformation);
  45. return response;
  46. }
  47. else if (request.InfoType == InfoType.FileSystem)
  48. {
  49. if (share is FileSystemShare)
  50. {
  51. if (!((FileSystemShare)share).HasReadAccess(session.SecurityContext, @"\"))
  52. {
  53. state.LogToServer(Severity.Verbose, "GetFileSystemInformation on '{0}' failed. User '{1}' was denied access.", share.Name, session.UserName);
  54. return new ErrorResponse(request.CommandName, NTStatus.STATUS_ACCESS_DENIED);
  55. }
  56. FileSystemInformation fileSystemInformation;
  57. NTStatus queryStatus = share.FileStore.GetFileSystemInformation(out fileSystemInformation, request.FileSystemInformationClass);
  58. if (queryStatus != NTStatus.STATUS_SUCCESS)
  59. {
  60. state.LogToServer(Severity.Verbose, "GetFileSystemInformation on '{0}' failed. Information class: {1}, NTStatus: {2}", share.Name, request.FileSystemInformationClass, queryStatus);
  61. return new ErrorResponse(request.CommandName, queryStatus);
  62. }
  63. state.LogToServer(Severity.Information, "GetFileSystemInformation on '{0}' succeeded. Information class: {1}", share.Name, request.FileSystemInformationClass);
  64. QueryInfoResponse response = new QueryInfoResponse();
  65. response.SetFileSystemInformation(fileSystemInformation);
  66. return response;
  67. }
  68. }
  69. return new ErrorResponse(request.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
  70. }
  71. }
  72. }