NTFileSystemAdapter.Set.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /* Copyright (C) 2014-2018 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 Utilities;
  11. namespace SMBLibrary
  12. {
  13. public partial class NTFileSystemAdapter
  14. {
  15. public NTStatus SetFileInformation(object handle, FileInformation information)
  16. {
  17. FileHandle fileHandle = (FileHandle)handle;
  18. if (information is FileBasicInformation)
  19. {
  20. FileBasicInformation basicInformation = (FileBasicInformation)information;
  21. bool isHidden = ((basicInformation.FileAttributes & FileAttributes.Hidden) > 0);
  22. bool isReadonly = (basicInformation.FileAttributes & FileAttributes.ReadOnly) > 0;
  23. bool isArchived = (basicInformation.FileAttributes & FileAttributes.Archive) > 0;
  24. try
  25. {
  26. m_fileSystem.SetAttributes(fileHandle.Path, isHidden, isReadonly, isArchived);
  27. }
  28. catch (Exception ex)
  29. {
  30. NTStatus status = ToNTStatus(ex);
  31. Log(Severity.Verbose, "SetFileInformation: Failed to set file attributes on '{0}'. {1}.", fileHandle.Path, status);
  32. return status;
  33. }
  34. try
  35. {
  36. m_fileSystem.SetDates(fileHandle.Path, basicInformation.CreationTime, basicInformation.LastWriteTime, basicInformation.LastAccessTime);
  37. }
  38. catch (Exception ex)
  39. {
  40. NTStatus status = ToNTStatus(ex);
  41. Log(Severity.Verbose, "SetFileInformation: Failed to set file dates on '{0}'. {1}.", fileHandle.Path, status);
  42. return status;
  43. }
  44. return NTStatus.STATUS_SUCCESS;
  45. }
  46. else if (information is FileRenameInformationType2)
  47. {
  48. FileRenameInformationType2 renameInformation = (FileRenameInformationType2)information;
  49. string newFileName = renameInformation.FileName;
  50. if (!newFileName.StartsWith(@"\"))
  51. {
  52. newFileName = @"\" + newFileName;
  53. }
  54. if (fileHandle.Stream != null)
  55. {
  56. fileHandle.Stream.Close();
  57. }
  58. // Note: it's possible that we just want to upcase / downcase a filename letter.
  59. try
  60. {
  61. if (renameInformation.ReplaceIfExists && (IsFileExists(newFileName)))
  62. {
  63. m_fileSystem.Delete(newFileName);
  64. }
  65. m_fileSystem.Move(fileHandle.Path, newFileName);
  66. Log(Severity.Information, "SetFileInformation: Renamed '{0}' to '{1}'", fileHandle.Path, newFileName);
  67. }
  68. catch (Exception ex)
  69. {
  70. NTStatus status = ToNTStatus(ex);
  71. Log(Severity.Verbose, "SetFileInformation: Cannot rename '{0}' to '{1}'. {2}.", fileHandle.Path, newFileName, status);
  72. return status;
  73. }
  74. fileHandle.Path = newFileName;
  75. return NTStatus.STATUS_SUCCESS;
  76. }
  77. else if (information is FileDispositionInformation)
  78. {
  79. if (((FileDispositionInformation)information).DeletePending)
  80. {
  81. // We're supposed to delete the file on close, but it's too late to report errors at this late stage
  82. if (fileHandle.Stream != null)
  83. {
  84. fileHandle.Stream.Close();
  85. }
  86. try
  87. {
  88. m_fileSystem.Delete(fileHandle.Path);
  89. Log(Severity.Information, "SetFileInformation: Deleted '{0}'", fileHandle.Path);
  90. }
  91. catch (Exception ex)
  92. {
  93. NTStatus status = ToNTStatus(ex);
  94. Log(Severity.Information, "SetFileInformation: Error deleting '{0}'. {1}.", fileHandle.Path, status);
  95. return status;
  96. }
  97. }
  98. return NTStatus.STATUS_SUCCESS;
  99. }
  100. else if (information is FileAllocationInformation)
  101. {
  102. long allocationSize = ((FileAllocationInformation)information).AllocationSize;
  103. try
  104. {
  105. fileHandle.Stream.SetLength(allocationSize);
  106. }
  107. catch (Exception ex)
  108. {
  109. NTStatus status = ToNTStatus(ex);
  110. Log(Severity.Verbose, "SetFileInformation: Cannot set allocation for '{0}'. {1}.", fileHandle.Path, status);
  111. return status;
  112. }
  113. return NTStatus.STATUS_SUCCESS;
  114. }
  115. else if (information is FileEndOfFileInformation)
  116. {
  117. long endOfFile = ((FileEndOfFileInformation)information).EndOfFile;
  118. try
  119. {
  120. fileHandle.Stream.SetLength(endOfFile);
  121. }
  122. catch (Exception ex)
  123. {
  124. NTStatus status = ToNTStatus(ex);
  125. Log(Severity.Verbose, "SetFileInformation: Cannot set end of file for '{0}'. {1}.", fileHandle.Path, status);
  126. return status;
  127. }
  128. return NTStatus.STATUS_SUCCESS;
  129. }
  130. else
  131. {
  132. return NTStatus.STATUS_NOT_IMPLEMENTED;
  133. }
  134. }
  135. private bool IsFileExists(string path)
  136. {
  137. try
  138. {
  139. m_fileSystem.GetEntry(path);
  140. }
  141. catch (FileNotFoundException)
  142. {
  143. return false;
  144. }
  145. catch (DirectoryNotFoundException)
  146. {
  147. return false;
  148. }
  149. return true;
  150. }
  151. }
  152. }