SetInfoHelper.cs 4.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 SetInfoHelper
  15. {
  16. internal static SMB2Command GetSetInfoResponse(SetInfoRequest 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, "SetFileInformation failed. Invalid FileId. (SessionID: {0}, TreeID: {1}, FileId: {2})", request.Header.SessionID, request.Header.TreeID, request.FileId.Volatile);
  25. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  26. }
  27. if (share is FileSystemShare)
  28. {
  29. if (!((FileSystemShare)share).HasWriteAccess(session.SecurityContext, openFile.Path))
  30. {
  31. state.LogToServer(Severity.Verbose, "SetFileInformation 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 information;
  36. try
  37. {
  38. information = FileInformation.GetFileInformation(request.Buffer, 0, request.FileInformationClass);
  39. }
  40. catch (UnsupportedInformationLevelException)
  41. {
  42. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information class: {2}, NTStatus: STATUS_INVALID_INFO_CLASS", share.Name, openFile.Path, request.FileInformationClass);
  43. return new ErrorResponse(request.CommandName, NTStatus.STATUS_INVALID_INFO_CLASS);
  44. }
  45. catch (NotImplementedException)
  46. {
  47. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information class: {2}, NTStatus: STATUS_NOT_SUPPORTED", share.Name, openFile.Path, request.FileInformationClass);
  48. return new ErrorResponse(request.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
  49. }
  50. catch (Exception)
  51. {
  52. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information class: {2}, NTStatus: STATUS_INVALID_PARAMETER", share.Name, openFile.Path, request.FileInformationClass);
  53. return new ErrorResponse(request.CommandName, NTStatus.STATUS_INVALID_PARAMETER);
  54. }
  55. if ((share is FileSystemShare) && (information is FileRenameInformationType2))
  56. {
  57. string newFileName = ((FileRenameInformationType2)information).FileName;
  58. if (!newFileName.StartsWith(@"\"))
  59. {
  60. newFileName = @"\" + newFileName;
  61. }
  62. if (!((FileSystemShare)share).HasWriteAccess(session.SecurityContext, newFileName))
  63. {
  64. state.LogToServer(Severity.Verbose, "SetFileInformation: Rename '{0}{1}' to '{0}{2}' failed. User '{3}' was denied access.", share.Name, openFile.Path, newFileName, session.UserName);
  65. return new ErrorResponse(request.CommandName, NTStatus.STATUS_ACCESS_DENIED);
  66. }
  67. }
  68. NTStatus status = share.FileStore.SetFileInformation(openFile.Handle, information);
  69. if (status != NTStatus.STATUS_SUCCESS)
  70. {
  71. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information class: {2}, NTStatus: {3}", share.Name, openFile.Path, request.FileInformationClass, status);
  72. return new ErrorResponse(request.CommandName, status);
  73. }
  74. state.LogToServer(Severity.Information, "SetFileInformation on '{0}{1}' succeeded. Information class: {2}", share.Name, openFile.Path, request.FileInformationClass);
  75. return new SetInfoResponse();
  76. }
  77. return new ErrorResponse(request.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
  78. }
  79. }
  80. }