Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

192 rindas
5.9 KiB

  1. #if WINDOWS_UWP
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Runtime.InteropServices.WindowsRuntime;
  7. using System.Threading;
  8. using System.Threading.Tasks;
  9. using Windows.Networking;
  10. using Windows.Networking.Sockets;
  11. using Windows.Security.Cryptography.Certificates;
  12. using MQTTnet.Channel;
  13. using MQTTnet.Client;
  14. namespace MQTTnet.Implementations
  15. {
  16. public sealed class MqttTcpChannel : IMqttChannel
  17. {
  18. // ReSharper disable once MemberCanBePrivate.Global
  19. // ReSharper disable once AutoPropertyCanBeMadeGetOnly.Global
  20. public static int BufferSize { get; set; } = 4096; // Can be changed for fine tuning by library user.
  21. private readonly int _bufferSize = BufferSize;
  22. private readonly MqttClientTcpOptions _options;
  23. private StreamSocket _socket;
  24. private Stream _readStream;
  25. private Stream _writeStream;
  26. public MqttTcpChannel(MqttClientTcpOptions options)
  27. {
  28. _options = options ?? throw new ArgumentNullException(nameof(options));
  29. _bufferSize = options.BufferSize;
  30. }
  31. public MqttTcpChannel(StreamSocket socket)
  32. {
  33. _socket = socket ?? throw new ArgumentNullException(nameof(socket));
  34. CreateStreams();
  35. }
  36. public static Func<MqttClientTcpOptions, IEnumerable<ChainValidationResult>> CustomIgnorableServerCertificateErrorsResolver { get; set; }
  37. public string Endpoint => _socket?.Information?.RemoteAddress?.ToString(); // TODO: Check if contains also the port.
  38. public async Task ConnectAsync(CancellationToken cancellationToken)
  39. {
  40. if (_socket == null)
  41. {
  42. _socket = new StreamSocket();
  43. _socket.Control.NoDelay = true;
  44. _socket.Control.KeepAlive = true;
  45. }
  46. if (!_options.TlsOptions.UseTls)
  47. {
  48. await _socket.ConnectAsync(new HostName(_options.Server), _options.GetPort().ToString());
  49. }
  50. else
  51. {
  52. _socket.Control.ClientCertificate = LoadCertificate(_options);
  53. foreach (var ignorableChainValidationResult in ResolveIgnorableServerCertificateErrors())
  54. {
  55. _socket.Control.IgnorableServerCertificateErrors.Add(ignorableChainValidationResult);
  56. }
  57. await _socket.ConnectAsync(new HostName(_options.Server), _options.GetPort().ToString(), SocketProtectionLevel.Tls12);
  58. }
  59. CreateStreams();
  60. }
  61. public Task DisconnectAsync()
  62. {
  63. Dispose();
  64. return Task.FromResult(0);
  65. }
  66. public Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
  67. {
  68. return _readStream.ReadAsync(buffer, offset, count, cancellationToken);
  69. }
  70. public async Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
  71. {
  72. await _writeStream.WriteAsync(buffer, offset, count, cancellationToken);
  73. await _writeStream.FlushAsync(cancellationToken);
  74. }
  75. public void Dispose()
  76. {
  77. try
  78. {
  79. _readStream?.Dispose();
  80. }
  81. catch (ObjectDisposedException)
  82. {
  83. }
  84. catch (NullReferenceException)
  85. {
  86. }
  87. finally
  88. {
  89. _readStream = null;
  90. }
  91. try
  92. {
  93. _writeStream?.Dispose();
  94. }
  95. catch (ObjectDisposedException)
  96. {
  97. }
  98. catch (NullReferenceException)
  99. {
  100. }
  101. finally
  102. {
  103. _writeStream = null;
  104. }
  105. try
  106. {
  107. _socket?.Dispose();
  108. }
  109. catch (ObjectDisposedException)
  110. {
  111. }
  112. catch (NullReferenceException)
  113. {
  114. }
  115. finally
  116. {
  117. _socket = null;
  118. }
  119. }
  120. private static Certificate LoadCertificate(MqttClientTcpOptions options)
  121. {
  122. if (options.TlsOptions.Certificates == null || !options.TlsOptions.Certificates.Any())
  123. {
  124. return null;
  125. }
  126. if (options.TlsOptions.Certificates.Count > 1)
  127. {
  128. throw new NotSupportedException("Only one client certificate is supported for UWP.");
  129. }
  130. return new Certificate(options.TlsOptions.Certificates.First().AsBuffer());
  131. }
  132. private IEnumerable<ChainValidationResult> ResolveIgnorableServerCertificateErrors()
  133. {
  134. if (CustomIgnorableServerCertificateErrorsResolver != null)
  135. {
  136. return CustomIgnorableServerCertificateErrorsResolver(_options);
  137. }
  138. var result = new List<ChainValidationResult>();
  139. if (_options.TlsOptions.IgnoreCertificateRevocationErrors)
  140. {
  141. result.Add(ChainValidationResult.RevocationInformationMissing);
  142. //_socket.Control.IgnorableServerCertificateErrors.Add(ChainValidationResult.Revoked); Not supported.
  143. result.Add(ChainValidationResult.RevocationFailure);
  144. }
  145. if (_options.TlsOptions.IgnoreCertificateChainErrors)
  146. {
  147. result.Add(ChainValidationResult.IncompleteChain);
  148. }
  149. if (_options.TlsOptions.AllowUntrustedCertificates)
  150. {
  151. result.Add(ChainValidationResult.Untrusted);
  152. }
  153. return result;
  154. }
  155. private void CreateStreams()
  156. {
  157. _readStream = _socket.InputStream.AsStreamForRead(_bufferSize);
  158. _writeStream = _socket.OutputStream.AsStreamForWrite(_bufferSize);
  159. }
  160. }
  161. }
  162. #endif