forked from oznetmaster/SSMonoNetWebLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEndPointListener.cs
476 lines (423 loc) · 11.8 KB
/
EndPointListener.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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
//
// System.Net.EndPointListener
//
// Author:
// Gonzalo Paniagua Javier ([email protected])
//
// Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
// Copyright (c) 2012 Xamarin, Inc. (http://xamarin.com)
// Copyright (c) 2018 Nivloc Enterprises Ltd
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#if SECURITY_DEP
using System;
#if SSHARP
using Crestron.SimplSharp;
using Crestron.SimplSharp.CrestronIO;
using SSMono.Security.Cryptography;
using SSMono.Security.Cryptography.X509Certificates;
using Crestron.SimplSharp.Net;
using Mono.Security.Authenticode;
using Socket = Crestron.SimplSharp.CrestronSockets.CrestronListenerSocket;
using SSMono.Net;
using SSMono.Net.Sockets;
using IAsyncResult = Crestron.SimplSharp.CrestronIO.IAsyncResult;
using AsyncCallback = Crestron.SimplSharp.CrestronIO.AsyncCallback;
using Crestron.SimplSharp.CrestronSockets;
#else
#if MONOTOUCH || MONODROID
using Mono.Security.Authenticode;
#else
extern alias MonoSecurity;
using MonoSecurity::Mono.Security.Authenticode;
#endif
using System.IO;
using System.Net.Sockets;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
#endif
using System.Collections;
using System.Collections.Generic;
#if SSHARP
namespace SSMono.Net
#else
namespace System.Net
#endif
{
internal sealed class EndPointListener
{
private IPEndPoint endpoint;
private Socket sock;
private Hashtable prefixes; // Dictionary <ListenerPrefix, HttpListener>
private ArrayList unhandled; // List<ListenerPrefix> unhandled; host = '*'
private ArrayList all; // List<ListenerPrefix> all; host = '+'
private X509Certificate2 cert;
private AsymmetricAlgorithm key;
private bool secure;
private Dictionary<HttpConnection, HttpConnection> unregistered;
public EndPointListener (IPAddress addr, int port, bool secure)
{
if (secure)
{
this.secure = secure;
LoadCertificateAndKey (addr, port);
}
endpoint = new IPEndPoint (addr, port);
#if SSHARP
sock = !addr.Equals (IPAddress.Any) ? new Socket (IPAddress.Any, port, 64, addr.GetAdapterTypeForAddress ()) : new Socket (IPAddress.Any, port, 64);
sock.Listen (64);
#else
sock = new Socket (addr.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
sock.Bind (endpoint);
sock.Listen (500);
#endif
SocketAsyncEventArgs args = new SocketAsyncEventArgs ();
args.UserToken = this;
args.Completed += OnAccept;
#if SSHARP
sock.BeginAccept (acceptCallback, Tuple.Create (sock, args));
#else
sock.AcceptAsync (args);
#endif
prefixes = new Hashtable ();
unregistered = new Dictionary<HttpConnection, HttpConnection> ();
}
#if SSHARP
private static void acceptCallback (IAsyncResult iar)
{
var tuple = (Tuple<Socket,SocketAsyncEventArgs>)iar.AsyncState;
tuple.Item2.curSocket = tuple.Item1;
tuple.Item2.AcceptSocket = tuple.Item1.EndAccept (iar);
OnAccept (tuple.Item1, tuple.Item2);
}
#endif
private void LoadCertificateAndKey (IPAddress addr, int port)
{
// Actually load the certificate
try
{
string dirname = Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData);
string path = Path.Combine (dirname, ".mono");
path = Path.Combine (path, "httplistener");
string cert_file = Path.Combine (path, String.Format ("{0}.cer", port));
if (!File.Exists (cert_file))
return;
cert = new X509Certificate2 (cert_file);
if (cert.HasPrivateKey)
{
key = cert.PrivateKey;
return;
}
string pvk_file = Path.Combine (path, String.Format ("{0}.pvk", port));
if (!File.Exists (pvk_file))
return;
key = PrivateKey.CreateFromFile (pvk_file).RSA;
}
catch
{
cert = null;
key = null;
}
}
private static void OnAccept (object sender, EventArgs e)
{
SocketAsyncEventArgs args = (SocketAsyncEventArgs)e;
EndPointListener epl = (EndPointListener)args.UserToken;
#if SSHARP
CrestronServerSocket accepted = null;
#else
Socket accepted = null;
#endif
if (args.SocketError == SocketError.Success)
{
accepted = args.AcceptSocket;
args.AcceptSocket = null;
}
try
{
if (epl.sock != null)
#if SSHARP
epl.sock.BeginAccept (acceptCallback, Tuple.Create (epl.sock, args));
#else
epl.sock.AcceptAsync (args);
#endif
}
catch
{
if (accepted != null)
{
try
{
accepted.Close ();
}
catch
{
}
accepted = null;
}
}
if (accepted == null)
return;
if (epl.secure && (epl.cert == null || epl.key == null))
{
accepted.Close ();
return;
}
HttpConnection conn = new HttpConnection (accepted, epl, epl.secure, epl.cert, epl.key);
lock (epl.unregistered)
{
epl.unregistered[conn] = conn;
}
conn.BeginReadRequest ();
}
internal void RemoveConnection (HttpConnection conn)
{
lock (unregistered)
{
unregistered.Remove (conn);
}
}
public bool BindContext (HttpListenerContext context)
{
HttpListenerRequest req = context.Request;
ListenerPrefix prefix;
HttpListener listener = SearchListener (req.Url, out prefix);
if (listener == null)
return false;
context.Listener = listener;
context.Connection.Prefix = prefix;
return true;
}
public void UnbindContext (HttpListenerContext context)
{
if (context == null || context.Request == null)
return;
context.Listener.UnregisterContext (context);
}
private HttpListener SearchListener (Uri uri, out ListenerPrefix prefix)
{
prefix = null;
if (uri == null)
return null;
string host = uri.Host;
int port = uri.Port;
string path = HttpUtility.UrlDecode (uri.AbsolutePath);
string path_slash = path[path.Length - 1] == '/' ? path : path + "/";
HttpListener best_match = null;
int best_length = -1;
if (host != null && host != "")
{
Hashtable p_ro = prefixes;
foreach (ListenerPrefix p in p_ro.Keys)
{
string ppath = p.Path;
if (ppath.Length < best_length)
continue;
if (p.Host != host || p.Port != port)
continue;
if (path.StartsWith (ppath) || path_slash.StartsWith (ppath))
{
best_length = ppath.Length;
best_match = (HttpListener)p_ro[p];
prefix = p;
}
}
if (best_length != -1)
return best_match;
}
ArrayList list = unhandled;
best_match = MatchFromList (host, path, list, out prefix);
if (path != path_slash && best_match == null)
best_match = MatchFromList (host, path_slash, list, out prefix);
if (best_match != null)
return best_match;
list = all;
best_match = MatchFromList (host, path, list, out prefix);
if (path != path_slash && best_match == null)
best_match = MatchFromList (host, path_slash, list, out prefix);
if (best_match != null)
return best_match;
return null;
}
private HttpListener MatchFromList (string host, string path, ArrayList list, out ListenerPrefix prefix)
{
prefix = null;
if (list == null)
return null;
HttpListener best_match = null;
int best_length = -1;
foreach (ListenerPrefix p in list)
{
string ppath = p.Path;
if (ppath.Length < best_length)
continue;
if (path.StartsWith (ppath))
{
best_length = ppath.Length;
best_match = p.Listener;
prefix = p;
}
}
return best_match;
}
private void AddSpecial (ArrayList coll, ListenerPrefix prefix)
{
if (coll == null)
return;
foreach (ListenerPrefix p in coll)
{
if (p.Path == prefix.Path) //TODO: code
throw new HttpListenerException (400, "Prefix already in use.");
}
coll.Add (prefix);
}
private bool RemoveSpecial (ArrayList coll, ListenerPrefix prefix)
{
if (coll == null)
return false;
int c = coll.Count;
for (int i = 0; i < c; i++)
{
ListenerPrefix p = (ListenerPrefix)coll[i];
if (p.Path == prefix.Path)
{
coll.RemoveAt (i);
return true;
}
}
return false;
}
private void CheckIfRemove ()
{
if (prefixes.Count > 0)
return;
ArrayList list = unhandled;
if (list != null && list.Count > 0)
return;
list = all;
if (list != null && list.Count > 0)
return;
EndPointManager.RemoveEndPoint (this, endpoint);
}
public void Close ()
{
sock.Close ();
lock (unregistered)
{
//
// Clone the list because RemoveConnection can be called from Close
//
var connections = new List<HttpConnection> (unregistered.Keys);
foreach (HttpConnection c in connections)
c.Close (true);
unregistered.Clear ();
}
}
public void AddPrefix (ListenerPrefix prefix, HttpListener listener)
{
ArrayList current;
ArrayList future;
if (prefix.Host == "*")
{
do
{
current = unhandled;
future = (current != null) ? (ArrayList)current.Clone () : new ArrayList ();
prefix.Listener = listener;
AddSpecial (future, prefix);
}
while (Interlocked.CompareExchange (ref unhandled, future, current) != current);
return;
}
if (prefix.Host == "+")
{
do
{
current = all;
future = (current != null) ? (ArrayList)current.Clone () : new ArrayList ();
prefix.Listener = listener;
AddSpecial (future, prefix);
}
while (Interlocked.CompareExchange (ref all, future, current) != current);
return;
}
Hashtable prefs, p2;
do
{
prefs = prefixes;
if (prefs.ContainsKey (prefix))
{
HttpListener other = (HttpListener)prefs[prefix];
if (other != listener) // TODO: code.
throw new HttpListenerException (400, "There's another listener for " + prefix);
return;
}
p2 = (Hashtable)prefs.Clone ();
p2[prefix] = listener;
}
while (Interlocked.CompareExchange (ref prefixes, p2, prefs) != prefs);
}
public void RemovePrefix (ListenerPrefix prefix, HttpListener listener)
{
ArrayList current;
ArrayList future;
if (prefix.Host == "*")
{
do
{
current = unhandled;
future = (current != null) ? (ArrayList)current.Clone () : new ArrayList ();
if (!RemoveSpecial (future, prefix))
break; // Prefix not found
}
while (Interlocked.CompareExchange (ref unhandled, future, current) != current);
CheckIfRemove ();
return;
}
if (prefix.Host == "+")
{
do
{
current = all;
future = (current != null) ? (ArrayList)current.Clone () : new ArrayList ();
if (!RemoveSpecial (future, prefix))
break; // Prefix not found
}
while (Interlocked.CompareExchange (ref all, future, current) != current);
CheckIfRemove ();
return;
}
Hashtable prefs, p2;
do
{
prefs = prefixes;
if (!prefs.ContainsKey (prefix))
break;
p2 = (Hashtable)prefs.Clone ();
p2.Remove (prefix);
}
while (Interlocked.CompareExchange (ref prefixes, p2, prefs) != prefs);
CheckIfRemove ();
}
}
}
#endif