-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathNetworkStream.cs
372 lines (330 loc) · 10.6 KB
/
NetworkStream.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*
* Copyright (c)2013-2021 ZeroTier, Inc.
*
* Use of this software is governed by the Business Source License included
* in the LICENSE.TXT file in the project's root directory.
*
* Change Date: 2026-01-01
*
* On the date above, in accordance with the Business Source License, use
* of this software will be governed by version 2.0 of the Apache License.
*/
/****/
using System;
using System.Threading;
using System.IO;
using System.Runtime.InteropServices;
using System.Net.Sockets;
using ZeroTier;
namespace ZeroTier.Sockets
{
public class NetworkStream : Stream {
private ZeroTier.Sockets.Socket _streamSocket;
private bool _isReadable;
private bool _isWriteable;
private bool _ownsSocket;
private volatile bool _isDisposed = false;
internal NetworkStream()
{
_ownsSocket = true;
}
public NetworkStream(ZeroTier.Sockets.Socket socket)
{
if (socket == null) {
throw new ArgumentNullException("socket");
}
InitNetworkStream(socket, FileAccess.ReadWrite);
}
public NetworkStream(ZeroTier.Sockets.Socket socket, bool ownsSocket)
{
if (socket == null) {
throw new ArgumentNullException("socket");
}
InitNetworkStream(socket, FileAccess.ReadWrite);
_ownsSocket = ownsSocket;
}
public NetworkStream(ZeroTier.Sockets.Socket socket, FileAccess accessMode)
{
if (socket == null) {
throw new ArgumentNullException("socket");
}
InitNetworkStream(socket, accessMode);
}
public NetworkStream(ZeroTier.Sockets.Socket socket, FileAccess accessMode, bool ownsSocket)
{
if (socket == null) {
throw new ArgumentNullException("socket");
}
InitNetworkStream(socket, accessMode);
_ownsSocket = ownsSocket;
}
internal NetworkStream(NetworkStream networkStream, bool ownsSocket)
{
ZeroTier.Sockets.Socket socket = networkStream.Socket;
if (socket == null) {
throw new ArgumentNullException("networkStream");
}
InitNetworkStream(socket, FileAccess.ReadWrite);
_ownsSocket = ownsSocket;
}
protected ZeroTier.Sockets.Socket Socket
{
get {
return _streamSocket;
}
}
internal void ConvertToNotSocketOwner()
{
_ownsSocket = false;
GC.SuppressFinalize(this);
}
public override int ReadTimeout
{
get {
return _streamSocket.ReceiveTimeout;
}
set {
if (value <= 0) {
throw new ArgumentOutOfRangeException("Timeout value must be greater than zero");
}
_streamSocket.ReceiveTimeout = value;
}
}
public override int WriteTimeout
{
get {
return _streamSocket.SendTimeout;
}
set {
if (value <= 0) {
throw new ArgumentOutOfRangeException("Timeout value must be greater than zero");
}
_streamSocket.SendTimeout = value;
}
}
protected bool Readable
{
get {
return _isReadable;
}
set {
_isReadable = value;
}
}
protected bool Writeable
{
get {
return _isWriteable;
}
set {
_isWriteable = value;
}
}
public override bool CanRead
{
get {
return _isReadable;
}
}
public override bool CanSeek
{
get {
return false;
}
}
public override bool CanWrite
{
get {
return _isWriteable;
}
}
public override bool CanTimeout
{
get {
return true;
}
}
public virtual bool DataAvailable
{
get {
if (_streamSocket == null) {
throw new IOException("ZeroTier socket is null");
}
if (_isDisposed) {
throw new ObjectDisposedException("ZeroTier.Sockets.Socket");
}
return _streamSocket.Available != 0;
}
}
internal void InitNetworkStream(ZeroTier.Sockets.Socket socket, FileAccess accessMode)
{
if (! socket.Connected) {
throw new IOException("ZeroTier socket must be connected");
}
if (! socket.Blocking) {
throw new IOException("ZeroTier socket must be in blocking mode");
}
if (socket.SocketType != SocketType.Stream) {
throw new IOException("ZeroTier socket must by stream type");
}
_streamSocket = socket;
switch (accessMode) {
case FileAccess.Write:
_isWriteable = true;
break;
case FileAccess.Read:
_isReadable = true;
break;
case FileAccess.ReadWrite:
default:
_isReadable = true;
_isWriteable = true;
break;
}
}
public override int Read([In, Out] byte[] buffer, int offset, int size)
{
bool canRead = CanRead;
if (_isDisposed) {
throw new ObjectDisposedException("ZeroTier.Sockets.Socket");
}
if (! canRead) {
throw new InvalidOperationException("Cannot read from ZeroTier socket");
}
if (buffer == null) {
throw new ArgumentNullException("buffer");
}
if (offset < 0 || offset > buffer.Length) {
throw new ArgumentOutOfRangeException("offset");
}
if (size < 0 || size > buffer.Length - offset) {
throw new ArgumentOutOfRangeException("size");
}
if (_streamSocket == null) {
throw new IOException("ZeroTier socket is null");
}
try {
int bytesTransferred = _streamSocket.Receive(buffer, offset, size, 0);
return bytesTransferred;
}
catch (Exception exception) {
throw new IOException("Cannot read from ZeroTier socket", exception);
}
}
public override void Write(byte[] buffer, int offset, int size)
{
bool canWrite = CanWrite;
if (_isDisposed) {
throw new ObjectDisposedException("ZeroTier.Sockets.Socket");
}
if (! canWrite) {
throw new InvalidOperationException("Cannot write to ZeroTier socket");
}
if (buffer == null) {
throw new ArgumentNullException("buffer");
}
if (offset < 0 || offset > buffer.Length) {
throw new ArgumentOutOfRangeException("offset");
}
if (size < 0 || size > buffer.Length - offset) {
throw new ArgumentOutOfRangeException("size");
}
if (_streamSocket == null) {
throw new IOException("ZeroTier socket is null");
}
try {
_streamSocket.Send(buffer, offset, size, SocketFlags.None);
}
catch (Exception exception) {
throw new IOException("Cannot write to ZeroTier socket", exception);
}
}
internal bool Poll(int microSeconds, SelectMode mode)
{
if (_streamSocket == null) {
throw new IOException("ZeroTier socket is null");
}
if (_isDisposed) {
throw new ObjectDisposedException("ZeroTier.Sockets.Socket");
}
return _streamSocket.Poll(microSeconds, mode);
}
internal bool PollRead()
{
if (_streamSocket == null) {
return false;
}
if (_isDisposed) {
return false;
}
return _streamSocket.Poll(0, SelectMode.SelectRead);
}
public override void Flush()
{
// Not applicable
}
public override void SetLength(long value)
{
throw new NotSupportedException("Not supported");
}
public override long Length
{
get {
throw new NotSupportedException("Not supported");
}
}
public override long Position
{
get {
throw new NotSupportedException("Not supported");
}
set {
throw new NotSupportedException("Not supported");
}
}
public override long Seek(long offset, SeekOrigin origin)
{
throw new NotSupportedException("Not supported");
}
public void Close(int timeout)
{
if (timeout < 0) {
throw new ArgumentOutOfRangeException("Timeout value must be greater than zero");
}
_streamSocket.Close(timeout);
}
internal bool Connected
{
get {
if (! _isDisposed && _streamSocket != null && _streamSocket.Connected) {
return true;
}
else {
return false;
}
}
}
protected override void Dispose(bool disposing)
{
bool cleanedUp = _isDisposed;
_isDisposed = true;
if (! cleanedUp && disposing) {
if (_streamSocket != null) {
_isWriteable = false;
_isReadable = false;
if (_ownsSocket) {
if (_streamSocket != null) {
_streamSocket.Shutdown(SocketShutdown.Both);
_streamSocket.Close();
}
}
}
}
base.Dispose(disposing);
}
~NetworkStream()
{
Dispose(false);
}
}
}