SessionPacket.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 Utilities;
  10. namespace SMBLibrary.NetBios
  11. {
  12. /// <summary>
  13. /// [RFC 1002] 4.3.1. SESSION PACKET
  14. /// </summary>
  15. public abstract class SessionPacket
  16. {
  17. public const int HeaderLength = 4;
  18. public const int MaxSessionPacketLength = 131075;
  19. public SessionPacketTypeName Type;
  20. public byte Flags;
  21. private int TrailerLength; // 2 bytes + length extension bit
  22. public byte[] Trailer;
  23. public SessionPacket()
  24. {
  25. }
  26. public SessionPacket(byte[] buffer, int offset)
  27. {
  28. Type = (SessionPacketTypeName)ByteReader.ReadByte(buffer, offset + 0);
  29. Flags = ByteReader.ReadByte(buffer, offset + 1);
  30. TrailerLength = (Flags & 0x01) << 16 | BigEndianConverter.ToUInt16(buffer, offset + 2);
  31. Trailer = ByteReader.ReadBytes(buffer, offset + 4, TrailerLength);
  32. }
  33. public virtual byte[] GetBytes()
  34. {
  35. TrailerLength = this.Trailer.Length;
  36. if (TrailerLength > 0x1FFFF)
  37. {
  38. throw new ArgumentException("Invalid NBT packet length");
  39. }
  40. Flags = Convert.ToByte(TrailerLength > 0xFFFF);
  41. byte[] buffer = new byte[HeaderLength + Trailer.Length];
  42. ByteWriter.WriteByte(buffer, 0, (byte)Type);
  43. ByteWriter.WriteByte(buffer, 1, Flags);
  44. BigEndianWriter.WriteUInt16(buffer, 2, (ushort)(TrailerLength & 0xFFFF));
  45. ByteWriter.WriteBytes(buffer, 4, Trailer);
  46. return buffer;
  47. }
  48. public virtual int Length
  49. {
  50. get
  51. {
  52. return HeaderLength + Trailer.Length;
  53. }
  54. }
  55. public static SessionPacket GetSessionPacket(byte[] buffer, int offset)
  56. {
  57. SessionPacketTypeName type = (SessionPacketTypeName)ByteReader.ReadByte(buffer, offset);
  58. switch (type)
  59. {
  60. case SessionPacketTypeName.SessionMessage:
  61. return new SessionMessagePacket(buffer, offset);
  62. case SessionPacketTypeName.SessionRequest:
  63. return new SessionRequestPacket(buffer, offset);
  64. case SessionPacketTypeName.PositiveSessionResponse:
  65. return new PositiveSessionResponsePacket(buffer, offset);
  66. case SessionPacketTypeName.NegativeSessionResponse:
  67. return new NegativeSessionResponsePacket(buffer, offset);
  68. case SessionPacketTypeName.RetargetSessionResponse:
  69. return new SessionRetargetResponsePacket(buffer, offset);
  70. case SessionPacketTypeName.SessionKeepAlive:
  71. return new SessionKeepAlivePacket(buffer, offset);
  72. default:
  73. throw new InvalidRequestException("Invalid NetBIOS session packet type: 0x" + type.ToString("X"));
  74. }
  75. }
  76. }
  77. }