| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431 |
- //
- // System.Net.HttpWebRequest
- //
- // Authors:
- // Lawrence Pit ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (c) 2002 Lawrence Pit
- // (c) 2003 Ximian, Inc. (http://www.ximian.com)
- // (c) 2004 Novell, Inc. (http://www.novell.com)
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.Configuration;
- using System.IO;
- using System.Net.Sockets;
- using System.Runtime.Remoting.Messaging;
- using System.Runtime.Serialization;
- using System.Security.Cryptography.X509Certificates;
- using System.Text;
- using System.Threading;
- #if NET_2_0
- using System.Net.Cache;
- #endif
- namespace System.Net
- {
- [Serializable]
- public class HttpWebRequest : WebRequest, ISerializable
- {
- Uri requestUri;
- Uri actualUri;
- bool hostChanged;
- bool allowAutoRedirect = true;
- bool allowBuffering = true;
- X509CertificateCollection certificates;
- string connectionGroup;
- long contentLength = -1;
- HttpContinueDelegate continueDelegate;
- CookieContainer cookieContainer;
- ICredentials credentials;
- bool haveResponse;
- bool haveRequest;
- bool requestSent;
- WebHeaderCollection webHeaders = new WebHeaderCollection (true);
- bool keepAlive = true;
- int maxAutoRedirect = 50;
- string mediaType = String.Empty;
- string method = "GET";
- string initialMethod = "GET";
- bool pipelined = true;
- bool preAuthenticate;
- bool usedPreAuth;
- Version version = HttpVersion.Version11;
- Version actualVersion;
- IWebProxy proxy;
- bool sendChunked;
- ServicePoint servicePoint;
- int timeout = 100000;
-
- WebConnectionStream writeStream;
- HttpWebResponse webResponse;
- WebAsyncResult asyncWrite;
- WebAsyncResult asyncRead;
- EventHandler abortHandler;
- bool aborted;
- bool gotRequestStream;
- int redirects;
- bool expectContinue;
- bool authCompleted;
- byte[] bodyBuffer;
- int bodyBufferLength;
- bool getResponseCalled;
- Exception saved_exc;
- object locker = new object ();
- bool is_ntlm_auth;
- bool finished_reading;
- #if NET_2_0
- DecompressionMethods auto_decomp;
- #endif
- #if NET_1_1
- int maxResponseHeadersLength;
- static int defaultMaxResponseHeadersLength;
- int readWriteTimeout = 300000; // ms
-
- // Constructors
- static HttpWebRequest ()
- {
- NetConfig config = ConfigurationSettings.GetConfig ("system.net/settings") as NetConfig;
- defaultMaxResponseHeadersLength = 64 * 1024;
- if (config != null) {
- int x = config.MaxResponseHeadersLength;
- if (x != -1)
- x *= 64;
- defaultMaxResponseHeadersLength = x;
- }
- }
- #endif
- #if NET_2_1
- public
- #else
- internal
- #endif
- HttpWebRequest (Uri uri)
- {
- this.requestUri = uri;
- this.actualUri = uri;
- this.proxy = GlobalProxySelection.Select;
- }
-
- #if NET_2_0
- [Obsolete ("Serialization is obsoleted for this type", false)]
- #endif
- protected HttpWebRequest (SerializationInfo serializationInfo, StreamingContext streamingContext)
- {
- SerializationInfo info = serializationInfo;
- requestUri = (Uri) info.GetValue ("requestUri", typeof (Uri));
- actualUri = (Uri) info.GetValue ("actualUri", typeof (Uri));
- allowAutoRedirect = info.GetBoolean ("allowAutoRedirect");
- allowBuffering = info.GetBoolean ("allowBuffering");
- certificates = (X509CertificateCollection) info.GetValue ("certificates", typeof (X509CertificateCollection));
- connectionGroup = info.GetString ("connectionGroup");
- contentLength = info.GetInt64 ("contentLength");
- webHeaders = (WebHeaderCollection) info.GetValue ("webHeaders", typeof (WebHeaderCollection));
- keepAlive = info.GetBoolean ("keepAlive");
- maxAutoRedirect = info.GetInt32 ("maxAutoRedirect");
- mediaType = info.GetString ("mediaType");
- method = info.GetString ("method");
- initialMethod = info.GetString ("initialMethod");
- pipelined = info.GetBoolean ("pipelined");
- version = (Version) info.GetValue ("version", typeof (Version));
- proxy = (IWebProxy) info.GetValue ("proxy", typeof (IWebProxy));
- sendChunked = info.GetBoolean ("sendChunked");
- timeout = info.GetInt32 ("timeout");
- redirects = info.GetInt32 ("redirects");
- }
-
- // Properties
- internal bool UsesNtlmAuthentication {
- get { return is_ntlm_auth; }
- }
- public string Accept {
- get { return webHeaders ["Accept"]; }
- set {
- CheckRequestStarted ();
- webHeaders.RemoveAndAdd ("Accept", value);
- }
- }
-
- public Uri Address {
- get { return actualUri; }
- }
-
- public bool AllowAutoRedirect {
- get { return allowAutoRedirect; }
- set { this.allowAutoRedirect = value; }
- }
-
- public bool AllowWriteStreamBuffering {
- get { return allowBuffering; }
- set { allowBuffering = value; }
- }
- #if NET_2_0
- static Exception GetMustImplement ()
- {
- return new NotImplementedException ();
- }
-
- public DecompressionMethods AutomaticDecompression
- {
- get {
- return auto_decomp;
- }
- set {
- CheckRequestStarted ();
- auto_decomp = value;
- }
- }
- #endif
-
- internal bool InternalAllowBuffering {
- get {
- return (allowBuffering && (method != "HEAD" && method != "GET" &&
- method != "MKCOL" && method != "CONNECT" &&
- method != "DELETE" && method != "TRACE"));
- }
- }
-
- public X509CertificateCollection ClientCertificates {
- get {
- if (certificates == null)
- certificates = new X509CertificateCollection ();
- return certificates;
- }
- #if NET_2_0
- [MonoTODO]
- set {
- throw GetMustImplement ();
- }
- #endif
- }
-
- public string Connection {
- get { return webHeaders ["Connection"]; }
- set {
- CheckRequestStarted ();
- string val = value;
- if (val != null)
- val = val.Trim ().ToLower ();
- if (val == null || val.Length == 0) {
- webHeaders.RemoveInternal ("Connection");
- return;
- }
- if (val == "keep-alive" || val == "close")
- throw new ArgumentException ("Keep-Alive and Close may not be set with this property");
- if (keepAlive && val.IndexOf ("keep-alive") == -1)
- value = value + ", Keep-Alive";
-
- webHeaders.RemoveAndAdd ("Connection", value);
- }
- }
-
- public override string ConnectionGroupName {
- get { return connectionGroup; }
- set { connectionGroup = value; }
- }
-
- public override long ContentLength {
- get { return contentLength; }
- set {
- CheckRequestStarted ();
- if (value < 0)
- throw new ArgumentOutOfRangeException ("value", "Content-Length must be >= 0");
-
- contentLength = value;
- }
- }
-
- internal long InternalContentLength {
- set { contentLength = value; }
- }
-
- public override string ContentType {
- get { return webHeaders ["Content-Type"]; }
- set {
- if (value == null || value.Trim().Length == 0) {
- webHeaders.RemoveInternal ("Content-Type");
- return;
- }
- webHeaders.RemoveAndAdd ("Content-Type", value);
- }
- }
-
- public HttpContinueDelegate ContinueDelegate {
- get { return continueDelegate; }
- set { continueDelegate = value; }
- }
-
- public CookieContainer CookieContainer {
- get { return cookieContainer; }
- set { cookieContainer = value; }
- }
-
- public override ICredentials Credentials {
- get { return credentials; }
- set { credentials = value; }
- }
- #if NET_2_0
- [MonoTODO]
- public static new RequestCachePolicy DefaultCachePolicy
- {
- get {
- throw GetMustImplement ();
- }
- set {
- throw GetMustImplement ();
- }
- }
-
- [MonoTODO]
- public static int DefaultMaximumErrorResponseLength
- {
- get {
- throw GetMustImplement ();
- }
- set {
- throw GetMustImplement ();
- }
- }
- #endif
-
- public string Expect {
- get { return webHeaders ["Expect"]; }
- set {
- CheckRequestStarted ();
- string val = value;
- if (val != null)
- val = val.Trim ().ToLower ();
- if (val == null || val.Length == 0) {
- webHeaders.RemoveInternal ("Expect");
- return;
- }
- if (val == "100-continue")
- throw new ArgumentException ("100-Continue cannot be set with this property.",
- "value");
- webHeaders.RemoveAndAdd ("Expect", value);
- }
- }
-
- public bool HaveResponse {
- get { return haveResponse; }
- }
-
- public override WebHeaderCollection Headers {
- get { return webHeaders; }
- set {
- CheckRequestStarted ();
- WebHeaderCollection newHeaders = new WebHeaderCollection (true);
- int count = value.Count;
- for (int i = 0; i < count; i++)
- newHeaders.Add (value.GetKey (i), value.Get (i));
- webHeaders = newHeaders;
- }
- }
-
- public DateTime IfModifiedSince {
- get {
- string str = webHeaders ["If-Modified-Since"];
- if (str == null)
- return DateTime.Now;
- try {
- return MonoHttpDate.Parse (str);
- } catch (Exception) {
- return DateTime.Now;
- }
- }
- set {
- CheckRequestStarted ();
- // rfc-1123 pattern
- webHeaders.SetInternal ("If-Modified-Since",
- value.ToUniversalTime ().ToString ("r", null));
- // TODO: check last param when using different locale
- }
- }
- public bool KeepAlive {
- get {
- return keepAlive;
- }
- set {
- keepAlive = value;
- }
- }
-
- public int MaximumAutomaticRedirections {
- get { return maxAutoRedirect; }
- set {
- if (value <= 0)
- throw new ArgumentException ("Must be > 0", "value");
- maxAutoRedirect = value;
- }
- }
- #if NET_1_1
- [MonoTODO ("Use this")]
- public int MaximumResponseHeadersLength {
- get { return maxResponseHeadersLength; }
- set { maxResponseHeadersLength = value; }
- }
- [MonoTODO ("Use this")]
- public static int DefaultMaximumResponseHeadersLength {
- get { return defaultMaxResponseHeadersLength; }
- set { defaultMaxResponseHeadersLength = value; }
- }
- public
- #else
- internal
- #endif
- int ReadWriteTimeout {
- get { return readWriteTimeout; }
- set {
- if (requestSent)
- throw new InvalidOperationException ("The request has already been sent.");
- if (value < -1)
- throw new ArgumentOutOfRangeException ("value", "Must be >= -1");
- readWriteTimeout = value;
- }
- }
-
- public string MediaType {
- get { return mediaType; }
- set {
- mediaType = value;
- }
- }
-
- public override string Method {
- get { return this.method; }
- set {
- if (value == null || value.Trim () == "")
- throw new ArgumentException ("not a valid method");
- method = value;
- }
- }
-
- public bool Pipelined {
- get { return pipelined; }
- set { pipelined = value; }
- }
-
- public override bool PreAuthenticate {
- get { return preAuthenticate; }
- set { preAuthenticate = value; }
- }
-
- public Version ProtocolVersion {
- get { return version; }
- set {
- if (value != HttpVersion.Version10 && value != HttpVersion.Version11)
- throw new ArgumentException ("value");
- version = value;
- }
- }
-
- public override IWebProxy Proxy {
- get { return proxy; }
- set {
- CheckRequestStarted ();
- #if ONLY_1_1
- if (value == null)
- throw new ArgumentNullException ("value");
- #endif
- proxy = value;
- servicePoint = null; // we may need a new one
- }
- }
-
- public string Referer {
- get { return webHeaders ["Referer"]; }
- set {
- CheckRequestStarted ();
- if (value == null || value.Trim().Length == 0) {
- webHeaders.RemoveInternal ("Referer");
- return;
- }
- webHeaders.SetInternal ("Referer", value);
- }
- }
- public override Uri RequestUri {
- get { return requestUri; }
- }
-
- public bool SendChunked {
- get { return sendChunked; }
- set {
- CheckRequestStarted ();
- sendChunked = value;
- }
- }
-
- public ServicePoint ServicePoint {
- get { return GetServicePoint (); }
- }
-
- public override int Timeout {
- get { return timeout; }
- set {
- if (value < -1)
- throw new ArgumentOutOfRangeException ("value");
- timeout = value;
- }
- }
-
- public string TransferEncoding {
- get { return webHeaders ["Transfer-Encoding"]; }
- set {
- CheckRequestStarted ();
- string val = value;
- if (val != null)
- val = val.Trim ().ToLower ();
- if (val == null || val.Length == 0) {
- webHeaders.RemoveInternal ("Transfer-Encoding");
- return;
- }
- if (val == "chunked")
- throw new ArgumentException ("Chunked encoding must be set with the SendChunked property");
- if (!sendChunked)
- throw new ArgumentException ("SendChunked must be True", "value");
- webHeaders.RemoveAndAdd ("Transfer-Encoding", value);
- }
- }
- #if NET_2_0
- public override bool UseDefaultCredentials
- {
- get { return CredentialCache.DefaultCredentials == Credentials; }
- set { Credentials = value ? CredentialCache.DefaultCredentials : null; }
- }
- #endif
-
- public string UserAgent {
- get { return webHeaders ["User-Agent"]; }
- set { webHeaders.SetInternal ("User-Agent", value); }
- }
- #if NET_1_1
- bool unsafe_auth_blah;
- public bool UnsafeAuthenticatedConnectionSharing
- {
- get { return unsafe_auth_blah; }
- set { unsafe_auth_blah = value; }
- }
- #endif
- internal bool GotRequestStream {
- get { return gotRequestStream; }
- }
- internal bool ExpectContinue {
- get { return expectContinue; }
- set { expectContinue = value; }
- }
-
- internal Uri AuthUri {
- get { return actualUri; }
- }
-
- internal bool ProxyQuery {
- get { return servicePoint.UsesProxy && !servicePoint.UseConnect; }
- }
-
- // Methods
-
- internal ServicePoint GetServicePoint ()
- {
- lock (locker) {
- if (hostChanged || servicePoint == null) {
- servicePoint = ServicePointManager.FindServicePoint (actualUri, proxy);
- hostChanged = false;
- }
- }
- return servicePoint;
- }
-
- public void AddRange (int range)
- {
- AddRange ("bytes", range);
- }
-
- public void AddRange (int from, int to)
- {
- AddRange ("bytes", from, to);
- }
-
- public void AddRange (string rangeSpecifier, int range)
- {
- if (rangeSpecifier == null)
- throw new ArgumentNullException ("rangeSpecifier");
- string value = webHeaders ["Range"];
- if (value == null || value.Length == 0)
- value = rangeSpecifier + "=";
- else if (value.ToLower ().StartsWith (rangeSpecifier.ToLower () + "="))
- value += ",";
- else
- throw new InvalidOperationException ("rangeSpecifier");
- webHeaders.RemoveAndAdd ("Range", value + range + "-");
- }
-
- public void AddRange (string rangeSpecifier, int from, int to)
- {
- if (rangeSpecifier == null)
- throw new ArgumentNullException ("rangeSpecifier");
- if (from < 0 || to < 0 || from > to)
- throw new ArgumentOutOfRangeException ();
- string value = webHeaders ["Range"];
- if (value == null || value.Length == 0)
- value = rangeSpecifier + "=";
- else if (value.ToLower ().StartsWith (rangeSpecifier.ToLower () + "="))
- value += ",";
- else
- throw new InvalidOperationException ("rangeSpecifier");
- webHeaders.RemoveAndAdd ("Range", value + from + "-" + to);
- }
- #if !NET_2_0
- public override int GetHashCode ()
- {
- return base.GetHashCode ();
- }
- #endif
-
- void CommonChecks (bool putpost)
- {
- if (method == null)
- throw new ProtocolViolationException ("Method is null.");
- if (putpost && contentLength == -1 && !sendChunked && !allowBuffering)
- throw new ProtocolViolationException ("Content-Length not set");
- string transferEncoding = TransferEncoding;
- if (!sendChunked && transferEncoding != null && transferEncoding.Trim () != "")
- throw new ProtocolViolationException ("SendChunked should be true.");
- }
- public override IAsyncResult BeginGetRequestStream (AsyncCallback callback, object state)
- {
- if (aborted)
- throw new WebException ("The request was previosly aborted.");
- bool send = !(method == "GET" || method == "CONNECT" || method == "HEAD" ||
- method == "TRACE" || method == "DELETE");
- if (method == null || !send)
- throw new ProtocolViolationException ("Cannot send data when method is: " + method);
- CommonChecks (send);
-
- lock (locker)
- {
- if (asyncWrite != null) {
- throw new InvalidOperationException ("Cannot re-call start of asynchronous " +
- "method while a previous call is still in progress.");
- }
-
- asyncWrite = new WebAsyncResult (this, callback, state);
- initialMethod = method;
- if (haveRequest) {
- if (writeStream != null) {
- asyncWrite.SetCompleted (true, writeStream);
- asyncWrite.DoCallback ();
- return asyncWrite;
- }
- }
-
- gotRequestStream = true;
- WebAsyncResult result = asyncWrite;
- if (!requestSent) {
- requestSent = true;
- redirects = 0;
- servicePoint = GetServicePoint ();
- abortHandler = servicePoint.SendRequest (this, connectionGroup);
- }
- return result;
- }
- }
- public override Stream EndGetRequestStream (IAsyncResult asyncResult)
- {
- if (asyncResult == null)
- throw new ArgumentNullException ("asyncResult");
- WebAsyncResult result = asyncResult as WebAsyncResult;
- if (result == null)
- throw new ArgumentException ("Invalid IAsyncResult");
- asyncWrite = result;
- result.WaitUntilComplete ();
- Exception e = result.Exception;
- if (e != null)
- throw e;
- return result.WriteStream;
- }
-
- public override Stream GetRequestStream()
- {
- IAsyncResult asyncResult = asyncWrite;
- if (asyncResult == null) {
- asyncResult = BeginGetRequestStream (null, null);
- asyncWrite = (WebAsyncResult) asyncResult;
- }
- if (!asyncResult.AsyncWaitHandle.WaitOne (timeout, false)) {
- Abort ();
- throw new WebException ("The request timed out", WebExceptionStatus.Timeout);
- }
- return EndGetRequestStream (asyncResult);
- }
- void CheckIfForceWrite ()
- {
- if (writeStream == null || writeStream.RequestWritten|| contentLength < 0 || !InternalAllowBuffering)
- return;
- // This will write the POST/PUT if the write stream already has the expected
- // amount of bytes in it (ContentLength) (bug #77753).
- if (writeStream.WriteBufferLength == contentLength)
- writeStream.WriteRequest ();
- }
- public override IAsyncResult BeginGetResponse (AsyncCallback callback, object state)
- {
- bool send = (method == "PUT" || method == "POST");
- if (send) {
- if ((!KeepAlive || (ContentLength == -1 && !SendChunked)) && !AllowWriteStreamBuffering)
- throw new ProtocolViolationException ("Content-Length not set");
- }
- CommonChecks (send);
- Monitor.Enter (locker);
- getResponseCalled = true;
- if (asyncRead != null && !haveResponse) {
- Monitor.Exit (locker);
- throw new InvalidOperationException ("Cannot re-call start of asynchronous " +
- "method while a previous call is still in progress.");
- }
- CheckIfForceWrite ();
- asyncRead = new WebAsyncResult (this, callback, state);
- WebAsyncResult aread = asyncRead;
- initialMethod = method;
- if (haveResponse) {
- Exception saved = saved_exc;
- if (webResponse != null) {
- Monitor.Exit (locker);
- if (saved == null) {
- aread.SetCompleted (true, webResponse);
- } else {
- aread.SetCompleted (true, saved);
- }
- aread.DoCallback ();
- return aread;
- } else if (saved != null) {
- Monitor.Exit (locker);
- aread.SetCompleted (true, saved);
- aread.DoCallback ();
- return aread;
- }
- }
-
- if (!requestSent) {
- requestSent = true;
- redirects = 0;
- servicePoint = GetServicePoint ();
- abortHandler = servicePoint.SendRequest (this, connectionGroup);
- }
- Monitor.Exit (locker);
- return aread;
- }
-
- public override WebResponse EndGetResponse (IAsyncResult asyncResult)
- {
- if (asyncResult == null)
- throw new ArgumentNullException ("asyncResult");
- WebAsyncResult result = asyncResult as WebAsyncResult;
- if (result == null)
- throw new ArgumentException ("Invalid IAsyncResult", "asyncResult");
- if (!result.WaitUntilComplete (timeout, false)) {
- Abort ();
- throw new WebException("The request timed out", WebExceptionStatus.Timeout);
- }
- if (result.GotException)
- throw result.Exception;
- return result.Response;
- }
- public override WebResponse GetResponse()
- {
- WebAsyncResult result = (WebAsyncResult) BeginGetResponse (null, null);
- return EndGetResponse (result);
- }
-
- internal bool FinishedReading {
- get { return finished_reading; }
- set { finished_reading = value; }
- }
- public override void Abort ()
- {
- if (aborted)
- return;
- aborted = true;
- if (haveResponse && finished_reading)
- return;
- haveResponse = true;
- if (asyncWrite != null) {
- WebAsyncResult r = asyncWrite;
- if (!r.IsCompleted) {
- try {
- WebException wexc = new WebException ("Aborted.", WebExceptionStatus.RequestCanceled);
- r.SetCompleted (false, wexc);
- r.DoCallback ();
- } catch {}
- }
- asyncWrite = null;
- }
- if (asyncRead != null) {
- WebAsyncResult r = asyncRead;
- if (!r.IsCompleted) {
- try {
- WebException wexc = new WebException ("Aborted.", WebExceptionStatus.RequestCanceled);
- r.SetCompleted (false, wexc);
- r.DoCallback ();
- } catch {}
- }
- asyncRead = null;
- }
- if (abortHandler != null) {
- try {
- abortHandler (this, EventArgs.Empty);
- } catch (Exception) {}
- abortHandler = null;
- }
- if (writeStream != null) {
- try {
- writeStream.Close ();
- writeStream = null;
- } catch {}
- }
- if (webResponse != null) {
- try {
- webResponse.Close ();
- webResponse = null;
- } catch {}
- }
- }
-
- void ISerializable.GetObjectData (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- GetObjectData (serializationInfo, streamingContext);
- }
- #if NET_2_0
- protected override
- #endif
- void GetObjectData (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- SerializationInfo info = serializationInfo;
- info.AddValue ("requestUri", requestUri, typeof (Uri));
- info.AddValue ("actualUri", actualUri, typeof (Uri));
- info.AddValue ("allowAutoRedirect", allowAutoRedirect);
- info.AddValue ("allowBuffering", allowBuffering);
- info.AddValue ("certificates", certificates, typeof (X509CertificateCollection));
- info.AddValue ("connectionGroup", connectionGroup);
- info.AddValue ("contentLength", contentLength);
- info.AddValue ("webHeaders", webHeaders, typeof (WebHeaderCollection));
- info.AddValue ("keepAlive", keepAlive);
- info.AddValue ("maxAutoRedirect", maxAutoRedirect);
- info.AddValue ("mediaType", mediaType);
- info.AddValue ("method", method);
- info.AddValue ("initialMethod", initialMethod);
- info.AddValue ("pipelined", pipelined);
- info.AddValue ("version", version, typeof (Version));
- info.AddValue ("proxy", proxy, typeof (IWebProxy));
- info.AddValue ("sendChunked", sendChunked);
- info.AddValue ("timeout", timeout);
- info.AddValue ("redirects", redirects);
- }
-
- void CheckRequestStarted ()
- {
- if (requestSent)
- throw new InvalidOperationException ("request started");
- }
- internal void DoContinueDelegate (int statusCode, WebHeaderCollection headers)
- {
- if (continueDelegate != null)
- continueDelegate (statusCode, headers);
- }
-
- bool Redirect (WebAsyncResult result, HttpStatusCode code)
- {
- redirects++;
- Exception e = null;
- string uriString = null;
- switch (code) {
- case HttpStatusCode.Ambiguous: // 300
- e = new WebException ("Ambiguous redirect.");
- break;
- case HttpStatusCode.MovedPermanently: // 301
- case HttpStatusCode.Redirect: // 302
- case HttpStatusCode.TemporaryRedirect: // 307
- /* MS follows the redirect for POST too
- if (method != "GET" && method != "HEAD") // 10.3
- return false;
- */
- contentLength = 0;
- bodyBufferLength = 0;
- bodyBuffer = null;
- method = "GET";
- uriString = webResponse.Headers ["Location"];
- break;
- case HttpStatusCode.SeeOther: //303
- method = "GET";
- uriString = webResponse.Headers ["Location"];
- break;
- case HttpStatusCode.NotModified: // 304
- return false;
- case HttpStatusCode.UseProxy: // 305
- e = new NotImplementedException ("Proxy support not available.");
- break;
- case HttpStatusCode.Unused: // 306
- default:
- e = new ProtocolViolationException ("Invalid status code: " + (int) code);
- break;
- }
- if (e != null)
- throw e;
- if (uriString == null)
- throw new WebException ("No Location header found for " + (int) code,
- WebExceptionStatus.ProtocolError);
- Uri prev = actualUri;
- try {
- actualUri = new Uri (actualUri, uriString);
- } catch (Exception) {
- throw new WebException (String.Format ("Invalid URL ({0}) for {1}",
- uriString, (int) code),
- WebExceptionStatus.ProtocolError);
- }
- hostChanged = (actualUri.Scheme != prev.Scheme || actualUri.Host != prev.Host ||
- actualUri.Port != prev.Port);
- return true;
- }
- string GetHeaders ()
- {
- bool continue100 = false;
- if (contentLength != -1) {
- if (contentLength > 0)
- continue100 = true;
- webHeaders.SetInternal ("Content-Length", contentLength.ToString ());
- webHeaders.RemoveInternal ("Transfer-Encoding");
- } else if (sendChunked) {
- continue100 = true;
- webHeaders.RemoveAndAdd ("Transfer-Encoding", "chunked");
- webHeaders.RemoveInternal ("Content-Length");
- }
- if (actualVersion == HttpVersion.Version11 && continue100 &&
- servicePoint.SendContinue) { // RFC2616 8.2.3
- webHeaders.RemoveAndAdd ("Expect" , "100-continue");
- expectContinue = true;
- } else {
- webHeaders.RemoveInternal ("Expect");
- expectContinue = false;
- }
- bool proxy_query = ProxyQuery;
- string connectionHeader = (proxy_query) ? "Proxy-Connection" : "Connection";
- webHeaders.RemoveInternal ((!proxy_query) ? "Proxy-Connection" : "Connection");
- Version proto_version = servicePoint.ProtocolVersion;
- bool spoint10 = (proto_version == null || proto_version == HttpVersion.Version10);
- if (keepAlive && (version == HttpVersion.Version10 || spoint10)) {
- webHeaders.RemoveAndAdd (connectionHeader, "keep-alive");
- } else if (!keepAlive && version == HttpVersion.Version11) {
- webHeaders.RemoveAndAdd (connectionHeader, "close");
- }
- webHeaders.SetInternal ("Host", actualUri.Authority);
- if (cookieContainer != null) {
- string cookieHeader = cookieContainer.GetCookieHeader (actualUri);
- if (cookieHeader != "")
- webHeaders.SetInternal ("Cookie", cookieHeader);
- }
- #if NET_2_0
- string accept_encoding = null;
- if ((auto_decomp & DecompressionMethods.GZip) != 0)
- accept_encoding = "gzip";
- if ((auto_decomp & DecompressionMethods.Deflate) != 0)
- accept_encoding = accept_encoding != null ? "gzip, deflate" : "deflate";
- if (accept_encoding != null)
- webHeaders.SetInternal ("Accept-Encoding", accept_encoding);
- #endif
- if (!usedPreAuth && preAuthenticate)
- DoPreAuthenticate ();
- return webHeaders.ToString ();
- }
- void DoPreAuthenticate ()
- {
- webHeaders.RemoveInternal ("Proxy-Authorization");
- webHeaders.RemoveInternal ("Authorization");
- bool isProxy = (proxy != null && !proxy.IsBypassed (actualUri));
- ICredentials creds = (!isProxy || credentials != null) ? credentials : proxy.Credentials;
- Authorization auth = AuthenticationManager.PreAuthenticate (this, creds);
- if (auth == null)
- return;
- string authHeader = (isProxy && credentials == null) ? "Proxy-Authorization" : "Authorization";
- webHeaders [authHeader] = auth.Message;
- usedPreAuth = true;
- }
-
- internal void SetWriteStreamError (WebExceptionStatus status)
- {
- SetWriteStreamError (status, null);
- }
- internal void SetWriteStreamError (WebExceptionStatus status, Exception exc)
- {
- if (aborted)
- return;
- WebAsyncResult r = asyncWrite;
- if (r == null)
- r = asyncRead;
- if (r != null) {
- string msg;
- if (exc == null)
- msg = "Error: " + status;
- else
- msg = String.Format ("Error: {0} ({1})", status, exc.Message);
- r.SetCompleted (false, new WebException (msg, status));
- r.DoCallback ();
- }
- }
- internal void SendRequestHeaders ()
- {
- StringBuilder req = new StringBuilder ();
- string query;
- if (!ProxyQuery) {
- query = actualUri.PathAndQuery;
- } else if (actualUri.IsDefaultPort) {
- query = String.Format ("{0}://{1}{2}", actualUri.Scheme,
- actualUri.Host,
- actualUri.PathAndQuery);
- } else {
- query = String.Format ("{0}://{1}:{2}{3}", actualUri.Scheme,
- actualUri.Host,
- actualUri.Port,
- actualUri.PathAndQuery);
- }
-
- if (servicePoint.ProtocolVersion != null && servicePoint.ProtocolVersion < version) {
- actualVersion = servicePoint.ProtocolVersion;
- } else {
- actualVersion = version;
- }
- req.AppendFormat ("{0} {1} HTTP/{2}.{3}\r\n", method, query,
- actualVersion.Major, actualVersion.Minor);
- req.Append (GetHeaders ());
- string reqstr = req.ToString ();
- byte [] bytes = Encoding.UTF8.GetBytes (reqstr);
- try {
- writeStream.SetHeaders (bytes, 0, bytes.Length);
- } catch (WebException wexc) {
- SetWriteStreamError (wexc.Status);
- } catch (Exception) {
- SetWriteStreamError (WebExceptionStatus.SendFailure);
- }
- }
- internal void SetWriteStream (WebConnectionStream stream)
- {
- if (aborted)
- return;
-
- writeStream = stream;
- if (bodyBuffer != null) {
- webHeaders.RemoveInternal ("Transfer-Encoding");
- contentLength = bodyBufferLength;
- writeStream.SendChunked = false;
- }
- SendRequestHeaders ();
- haveRequest = true;
-
- if (bodyBuffer != null) {
- // The body has been written and buffered. The request "user"
- // won't write it again, so we must do it.
- writeStream.Write (bodyBuffer, 0, bodyBufferLength);
- bodyBuffer = null;
- writeStream.Close ();
- } else if (method == "PUT" || method == "POST" || method == "OPTIONS") {
- if (getResponseCalled && !writeStream.RequestWritten)
- writeStream.WriteRequest ();
- }
- if (asyncWrite != null) {
- asyncWrite.SetCompleted (false, stream);
- asyncWrite.DoCallback ();
- asyncWrite = null;
- }
- }
- internal void SetResponseError (WebExceptionStatus status, Exception e, string where)
- {
- if (aborted)
- return;
- lock (locker) {
- string msg = String.Format ("Error getting response stream ({0}): {1}", where, status);
- WebAsyncResult r = asyncRead;
- if (r == null)
- r = asyncWrite;
- WebException wexc;
- if (e is WebException) {
- wexc = (WebException) e;
- } else {
- wexc = new WebException (msg, e, status, null);
- }
- if (r != null) {
- if (!r.IsCompleted) {
- r.SetCompleted (false, wexc);
- r.DoCallback ();
- } else if (r == asyncWrite) {
- saved_exc = wexc;
- }
- haveResponse = true;
- asyncRead = null;
- asyncWrite = null;
- } else {
- haveResponse = true;
- saved_exc = wexc;
- }
- }
- }
- void CheckSendError (WebConnectionData data)
- {
- // Got here, but no one called GetResponse
- int status = data.StatusCode;
- if (status < 400 || status == 401 || status == 407)
- return;
- if (writeStream != null && asyncRead == null && !writeStream.CompleteRequestWritten) {
- // The request has not been completely sent and we got here!
- // We should probably just close and cause an error in any case,
- saved_exc = new WebException (data.StatusDescription, null, WebExceptionStatus.ProtocolError, webResponse);
- webResponse.ReadAll ();
- }
- }
- void HandleNtlmAuth (WebAsyncResult r)
- {
- WebConnectionStream wce = webResponse.GetResponseStream () as WebConnectionStream;
- if (wce != null) {
- WebConnection cnc = wce.Connection;
- cnc.PriorityRequest = this;
- bool isProxy = (proxy != null && !proxy.IsBypassed (actualUri));
- ICredentials creds = (!isProxy) ? credentials : proxy.Credentials;
- if (creds != null) {
- cnc.NtlmCredential = creds.GetCredential (requestUri, "NTLM");
- #if NET_1_1
- cnc.UnsafeAuthenticatedConnectionSharing = unsafe_auth_blah;
- #endif
- }
- }
- r.Reset ();
- haveResponse = false;
- webResponse.ReadAll ();
- webResponse = null;
- }
- internal void SetResponseData (WebConnectionData data)
- {
- lock (locker) {
- if (aborted) {
- if (data.stream != null)
- data.stream.Close ();
- return;
- }
- WebException wexc = null;
- try {
- webResponse = new HttpWebResponse (actualUri, method, data, cookieContainer);
- } catch (Exception e) {
- wexc = new WebException (e.Message, e, WebExceptionStatus.ProtocolError, null);
- if (data.stream != null)
- data.stream.Close ();
- }
- if (wexc == null && (method == "POST" || method == "PUT")) {
- lock (locker) {
- CheckSendError (data);
- if (saved_exc != null)
- wexc = (WebException) saved_exc;
- }
- }
- WebAsyncResult r = asyncRead;
- bool forced = false;
- if (r == null && webResponse != null) {
- // This is a forced completion (302, 204)...
- forced = true;
- r = new WebAsyncResult (null, null);
- r.SetCompleted (false, webResponse);
- }
- if (r != null) {
- if (wexc != null) {
- r.SetCompleted (false, wexc);
- r.DoCallback ();
- return;
- }
- bool redirected;
- try {
- redirected = CheckFinalStatus (r);
- if (!redirected) {
- if (is_ntlm_auth && authCompleted && webResponse != null
- && (int)webResponse.StatusCode < 400) {
- WebConnectionStream wce = webResponse.GetResponseStream () as WebConnectionStream;
- if (wce != null) {
- WebConnection cnc = wce.Connection;
- cnc.NtlmAuthenticated = true;
- }
- }
- // clear internal buffer so that it does not
- // hold possible big buffer (bug #397627)
- if (writeStream != null)
- writeStream.KillBuffer ();
- haveResponse = true;
- r.SetCompleted (false, webResponse);
- r.DoCallback ();
- } else {
- if (webResponse != null) {
- if (is_ntlm_auth) {
- HandleNtlmAuth (r);
- return;
- }
- webResponse.Close ();
- }
- haveResponse = false;
- webResponse = null;
- r.Reset ();
- servicePoint = GetServicePoint ();
- abortHandler = servicePoint.SendRequest (this, connectionGroup);
- }
- } catch (WebException wexc2) {
- if (forced) {
- saved_exc = wexc2;
- haveResponse = true;
- }
- r.SetCompleted (false, wexc2);
- r.DoCallback ();
- return;
- } catch (Exception ex) {
- wexc = new WebException (ex.Message, ex, WebExceptionStatus.ProtocolError, null);
- if (forced) {
- saved_exc = wexc;
- haveResponse = true;
- }
- r.SetCompleted (false, wexc);
- r.DoCallback ();
- return;
- }
- }
- }
- }
- bool CheckAuthorization (WebResponse response, HttpStatusCode code)
- {
- authCompleted = false;
- if (code == HttpStatusCode.Unauthorized && credentials == null)
- return false;
- bool isProxy = (code == HttpStatusCode.ProxyAuthenticationRequired);
- if (isProxy && (proxy == null || proxy.Credentials == null))
- return false;
- string authHeader = response.Headers [(isProxy) ? "Proxy-Authenticate" : "WWW-Authenticate"];
- if (authHeader == null)
- return false;
- ICredentials creds = (!isProxy) ? credentials : proxy.Credentials;
- Authorization auth = AuthenticationManager.Authenticate (authHeader, this, creds);
- if (auth == null)
- return false;
- webHeaders [(isProxy) ? "Proxy-Authorization" : "Authorization"] = auth.Message;
- authCompleted = auth.Complete;
- is_ntlm_auth = (auth.Module.AuthenticationType == "NTLM");
- return true;
- }
- // Returns true if redirected
- bool CheckFinalStatus (WebAsyncResult result)
- {
- if (result.GotException)
- throw result.Exception;
- Exception throwMe = result.Exception;
- bodyBuffer = null;
- HttpWebResponse resp = result.Response;
- WebExceptionStatus protoError = WebExceptionStatus.ProtocolError;
- HttpStatusCode code = 0;
- if (throwMe == null && webResponse != null) {
- code = webResponse.StatusCode;
- if (!authCompleted && ((code == HttpStatusCode.Unauthorized && credentials != null) ||
- (ProxyQuery && code == HttpStatusCode.ProxyAuthenticationRequired))) {
- if (!usedPreAuth && CheckAuthorization (webResponse, code)) {
- // Keep the written body, so it can be rewritten in the retry
- if (InternalAllowBuffering) {
- bodyBuffer = writeStream.WriteBuffer;
- bodyBufferLength = writeStream.WriteBufferLength;
- return true;
- } else if (method != "PUT" && method != "POST") {
- return true;
- }
-
- writeStream.InternalClose ();
- writeStream = null;
- webResponse.Close ();
- webResponse = null;
- throw new WebException ("This request requires buffering " +
- "of data for authentication or " +
- "redirection to be sucessful.");
- }
- }
- if ((int) code >= 400) {
- string err = String.Format ("The remote server returned an error: ({0}) {1}.",
- (int) code, webResponse.StatusDescription);
- throwMe = new WebException (err, null, protoError, webResponse);
- webResponse.ReadAll ();
- } else if ((int) code == 304 && allowAutoRedirect) {
- string err = String.Format ("The remote server returned an error: ({0}) {1}.",
- (int) code, webResponse.StatusDescription);
- throwMe = new WebException (err, null, protoError, webResponse);
- } else if ((int) code >= 300 && allowAutoRedirect && redirects >= maxAutoRedirect) {
- throwMe = new WebException ("Max. redirections exceeded.", null,
- protoError, webResponse);
- webResponse.ReadAll ();
- }
- }
- if (throwMe == null) {
- bool b = false;
- int c = (int) code;
- if (allowAutoRedirect && c >= 300) {
- if (InternalAllowBuffering && writeStream.WriteBufferLength > 0) {
- bodyBuffer = writeStream.WriteBuffer;
- bodyBufferLength = writeStream.WriteBufferLength;
- }
- b = Redirect (result, code);
- }
- if (resp != null && c >= 300 && c != 304)
- resp.ReadAll ();
- return b;
- }
- if (writeStream != null) {
- writeStream.InternalClose ();
- writeStream = null;
- }
- webResponse = null;
- throw throwMe;
- }
- }
- }
|