| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- //
- // System.Net.ServicePoint
- //
- // Authors:
- // Lawrence Pit ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (c) 2002 Lawrence Pit
- // (c) 2003 Ximian, Inc. (http://www.ximian.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.Generic;
- using System.Diagnostics;
- using System.Collections;
- using System.Net.Sockets;
- using System.Security.Cryptography.X509Certificates;
- using System.Threading;
- namespace System.Net
- {
- public class ServicePoint
- {
- readonly Uri uri;
- DateTime lastDnsResolve;
- Version protocolVersion;
- IPHostEntry host;
- bool usesProxy;
- bool sendContinue = true;
- bool useConnect;
- object hostE = new object ();
- bool useNagle;
- BindIPEndPoint endPointCallback = null;
- bool tcp_keepalive;
- int tcp_keepalive_time;
- int tcp_keepalive_interval;
- // Constructors
- internal ServicePoint (Uri uri, int connectionLimit, int maxIdleTime)
- {
- this.uri = uri;
- Scheduler = new ServicePointScheduler (this, connectionLimit, maxIdleTime);
- }
- internal ServicePointScheduler Scheduler {
- get;
- }
- // Properties
- public Uri Address {
- get { return uri; }
- }
- static Exception GetMustImplement ()
- {
- return new NotImplementedException ();
- }
- public BindIPEndPoint BindIPEndPointDelegate {
- get { return endPointCallback; }
- set { endPointCallback = value; }
- }
- [MonoTODO]
- public int ConnectionLeaseTimeout {
- get {
- throw GetMustImplement ();
- }
- set {
- throw GetMustImplement ();
- }
- }
- public int ConnectionLimit {
- get { return Scheduler.ConnectionLimit; }
- set { Scheduler.ConnectionLimit = value; }
- }
- public string ConnectionName {
- get { return uri.Scheme; }
- }
- public int CurrentConnections {
- get {
- return Scheduler.CurrentConnections;
- }
- }
- public DateTime IdleSince {
- get {
- return Scheduler.IdleSince.ToLocalTime ();
- }
- }
- public int MaxIdleTime {
- get { return Scheduler.MaxIdleTime; }
- set { Scheduler.MaxIdleTime = value; }
- }
- public virtual Version ProtocolVersion {
- get { return protocolVersion; }
- }
- [MonoTODO]
- public int ReceiveBufferSize {
- get {
- throw GetMustImplement ();
- }
- set {
- throw GetMustImplement ();
- }
- }
- public bool SupportsPipelining {
- get { return HttpVersion.Version11.Equals (protocolVersion); }
- }
- public bool Expect100Continue {
- get { return SendContinue; }
- set { SendContinue = value; }
- }
- public bool UseNagleAlgorithm {
- get { return useNagle; }
- set { useNagle = value; }
- }
- internal bool SendContinue {
- get {
- return sendContinue &&
- (protocolVersion == null || protocolVersion == HttpVersion.Version11);
- }
- set { sendContinue = value; }
- }
- // Methods
- public void SetTcpKeepAlive (bool enabled, int keepAliveTime, int keepAliveInterval)
- {
- if (enabled) {
- if (keepAliveTime <= 0)
- throw new ArgumentOutOfRangeException ("keepAliveTime", "Must be greater than 0");
- if (keepAliveInterval <= 0)
- throw new ArgumentOutOfRangeException ("keepAliveInterval", "Must be greater than 0");
- }
- tcp_keepalive = enabled;
- tcp_keepalive_time = keepAliveTime;
- tcp_keepalive_interval = keepAliveInterval;
- }
- internal void KeepAliveSetup (Socket socket)
- {
- if (!tcp_keepalive)
- return;
- byte[] bytes = new byte[12];
- PutBytes (bytes, (uint)(tcp_keepalive ? 1 : 0), 0);
- PutBytes (bytes, (uint)tcp_keepalive_time, 4);
- PutBytes (bytes, (uint)tcp_keepalive_interval, 8);
- socket.IOControl (IOControlCode.KeepAliveValues, bytes, null);
- }
- static void PutBytes (byte[] bytes, uint v, int offset)
- {
- if (BitConverter.IsLittleEndian) {
- bytes[offset] = (byte)(v & 0x000000ff);
- bytes[offset + 1] = (byte)((v & 0x0000ff00) >> 8);
- bytes[offset + 2] = (byte)((v & 0x00ff0000) >> 16);
- bytes[offset + 3] = (byte)((v & 0xff000000) >> 24);
- } else {
- bytes[offset + 3] = (byte)(v & 0x000000ff);
- bytes[offset + 2] = (byte)((v & 0x0000ff00) >> 8);
- bytes[offset + 1] = (byte)((v & 0x00ff0000) >> 16);
- bytes[offset] = (byte)((v & 0xff000000) >> 24);
- }
- }
- // Internal Methods
- internal bool UsesProxy {
- get { return usesProxy; }
- set { usesProxy = value; }
- }
- internal bool UseConnect {
- get { return useConnect; }
- set { useConnect = value; }
- }
- private bool HasTimedOut {
- get {
- int timeout = ServicePointManager.DnsRefreshTimeout;
- return timeout != Timeout.Infinite &&
- (lastDnsResolve + TimeSpan.FromMilliseconds (timeout)) < DateTime.UtcNow;
- }
- }
- internal IPHostEntry HostEntry {
- get {
- lock (hostE) {
- string uriHost = uri.Host;
- // Cannot do DNS resolution on literal IP addresses
- if (uri.HostNameType == UriHostNameType.IPv6 || uri.HostNameType == UriHostNameType.IPv4) {
- if (host != null)
- return host;
- if (uri.HostNameType == UriHostNameType.IPv6) {
- // Remove square brackets
- uriHost = uriHost.Substring (1, uriHost.Length - 2);
- }
- // Creates IPHostEntry
- host = new IPHostEntry ();
- host.AddressList = new IPAddress[] { IPAddress.Parse (uriHost) };
- return host;
- }
- if (!HasTimedOut && host != null)
- return host;
- lastDnsResolve = DateTime.UtcNow;
- try {
- host = Dns.GetHostEntry (uriHost);
- } catch {
- return null;
- }
- }
- return host;
- }
- }
- internal void SetVersion (Version version)
- {
- protocolVersion = version;
- }
- internal void SendRequest (WebOperation operation, string groupName)
- {
- lock (this) {
- Scheduler.SendRequest (operation, groupName);
- }
- }
- public bool CloseConnectionGroup (string connectionGroupName)
- {
- lock (this) {
- return Scheduler.CloseConnectionGroup (connectionGroupName);
- }
- }
- //
- // Copied from the referencesource
- //
- object m_ServerCertificateOrBytes;
- object m_ClientCertificateOrBytes;
- /// <devdoc>
- /// <para>
- /// Gets the certificate received for this <see cref='System.Net.ServicePoint'/>.
- /// </para>
- /// </devdoc>
- public X509Certificate Certificate {
- get {
- object chkCert = m_ServerCertificateOrBytes;
- if (chkCert != null && chkCert.GetType() == typeof(byte[]))
- return (X509Certificate)(m_ServerCertificateOrBytes = new X509Certificate((byte[]) chkCert));
- else
- return chkCert as X509Certificate;
- }
- }
- internal void UpdateServerCertificate(X509Certificate certificate)
- {
- if (certificate != null)
- m_ServerCertificateOrBytes = certificate.GetRawCertData();
- else
- m_ServerCertificateOrBytes = null;
- }
- /// <devdoc>
- /// <para>
- /// Gets the Client Certificate sent by us to the Server.
- /// </para>
- /// </devdoc>
- public X509Certificate ClientCertificate {
- get {
- object chkCert = m_ClientCertificateOrBytes;
- if (chkCert != null && chkCert.GetType() == typeof(byte[]))
- return (X509Certificate)(m_ClientCertificateOrBytes = new X509Certificate((byte[]) chkCert));
- else
- return chkCert as X509Certificate;
- }
- }
- internal void UpdateClientCertificate(X509Certificate certificate)
- {
- if (certificate != null)
- m_ClientCertificateOrBytes = certificate.GetRawCertData();
- else
- m_ClientCertificateOrBytes = null;
- }
- internal bool CallEndPointDelegate (Socket sock, IPEndPoint remote)
- {
- if (endPointCallback == null)
- return true;
- int count = 0;
- for (;;) {
- IPEndPoint local = null;
- try {
- local = endPointCallback (this,
- remote, count);
- } catch {
- // This is to differentiate from an
- // OverflowException, which should propagate.
- return false;
- }
- if (local == null)
- return true;
- try {
- sock.Bind (local);
- } catch (SocketException) {
- // This is intentional; the docs say
- // that if the Bind fails, we keep
- // going until there is an
- // OverflowException on the retry
- // count.
- checked { ++count; }
- continue;
- }
- return true;
- }
- }
- internal Socket GetConnection(PooledStream PooledStream, object owner, bool async, out IPAddress address, ref Socket abortSocket, ref Socket abortSocket6)
- {
- throw new NotImplementedException ();
- }
- }
- }
|