TransactionQueryNamedPipeInfoResponse.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.SMB1
  12. {
  13. /// <summary>
  14. /// TRANS_QUERY_NMPIPE_INFO Response
  15. /// </summary>
  16. public class TransactionQueryNamedPipeInfoResponse : TransactionSubcommand
  17. {
  18. // Parameters:
  19. public ushort OutputBufferSize;
  20. public ushort InputBufferSize;
  21. public byte MaximumInstances;
  22. public byte CurrentInstances;
  23. public byte PipeNameLength;
  24. public string PipeName; // SMB_STRING (this field WILL be aligned to start on a 2-byte boundary from the start of the SMB header)
  25. public TransactionQueryNamedPipeInfoResponse() : base()
  26. {}
  27. public TransactionQueryNamedPipeInfoResponse(byte[] parameters, bool isUnicode) : base()
  28. {
  29. OutputBufferSize = LittleEndianConverter.ToUInt16(parameters, 0);
  30. InputBufferSize = LittleEndianConverter.ToUInt16(parameters, 2);
  31. MaximumInstances = ByteReader.ReadByte(parameters, 4);
  32. CurrentInstances = ByteReader.ReadByte(parameters, 5);
  33. PipeNameLength = ByteReader.ReadByte(parameters, 6);
  34. // Note: Trans_Parameters is aligned to 4 byte boundary
  35. PipeName = SMB1Helper.ReadSMBString(parameters, 8, isUnicode);
  36. }
  37. public override byte[] GetParameters(bool isUnicode)
  38. {
  39. int length = 8;
  40. if (isUnicode)
  41. {
  42. length += PipeName.Length * 2 + 2;
  43. }
  44. else
  45. {
  46. length += PipeName.Length + 1;
  47. }
  48. byte[] parameters = new byte[length];
  49. LittleEndianWriter.WriteUInt16(parameters, 0, OutputBufferSize);
  50. LittleEndianWriter.WriteUInt16(parameters, 2, InputBufferSize);
  51. ByteWriter.WriteByte(parameters, 4, MaximumInstances);
  52. ByteWriter.WriteByte(parameters, 5, CurrentInstances);
  53. ByteWriter.WriteByte(parameters, 6, PipeNameLength);
  54. SMB1Helper.WriteSMBString(parameters, 8, isUnicode, PipeName);
  55. return parameters; ;
  56. }
  57. public override TransactionSubcommandName SubcommandName
  58. {
  59. get
  60. {
  61. return TransactionSubcommandName.TRANS_QUERY_NMPIPE_INFO;
  62. }
  63. }
  64. }
  65. }