Merge pull request #588 from Daniel15/bug-10872
[mono.git] / mcs / class / System / System.Net / HttpListenerRequest.cs
1 //
2 // System.Net.HttpListenerRequest
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo.mono@gmail.com)
6 //      Marek Safar (marek.safar@gmail.com)
7 //
8 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
9 // Copyright (c) 2011-2012 Xamarin, Inc. (http://xamarin.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if SECURITY_DEP
32
33 extern alias MonoSecurity;
34
35 using System.Collections;
36 using System.Collections.Specialized;
37 using System.Globalization;
38 using System.IO;
39 using System.Security.Cryptography.X509Certificates;
40 using System.Text;
41 #if NET_4_0
42 using System.Security.Authentication.ExtendedProtection;
43 #endif
44 #if NET_4_5
45 using System.Threading.Tasks;
46 #endif
47 using MonoSecurity::Mono.Security.Protocol.Tls;
48
49 namespace System.Net {
50         public sealed class HttpListenerRequest
51         {
52 #if NET_4_0
53                 class Context : TransportContext
54                 {
55                         public override ChannelBinding GetChannelBinding (ChannelBindingKind kind)
56                         {
57                                 throw new NotImplementedException ();
58                         }
59                 }
60 #endif
61
62                 string [] accept_types;
63                 Encoding content_encoding;
64                 long content_length;
65                 bool cl_set;
66                 CookieCollection cookies;
67                 WebHeaderCollection headers;
68                 string method;
69                 Stream input_stream;
70                 Version version;
71                 NameValueCollection query_string; // check if null is ok, check if read-only, check case-sensitiveness
72                 string raw_url;
73                 Uri url;
74                 Uri referrer;
75                 string [] user_languages;
76                 HttpListenerContext context;
77                 bool is_chunked;
78                 bool ka_set;
79                 bool keep_alive;
80                 delegate X509Certificate2 GCCDelegate ();
81                 GCCDelegate gcc_delegate;
82
83                 static byte [] _100continue = Encoding.ASCII.GetBytes ("HTTP/1.1 100 Continue\r\n\r\n");
84
85                 internal HttpListenerRequest (HttpListenerContext context)
86                 {
87                         this.context = context;
88                         headers = new WebHeaderCollection ();
89                         version = HttpVersion.Version10;
90                 }
91
92                 static char [] separators = new char [] { ' ' };
93
94                 internal void SetRequestLine (string req)
95                 {
96                         string [] parts = req.Split (separators, 3);
97                         if (parts.Length != 3) {
98                                 context.ErrorMessage = "Invalid request line (parts).";
99                                 return;
100                         }
101
102                         method = parts [0];
103                         foreach (char c in method){
104                                 int ic = (int) c;
105
106                                 if ((ic >= 'A' && ic <= 'Z') ||
107                                     (ic > 32 && c < 127 && c != '(' && c != ')' && c != '<' &&
108                                      c != '<' && c != '>' && c != '@' && c != ',' && c != ';' &&
109                                      c != ':' && c != '\\' && c != '"' && c != '/' && c != '[' &&
110                                      c != ']' && c != '?' && c != '=' && c != '{' && c != '}'))
111                                         continue;
112
113                                 context.ErrorMessage = "(Invalid verb)";
114                                 return;
115                         }
116
117                         raw_url = parts [1];
118                         if (parts [2].Length != 8 || !parts [2].StartsWith ("HTTP/")) {
119                                 context.ErrorMessage = "Invalid request line (version).";
120                                 return;
121                         }
122
123                         try {
124                                 version = new Version (parts [2].Substring (5));
125                                 if (version.Major < 1)
126                                         throw new Exception ();
127                         } catch {
128                                 context.ErrorMessage = "Invalid request line (version).";
129                                 return;
130                         }
131                 }
132
133                 void CreateQueryString (string query)
134                 {
135                         if (query == null || query.Length == 0) {
136                                 query_string = new NameValueCollection (1);
137                                 return;
138                         }
139
140                         query_string = new NameValueCollection ();
141                         if (query [0] == '?')
142                                 query = query.Substring (1);
143                         string [] components = query.Split ('&');
144                         foreach (string kv in components) {
145                                 int pos = kv.IndexOf ('=');
146                                 if (pos == -1) {
147                                         query_string.Add (null, HttpUtility.UrlDecode (kv));
148                                 } else {
149                                         string key = HttpUtility.UrlDecode (kv.Substring (0, pos));
150                                         string val = HttpUtility.UrlDecode (kv.Substring (pos + 1));
151                                         
152                                         query_string.Add (key, val);
153                                 }
154                         }
155                 }
156
157                 internal void FinishInitialization ()
158                 {
159                         string host = UserHostName;
160                         if (version > HttpVersion.Version10 && (host == null || host.Length == 0)) {
161                                 context.ErrorMessage = "Invalid host name";
162                                 return;
163                         }
164
165                         string path;
166                         Uri raw_uri = null;
167                         if (Uri.MaybeUri (raw_url) && Uri.TryCreate (raw_url, UriKind.Absolute, out raw_uri))
168                                 path = raw_uri.PathAndQuery;
169                         else
170                                 path = raw_url;
171
172                         if ((host == null || host.Length == 0))
173                                 host = UserHostAddress;
174
175                         if (raw_uri != null)
176                                 host = raw_uri.Host;
177         
178                         int colon = host.IndexOf (':');
179                         if (colon >= 0)
180                                 host = host.Substring (0, colon);
181
182                         string base_uri = String.Format ("{0}://{1}:{2}",
183                                                                 (IsSecureConnection) ? "https" : "http",
184                                                                 host, LocalEndPoint.Port);
185
186                         if (!Uri.TryCreate (base_uri + path, UriKind.Absolute, out url)){
187                                 context.ErrorMessage = "Invalid url: " + base_uri + path;
188                                 return;
189                         }
190
191                         CreateQueryString (url.Query);
192
193                         if (version >= HttpVersion.Version11) {
194                                 string t_encoding = Headers ["Transfer-Encoding"];
195                                 is_chunked = (t_encoding != null && String.Compare (t_encoding, "chunked", StringComparison.OrdinalIgnoreCase) == 0);
196                                 // 'identity' is not valid!
197                                 if (t_encoding != null && !is_chunked) {
198                                         context.Connection.SendError (null, 501);
199                                         return;
200                                 }
201                         }
202
203                         if (!is_chunked && !cl_set) {
204                                 if (String.Compare (method, "POST", StringComparison.OrdinalIgnoreCase) == 0 ||
205                                     String.Compare (method, "PUT", StringComparison.OrdinalIgnoreCase) == 0) {
206                                         context.Connection.SendError (null, 411);
207                                         return;
208                                 }
209                         }
210
211                         if (String.Compare (Headers ["Expect"], "100-continue", StringComparison.OrdinalIgnoreCase) == 0) {
212                                 ResponseStream output = context.Connection.GetResponseStream ();
213                                 output.InternalWrite (_100continue, 0, _100continue.Length);
214                         }
215                 }
216
217                 internal static string Unquote (String str) {
218                         int start = str.IndexOf ('\"');
219                         int end = str.LastIndexOf ('\"');
220                         if (start >= 0 && end >=0)
221                                 str = str.Substring (start + 1, end - 1);
222                         return str.Trim ();
223                 }
224
225                 internal void AddHeader (string header)
226                 {
227                         int colon = header.IndexOf (':');
228                         if (colon == -1 || colon == 0) {
229                                 context.ErrorMessage = "Bad Request";
230                                 context.ErrorStatus = 400;
231                                 return;
232                         }
233
234                         string name = header.Substring (0, colon).Trim ();
235                         string val = header.Substring (colon + 1).Trim ();
236                         string lower = name.ToLower (CultureInfo.InvariantCulture);
237                         headers.SetInternal (name, val);
238                         switch (lower) {
239                                 case "accept-language":
240                                         user_languages = val.Split (','); // yes, only split with a ','
241                                         break;
242                                 case "accept":
243                                         accept_types = val.Split (','); // yes, only split with a ','
244                                         break;
245                                 case "content-length":
246                                         try {
247                                                 //TODO: max. content_length?
248                                                 content_length = Int64.Parse (val.Trim ());
249                                                 if (content_length < 0)
250                                                         context.ErrorMessage = "Invalid Content-Length.";
251                                                 cl_set = true;
252                                         } catch {
253                                                 context.ErrorMessage = "Invalid Content-Length.";
254                                         }
255
256                                         break;
257                                 case "referer":
258                                         try {
259                                                 referrer = new Uri (val);
260                                         } catch {
261                                                 referrer = new Uri ("http://someone.is.screwing.with.the.headers.com/");
262                                         }
263                                         break;
264                                 case "cookie":
265                                         if (cookies == null)
266                                                 cookies = new CookieCollection();
267
268                                         string[] cookieStrings = val.Split(new char[] {',', ';'});
269                                         Cookie current = null;
270                                         int version = 0;
271                                         foreach (string cookieString in cookieStrings) {
272                                                 string str = cookieString.Trim ();
273                                                 if (str.Length == 0)
274                                                         continue;
275                                                 if (str.StartsWith ("$Version")) {
276                                                         version = Int32.Parse (Unquote (str.Substring (str.IndexOf ('=') + 1)));
277                                                 } else if (str.StartsWith ("$Path")) {
278                                                         if (current != null)
279                                                                 current.Path = str.Substring (str.IndexOf ('=') + 1).Trim ();
280                                                 } else if (str.StartsWith ("$Domain")) {
281                                                         if (current != null)
282                                                                 current.Domain = str.Substring (str.IndexOf ('=') + 1).Trim ();
283                                                 } else if (str.StartsWith ("$Port")) {
284                                                         if (current != null)
285                                                                 current.Port = str.Substring (str.IndexOf ('=') + 1).Trim ();
286                                                 } else {
287                                                         if (current != null) {
288                                                                 cookies.Add (current);
289                                                         }
290                                                         current = new Cookie ();
291                                                         int idx = str.IndexOf ('=');
292                                                         if (idx > 0) {
293                                                                 current.Name = str.Substring (0, idx).Trim ();
294                                                                 current.Value =  str.Substring (idx + 1).Trim ();
295                                                         } else {
296                                                                 current.Name = str.Trim ();
297                                                                 current.Value = String.Empty;
298                                                         }
299                                                         current.Version = version;
300                                                 }
301                                         }
302                                         if (current != null) {
303                                                 cookies.Add (current);
304                                         }
305                                         break;
306                         }
307                 }
308
309                 // returns true is the stream could be reused.
310                 internal bool FlushInput ()
311                 {
312                         if (!HasEntityBody)
313                                 return true;
314
315                         int length = 2048;
316                         if (content_length > 0)
317                                 length = (int) Math.Min (content_length, (long) length);
318
319                         byte [] bytes = new byte [length];
320                         while (true) {
321                                 // TODO: test if MS has a timeout when doing this
322                                 try {
323                                         IAsyncResult ares = InputStream.BeginRead (bytes, 0, length, null, null);
324                                         if (!ares.IsCompleted && !ares.AsyncWaitHandle.WaitOne (1000))
325                                                 return false;
326                                         if (InputStream.EndRead (ares) <= 0)
327                                                 return true;
328                                 } catch {
329                                         return false;
330                                 }
331                         }
332                 }
333
334                 public string [] AcceptTypes {
335                         get { return accept_types; }
336                 }
337
338                 public int ClientCertificateError {
339                         get {
340                                 HttpConnection cnc = context.Connection;
341                                 if (cnc.ClientCertificate == null)
342                                         throw new InvalidOperationException ("No client certificate");
343                                 int [] errors = cnc.ClientCertificateErrors;
344                                 if (errors != null && errors.Length > 0)
345                                         return errors [0];
346                                 return 0;
347                         }
348                 }
349
350                 public Encoding ContentEncoding {
351                         get {
352                                 if (content_encoding == null)
353                                         content_encoding = Encoding.Default;
354                                 return content_encoding;
355                         }
356                 }
357
358                 public long ContentLength64 {
359                         get { return content_length; }
360                 }
361
362                 public string ContentType {
363                         get { return headers ["content-type"]; }
364                 }
365
366                 public CookieCollection Cookies {
367                         get {
368                                 // TODO: check if the collection is read-only
369                                 if (cookies == null)
370                                         cookies = new CookieCollection ();
371                                 return cookies;
372                         }
373                 }
374
375                 public bool HasEntityBody {
376                         get { return (content_length > 0 || is_chunked); }
377                 }
378
379                 public NameValueCollection Headers {
380                         get { return headers; }
381                 }
382
383                 public string HttpMethod {
384                         get { return method; }
385                 }
386
387                 public Stream InputStream {
388                         get {
389                                 if (input_stream == null) {
390                                         if (is_chunked || content_length > 0)
391                                                 input_stream = context.Connection.GetRequestStream (is_chunked, content_length);
392                                         else
393                                                 input_stream = Stream.Null;
394                                 }
395
396                                 return input_stream;
397                         }
398                 }
399
400                 [MonoTODO ("Always returns false")]
401                 public bool IsAuthenticated {
402                         get { return false; }
403                 }
404
405                 public bool IsLocal {
406                         get { return IPAddress.IsLoopback (RemoteEndPoint.Address); }
407                 }
408
409                 public bool IsSecureConnection {
410                         get { return context.Connection.IsSecure; } 
411                 }
412
413                 public bool KeepAlive {
414                         get {
415                                 if (ka_set)
416                                         return keep_alive;
417
418                                 ka_set = true;
419                                 // 1. Connection header
420                                 // 2. Protocol (1.1 == keep-alive by default)
421                                 // 3. Keep-Alive header
422                                 string cnc = headers ["Connection"];
423                                 if (!String.IsNullOrEmpty (cnc)) {
424                                         keep_alive = (0 == String.Compare (cnc, "keep-alive", StringComparison.OrdinalIgnoreCase));
425                                 } else if (version == HttpVersion.Version11) {
426                                         keep_alive = true;
427                                 } else {
428                                         cnc = headers ["keep-alive"];
429                                         if (!String.IsNullOrEmpty (cnc))
430                                                 keep_alive = (0 != String.Compare (cnc, "closed", StringComparison.OrdinalIgnoreCase));
431                                 }
432                                 return keep_alive;
433                         }
434                 }
435
436                 public IPEndPoint LocalEndPoint {
437                         get { return context.Connection.LocalEndPoint; }
438                 }
439
440                 public Version ProtocolVersion {
441                         get { return version; }
442                 }
443
444                 public NameValueCollection QueryString {
445                         get { return query_string; }
446                 }
447
448                 public string RawUrl {
449                         get { return raw_url; }
450                 }
451
452                 public IPEndPoint RemoteEndPoint {
453                         get { return context.Connection.RemoteEndPoint; }
454                 }
455
456                 [MonoTODO ("Always returns Guid.Empty")]
457                 public Guid RequestTraceIdentifier {
458                         get { return Guid.Empty; }
459                 }
460
461                 public Uri Url {
462                         get { return url; }
463                 }
464
465                 public Uri UrlReferrer {
466                         get { return referrer; }
467                 }
468
469                 public string UserAgent {
470                         get { return headers ["user-agent"]; }
471                 }
472
473                 public string UserHostAddress {
474                         get { return LocalEndPoint.ToString (); }
475                 }
476
477                 public string UserHostName {
478                         get { return headers ["host"]; }
479                 }
480
481                 public string [] UserLanguages {
482                         get { return user_languages; }
483                 }
484
485                 public IAsyncResult BeginGetClientCertificate (AsyncCallback requestCallback, object state)
486                 {
487                         if (gcc_delegate == null)
488                                 gcc_delegate = new GCCDelegate (GetClientCertificate);
489                         return gcc_delegate.BeginInvoke (requestCallback, state);
490                 }
491
492                 public X509Certificate2 EndGetClientCertificate (IAsyncResult asyncResult)
493                 {
494                         if (asyncResult == null)
495                                 throw new ArgumentNullException ("asyncResult");
496
497                         if (gcc_delegate == null)
498                                 throw new InvalidOperationException ();
499
500                         return gcc_delegate.EndInvoke (asyncResult);
501                 }
502
503                 public X509Certificate2 GetClientCertificate ()
504                 {
505                         return context.Connection.ClientCertificate;
506                 }
507
508 #if NET_4_0
509                 [MonoTODO]
510                 public string ServiceName {
511                         get {
512                                 return null;
513                         }
514                 }
515                 
516                 public TransportContext TransportContext {
517                         get {
518                                 return new Context ();
519                         }
520                 }
521 #endif
522                 
523 #if NET_4_5
524                 [MonoTODO]
525                 public bool IsWebSocketRequest {
526                         get {
527                                 return false;
528                         }
529                 }
530
531                 public Task<X509Certificate2> GetClientCertificateAsync ()
532                 {
533                         return Task<X509Certificate2>.Factory.FromAsync (BeginGetClientCertificate, EndGetClientCertificate, null);
534                 }
535 #endif
536         }
537 }
538 #endif
539