SessionSetupAndXRequestExtended.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.SMB1
  12. {
  13. /// <summary>
  14. /// SMB_COM_SESSION_SETUP_ANDX Extended Request
  15. /// </summary>
  16. public class SessionSetupAndXRequestExtended : SMBAndXCommand
  17. {
  18. public const int ParametersLength = 24;
  19. // Parameters:
  20. public ushort MaxBufferSize;
  21. public ushort MaxMpxCount;
  22. public ushort VcNumber;
  23. public uint SessionKey;
  24. private ushort SecurityBlobLength;
  25. public uint Reserved;
  26. public ServerCapabilities Capabilities;
  27. // Data:
  28. public byte[] SecurityBlob;
  29. public string NativeOS; // SMB_STRING (If Unicode, this field MUST be aligned to start on a 2-byte boundary from the start of the SMB header)
  30. public string NativeLanMan; // SMB_STRING (this field WILL be aligned to start on a 2-byte boundary from the start of the SMB header)
  31. public SessionSetupAndXRequestExtended(): base()
  32. {
  33. }
  34. public SessionSetupAndXRequestExtended(byte[] buffer, int offset, bool isUnicode) : base(buffer, offset, isUnicode)
  35. {
  36. MaxBufferSize = LittleEndianConverter.ToUInt16(this.SMBParameters, 4);
  37. MaxMpxCount = LittleEndianConverter.ToUInt16(this.SMBParameters, 6);
  38. VcNumber = LittleEndianConverter.ToUInt16(this.SMBParameters, 8);
  39. SessionKey = LittleEndianConverter.ToUInt32(this.SMBParameters, 10);
  40. SecurityBlobLength = LittleEndianConverter.ToUInt16(this.SMBParameters, 14);
  41. Reserved = LittleEndianConverter.ToUInt32(this.SMBParameters, 16);
  42. Capabilities = (ServerCapabilities)LittleEndianConverter.ToUInt32(this.SMBParameters, 20);
  43. SecurityBlob = ByteReader.ReadBytes(this.SMBData, 0, SecurityBlobLength);
  44. int dataOffset = SecurityBlob.Length;
  45. if (isUnicode)
  46. {
  47. // A Unicode string MUST be aligned to a 16-bit boundary with respect to the beginning of the SMB Header.
  48. // Note: SMBData starts at an odd offset.
  49. int padding = (SecurityBlobLength + 1) % 2;
  50. dataOffset += padding;
  51. }
  52. NativeOS = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
  53. NativeLanMan = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
  54. }
  55. public override byte[] GetBytes(bool isUnicode)
  56. {
  57. SecurityBlobLength = (ushort)SecurityBlob.Length;
  58. this.SMBParameters = new byte[ParametersLength];
  59. LittleEndianWriter.WriteUInt16(this.SMBParameters, 4, MaxBufferSize);
  60. LittleEndianWriter.WriteUInt16(this.SMBParameters, 6, MaxMpxCount);
  61. LittleEndianWriter.WriteUInt16(this.SMBParameters, 8, VcNumber);
  62. LittleEndianWriter.WriteUInt32(this.SMBParameters, 10, SessionKey);
  63. LittleEndianWriter.WriteUInt16(this.SMBParameters, 14, SecurityBlobLength);
  64. LittleEndianWriter.WriteUInt32(this.SMBParameters, 16, Reserved);
  65. int padding = 0;
  66. if (isUnicode)
  67. {
  68. // A Unicode string MUST be aligned to a 16-bit boundary with respect to the beginning of the SMB Header.
  69. // Note: SMBData starts at an odd offset.
  70. padding = (SecurityBlobLength + 1) % 2;
  71. this.SMBData = new byte[SecurityBlob.Length + (NativeOS.Length + 1) * 2 + (NativeLanMan.Length + 1) * 2];
  72. }
  73. else
  74. {
  75. this.SMBData = new byte[SecurityBlob.Length + NativeOS.Length + 1 + NativeLanMan.Length + 1];
  76. }
  77. int offset = 0;
  78. ByteWriter.WriteBytes(this.SMBData, ref offset, SecurityBlob);
  79. offset += padding;
  80. SMB1Helper.WriteSMBString(this.SMBData, ref offset, isUnicode, NativeOS);
  81. SMB1Helper.WriteSMBString(this.SMBData, ref offset, isUnicode, NativeLanMan);
  82. return base.GetBytes(isUnicode);
  83. }
  84. public override CommandName CommandName
  85. {
  86. get
  87. {
  88. return CommandName.SMB_COM_SESSION_SETUP_ANDX;
  89. }
  90. }
  91. }
  92. }