Wrap always_inline and noinline attributes in compiler checks and use MSVC equivalent.
[mono.git] / mcs / class / System / System.Net / HttpWebRequest.cs
1 //
2 // System.Net.HttpWebRequest
3 //
4 // Authors:
5 //      Lawrence Pit (loz@cable.a2000.nl)
6 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
7 //
8 // (c) 2002 Lawrence Pit
9 // (c) 2003 Ximian, Inc. (http://www.ximian.com)
10 // (c) 2004 Novell, Inc. (http://www.novell.com)
11 //
12
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34 using System;
35 using System.Collections;
36 using System.Configuration;
37 using System.Globalization;
38 using System.IO;
39 using System.Net.Cache;
40 using System.Net.Sockets;
41 using System.Runtime.Remoting.Messaging;
42 using System.Runtime.Serialization;
43 using System.Security.Cryptography.X509Certificates;
44 using System.Text;
45 using System.Threading;
46
47 namespace System.Net 
48 {
49 #if MOONLIGHT
50         internal class HttpWebRequest : WebRequest, ISerializable {
51 #else
52         [Serializable]
53         public class HttpWebRequest : WebRequest, ISerializable {
54 #endif
55                 Uri requestUri;
56                 Uri actualUri;
57                 bool hostChanged;
58                 bool allowAutoRedirect = true;
59                 bool allowBuffering = true;
60                 X509CertificateCollection certificates;
61                 string connectionGroup;
62                 long contentLength = -1;
63                 HttpContinueDelegate continueDelegate;
64                 CookieContainer cookieContainer;
65                 ICredentials credentials;
66                 bool haveResponse;              
67                 bool haveRequest;
68                 bool requestSent;
69                 WebHeaderCollection webHeaders;
70                 bool keepAlive = true;
71                 int maxAutoRedirect = 50;
72                 string mediaType = String.Empty;
73                 string method = "GET";
74                 string initialMethod = "GET";
75                 bool pipelined = true;
76                 bool preAuthenticate;
77                 bool usedPreAuth;
78                 Version version = HttpVersion.Version11;
79                 bool force_version;
80                 Version actualVersion;
81                 IWebProxy proxy;
82                 bool sendChunked;
83                 ServicePoint servicePoint;
84                 int timeout = 100000;
85                 
86                 WebConnectionStream writeStream;
87                 HttpWebResponse webResponse;
88                 WebAsyncResult asyncWrite;
89                 WebAsyncResult asyncRead;
90                 EventHandler abortHandler;
91                 int aborted;
92                 bool gotRequestStream;
93                 int redirects;
94                 bool expectContinue;
95                 bool authCompleted;
96                 byte[] bodyBuffer;
97                 int bodyBufferLength;
98                 bool getResponseCalled;
99                 Exception saved_exc;
100                 object locker = new object ();
101                 bool finished_reading;
102                 internal WebConnection WebConnection;
103                 DecompressionMethods auto_decomp;
104                 int maxResponseHeadersLength;
105                 static int defaultMaxResponseHeadersLength;
106                 int readWriteTimeout = 300000; // ms
107
108                 enum NtlmAuthState {
109                         None,
110                         Challenge,
111                         Response
112                 }
113                 NtlmAuthState ntlm_auth_state;
114                 string host;
115
116                 // Constructors
117                 static HttpWebRequest ()
118                 {
119                         defaultMaxResponseHeadersLength = 64 * 1024;
120 #if !NET_2_1
121                         NetConfig config = ConfigurationSettings.GetConfig ("system.net/settings") as NetConfig;
122                         if (config != null) {
123                                 int x = config.MaxResponseHeadersLength;
124                                 if (x != -1)
125                                         x *= 64;
126
127                                 defaultMaxResponseHeadersLength = x;
128                         }
129 #endif
130                 }
131
132 #if NET_2_1
133                 public
134 #else
135                 internal
136 #endif
137                 HttpWebRequest (Uri uri) 
138                 {
139                         this.requestUri = uri;
140                         this.actualUri = uri;
141                         this.proxy = GlobalProxySelection.Select;
142                         this.webHeaders = new WebHeaderCollection (WebHeaderCollection.HeaderInfo.Request);
143                         ThrowOnError = true;
144                 }
145                 
146                 [Obsolete ("Serialization is obsoleted for this type", false)]
147                 protected HttpWebRequest (SerializationInfo serializationInfo, StreamingContext streamingContext) 
148                 {
149                         SerializationInfo info = serializationInfo;
150
151                         requestUri = (Uri) info.GetValue ("requestUri", typeof (Uri));
152                         actualUri = (Uri) info.GetValue ("actualUri", typeof (Uri));
153                         allowAutoRedirect = info.GetBoolean ("allowAutoRedirect");
154                         allowBuffering = info.GetBoolean ("allowBuffering");
155                         certificates = (X509CertificateCollection) info.GetValue ("certificates", typeof (X509CertificateCollection));
156                         connectionGroup = info.GetString ("connectionGroup");
157                         contentLength = info.GetInt64 ("contentLength");
158                         webHeaders = (WebHeaderCollection) info.GetValue ("webHeaders", typeof (WebHeaderCollection));
159                         keepAlive = info.GetBoolean ("keepAlive");
160                         maxAutoRedirect = info.GetInt32 ("maxAutoRedirect");
161                         mediaType = info.GetString ("mediaType");
162                         method = info.GetString ("method");
163                         initialMethod = info.GetString ("initialMethod");
164                         pipelined = info.GetBoolean ("pipelined");
165                         version = (Version) info.GetValue ("version", typeof (Version));
166                         proxy = (IWebProxy) info.GetValue ("proxy", typeof (IWebProxy));
167                         sendChunked = info.GetBoolean ("sendChunked");
168                         timeout = info.GetInt32 ("timeout");
169                         redirects = info.GetInt32 ("redirects");
170                         host = info.GetString ("host");
171                 }
172                 
173                 // Properties
174
175                 public string Accept {
176                         get { return webHeaders ["Accept"]; }
177                         set {
178                                 CheckRequestStarted ();
179                                 webHeaders.RemoveAndAdd ("Accept", value);
180                         }
181                 }
182                 
183                 public Uri Address {
184                         get { return actualUri; }
185                         internal set { actualUri = value; } // Used by Ftp+proxy
186                 }
187                 
188                 public bool AllowAutoRedirect {
189                         get { return allowAutoRedirect; }
190                         set { this.allowAutoRedirect = value; }
191                 }
192                 
193                 public bool AllowWriteStreamBuffering {
194                         get { return allowBuffering; }
195                         set { allowBuffering = value; }
196                 }
197
198                 static Exception GetMustImplement ()
199                 {
200                         return new NotImplementedException ();
201                 }
202                 
203                 public DecompressionMethods AutomaticDecompression
204                 {
205                         get {
206                                 return auto_decomp;
207                         }
208                         set {
209                                 CheckRequestStarted ();
210                                 auto_decomp = value;
211                         }
212                 }
213                 
214                 internal bool InternalAllowBuffering {
215                         get {
216                                 return (allowBuffering && (method != "HEAD" && method != "GET" &&
217                                                         method != "MKCOL" && method != "CONNECT" &&
218                                                         method != "TRACE"));
219                         }
220                 }
221                 
222                 public X509CertificateCollection ClientCertificates {
223                         get {
224                                 if (certificates == null)
225                                         certificates = new X509CertificateCollection ();
226
227                                 return certificates;
228                         }
229                         [MonoTODO]
230                         set {
231                                 throw GetMustImplement ();
232                         }
233                 }
234                 
235                 public string Connection {
236                         get { return webHeaders ["Connection"]; }
237                         set {
238                                 CheckRequestStarted ();
239
240                                 if (string.IsNullOrEmpty (value)) {
241                                         webHeaders.RemoveInternal ("Connection");
242                                         return;
243                                 }
244
245                                 string val = value.ToLowerInvariant ();
246                                 if (val.Contains ("keep-alive") || val.Contains ("close"))
247                                         throw new ArgumentException ("Keep-Alive and Close may not be set with this property");
248
249                                 if (keepAlive)
250                                         value = value + ", Keep-Alive";
251                                 
252                                 webHeaders.RemoveAndAdd ("Connection", value);
253                         }
254                 }               
255                 
256                 public override string ConnectionGroupName { 
257                         get { return connectionGroup; }
258                         set { connectionGroup = value; }
259                 }
260                 
261                 public override long ContentLength { 
262                         get { return contentLength; }
263                         set { 
264                                 CheckRequestStarted ();
265                                 if (value < 0)
266                                         throw new ArgumentOutOfRangeException ("value", "Content-Length must be >= 0");
267                                         
268                                 contentLength = value;
269                         }
270                 }
271                 
272                 internal long InternalContentLength {
273                         set { contentLength = value; }
274                 }
275                         
276                 internal bool ThrowOnError { get; set; }
277                 
278                 public override string ContentType { 
279                         get { return webHeaders ["Content-Type"]; }
280                         set {
281                                 if (value == null || value.Trim().Length == 0) {
282                                         webHeaders.RemoveInternal ("Content-Type");
283                                         return;
284                                 }
285                                 webHeaders.RemoveAndAdd ("Content-Type", value);
286                         }
287                 }
288                 
289                 public HttpContinueDelegate ContinueDelegate {
290                         get { return continueDelegate; }
291                         set { continueDelegate = value; }
292                 }
293                 
294                 public CookieContainer CookieContainer {
295                         get { return cookieContainer; }
296                         set { cookieContainer = value; }
297                 }
298                 
299                 public override ICredentials Credentials { 
300                         get { return credentials; }
301                         set { credentials = value; }
302                 }
303 #if NET_4_0
304                 public DateTime Date {
305                         get {
306                                 string date = webHeaders ["Date"];
307                                 if (date == null)
308                                         return DateTime.MinValue;
309                                 return DateTime.ParseExact (date, "r", CultureInfo.InvariantCulture).ToLocalTime ();
310                         }
311                         set {
312                                 if (value.Equals (DateTime.MinValue))
313                                         webHeaders.RemoveInternal ("Date");
314                                 else
315                                         webHeaders.RemoveAndAdd ("Date", value.ToUniversalTime ().ToString ("r", CultureInfo.InvariantCulture));
316                         }
317                 }
318 #endif
319                 [MonoTODO]
320                 public static new RequestCachePolicy DefaultCachePolicy
321                 {
322                         get {
323                                 throw GetMustImplement ();
324                         }
325                         set {
326                                 throw GetMustImplement ();
327                         }
328                 }
329                 
330                 [MonoTODO]
331                 public static int DefaultMaximumErrorResponseLength
332                 {
333                         get {
334                                 throw GetMustImplement ();
335                         }
336                         set {
337                                 throw GetMustImplement ();
338                         }
339                 }
340                 
341                 public string Expect {
342                         get { return webHeaders ["Expect"]; }
343                         set {
344                                 CheckRequestStarted ();
345                                 string val = value;
346                                 if (val != null)
347                                         val = val.Trim ().ToLower ();
348
349                                 if (val == null || val.Length == 0) {
350                                         webHeaders.RemoveInternal ("Expect");
351                                         return;
352                                 }
353
354                                 if (val == "100-continue")
355                                         throw new ArgumentException ("100-Continue cannot be set with this property.",
356                                                                      "value");
357                                 webHeaders.RemoveAndAdd ("Expect", value);
358                         }
359                 }
360                 
361                 public bool HaveResponse {
362                         get { return haveResponse; }
363                 }
364                 
365                 public override WebHeaderCollection Headers { 
366                         get { return webHeaders; }
367                         set {
368                                 CheckRequestStarted ();
369                                 WebHeaderCollection newHeaders = new WebHeaderCollection (WebHeaderCollection.HeaderInfo.Request);
370                                 int count = value.Count;
371                                 for (int i = 0; i < count; i++) 
372                                         newHeaders.Add (value.GetKey (i), value.Get (i));
373
374                                 webHeaders = newHeaders;
375                         }
376                 }
377                 
378 #if NET_4_0
379                 public
380 #else
381                 internal
382 #endif
383                 string Host {
384                         get {
385                                 if (host == null)
386                                         return actualUri.Authority;
387                                 return host;
388                         }
389                         set {
390                                 if (value == null)
391                                         throw new ArgumentNullException ("value");
392
393                                 if (!CheckValidHost (actualUri.Scheme, value))
394                                         throw new ArgumentException ("Invalid host: " + value);
395
396                                 host = value;
397                         }
398                 }
399
400                 static bool CheckValidHost (string scheme, string val)
401                 {
402                         if (val.Length == 0)
403                                 return false;
404
405                         if (val [0] == '.')
406                                 return false;
407
408                         int idx = val.IndexOf ('/');
409                         if (idx >= 0)
410                                 return false;
411
412                         string u = scheme + "://" + val + "/";
413                         return Uri.IsWellFormedUriString (u, UriKind.Absolute);
414                 }
415
416                 public DateTime IfModifiedSince {
417                         get { 
418                                 string str = webHeaders ["If-Modified-Since"];
419                                 if (str == null)
420                                         return DateTime.Now;
421                                 try {
422                                         return MonoHttpDate.Parse (str);
423                                 } catch (Exception) {
424                                         return DateTime.Now;
425                                 }
426                         }
427                         set {
428                                 CheckRequestStarted ();
429                                 // rfc-1123 pattern
430                                 webHeaders.SetInternal ("If-Modified-Since", 
431                                         value.ToUniversalTime ().ToString ("r", null));
432                                 // TODO: check last param when using different locale
433                         }
434                 }
435
436                 public bool KeepAlive {         
437                         get {
438                                 return keepAlive;
439                         }
440                         set {
441                                 keepAlive = value;
442                         }
443                 }
444                 
445                 public int MaximumAutomaticRedirections {
446                         get { return maxAutoRedirect; }
447                         set {
448                                 if (value <= 0)
449                                         throw new ArgumentException ("Must be > 0", "value");
450
451                                 maxAutoRedirect = value;
452                         }                       
453                 }
454
455                 [MonoTODO ("Use this")]
456                 public int MaximumResponseHeadersLength {
457                         get { return maxResponseHeadersLength; }
458                         set { maxResponseHeadersLength = value; }
459                 }
460
461                 [MonoTODO ("Use this")]
462                 public static int DefaultMaximumResponseHeadersLength {
463                         get { return defaultMaxResponseHeadersLength; }
464                         set { defaultMaxResponseHeadersLength = value; }
465                 }
466
467                 public  int ReadWriteTimeout {
468                         get { return readWriteTimeout; }
469                         set {
470                                 if (requestSent)
471                                         throw new InvalidOperationException ("The request has already been sent.");
472
473                                 if (value < -1)
474                                         throw new ArgumentOutOfRangeException ("value", "Must be >= -1");
475
476                                 readWriteTimeout = value;
477                         }
478                 }
479                 
480                 public string MediaType {
481                         get { return mediaType; }
482                         set { 
483                                 mediaType = value;
484                         }
485                 }
486                 
487                 public override string Method { 
488                         get { return this.method; }
489                         set { 
490                                 if (value == null || value.Trim () == "")
491                                         throw new ArgumentException ("not a valid method");
492
493                                 method = value.ToUpperInvariant ();
494                                 if (method != "HEAD" && method != "GET" && method != "POST" && method != "PUT" &&
495                                         method != "DELETE" && method != "CONNECT" && method != "TRACE" &&
496                                         method != "MKCOL") {
497                                         method = value;
498                                 }
499                         }
500                 }
501                 
502                 public bool Pipelined {
503                         get { return pipelined; }
504                         set { pipelined = value; }
505                 }               
506                 
507                 public override bool PreAuthenticate { 
508                         get { return preAuthenticate; }
509                         set { preAuthenticate = value; }
510                 }
511                 
512                 public Version ProtocolVersion {
513                         get { return version; }
514                         set { 
515                                 if (value != HttpVersion.Version10 && value != HttpVersion.Version11)
516                                         throw new ArgumentException ("value");
517
518                                 force_version = true;
519                                 version = value; 
520                         }
521                 }
522                 
523                 public override IWebProxy Proxy { 
524                         get { return proxy; }
525                         set { 
526                                 CheckRequestStarted ();
527                                 proxy = value;
528                                 servicePoint = null; // we may need a new one
529                         }
530                 }
531                 
532                 public string Referer {
533                         get { return webHeaders ["Referer"]; }
534                         set {
535                                 CheckRequestStarted ();
536                                 if (value == null || value.Trim().Length == 0) {
537                                         webHeaders.RemoveInternal ("Referer");
538                                         return;
539                                 }
540                                 webHeaders.SetInternal ("Referer", value);
541                         }
542                 }
543
544                 public override Uri RequestUri { 
545                         get { return requestUri; }
546                 }
547                 
548                 public bool SendChunked {
549                         get { return sendChunked; }
550                         set {
551                                 CheckRequestStarted ();
552                                 sendChunked = value;
553                         }
554                 }
555                 
556                 public ServicePoint ServicePoint {
557                         get { return GetServicePoint (); }
558                 }
559
560                 internal ServicePoint ServicePointNoLock {
561                         get { return servicePoint; }
562                 }
563 #if NET_4_5 || MOBILE
564                 [MonoTODO ("for portable library support")]
565                 public bool SupportsCookieContainer { 
566                         get {
567                                 throw new NotImplementedException ();
568                         }
569                 }
570 #endif
571                 public override int Timeout { 
572                         get { return timeout; }
573                         set {
574                                 if (value < -1)
575                                         throw new ArgumentOutOfRangeException ("value");
576
577                                 timeout = value;
578                         }
579                 }
580                 
581                 public string TransferEncoding {
582                         get { return webHeaders ["Transfer-Encoding"]; }
583                         set {
584                                 CheckRequestStarted ();
585                                 string val = value;
586                                 if (val != null)
587                                         val = val.Trim ().ToLower ();
588
589                                 if (val == null || val.Length == 0) {
590                                         webHeaders.RemoveInternal ("Transfer-Encoding");
591                                         return;
592                                 }
593
594                                 if (val == "chunked")
595                                         throw new ArgumentException ("Chunked encoding must be set with the SendChunked property");
596
597                                 if (!sendChunked)
598                                         throw new ArgumentException ("SendChunked must be True", "value");
599
600                                 webHeaders.RemoveAndAdd ("Transfer-Encoding", value);
601                         }
602                 }
603
604                 public override bool UseDefaultCredentials
605                 {
606                         get { return CredentialCache.DefaultCredentials == Credentials; }
607                         set { Credentials = value ? CredentialCache.DefaultCredentials : null; }
608                 }
609                 
610                 public string UserAgent {
611                         get { return webHeaders ["User-Agent"]; }
612                         set { webHeaders.SetInternal ("User-Agent", value); }
613                 }
614
615                 bool unsafe_auth_blah;
616                 public bool UnsafeAuthenticatedConnectionSharing
617                 {
618                         get { return unsafe_auth_blah; }
619                         set { unsafe_auth_blah = value; }
620                 }
621
622                 internal bool GotRequestStream {
623                         get { return gotRequestStream; }
624                 }
625
626                 internal bool ExpectContinue {
627                         get { return expectContinue; }
628                         set { expectContinue = value; }
629                 }
630                 
631                 internal Uri AuthUri {
632                         get { return actualUri; }
633                 }
634                 
635                 internal bool ProxyQuery {
636                         get { return servicePoint.UsesProxy && !servicePoint.UseConnect; }
637                 }
638                 
639                 // Methods
640                 
641                 internal ServicePoint GetServicePoint ()
642                 {
643                         lock (locker) {
644                                 if (hostChanged || servicePoint == null) {
645                                         servicePoint = ServicePointManager.FindServicePoint (actualUri, proxy);
646                                         hostChanged = false;
647                                 }
648                         }
649
650                         return servicePoint;
651                 }
652                 
653                 public void AddRange (int range)
654                 {
655                         AddRange ("bytes", (long) range);
656                 }
657                 
658                 public void AddRange (int from, int to)
659                 {
660                         AddRange ("bytes", (long) from, (long) to);
661                 }
662                 
663                 public void AddRange (string rangeSpecifier, int range)
664                 {
665                         AddRange (rangeSpecifier, (long) range);
666                 }
667                 
668                 public void AddRange (string rangeSpecifier, int from, int to)
669                 {
670                         AddRange (rangeSpecifier, (long) from, (long) to);
671                 }
672 #if NET_4_0
673                 public
674 #else
675                 internal
676 #endif
677                 void AddRange (long range)
678                 {
679                         AddRange ("bytes", (long) range);
680                 }
681
682 #if NET_4_0
683                 public
684 #else
685                 internal
686 #endif
687                 void AddRange (long from, long to)
688                 {
689                         AddRange ("bytes", from, to);
690                 }
691
692 #if NET_4_0
693                 public
694 #else
695                 internal
696 #endif
697                 void AddRange (string rangeSpecifier, long range)
698                 {
699                         if (rangeSpecifier == null)
700                                 throw new ArgumentNullException ("rangeSpecifier");
701                         if (!WebHeaderCollection.IsHeaderValue (rangeSpecifier))
702                                 throw new ArgumentException ("Invalid range specifier", "rangeSpecifier");
703
704                         string r = webHeaders ["Range"];
705                         if (r == null)
706                                 r = rangeSpecifier + "=";
707                         else {
708                                 string old_specifier = r.Substring (0, r.IndexOf ('='));
709                                 if (String.Compare (old_specifier, rangeSpecifier, StringComparison.OrdinalIgnoreCase) != 0)
710                                         throw new InvalidOperationException ("A different range specifier is already in use");
711                                 r += ",";
712                         }
713
714                         string n = range.ToString (CultureInfo.InvariantCulture);
715                         if (range < 0)
716                                 r = r + "0" + n;
717                         else
718                                 r = r + n + "-";
719                         webHeaders.RemoveAndAdd ("Range", r);
720                 }
721
722 #if NET_4_0
723                 public
724 #else
725                 internal
726 #endif
727                 void AddRange (string rangeSpecifier, long from, long to)
728                 {
729                         if (rangeSpecifier == null)
730                                 throw new ArgumentNullException ("rangeSpecifier");
731                         if (!WebHeaderCollection.IsHeaderValue (rangeSpecifier))
732                                 throw new ArgumentException ("Invalid range specifier", "rangeSpecifier");
733                         if (from > to || from < 0)
734                                 throw new ArgumentOutOfRangeException ("from");
735                         if (to < 0)
736                                 throw new ArgumentOutOfRangeException ("to");
737
738                         string r = webHeaders ["Range"];
739                         if (r == null)
740                                 r = rangeSpecifier + "=";
741                         else
742                                 r += ",";
743
744                         r = String.Format ("{0}{1}-{2}", r, from, to);
745                         webHeaders.RemoveAndAdd ("Range", r);
746                 }
747
748                 
749                 public override IAsyncResult BeginGetRequestStream (AsyncCallback callback, object state) 
750                 {
751                         if (Aborted)
752                                 throw new WebException ("The request was canceled.", WebExceptionStatus.RequestCanceled);
753
754                         bool send = !(method == "GET" || method == "CONNECT" || method == "HEAD" ||
755                                         method == "TRACE");
756                         if (method == null || !send)
757                                 throw new ProtocolViolationException ("Cannot send data when method is: " + method);
758
759                         if (contentLength == -1 && !sendChunked && !allowBuffering && KeepAlive)
760                                 throw new ProtocolViolationException ("Content-Length not set");
761
762                         string transferEncoding = TransferEncoding;
763                         if (!sendChunked && transferEncoding != null && transferEncoding.Trim () != "")
764                                 throw new ProtocolViolationException ("SendChunked should be true.");
765
766                         lock (locker)
767                         {
768                                 if (asyncWrite != null) {
769                                         throw new InvalidOperationException ("Cannot re-call start of asynchronous " +
770                                                                 "method while a previous call is still in progress.");
771                                 }
772         
773                                 asyncWrite = new WebAsyncResult (this, callback, state);
774                                 initialMethod = method;
775                                 if (haveRequest) {
776                                         if (writeStream != null) {
777                                                 asyncWrite.SetCompleted (true, writeStream);
778                                                 asyncWrite.DoCallback ();
779                                                 return asyncWrite;
780                                         }
781                                 }
782                                 
783                                 gotRequestStream = true;
784                                 WebAsyncResult result = asyncWrite;
785                                 if (!requestSent) {
786                                         requestSent = true;
787                                         redirects = 0;
788                                         servicePoint = GetServicePoint ();
789                                         abortHandler = servicePoint.SendRequest (this, connectionGroup);
790                                 }
791                                 return result;
792                         }
793                 }
794
795                 public override Stream EndGetRequestStream (IAsyncResult asyncResult)
796                 {
797                         if (asyncResult == null)
798                                 throw new ArgumentNullException ("asyncResult");
799
800                         WebAsyncResult result = asyncResult as WebAsyncResult;
801                         if (result == null)
802                                 throw new ArgumentException ("Invalid IAsyncResult");
803
804                         asyncWrite = result;
805                         result.WaitUntilComplete ();
806
807                         Exception e = result.Exception;
808                         if (e != null)
809                                 throw e;
810
811                         return result.WriteStream;
812                 }
813                 
814                 public override Stream GetRequestStream()
815                 {
816                         IAsyncResult asyncResult = asyncWrite;
817                         if (asyncResult == null) {
818                                 asyncResult = BeginGetRequestStream (null, null);
819                                 asyncWrite = (WebAsyncResult) asyncResult;
820                         }
821
822                         if (!asyncResult.IsCompleted && !asyncResult.AsyncWaitHandle.WaitOne (timeout, false)) {
823                                 Abort ();
824                                 throw new WebException ("The request timed out", WebExceptionStatus.Timeout);
825                         }
826
827                         return EndGetRequestStream (asyncResult);
828                 }
829
830                 void CheckIfForceWrite ()
831                 {
832                         if (writeStream == null || writeStream.RequestWritten || !InternalAllowBuffering)
833                                 return;
834 #if NET_4_0
835                         if (contentLength < 0 && writeStream.CanWrite == true && writeStream.WriteBufferLength <= 0)
836                                 return;
837
838                         if (contentLength < 0 && writeStream.WriteBufferLength > 0)
839                                 InternalContentLength = writeStream.WriteBufferLength;
840 #else
841                         if (contentLength < 0 && writeStream.CanWrite == true)
842                                 return;
843 #endif
844
845                         // This will write the POST/PUT if the write stream already has the expected
846                         // amount of bytes in it (ContentLength) (bug #77753) or if the write stream
847                         // contains data and it has been closed already (xamarin bug #1512).
848
849                         if (writeStream.WriteBufferLength == contentLength || (contentLength == -1 && writeStream.CanWrite == false))
850                                 writeStream.WriteRequest ();
851                 }
852
853                 public override IAsyncResult BeginGetResponse (AsyncCallback callback, object state)
854                 {
855                         if (Aborted)
856                                 throw new WebException ("The request was canceled.", WebExceptionStatus.RequestCanceled);
857
858                         if (method == null)
859                                 throw new ProtocolViolationException ("Method is null.");
860
861                         string transferEncoding = TransferEncoding;
862                         if (!sendChunked && transferEncoding != null && transferEncoding.Trim () != "")
863                                 throw new ProtocolViolationException ("SendChunked should be true.");
864
865                         Monitor.Enter (locker);
866                         getResponseCalled = true;
867                         if (asyncRead != null && !haveResponse) {
868                                 Monitor.Exit (locker);
869                                 throw new InvalidOperationException ("Cannot re-call start of asynchronous " +
870                                                         "method while a previous call is still in progress.");
871                         }
872
873                         CheckIfForceWrite ();
874                         asyncRead = new WebAsyncResult (this, callback, state);
875                         WebAsyncResult aread = asyncRead;
876                         initialMethod = method;
877                         if (haveResponse) {
878                                 Exception saved = saved_exc;
879                                 if (webResponse != null) {
880                                         Monitor.Exit (locker);
881                                         if (saved == null) {
882                                                 aread.SetCompleted (true, webResponse);
883                                         } else {
884                                                 aread.SetCompleted (true, saved);
885                                         }
886                                         aread.DoCallback ();
887                                         return aread;
888                                 } else if (saved != null) {
889                                         Monitor.Exit (locker);
890                                         aread.SetCompleted (true, saved);
891                                         aread.DoCallback ();
892                                         return aread;
893                                 }
894                         }
895                         
896                         if (!requestSent) {
897                                 requestSent = true;
898                                 redirects = 0;
899                                 servicePoint = GetServicePoint ();
900                                 abortHandler = servicePoint.SendRequest (this, connectionGroup);
901                         }
902
903                         Monitor.Exit (locker);
904                         return aread;
905                 }
906                 
907                 public override WebResponse EndGetResponse (IAsyncResult asyncResult)
908                 {
909                         if (asyncResult == null)
910                                 throw new ArgumentNullException ("asyncResult");
911
912                         WebAsyncResult result = asyncResult as WebAsyncResult;
913                         if (result == null)
914                                 throw new ArgumentException ("Invalid IAsyncResult", "asyncResult");
915
916                         if (!result.WaitUntilComplete (timeout, false)) {
917                                 Abort ();
918                                 throw new WebException("The request timed out", WebExceptionStatus.Timeout);
919                         }
920
921                         if (result.GotException)
922                                 throw result.Exception;
923
924                         return result.Response;
925                 }
926
927                 public override WebResponse GetResponse()
928                 {
929                         WebAsyncResult result = (WebAsyncResult) BeginGetResponse (null, null);
930                         return EndGetResponse (result);
931                 }
932                 
933                 internal bool FinishedReading {
934                         get { return finished_reading; }
935                         set { finished_reading = value; }
936                 }
937
938                 internal bool Aborted {
939                         get { return Interlocked.CompareExchange (ref aborted, 0, 0) == 1; }
940                 }
941
942                 public override void Abort ()
943                 {
944                         if (Interlocked.CompareExchange (ref aborted, 1, 0) == 1)
945                                 return;
946
947                         if (haveResponse && finished_reading)
948                                 return;
949
950                         haveResponse = true;
951                         if (abortHandler != null) {
952                                 try {
953                                         abortHandler (this, EventArgs.Empty);
954                                 } catch (Exception) {}
955                                 abortHandler = null;
956                         }
957
958                         if (asyncWrite != null) {
959                                 WebAsyncResult r = asyncWrite;
960                                 if (!r.IsCompleted) {
961                                         try {
962                                                 WebException wexc = new WebException ("Aborted.", WebExceptionStatus.RequestCanceled); 
963                                                 r.SetCompleted (false, wexc);
964                                                 r.DoCallback ();
965                                         } catch {}
966                                 }
967                                 asyncWrite = null;
968                         }                       
969
970                         if (asyncRead != null) {
971                                 WebAsyncResult r = asyncRead;
972                                 if (!r.IsCompleted) {
973                                         try {
974                                                 WebException wexc = new WebException ("Aborted.", WebExceptionStatus.RequestCanceled); 
975                                                 r.SetCompleted (false, wexc);
976                                                 r.DoCallback ();
977                                         } catch {}
978                                 }
979                                 asyncRead = null;
980                         }                       
981
982                         if (writeStream != null) {
983                                 try {
984                                         writeStream.Close ();
985                                         writeStream = null;
986                                 } catch {}
987                         }
988
989                         if (webResponse != null) {
990                                 try {
991                                         webResponse.Close ();
992                                         webResponse = null;
993                                 } catch {}
994                         }
995                 }               
996                 
997                 void ISerializable.GetObjectData (SerializationInfo serializationInfo,
998                                                   StreamingContext streamingContext)
999                 {
1000                         GetObjectData (serializationInfo, streamingContext);
1001                 }
1002
1003                 protected override void GetObjectData (SerializationInfo serializationInfo,
1004                         StreamingContext streamingContext)
1005                 {
1006                         SerializationInfo info = serializationInfo;
1007
1008                         info.AddValue ("requestUri", requestUri, typeof (Uri));
1009                         info.AddValue ("actualUri", actualUri, typeof (Uri));
1010                         info.AddValue ("allowAutoRedirect", allowAutoRedirect);
1011                         info.AddValue ("allowBuffering", allowBuffering);
1012                         info.AddValue ("certificates", certificates, typeof (X509CertificateCollection));
1013                         info.AddValue ("connectionGroup", connectionGroup);
1014                         info.AddValue ("contentLength", contentLength);
1015                         info.AddValue ("webHeaders", webHeaders, typeof (WebHeaderCollection));
1016                         info.AddValue ("keepAlive", keepAlive);
1017                         info.AddValue ("maxAutoRedirect", maxAutoRedirect);
1018                         info.AddValue ("mediaType", mediaType);
1019                         info.AddValue ("method", method);
1020                         info.AddValue ("initialMethod", initialMethod);
1021                         info.AddValue ("pipelined", pipelined);
1022                         info.AddValue ("version", version, typeof (Version));
1023                         info.AddValue ("proxy", proxy, typeof (IWebProxy));
1024                         info.AddValue ("sendChunked", sendChunked);
1025                         info.AddValue ("timeout", timeout);
1026                         info.AddValue ("redirects", redirects);
1027                         info.AddValue ("host", host);
1028                 }
1029                 
1030                 void CheckRequestStarted () 
1031                 {
1032                         if (requestSent)
1033                                 throw new InvalidOperationException ("request started");
1034                 }
1035
1036                 internal void DoContinueDelegate (int statusCode, WebHeaderCollection headers)
1037                 {
1038                         if (continueDelegate != null)
1039                                 continueDelegate (statusCode, headers);
1040                 }
1041                 
1042                 bool Redirect (WebAsyncResult result, HttpStatusCode code)
1043                 {
1044                         redirects++;
1045                         Exception e = null;
1046                         string uriString = null;
1047
1048                         switch (code) {
1049                         case HttpStatusCode.Ambiguous: // 300
1050                                 e = new WebException ("Ambiguous redirect.");
1051                                 break;
1052                         case HttpStatusCode.MovedPermanently: // 301
1053                         case HttpStatusCode.Redirect: // 302
1054                         case HttpStatusCode.TemporaryRedirect: // 307
1055                                 /* MS follows the redirect for POST too
1056                                 if (method != "GET" && method != "HEAD") // 10.3
1057                                         return false;
1058                                 */
1059
1060                                 contentLength = -1;
1061                                 bodyBufferLength = 0;
1062                                 bodyBuffer = null;
1063                                 if (code != HttpStatusCode.TemporaryRedirect)
1064                                         method = "GET";
1065                                 uriString = webResponse.Headers ["Location"];
1066                                 break;
1067                         case HttpStatusCode.SeeOther: //303
1068                                 method = "GET";
1069                                 uriString = webResponse.Headers ["Location"];
1070                                 break;
1071                         case HttpStatusCode.NotModified: // 304
1072                                 return false;
1073                         case HttpStatusCode.UseProxy: // 305
1074                                 e = new NotImplementedException ("Proxy support not available.");
1075                                 break;
1076                         case HttpStatusCode.Unused: // 306
1077                         default:
1078                                 e = new ProtocolViolationException ("Invalid status code: " + (int) code);
1079                                 break;
1080                         }
1081
1082                         if (e != null)
1083                                 throw e;
1084
1085                         if (uriString == null)
1086                                 throw new WebException ("No Location header found for " + (int) code,
1087                                                         WebExceptionStatus.ProtocolError);
1088
1089                         Uri prev = actualUri;
1090                         try {
1091                                 actualUri = new Uri (actualUri, uriString);
1092                         } catch (Exception) {
1093                                 throw new WebException (String.Format ("Invalid URL ({0}) for {1}",
1094                                                                         uriString, (int) code),
1095                                                                         WebExceptionStatus.ProtocolError);
1096                         }
1097
1098                         hostChanged = (actualUri.Scheme != prev.Scheme || Host != prev.Authority);
1099                         return true;
1100                 }
1101
1102                 string GetHeaders ()
1103                 {
1104                         bool continue100 = false;
1105                         if (sendChunked) {
1106                                 continue100 = true;
1107                                 webHeaders.RemoveAndAdd ("Transfer-Encoding", "chunked");
1108                                 webHeaders.RemoveInternal ("Content-Length");
1109                         } else if (contentLength != -1) {
1110                                 if (ntlm_auth_state != NtlmAuthState.Challenge) {
1111                                         if (contentLength > 0)
1112                                                 continue100 = true;
1113
1114                                         webHeaders.SetInternal ("Content-Length", contentLength.ToString ());
1115                                 } else {
1116                                         webHeaders.SetInternal ("Content-Length", "0");
1117                                 }
1118                                 webHeaders.RemoveInternal ("Transfer-Encoding");
1119                         } else {
1120                                 webHeaders.RemoveInternal ("Content-Length");
1121                         }
1122
1123                         if (actualVersion == HttpVersion.Version11 && continue100 &&
1124                             servicePoint.SendContinue) { // RFC2616 8.2.3
1125                                 webHeaders.RemoveAndAdd ("Expect" , "100-continue");
1126                                 expectContinue = true;
1127                         } else {
1128                                 webHeaders.RemoveInternal ("Expect");
1129                                 expectContinue = false;
1130                         }
1131
1132                         bool proxy_query = ProxyQuery;
1133                         string connectionHeader = (proxy_query) ? "Proxy-Connection" : "Connection";
1134                         webHeaders.RemoveInternal ((!proxy_query) ? "Proxy-Connection" : "Connection");
1135                         Version proto_version = servicePoint.ProtocolVersion;
1136                         bool spoint10 = (proto_version == null || proto_version == HttpVersion.Version10);
1137
1138                         if (keepAlive && (version == HttpVersion.Version10 || spoint10)) {
1139                                 webHeaders.RemoveAndAdd (connectionHeader, "keep-alive");
1140                         } else if (!keepAlive && version == HttpVersion.Version11) {
1141                                 webHeaders.RemoveAndAdd (connectionHeader, "close");
1142                         }
1143
1144                         webHeaders.SetInternal ("Host", Host);
1145                         if (cookieContainer != null) {
1146                                 string cookieHeader = cookieContainer.GetCookieHeader (actualUri);
1147                                 if (cookieHeader != "")
1148                                         webHeaders.RemoveAndAdd ("Cookie", cookieHeader);
1149                                 else
1150                                         webHeaders.RemoveInternal ("Cookie");
1151                         }
1152
1153                         string accept_encoding = null;
1154                         if ((auto_decomp & DecompressionMethods.GZip) != 0)
1155                                 accept_encoding = "gzip";
1156                         if ((auto_decomp & DecompressionMethods.Deflate) != 0)
1157                                 accept_encoding = accept_encoding != null ? "gzip, deflate" : "deflate";
1158                         if (accept_encoding != null)
1159                                 webHeaders.RemoveAndAdd ("Accept-Encoding", accept_encoding);
1160
1161                         if (!usedPreAuth && preAuthenticate)
1162                                 DoPreAuthenticate ();
1163
1164                         return webHeaders.ToString ();
1165                 }
1166
1167                 void DoPreAuthenticate ()
1168                 {
1169                         bool isProxy = (proxy != null && !proxy.IsBypassed (actualUri));
1170                         ICredentials creds = (!isProxy || credentials != null) ? credentials : proxy.Credentials;
1171                         Authorization auth = AuthenticationManager.PreAuthenticate (this, creds);
1172                         if (auth == null)
1173                                 return;
1174
1175                         webHeaders.RemoveInternal ("Proxy-Authorization");
1176                         webHeaders.RemoveInternal ("Authorization");
1177                         string authHeader = (isProxy && credentials == null) ? "Proxy-Authorization" : "Authorization";
1178                         webHeaders [authHeader] = auth.Message;
1179                         usedPreAuth = true;
1180                 }
1181                 
1182                 internal void SetWriteStreamError (WebExceptionStatus status, Exception exc)
1183                 {
1184                         if (Aborted)
1185                                 return;
1186
1187                         WebAsyncResult r = asyncWrite;
1188                         if (r == null)
1189                                 r = asyncRead;
1190
1191                         if (r != null) {
1192                                 string msg;
1193                                 WebException wex;
1194                                 if (exc == null) {
1195                                         msg = "Error: " + status;
1196                                         wex = new WebException (msg, status);
1197                                 } else {
1198                                         msg = String.Format ("Error: {0} ({1})", status, exc.Message);
1199                                         wex = new WebException (msg, exc, status);
1200                                 }
1201                                 r.SetCompleted (false, wex);
1202                                 r.DoCallback ();
1203                         }
1204                 }
1205
1206                 internal void SendRequestHeaders (bool propagate_error)
1207                 {
1208                         StringBuilder req = new StringBuilder ();
1209                         string query;
1210                         if (!ProxyQuery) {
1211                                 query = actualUri.PathAndQuery;
1212                         } else {
1213                                 query = String.Format ("{0}://{1}{2}",  actualUri.Scheme,
1214                                                                         Host,
1215                                                                         actualUri.PathAndQuery);
1216                         }
1217                         
1218                         if (!force_version && servicePoint.ProtocolVersion != null && servicePoint.ProtocolVersion < version) {
1219                                 actualVersion = servicePoint.ProtocolVersion;
1220                         } else {
1221                                 actualVersion = version;
1222                         }
1223
1224                         req.AppendFormat ("{0} {1} HTTP/{2}.{3}\r\n", method, query,
1225                                                                 actualVersion.Major, actualVersion.Minor);
1226                         req.Append (GetHeaders ());
1227                         string reqstr = req.ToString ();
1228                         byte [] bytes = Encoding.UTF8.GetBytes (reqstr);
1229                         try {
1230                                 writeStream.SetHeaders (bytes);
1231                         } catch (WebException wexc) {
1232                                 SetWriteStreamError (wexc.Status, wexc);
1233                                 if (propagate_error)
1234                                         throw;
1235                         } catch (Exception exc) {
1236                                 SetWriteStreamError (WebExceptionStatus.SendFailure, exc);
1237                                 if (propagate_error)
1238                                         throw;
1239                         }
1240                 }
1241
1242                 internal void SetWriteStream (WebConnectionStream stream)
1243                 {
1244                         if (Aborted)
1245                                 return;
1246                         
1247                         writeStream = stream;
1248                         if (bodyBuffer != null) {
1249                                 webHeaders.RemoveInternal ("Transfer-Encoding");
1250                                 contentLength = bodyBufferLength;
1251                                 writeStream.SendChunked = false;
1252                         }
1253
1254                         SendRequestHeaders (false);
1255
1256                         haveRequest = true;
1257                         
1258                         if (bodyBuffer != null) {
1259                                 // The body has been written and buffered. The request "user"
1260                                 // won't write it again, so we must do it.
1261                                 if (ntlm_auth_state != NtlmAuthState.Challenge) {
1262                                         writeStream.Write (bodyBuffer, 0, bodyBufferLength);
1263                                         bodyBuffer = null;
1264                                         writeStream.Close ();
1265                                 }
1266                         } else if (method != "HEAD" && method != "GET" && method != "MKCOL" && method != "CONNECT" &&
1267                                         method != "TRACE") {
1268                                 if (getResponseCalled && !writeStream.RequestWritten)
1269                                         writeStream.WriteRequest ();
1270                         }
1271
1272                         if (asyncWrite != null) {
1273                                 asyncWrite.SetCompleted (false, stream);
1274                                 asyncWrite.DoCallback ();
1275                                 asyncWrite = null;
1276                         }
1277                 }
1278
1279                 internal void SetResponseError (WebExceptionStatus status, Exception e, string where)
1280                 {
1281                         if (Aborted)
1282                                 return;
1283                         lock (locker) {
1284                         string msg = String.Format ("Error getting response stream ({0}): {1}", where, status);
1285                         WebAsyncResult r = asyncRead;
1286                         if (r == null)
1287                                 r = asyncWrite;
1288
1289                         WebException wexc;
1290                         if (e is WebException) {
1291                                 wexc = (WebException) e;
1292                         } else {
1293                                 wexc = new WebException (msg, e, status, null); 
1294                         }
1295                         if (r != null) {
1296                                 if (!r.IsCompleted) {
1297                                         r.SetCompleted (false, wexc);
1298                                         r.DoCallback ();
1299                                 } else if (r == asyncWrite) {
1300                                         saved_exc = wexc;
1301                                 }
1302                                 haveResponse = true;
1303                                 asyncRead = null;
1304                                 asyncWrite = null;
1305                         } else {
1306                                 haveResponse = true;
1307                                 saved_exc = wexc;
1308                         }
1309                         }
1310                 }
1311
1312                 void CheckSendError (WebConnectionData data)
1313                 {
1314                         // Got here, but no one called GetResponse
1315                         int status = data.StatusCode;
1316                         if (status < 400 || status == 401 || status == 407)
1317                                 return;
1318
1319                         if (writeStream != null && asyncRead == null && !writeStream.CompleteRequestWritten) {
1320                                 // The request has not been completely sent and we got here!
1321                                 // We should probably just close and cause an error in any case,
1322                                 saved_exc = new WebException (data.StatusDescription, null, WebExceptionStatus.ProtocolError, webResponse); 
1323                                 if (allowBuffering || sendChunked || writeStream.totalWritten >= contentLength) {
1324                                         webResponse.ReadAll ();
1325                                 } else {
1326                                         writeStream.IgnoreIOErrors = true;
1327                                 }
1328                         }
1329                 }
1330
1331                 void HandleNtlmAuth (WebAsyncResult r)
1332                 {
1333                         WebConnectionStream wce = webResponse.GetResponseStream () as WebConnectionStream;
1334                         if (wce != null) {
1335                                 WebConnection cnc = wce.Connection;
1336                                 cnc.PriorityRequest = this;
1337                                 bool isProxy = (proxy != null && !proxy.IsBypassed (actualUri));
1338                                 ICredentials creds = (!isProxy) ? credentials : proxy.Credentials;
1339                                 if (creds != null) {
1340                                         cnc.NtlmCredential = creds.GetCredential (requestUri, "NTLM");
1341                                         cnc.UnsafeAuthenticatedConnectionSharing = unsafe_auth_blah;
1342                                 }
1343                         }
1344                         r.Reset ();
1345                         finished_reading = false;
1346                         haveResponse = false;
1347                         webResponse.ReadAll ();
1348                         webResponse = null;
1349                 }
1350
1351                 internal void SetResponseData (WebConnectionData data)
1352                 {
1353                         lock (locker) {
1354                         if (Aborted) {
1355                                 if (data.stream != null)
1356                                         data.stream.Close ();
1357                                 return;
1358                         }
1359
1360                         WebException wexc = null;
1361                         try {
1362                                 webResponse = new HttpWebResponse (actualUri, method, data, cookieContainer);
1363                         } catch (Exception e) {
1364                                 wexc = new WebException (e.Message, e, WebExceptionStatus.ProtocolError, null); 
1365                                 if (data.stream != null)
1366                                         data.stream.Close ();
1367                         }
1368
1369                         if (wexc == null && (method == "POST" || method == "PUT")) {
1370                                 CheckSendError (data);
1371                                 if (saved_exc != null)
1372                                         wexc = (WebException) saved_exc;
1373                         }
1374
1375                         WebAsyncResult r = asyncRead;
1376
1377                         bool forced = false;
1378                         if (r == null && webResponse != null) {
1379                                 // This is a forced completion (302, 204)...
1380                                 forced = true;
1381                                 r = new WebAsyncResult (null, null);
1382                                 r.SetCompleted (false, webResponse);
1383                         }
1384
1385                         if (r != null) {
1386                                 if (wexc != null) {
1387                                         haveResponse = true;
1388                                         if (!r.IsCompleted)
1389                                                 r.SetCompleted (false, wexc);
1390                                         r.DoCallback ();
1391                                         return;
1392                                 }
1393
1394                                 bool redirected;
1395                                 try {
1396                                         redirected = CheckFinalStatus (r);
1397                                         if (!redirected) {
1398                                                 if (ntlm_auth_state != NtlmAuthState.None && authCompleted && webResponse != null
1399                                                         && (int)webResponse.StatusCode < 400) {
1400                                                         WebConnectionStream wce = webResponse.GetResponseStream () as WebConnectionStream;
1401                                                         if (wce != null) {
1402                                                                 WebConnection cnc = wce.Connection;
1403                                                                 cnc.NtlmAuthenticated = true;
1404                                                         }
1405                                                 }
1406
1407                                                 // clear internal buffer so that it does not
1408                                                 // hold possible big buffer (bug #397627)
1409                                                 if (writeStream != null)
1410                                                         writeStream.KillBuffer ();
1411
1412                                                 haveResponse = true;
1413                                                 r.SetCompleted (false, webResponse);
1414                                                 r.DoCallback ();
1415                                         } else {
1416                                                 if (webResponse != null) {
1417                                                         if (ntlm_auth_state != NtlmAuthState.None) {
1418                                                                 HandleNtlmAuth (r);
1419                                                                 return;
1420                                                         }
1421                                                         webResponse.Close ();
1422                                                 }
1423                                                 finished_reading = false;
1424                                                 haveResponse = false;
1425                                                 webResponse = null;
1426                                                 r.Reset ();
1427                                                 servicePoint = GetServicePoint ();
1428                                                 abortHandler = servicePoint.SendRequest (this, connectionGroup);
1429                                         }
1430                                 } catch (WebException wexc2) {
1431                                         if (forced) {
1432                                                 saved_exc = wexc2;
1433                                                 haveResponse = true;
1434                                         }
1435                                         r.SetCompleted (false, wexc2);
1436                                         r.DoCallback ();
1437                                         return;
1438                                 } catch (Exception ex) {
1439                                         wexc = new WebException (ex.Message, ex, WebExceptionStatus.ProtocolError, null); 
1440                                         if (forced) {
1441                                                 saved_exc = wexc;
1442                                                 haveResponse = true;
1443                                         }
1444                                         r.SetCompleted (false, wexc);
1445                                         r.DoCallback ();
1446                                         return;
1447                                 }
1448                         }
1449                         }
1450                 }
1451
1452                 bool CheckAuthorization (WebResponse response, HttpStatusCode code)
1453                 {
1454                         authCompleted = false;
1455                         if (code == HttpStatusCode.Unauthorized && credentials == null)
1456                                 return false;
1457
1458                         bool isProxy = (code == HttpStatusCode.ProxyAuthenticationRequired);
1459                         if (isProxy && (proxy == null || proxy.Credentials == null))
1460                                 return false;
1461
1462                         string [] authHeaders = response.Headers.GetValues ( (isProxy) ? "Proxy-Authenticate" : "WWW-Authenticate");
1463                         if (authHeaders == null || authHeaders.Length == 0)
1464                                 return false;
1465
1466                         ICredentials creds = (!isProxy) ? credentials : proxy.Credentials;
1467                         Authorization auth = null;
1468                         foreach (string authHeader in authHeaders) {
1469                                 auth = AuthenticationManager.Authenticate (authHeader, this, creds);
1470                                 if (auth != null)
1471                                         break;
1472                         }
1473                         if (auth == null)
1474                                 return false;
1475                         webHeaders [(isProxy) ? "Proxy-Authorization" : "Authorization"] = auth.Message;
1476                         authCompleted = auth.Complete;
1477                         bool is_ntlm = (auth.Module.AuthenticationType == "NTLM");
1478                         if (is_ntlm)
1479                                 ntlm_auth_state = (NtlmAuthState)((int) ntlm_auth_state + 1);
1480                         return true;
1481                 }
1482
1483                 // Returns true if redirected
1484                 bool CheckFinalStatus (WebAsyncResult result)
1485                 {
1486                         if (result.GotException) {
1487                                 bodyBuffer = null;
1488                                 throw result.Exception;
1489                         }
1490
1491                         Exception throwMe = result.Exception;
1492
1493                         HttpWebResponse resp = result.Response;
1494                         WebExceptionStatus protoError = WebExceptionStatus.ProtocolError;
1495                         HttpStatusCode code = 0;
1496                         if (throwMe == null && webResponse != null) {
1497                                 code = webResponse.StatusCode;
1498                                 if (!authCompleted && ((code == HttpStatusCode.Unauthorized && credentials != null) ||
1499                                      (ProxyQuery && code == HttpStatusCode.ProxyAuthenticationRequired))) {
1500                                         if (!usedPreAuth && CheckAuthorization (webResponse, code)) {
1501                                                 // Keep the written body, so it can be rewritten in the retry
1502                                                 if (InternalAllowBuffering) {
1503                                                         // NTLM: This is to avoid sending data in the 'challenge' request
1504                                                         // We save it in the first request (first 401), don't send anything
1505                                                         // in the challenge request and send it in the response request along
1506                                                         // with the buffers kept form the first request.
1507                                                         if (ntlm_auth_state != NtlmAuthState.Response) {
1508                                                                 bodyBuffer = writeStream.WriteBuffer;
1509                                                                 bodyBufferLength = writeStream.WriteBufferLength;
1510                                                         }
1511                                                         return true;
1512                                                 } else if (method != "PUT" && method != "POST") {
1513                                                         bodyBuffer = null;
1514                                                         return true;
1515                                                 }
1516
1517                                                 if (!ThrowOnError)
1518                                                         return false;
1519                                                         
1520                                                 writeStream.InternalClose ();
1521                                                 writeStream = null;
1522                                                 webResponse.Close ();
1523                                                 webResponse = null;
1524                                                 bodyBuffer = null;
1525                                                         
1526                                                 throw new WebException ("This request requires buffering " +
1527                                                                         "of data for authentication or " +
1528                                                                         "redirection to be sucessful.");
1529                                         }
1530                                 }
1531
1532                                 bodyBuffer = null;
1533                                 if ((int) code >= 400) {
1534                                         string err = String.Format ("The remote server returned an error: ({0}) {1}.",
1535                                                                     (int) code, webResponse.StatusDescription);
1536                                         throwMe = new WebException (err, null, protoError, webResponse);
1537                                         webResponse.ReadAll ();
1538                                 } else if ((int) code == 304 && allowAutoRedirect) {
1539                                         string err = String.Format ("The remote server returned an error: ({0}) {1}.",
1540                                                                     (int) code, webResponse.StatusDescription);
1541                                         throwMe = new WebException (err, null, protoError, webResponse);
1542                                 } else if ((int) code >= 300 && allowAutoRedirect && redirects >= maxAutoRedirect) {
1543                                         throwMe = new WebException ("Max. redirections exceeded.", null,
1544                                                                     protoError, webResponse);
1545                                         webResponse.ReadAll ();
1546                                 }
1547                         }
1548
1549                         bodyBuffer = null;
1550                         if (throwMe == null) {
1551                                 bool b = false;
1552                                 int c = (int) code;
1553                                 if (allowAutoRedirect && c >= 300) {
1554                                         if (InternalAllowBuffering && writeStream.WriteBufferLength > 0) {
1555                                                 bodyBuffer = writeStream.WriteBuffer;
1556                                                 bodyBufferLength = writeStream.WriteBufferLength;
1557                                         }
1558                                         b = Redirect (result, code);
1559                                         if (b && ntlm_auth_state != 0)
1560                                                 ntlm_auth_state = 0;
1561                                 }
1562
1563                                 if (resp != null && c >= 300 && c != 304)
1564                                         resp.ReadAll ();
1565
1566                                 return b;
1567                         }
1568                                 
1569                         if (!ThrowOnError)
1570                                 return false;
1571
1572                         if (writeStream != null) {
1573                                 writeStream.InternalClose ();
1574                                 writeStream = null;
1575                         }
1576
1577                         webResponse = null;
1578
1579                         throw throwMe;
1580                 }
1581         }
1582 }
1583