[websocket] Implement HttpListenerContext.AcceptWebSocketAsync().
[mono.git] / mcs / class / System / System.Net / HttpConnection.cs
1 //
2 // System.Net.HttpConnection
3 //
4 // Author:
5 //      Gonzalo Paniagua Javier (gonzalo.mono@gmail.com)
6 //
7 // Copyright (c) 2005-2009 Novell, Inc. (http://www.novell.com)
8 // Copyright (c) 2012 Xamarin, Inc. (http://xamarin.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if SECURITY_DEP
31
32 #if MONOTOUCH
33 using Mono.Security.Protocol.Tls;
34 #else
35 extern alias MonoSecurity;
36 using MonoSecurity::Mono.Security.Protocol.Tls;
37 #endif
38
39 using System.IO;
40 using System.Net.Sockets;
41 using System.Reflection;
42 using System.Text;
43 using System.Threading;
44 using System.Security.Cryptography;
45 using System.Security.Cryptography.X509Certificates;
46
47 namespace System.Net {
48         sealed class HttpConnection
49         {
50                 static AsyncCallback onread_cb = new AsyncCallback (OnRead);
51                 const int BufferSize = 8192;
52                 Socket sock;
53                 Stream stream;
54                 EndPointListener epl;
55                 MemoryStream ms;
56                 byte [] buffer;
57                 HttpListenerContext context;
58                 StringBuilder current_line;
59                 ListenerPrefix prefix;
60                 RequestStream i_stream;
61                 ResponseStream o_stream;
62                 bool chunked;
63                 int reuses;
64                 bool context_bound;
65                 bool secure;
66                 AsymmetricAlgorithm key;
67                 int s_timeout = 90000; // 90k ms for first request, 15k ms from then on
68                 Timer timer;
69                 IPEndPoint local_ep;
70                 HttpListener last_listener;
71                 int [] client_cert_errors;
72                 X509Certificate2 client_cert;
73
74                 public HttpConnection (Socket sock, EndPointListener epl, bool secure, X509Certificate2 cert, AsymmetricAlgorithm key)
75                 {
76                         this.sock = sock;
77                         this.epl = epl;
78                         this.secure = secure;
79                         this.key = key;
80                         if (secure == false) {
81                                 stream = new NetworkStream (sock, false);
82                         } else {
83                                 SslServerStream ssl_stream = new SslServerStream (new NetworkStream (sock, false), cert, false, true, false);
84                                 ssl_stream.PrivateKeyCertSelectionDelegate += OnPVKSelection;
85                                 ssl_stream.ClientCertValidationDelegate += OnClientCertificateValidation;
86                                 stream = ssl_stream;
87                         }
88                         timer = new Timer (OnTimeout, null, Timeout.Infinite, Timeout.Infinite);
89                         Init ();
90                 }
91
92                 internal int [] ClientCertificateErrors {
93                         get { return client_cert_errors; }
94                 }
95
96                 internal X509Certificate2 ClientCertificate {
97                         get { return client_cert; }
98                 }
99
100                 bool OnClientCertificateValidation (X509Certificate certificate, int[] errors)
101                 {
102                         if (certificate == null)
103                                 return true;
104                         X509Certificate2 cert = certificate as X509Certificate2;
105                         if (cert == null)
106                                 cert = new X509Certificate2 (certificate.GetRawCertData ());
107                         client_cert = cert;
108                         client_cert_errors = errors;
109                         return true;
110                 }
111
112                 AsymmetricAlgorithm OnPVKSelection (X509Certificate certificate, string targetHost)
113                 {
114                         return key;
115                 }
116
117                 void Init ()
118                 {
119                         context_bound = false;
120                         i_stream = null;
121                         o_stream = null;
122                         prefix = null;
123                         chunked = false;
124                         ms = new MemoryStream ();
125                         position = 0;
126                         input_state = InputState.RequestLine;
127                         line_state = LineState.None;
128                         context = new HttpListenerContext (this);
129                 }
130
131                 public bool IsClosed {
132                         get { return (sock == null); }
133                 }
134
135                 public int Reuses {
136                         get { return reuses; }
137                 }
138
139                 public IPEndPoint LocalEndPoint {
140                         get {
141                                 if (local_ep != null)
142                                         return local_ep;
143
144                                 local_ep = (IPEndPoint) sock.LocalEndPoint;
145                                 return local_ep;
146                         }
147                 }
148
149                 public IPEndPoint RemoteEndPoint {
150                         get { return (IPEndPoint) sock.RemoteEndPoint; }
151                 }
152
153                 public bool IsSecure {
154                         get { return secure; }
155                 }
156
157                 public ListenerPrefix Prefix {
158                         get { return prefix; }
159                         set { prefix = value; }
160                 }
161
162                 void OnTimeout (object unused)
163                 {
164                         CloseSocket ();
165                         Unbind ();
166                 }
167
168                 public void BeginReadRequest ()
169                 {
170                         if (buffer == null)
171                                 buffer = new byte [BufferSize];
172                         try {
173                                 if (reuses == 1)
174                                         s_timeout = 15000;
175                                 timer.Change (s_timeout, Timeout.Infinite);
176                                 stream.BeginRead (buffer, 0, BufferSize, onread_cb, this);
177                         } catch {
178                                 timer.Change (Timeout.Infinite, Timeout.Infinite);
179                                 CloseSocket ();
180                                 Unbind ();
181                         }
182                 }
183
184                 public RequestStream GetRequestStream (bool chunked, long contentlength)
185                 {
186                         if (i_stream == null) {
187                                 byte [] buffer = ms.GetBuffer ();
188                                 int length = (int) ms.Length;
189                                 ms = null;
190                                 if (chunked) {
191                                         this.chunked = true;
192                                         context.Response.SendChunked = true;
193                                         i_stream = new ChunkedInputStream (context, stream, buffer, position, length - position);
194                                 } else {
195                                         i_stream = new RequestStream (stream, buffer, position, length - position, contentlength);
196                                 }
197                         }
198                         return i_stream;
199                 }
200
201                 public ResponseStream GetResponseStream ()
202                 {
203                         // TODO: can we get this stream before reading the input?
204                         if (o_stream == null) {
205                                 HttpListener listener = context.Listener;
206                                 bool ign = (listener == null) ? true : listener.IgnoreWriteExceptions;
207                                 o_stream = new ResponseStream (stream, context.Response, ign);
208                         }
209                         return o_stream;
210                 }
211
212                 internal Stream Hijack ()
213                 {
214                         // TODO: disable normal request/response.
215                         return stream;
216                 }
217
218                 static void OnRead (IAsyncResult ares)
219                 {
220                         HttpConnection cnc = (HttpConnection) ares.AsyncState;
221                         cnc.OnReadInternal (ares);
222                 }
223
224                 void OnReadInternal (IAsyncResult ares)
225                 {
226                         timer.Change (Timeout.Infinite, Timeout.Infinite);
227                         int nread = -1;
228                         try {
229                                 nread = stream.EndRead (ares);
230                                 ms.Write (buffer, 0, nread);
231                                 if (ms.Length > 32768) {
232                                         SendError ("Bad request", 400);
233                                         Close (true);
234                                         return;
235                                 }
236                         } catch {
237                                 if (ms != null && ms.Length > 0)
238                                         SendError ();
239                                 if (sock != null) {
240                                         CloseSocket ();
241                                         Unbind ();
242                                 }
243                                 return;
244                         }
245
246                         if (nread == 0) {
247                                 //if (ms.Length > 0)
248                                 //      SendError (); // Why bother?
249                                 CloseSocket ();
250                                 Unbind ();
251                                 return;
252                         }
253
254                         if (ProcessInput (ms)) {
255                                 if (!context.HaveError)
256                                         context.Request.FinishInitialization ();
257
258                                 if (context.HaveError) {
259                                         SendError ();
260                                         Close (true);
261                                         return;
262                                 }
263
264                                 if (!epl.BindContext (context)) {
265                                         SendError ("Invalid host", 400);
266                                         Close (true);
267                                         return;
268                                 }
269                                 HttpListener listener = context.Listener;
270                                 if (last_listener != listener) {
271                                         RemoveConnection ();
272                                         listener.AddConnection (this);
273                                         last_listener = listener;
274                                 }
275
276                                 context_bound = true;
277                                 listener.RegisterContext (context);
278                                 return;
279                         }
280                         stream.BeginRead (buffer, 0, BufferSize, onread_cb, this);
281                 }
282
283                 void RemoveConnection ()
284                 {
285                         if (last_listener == null)
286                                 epl.RemoveConnection (this);
287                         else
288                                 last_listener.RemoveConnection (this);
289                 }
290
291                 enum InputState {
292                         RequestLine,
293                         Headers
294                 }
295
296                 enum LineState {
297                         None,
298                         CR,
299                         LF
300                 }
301
302                 InputState input_state = InputState.RequestLine;
303                 LineState line_state = LineState.None;
304                 int position;
305
306                 // true -> done processing
307                 // false -> need more input
308                 bool ProcessInput (MemoryStream ms)
309                 {
310                         byte [] buffer = ms.GetBuffer ();
311                         int len = (int) ms.Length;
312                         int used = 0;
313                         string line;
314
315                         try {
316                                 line = ReadLine (buffer, position, len - position, ref used);
317                                 position += used;
318                         } catch {
319                                 context.ErrorMessage = "Bad request";
320                                 context.ErrorStatus = 400;
321                                 return true;
322                         }
323
324                         do {
325                                 if (line == null)
326                                         break;
327                                 if (line == "") {
328                                         if (input_state == InputState.RequestLine)
329                                                 continue;
330                                         current_line = null;
331                                         ms = null;
332                                         return true;
333                                 }
334
335                                 if (input_state == InputState.RequestLine) {
336                                         context.Request.SetRequestLine (line);
337                                         input_state = InputState.Headers;
338                                 } else {
339                                         try {
340                                                 context.Request.AddHeader (line);
341                                         } catch (Exception e) {
342                                                 context.ErrorMessage = e.Message;
343                                                 context.ErrorStatus = 400;
344                                                 return true;
345                                         }
346                                 }
347
348                                 if (context.HaveError)
349                                         return true;
350
351                                 if (position >= len)
352                                         break;
353                                 try {
354                                         line = ReadLine (buffer, position, len - position, ref used);
355                                         position += used;
356                                 } catch {
357                                         context.ErrorMessage = "Bad request";
358                                         context.ErrorStatus = 400;
359                                         return true;
360                                 }
361                         } while (line != null);
362
363                         if (used == len) {
364                                 ms.SetLength (0);
365                                 position = 0;
366                         }
367                         return false;
368                 }
369
370                 string ReadLine (byte [] buffer, int offset, int len, ref int used)
371                 {
372                         if (current_line == null)
373                                 current_line = new StringBuilder (128);
374                         int last = offset + len;
375                         used = 0;
376                         for (int i = offset; i < last && line_state != LineState.LF; i++) {
377                                 used++;
378                                 byte b = buffer [i];
379                                 if (b == 13) {
380                                         line_state = LineState.CR;
381                                 } else if (b == 10) {
382                                         line_state = LineState.LF;
383                                 } else {
384                                         current_line.Append ((char) b);
385                                 }
386                         }
387
388                         string result = null;
389                         if (line_state == LineState.LF) {
390                                 line_state = LineState.None;
391                                 result = current_line.ToString ();
392                                 current_line.Length = 0;
393                         }
394
395                         return result;
396                 }
397
398                 public void SendError (string msg, int status)
399                 {
400                         try {
401                                 HttpListenerResponse response = context.Response;
402                                 response.StatusCode = status;
403                                 response.ContentType = "text/html";
404                                 string description = HttpListenerResponse.GetStatusDescription (status);
405                                 string str;
406                                 if (msg != null)
407                                         str = String.Format ("<h1>{0} ({1})</h1>", description, msg);
408                                 else
409                                         str = String.Format ("<h1>{0}</h1>", description);
410
411                                 byte [] error = context.Response.ContentEncoding.GetBytes (str);
412                                 response.Close (error, false);
413                         } catch {
414                                 // response was already closed
415                         }
416                 }
417
418                 public void SendError ()
419                 {
420                         SendError (context.ErrorMessage, context.ErrorStatus);
421                 }
422
423                 void Unbind ()
424                 {
425                         if (context_bound) {
426                                 epl.UnbindContext (context);
427                                 context_bound = false;
428                         }
429                 }
430
431                 public void Close ()
432                 {
433                         Close (false);
434                 }
435
436                 void CloseSocket ()
437                 {
438                         if (sock == null)
439                                 return;
440
441                         try {
442                                 sock.Close ();
443                         } catch {
444                         } finally {
445                                 sock = null;
446                         }
447                         RemoveConnection ();
448                 }
449
450                 internal void Close (bool force_close)
451                 {
452                         if (sock != null) {
453                                 Stream st = GetResponseStream ();
454                                 if (st != null)
455                                         st.Close ();
456
457                                 o_stream = null;
458                         }
459
460                         if (sock != null) {
461                                 force_close |= !context.Request.KeepAlive;
462                                 if (!force_close)
463                                         force_close = (context.Response.Headers ["connection"] == "close");
464                                 /*
465                                 if (!force_close) {
466 //                                      bool conn_close = (status_code == 400 || status_code == 408 || status_code == 411 ||
467 //                                                      status_code == 413 || status_code == 414 || status_code == 500 ||
468 //                                                      status_code == 503);
469
470                                         force_close |= (context.Request.ProtocolVersion <= HttpVersion.Version10);
471                                 }
472                                 */
473
474                                 if (!force_close && context.Request.FlushInput ()) {
475                                         if (chunked && context.Response.ForceCloseChunked == false) {
476                                                 // Don't close. Keep working.
477                                                 reuses++;
478                                                 Unbind ();
479                                                 Init ();
480                                                 BeginReadRequest ();
481                                                 return;
482                                         }
483
484                                         reuses++;
485                                         Unbind ();
486                                         Init ();
487                                         BeginReadRequest ();
488                                         return;
489                                 }
490
491                                 Socket s = sock;
492                                 sock = null;
493                                 try {
494                                         if (s != null)
495                                                 s.Shutdown (SocketShutdown.Both);
496                                 } catch {
497                                 } finally {
498                                         if (s != null)
499                                                 s.Close ();
500                                 }
501                                 Unbind ();
502                                 RemoveConnection ();
503                                 return;
504                         }
505                 }
506         }
507 }
508 #endif
509