AccessModeOptions.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* Copyright (C) 2014-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.Text;
  10. using Utilities;
  11. namespace SMBLibrary.SMB1
  12. {
  13. public enum AccessMode : byte
  14. {
  15. Read = 0x00,
  16. Write = 0x01,
  17. ReadWrite = 0x02,
  18. Execute = 0x03,
  19. }
  20. public enum SharingMode : byte
  21. {
  22. Compatibility = 0x00,
  23. DenyReadWriteExecute = 0x01, // Exclusive use
  24. DenyWrite = 0x02,
  25. DenyReadExecute = 0x03,
  26. DenyNothing = 0x04,
  27. }
  28. public enum ReferenceLocality : byte
  29. {
  30. Unknown = 0x00,
  31. Sequential = 0x01,
  32. Random = 0x02,
  33. RandomWithLocality = 0x03,
  34. }
  35. public enum CachedMode : byte
  36. {
  37. CachingAllowed = 0x00,
  38. DoNotCacheFile = 0x01,
  39. }
  40. public enum WriteThroughMode : byte
  41. {
  42. Disabled = 0x00,
  43. /// <summary>
  44. /// Write-through mode.
  45. /// If this flag is set, then no read ahead or write behind is allowed on this file or device.
  46. /// When the response is returned, data is expected to be on the disk or device.
  47. /// </summary>
  48. WriteThrough = 0x01,
  49. }
  50. public struct AccessModeOptions // 2 bytes
  51. {
  52. public const int Length = 2;
  53. public AccessMode AccessMode;
  54. public SharingMode SharingMode;
  55. public ReferenceLocality ReferenceLocality;
  56. public CachedMode CachedMode;
  57. public WriteThroughMode WriteThroughMode;
  58. public AccessModeOptions(byte[] buffer, int offset)
  59. {
  60. AccessMode = (AccessMode)(buffer[offset + 0] & 0x07);
  61. SharingMode = (SharingMode)((buffer[offset + 0] & 0x70) >> 4);
  62. ReferenceLocality = (ReferenceLocality)(buffer[offset + 1] & 0x07);
  63. CachedMode = (CachedMode)((buffer[offset + 1] & 0x10) >> 4);
  64. WriteThroughMode = (WriteThroughMode)((buffer[offset + 1] & 0x40) >> 6);
  65. }
  66. public void WriteBytes(byte[] buffer, int offset)
  67. {
  68. buffer[offset + 0] = (byte)((byte)AccessMode & 0x07);
  69. buffer[offset + 0] |= (byte)(((byte)SharingMode << 4) & 0x70);
  70. buffer[offset + 1] = (byte)((byte)ReferenceLocality & 0x07);
  71. buffer[offset + 1] |= (byte)(((byte)CachedMode << 4) & 0x10);
  72. buffer[offset + 1] |= (byte)(((byte)WriteThroughMode << 6) & 0x40);
  73. }
  74. public void WriteBytes(byte[] buffer, ref int offset)
  75. {
  76. WriteBytes(buffer, offset);
  77. offset += Length;
  78. }
  79. public static AccessModeOptions Read(byte[] buffer, ref int offset)
  80. {
  81. offset += Length;
  82. return new AccessModeOptions(buffer, offset - Length);
  83. }
  84. }
  85. }