NameRegistrationRequest.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.IO;
  10. using System.Net;
  11. using System.Text;
  12. using Utilities;
  13. namespace SMBLibrary.NetBios
  14. {
  15. /// <summary>
  16. /// [RFC 1002] 4.2.2. NAME REGISTRATION REQUEST
  17. /// </summary>
  18. public class NameRegistrationRequest
  19. {
  20. public const int DataLength = 6;
  21. public NameServicePacketHeader Header;
  22. public QuestionSection Question;
  23. public ResourceRecord Resource;
  24. public NameFlags NameFlags;
  25. public byte[] Address; // IPv4 address
  26. public NameRegistrationRequest()
  27. {
  28. Header = new NameServicePacketHeader();
  29. Header.OpCode = NameServiceOperation.RegistrationRequest;
  30. Header.QDCount = 1;
  31. Header.ARCount = 1;
  32. Header.Flags = OperationFlags.Broadcast | OperationFlags.RecursionDesired;
  33. Question = new QuestionSection();
  34. Resource = new ResourceRecord();
  35. Address = new byte[4];
  36. }
  37. public NameRegistrationRequest(string machineName, NetBiosSuffix suffix, IPAddress address) : this()
  38. {
  39. Question.Name = NetBiosUtils.GetMSNetBiosName(machineName, suffix);
  40. Address = address.GetAddressBytes();
  41. }
  42. public byte[] GetBytes()
  43. {
  44. Resource.Data = GetData();
  45. MemoryStream stream = new MemoryStream();
  46. Header.WriteBytes(stream);
  47. Question.WriteBytes(stream);
  48. Resource.WriteBytes(stream, NameServicePacketHeader.Length);
  49. return stream.ToArray();
  50. }
  51. public byte[] GetData()
  52. {
  53. byte[] data = new byte[DataLength];
  54. BigEndianWriter.WriteUInt16(data, 0, (ushort)NameFlags);
  55. ByteWriter.WriteBytes(data, 2, Address, 4);
  56. return data;
  57. }
  58. }
  59. }