ShareEnum.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* Copyright (C) 2014-2018 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 SMBLibrary.RPC;
  10. using Utilities;
  11. namespace SMBLibrary.Services
  12. {
  13. /// <summary>
  14. /// [MS-SRVS] SHARE_ENUM_STRUCT and the embedded SHARE_ENUM_UNION
  15. /// </summary>
  16. public class ShareEnum : INDRStructure
  17. {
  18. public uint Level;
  19. public IShareInfoContainer Info;
  20. public ShareEnum()
  21. {
  22. }
  23. public ShareEnum(uint level)
  24. {
  25. Level = level;
  26. }
  27. public ShareEnum(IShareInfoContainer info)
  28. {
  29. Level = info.Level;
  30. Info = info;
  31. }
  32. public ShareEnum(NDRParser parser)
  33. {
  34. Read(parser);
  35. }
  36. public void Read(NDRParser parser)
  37. {
  38. parser.BeginStructure(); // SHARE_ENUM_STRUCT
  39. Level = parser.ReadUInt32();
  40. parser.BeginStructure(); // SHARE_ENUM_UNION
  41. // 14.3.8 - For a non-encapsulated union, the discriminant is marshalled into the transmitted data stream twice.
  42. // once as the field or parameter, which is referenced by the switch_is construct, in the procedure argument list;
  43. // and once as the first part of the union representation.
  44. uint level = parser.ReadUInt32();
  45. switch (level)
  46. {
  47. case 0:
  48. ShareInfo0Container info0 = null;
  49. parser.ReadEmbeddedStructureFullPointer<ShareInfo0Container>(ref info0);
  50. Info = info0;
  51. break;
  52. case 1:
  53. ShareInfo1Container info1 = null;
  54. parser.ReadEmbeddedStructureFullPointer<ShareInfo1Container>(ref info1);
  55. Info = info1;
  56. break;
  57. case 2:
  58. case 501:
  59. case 502:
  60. case 503:
  61. throw new NotImplementedException();
  62. default:
  63. break;
  64. }
  65. parser.EndStructure(); // SHARE_ENUM_UNION
  66. parser.EndStructure(); // SHARE_ENUM_STRUCT
  67. }
  68. public void Write(NDRWriter writer)
  69. {
  70. if (Info != null && Level != Info.Level)
  71. {
  72. throw new ArgumentException("SHARE_ENUM_STRUCT Level mismatch");
  73. }
  74. writer.BeginStructure(); // SHARE_ENUM_STRUCT
  75. writer.WriteUInt32(Level);
  76. writer.BeginStructure(); // SHARE_ENUM_UNION
  77. writer.WriteUInt32(Level);
  78. writer.WriteEmbeddedStructureFullPointer(Info);
  79. writer.EndStructure(); // SHARE_ENUM_UNION
  80. writer.EndStructure(); // SHARE_ENUM_STRUCT
  81. }
  82. }
  83. }