ACL.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* Copyright (C) 2014 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
  12. {
  13. /// <summary>
  14. /// [MS-DTYP] ACL (Access Control List)
  15. /// </summary>
  16. public class ACL : List<ACE>
  17. {
  18. public byte AclRevision;
  19. public byte Sbz1;
  20. //ushort AclSize;
  21. //ushort AceCount;
  22. public ushort Sbz2;
  23. public ACL()
  24. {
  25. }
  26. public ACL(byte[] buffer, int offset)
  27. {
  28. AclRevision = ByteReader.ReadByte(buffer, offset + 0);
  29. Sbz1 = ByteReader.ReadByte(buffer, offset + 1);
  30. ushort AclSize = LittleEndianConverter.ToUInt16(buffer, offset + 2);
  31. ushort AceCount = LittleEndianConverter.ToUInt16(buffer, offset + 4);
  32. Sbz2 = LittleEndianConverter.ToUInt16(buffer, offset + 6);
  33. offset += 8;
  34. for (int index = 0; index < AceCount; index++)
  35. {
  36. ACE ace = ACE.GetAce(buffer, offset);
  37. this.Add(ace);
  38. offset += ace.Length;
  39. }
  40. }
  41. public void WriteBytes(byte[] buffer, ref int offset)
  42. {
  43. throw new NotImplementedException();
  44. }
  45. public int Length
  46. {
  47. get
  48. {
  49. throw new NotImplementedException();
  50. }
  51. }
  52. }
  53. }