TreeConnectAndXRequest.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. /// SMB_COM_TREE_CONNECT_ANDX Request
  15. /// </summary>
  16. public class TreeConnectAndXRequest : SMBAndXCommand
  17. {
  18. public const int ParametersLength = 8;
  19. // Parameters:
  20. public TreeConnectFlags Flags;
  21. //ushort PasswordLength;
  22. // Data:
  23. public byte[] Password;
  24. // Padding
  25. public string Path; // SMB_STRING (If Unicode, this field MUST be aligned to start on a 2-byte boundary from the start of the SMB header)
  26. public ServiceName Service; // OEM string
  27. public TreeConnectAndXRequest(byte[] buffer, int offset, bool isUnicode) : base(buffer, offset, isUnicode)
  28. {
  29. int parametersOffset = 4;
  30. Flags = (TreeConnectFlags)LittleEndianReader.ReadUInt16(this.SMBParameters, ref parametersOffset);
  31. ushort passwordLength = LittleEndianReader.ReadUInt16(this.SMBParameters, ref parametersOffset);
  32. int dataOffset = 0;
  33. Password = ByteReader.ReadBytes(this.SMBData, ref dataOffset, passwordLength);
  34. if (isUnicode)
  35. {
  36. // wordCount is 1 byte
  37. int padding = (1 + passwordLength) % 2;
  38. dataOffset += padding;
  39. }
  40. Path = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
  41. // Should be read as OEM string but it doesn't really matter
  42. string serviceString = ByteReader.ReadNullTerminatedAnsiString(this.SMBData, ref dataOffset);
  43. Service = ServiceNameHelper.GetServiceName(serviceString);
  44. }
  45. public override byte[] GetBytes(bool isUnicode)
  46. {
  47. ushort passwordLength = (ushort)Password.Length;
  48. this.SMBParameters = new byte[ParametersLength];
  49. int parametersOffset = 4;
  50. LittleEndianWriter.WriteUInt16(this.SMBParameters, ref parametersOffset, (ushort)Flags);
  51. LittleEndianWriter.WriteUInt16(this.SMBParameters, ref parametersOffset, passwordLength);
  52. string serviceString = ServiceNameHelper.GetServiceString(Service);
  53. int dataLength = Password.Length + serviceString.Length;
  54. if (isUnicode)
  55. {
  56. int padding = (1 + passwordLength) % 2;
  57. dataLength += Path.Length * 2 + 2 + padding;
  58. }
  59. else
  60. {
  61. dataLength += Path.Length + 1;
  62. }
  63. this.SMBData = new byte[dataLength];
  64. int dataOffset = 0;
  65. ByteWriter.WriteBytes(this.SMBData, ref dataOffset, Password);
  66. if (isUnicode)
  67. {
  68. // wordCount is 1 byte
  69. int padding = (1 + passwordLength) % 2;
  70. dataOffset += padding;
  71. }
  72. SMB1Helper.WriteSMBString(this.SMBData, ref dataOffset, isUnicode, Path);
  73. ByteWriter.WriteNullTerminatedAnsiString(this.SMBData, ref dataOffset, serviceString);
  74. return base.GetBytes(isUnicode);
  75. }
  76. public override CommandName CommandName
  77. {
  78. get
  79. {
  80. return CommandName.SMB_COM_TREE_CONNECT_ANDX;
  81. }
  82. }
  83. }
  84. }