BindPDU.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.RPC
  12. {
  13. /// <summary>
  14. /// rpcconn_bind_hdr_t
  15. /// </summary>
  16. public class BindPDU : RPCPDU
  17. {
  18. public ushort MaxTransmitFragmentSize; // max_xmit_frag
  19. public ushort MaxReceiveFragmentSize; // max_recv_frag
  20. public uint AssociationGroupID; // assoc_group_id
  21. public ContextList ContextList;
  22. public byte[] AuthVerifier;
  23. public BindPDU() : base()
  24. {
  25. PacketType = PacketTypeName.Bind;
  26. ContextList = new ContextList();
  27. AuthVerifier = new byte[0];
  28. }
  29. public BindPDU(byte[] buffer, int offset) : base(buffer, offset)
  30. {
  31. offset += RPCPDU.CommonFieldsLength;
  32. MaxTransmitFragmentSize = LittleEndianReader.ReadUInt16(buffer, ref offset);
  33. MaxReceiveFragmentSize = LittleEndianReader.ReadUInt16(buffer, ref offset);
  34. AssociationGroupID = LittleEndianReader.ReadUInt32(buffer, ref offset);
  35. ContextList = new ContextList(buffer, offset);
  36. offset += ContextList.Length;
  37. AuthVerifier = ByteReader.ReadBytes(buffer, offset, AuthLength);
  38. }
  39. public override byte[] GetBytes()
  40. {
  41. AuthLength =(ushort)AuthVerifier.Length;
  42. FragmentLength = (ushort)(RPCPDU.CommonFieldsLength + 8 + ContextList.Length + AuthLength);
  43. byte[] buffer = new byte[FragmentLength];
  44. WriteCommonFieldsBytes(buffer);
  45. int offset = RPCPDU.CommonFieldsLength;
  46. LittleEndianWriter.WriteUInt16(buffer, ref offset, MaxTransmitFragmentSize);
  47. LittleEndianWriter.WriteUInt16(buffer, ref offset, MaxReceiveFragmentSize);
  48. LittleEndianWriter.WriteUInt32(buffer, ref offset, AssociationGroupID);
  49. ContextList.WriteBytes(buffer, ref offset);
  50. ByteWriter.WriteBytes(buffer, offset, AuthVerifier);
  51. return buffer;
  52. }
  53. }
  54. }