RPCPipeStream.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* Copyright (C) 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.IO;
  10. using SMBLibrary.RPC;
  11. namespace SMBLibrary.Services
  12. {
  13. public class RPCPipeStream : Stream
  14. {
  15. private RemoteService m_service;
  16. private MemoryStream m_outputStream;
  17. public RPCPipeStream(RemoteService service)
  18. {
  19. m_service = service;
  20. m_outputStream = new MemoryStream();
  21. }
  22. public override int Read(byte[] buffer, int offset, int count)
  23. {
  24. return m_outputStream.Read(buffer, offset, count);
  25. }
  26. public override void Write(byte[] buffer, int offset, int count)
  27. {
  28. int lengthOfPDUs = 0;
  29. do
  30. {
  31. RPCPDU rpcRequest = RPCPDU.GetPDU(buffer, offset);
  32. lengthOfPDUs += rpcRequest.FragmentLength;
  33. RPCPDU rpcReply = RemoteServiceHelper.GetRPCReply(rpcRequest, m_service);
  34. byte[] replyData = rpcReply.GetBytes();
  35. Append(replyData);
  36. }
  37. while (lengthOfPDUs < count);
  38. }
  39. private void Append(byte[] buffer)
  40. {
  41. long position = m_outputStream.Position;
  42. m_outputStream.Position = m_outputStream.Length;
  43. m_outputStream.Write(buffer, 0, buffer.Length);
  44. m_outputStream.Seek(position, SeekOrigin.Begin);
  45. }
  46. public override void Flush()
  47. {
  48. }
  49. public override void Close()
  50. {
  51. m_outputStream.Close();
  52. }
  53. public override long Seek(long offset, SeekOrigin origin)
  54. {
  55. throw new NotSupportedException();
  56. }
  57. public override void SetLength(long value)
  58. {
  59. throw new NotSupportedException();
  60. }
  61. public override bool CanSeek
  62. {
  63. get
  64. {
  65. return false;
  66. }
  67. }
  68. public override bool CanRead
  69. {
  70. get
  71. {
  72. return m_outputStream.CanRead;
  73. }
  74. }
  75. public override bool CanWrite
  76. {
  77. get
  78. {
  79. return m_outputStream.CanWrite;
  80. }
  81. }
  82. public override long Length
  83. {
  84. get
  85. {
  86. // Stream.Length only works on Stream implementations where seeking is available.
  87. throw new NotSupportedException();
  88. }
  89. }
  90. public override long Position
  91. {
  92. get
  93. {
  94. throw new NotSupportedException();
  95. }
  96. set
  97. {
  98. throw new NotSupportedException();
  99. }
  100. }
  101. }
  102. }