SessionSetupAndXResponse.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. public class SessionSetupAndXResponse : SMBAndXCommand
  14. {
  15. public const int ParametersLength = 6;
  16. // Parameters:
  17. //CommandName AndXCommand;
  18. //byte AndXReserved;
  19. //ushort AndXOffset;
  20. public SessionSetupAction Action;
  21. // Data:
  22. 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)
  23. public string NativeLanMan; // SMB_STRING (this field WILL be aligned to start on a 2-byte boundary from the start of the SMB header)
  24. public string PrimaryDomain; // SMB_STRING (this field WILL be aligned to start on a 2-byte boundary from the start of the SMB header)
  25. public SessionSetupAndXResponse() : base()
  26. {
  27. }
  28. public SessionSetupAndXResponse(byte[] buffer, int offset, bool isUnicode) : base(buffer, offset, isUnicode)
  29. {
  30. Action = (SessionSetupAction)LittleEndianConverter.ToUInt16(this.SMBParameters, 4);
  31. int dataOffset = 0;
  32. if (isUnicode)
  33. {
  34. // A Unicode string MUST be aligned to a 16-bit boundary with respect to the beginning of the SMB Header.
  35. // Note: SMBData starts at an odd offset.
  36. dataOffset++;
  37. }
  38. NativeOS = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
  39. NativeLanMan = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
  40. PrimaryDomain = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
  41. }
  42. public override byte[] GetBytes(bool isUnicode)
  43. {
  44. this.SMBParameters = new byte[ParametersLength];
  45. LittleEndianWriter.WriteUInt16(this.SMBParameters, 4, (ushort)Action);
  46. int offset = 0;
  47. if (isUnicode)
  48. {
  49. // A Unicode string MUST be aligned to a 16-bit boundary with respect to the beginning of the SMB Header.
  50. // Note: SMBData starts at an odd offset.
  51. int padding = 1;
  52. this.SMBData = new byte[padding + NativeOS.Length * 2 + NativeLanMan.Length * 2 + PrimaryDomain.Length * 2 + 6];
  53. offset = padding;
  54. }
  55. else
  56. {
  57. this.SMBData = new byte[NativeOS.Length + NativeLanMan.Length + PrimaryDomain.Length + 3];
  58. }
  59. SMB1Helper.WriteSMBString(this.SMBData, ref offset, isUnicode, NativeOS);
  60. SMB1Helper.WriteSMBString(this.SMBData, ref offset, isUnicode, NativeLanMan);
  61. SMB1Helper.WriteSMBString(this.SMBData, ref offset, isUnicode, PrimaryDomain);
  62. return base.GetBytes(isUnicode);
  63. }
  64. public override CommandName CommandName
  65. {
  66. get
  67. {
  68. return CommandName.SMB_COM_SESSION_SETUP_ANDX;
  69. }
  70. }
  71. }
  72. }