Merge pull request #472 from MelanieT/spmanager_fix
[mono.git] / mcs / class / System / System.Net / ServicePointManager.cs
1 //
2 // System.Net.ServicePointManager
3 //
4 // Authors:
5 //   Lawrence Pit (loz@cable.a2000.nl)
6 //   Gonzalo Paniagua Javier (gonzalo@novell.com)
7 //
8 // Copyright (c) 2003-2010 Novell, Inc (http://www.novell.com)
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Collections;
34 using System.Collections.Specialized;
35 using System.Configuration;
36 using System.Net.Configuration;
37 using System.Security.Cryptography.X509Certificates;
38
39 using System.Globalization;
40 using System.Net.Security;
41 #if SECURITY_DEP
42 using System.Text.RegularExpressions;
43 using Mono.Security;
44 using Mono.Security.Cryptography;
45 using Mono.Security.X509.Extensions;
46 using Mono.Security.Protocol.Tls;
47 using MSX = Mono.Security.X509;
48 #endif
49
50 //
51 // notes:
52 // A service point manager manages service points (duh!).
53 // A service point maintains a list of connections (per scheme + authority).
54 // According to HttpWebRequest.ConnectionGroupName each connection group
55 // creates additional connections. therefor, a service point has a hashtable
56 // of connection groups where each value is a list of connections.
57 // 
58 // when we need to make an HttpWebRequest, we need to do the following:
59 // 1. find service point, given Uri and Proxy 
60 // 2. find connection group, given service point and group name
61 // 3. find free connection in connection group, or create one (if ok due to limits)
62 // 4. lease connection
63 // 5. execute request
64 // 6. when finished, return connection
65 //
66
67
68 namespace System.Net 
69 {
70 #if MOONLIGHT
71         internal class ServicePointManager {
72 #else
73         public class ServicePointManager {
74 #endif
75                 class SPKey {
76                         Uri uri; // schema/host/port
77                         bool use_connect;
78
79                         public SPKey (Uri uri, bool use_connect) {
80                                 this.uri = uri;
81                                 this.use_connect = use_connect;
82                         }
83
84                         public Uri Uri {
85                                 get { return uri; }
86                         }
87
88                         public bool UseConnect {
89                                 get { return use_connect; }
90                         }
91
92                         public override int GetHashCode () {
93                                 return uri.GetHashCode () + ((use_connect) ? 1 : 0);
94                         }
95
96                         public override bool Equals (object obj) {
97                                 SPKey other = obj as SPKey;
98                                 if (obj == null) {
99                                         return false;
100                                 }
101
102                                 return (uri.Equals (other.uri) && other.use_connect == use_connect);
103                         }
104                 }
105
106                 private static HybridDictionary servicePoints = new HybridDictionary ();
107                 
108                 // Static properties
109                 
110                 private static ICertificatePolicy policy = new DefaultCertificatePolicy ();
111                 private static int defaultConnectionLimit = DefaultPersistentConnectionLimit;
112                 private static int maxServicePointIdleTime = 900000; // 15 minutes
113                 private static int maxServicePoints = 0;
114                 private static bool _checkCRL = false;
115                 private static SecurityProtocolType _securityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls;
116
117 #if TARGET_JVM
118                 static bool expectContinue = false;
119 #else
120                 static bool expectContinue = true;
121 #endif
122                 static bool useNagle;
123                 static RemoteCertificateValidationCallback server_cert_cb;
124                 static bool tcp_keepalive;
125                 static int tcp_keepalive_time;
126                 static int tcp_keepalive_interval;
127
128                 // Fields
129                 
130                 public const int DefaultNonPersistentConnectionLimit = 4;
131 #if MONOTOUCH
132                 public const int DefaultPersistentConnectionLimit = 10;
133 #else
134                 public const int DefaultPersistentConnectionLimit = 2;
135 #endif
136
137 #if !NET_2_1
138                 const string configKey = "system.net/connectionManagement";
139                 static ConnectionManagementData manager;
140 #endif
141                 
142                 static ServicePointManager ()
143                 {
144 #if !NET_2_1
145 #if CONFIGURATION_DEP
146                         object cfg = ConfigurationManager.GetSection (configKey);
147                         ConnectionManagementSection s = cfg as ConnectionManagementSection;
148                         if (s != null) {
149                                 manager = new ConnectionManagementData (null);
150                                 foreach (ConnectionManagementElement e in s.ConnectionManagement)
151                                         manager.Add (e.Address, e.MaxConnection);
152
153                                 defaultConnectionLimit = (int) manager.GetMaxConnections ("*");                         
154                                 return;
155                         }
156 #endif
157                         manager = (ConnectionManagementData) ConfigurationSettings.GetConfig (configKey);
158                         if (manager != null) {
159                                 defaultConnectionLimit = (int) manager.GetMaxConnections ("*");                         
160                         }
161 #endif
162                 }
163
164                 // Constructors
165                 private ServicePointManager ()
166                 {
167                 }               
168                 
169                 // Properties
170                 
171                 [Obsolete ("Use ServerCertificateValidationCallback instead", false)]
172                 public static ICertificatePolicy CertificatePolicy {
173                         get { return policy; }
174                         set { policy = value; }
175                 }
176
177                 [MonoTODO("CRL checks not implemented")]
178                 public static bool CheckCertificateRevocationList {
179                         get { return _checkCRL; }
180                         set { _checkCRL = false; }      // TODO - don't yet accept true
181                 }
182                 
183                 public static int DefaultConnectionLimit {
184                         get { return defaultConnectionLimit; }
185                         set { 
186                                 if (value <= 0)
187                                         throw new ArgumentOutOfRangeException ("value");
188
189                                 defaultConnectionLimit = value; 
190                 if (manager != null)
191                                         manager.Add ("*", defaultConnectionLimit);
192                         }
193                 }
194
195                 static Exception GetMustImplement ()
196                 {
197                         return new NotImplementedException ();
198                 }
199                 
200                 [MonoTODO]
201                 public static int DnsRefreshTimeout
202                 {
203                         get {
204                                 throw GetMustImplement ();
205                         }
206                         set {
207                                 throw GetMustImplement ();
208                         }
209                 }
210                 
211                 [MonoTODO]
212                 public static bool EnableDnsRoundRobin
213                 {
214                         get {
215                                 throw GetMustImplement ();
216                         }
217                         set {
218                                 throw GetMustImplement ();
219                         }
220                 }
221                 
222                 public static int MaxServicePointIdleTime {
223                         get { 
224                                 return maxServicePointIdleTime;
225                         }
226                         set { 
227                                 if (value < -2 || value > Int32.MaxValue)
228                                         throw new ArgumentOutOfRangeException ("value");
229                                 maxServicePointIdleTime = value;
230                         }
231                 }
232                 
233                 public static int MaxServicePoints {
234                         get { 
235                                 return maxServicePoints; 
236                         }
237                         set {  
238                                 if (value < 0)
239                                         throw new ArgumentException ("value");                          
240
241                                 maxServicePoints = value;
242                                 RecycleServicePoints ();
243                         }
244                 }
245
246 #if NET_1_0
247                 // we need it for SslClientStream
248                 internal
249 #else
250                 public
251 #endif
252                 static SecurityProtocolType SecurityProtocol {
253                         get { return _securityProtocol; }
254                         set { _securityProtocol = value; }
255                 }
256
257                 public static RemoteCertificateValidationCallback ServerCertificateValidationCallback
258                 {
259                         get {
260                                 return server_cert_cb;
261                         }
262                         set {
263                                 server_cert_cb = value;
264                         }
265                 }
266
267                 public static bool Expect100Continue {
268                         get { return expectContinue; }
269                         set { expectContinue = value; }
270                 }
271
272                 public static bool UseNagleAlgorithm {
273                         get { return useNagle; }
274                         set { useNagle = value; }
275                 }
276
277                 // Methods
278                 public static void SetTcpKeepAlive (bool enabled, int keepAliveTime, int keepAliveInterval)
279                 {
280                         if (enabled) {
281                                 if (keepAliveTime <= 0)
282                                         throw new ArgumentOutOfRangeException ("keepAliveTime", "Must be greater than 0");
283                                 if (keepAliveInterval <= 0)
284                                         throw new ArgumentOutOfRangeException ("keepAliveInterval", "Must be greater than 0");
285                         }
286
287                         tcp_keepalive = enabled;
288                         tcp_keepalive_time = keepAliveTime;
289                         tcp_keepalive_interval = keepAliveInterval;
290                 }
291
292                 public static ServicePoint FindServicePoint (Uri address) 
293                 {
294                         return FindServicePoint (address, GlobalProxySelection.Select);
295                 }
296                 
297                 public static ServicePoint FindServicePoint (string uriString, IWebProxy proxy)
298                 {
299                         return FindServicePoint (new Uri(uriString), proxy);
300                 }
301
302                 public static ServicePoint FindServicePoint (Uri address, IWebProxy proxy)
303                 {
304                         if (address == null)
305                                 throw new ArgumentNullException ("address");
306
307                         RecycleServicePoints ();
308
309                         var origAddress = new Uri (address.Scheme + "://" + address.Authority);
310                         
311                         bool usesProxy = false;
312                         bool useConnect = false;
313                         if (proxy != null && !proxy.IsBypassed(address)) {
314                                 usesProxy = true;
315                                 bool isSecure = address.Scheme == "https";
316                                 address = proxy.GetProxy (address);
317                                 if (address.Scheme != "http" && !isSecure)
318                                         throw new NotSupportedException ("Proxy scheme not supported.");
319
320                                 if (isSecure && address.Scheme == "http")
321                                         useConnect = true;
322                         } 
323
324                         address = new Uri (address.Scheme + "://" + address.Authority);
325                         
326                         ServicePoint sp = null;
327                         lock (servicePoints) {
328                                 SPKey key = new SPKey (origAddress, useConnect);
329                                 sp = servicePoints [key] as ServicePoint;
330                                 if (sp != null)
331                                         return sp;
332
333                                 if (maxServicePoints > 0 && servicePoints.Count >= maxServicePoints)
334                                         throw new InvalidOperationException ("maximum number of service points reached");
335
336                                 string addr = address.ToString ();
337 #if NET_2_1
338                                 int limit = defaultConnectionLimit;
339 #else
340                                 int limit = (int) manager.GetMaxConnections (addr);
341 #endif
342                                 sp = new ServicePoint (address, limit, maxServicePointIdleTime);
343                                 sp.Expect100Continue = expectContinue;
344                                 sp.UseNagleAlgorithm = useNagle;
345                                 sp.UsesProxy = usesProxy;
346                                 sp.UseConnect = useConnect;
347                                 sp.SetTcpKeepAlive (tcp_keepalive, tcp_keepalive_time, tcp_keepalive_interval);
348                                 servicePoints.Add (key, sp);
349                         }
350                         
351                         return sp;
352                 }
353                 
354                 // Internal Methods
355
356                 internal static void RecycleServicePoints ()
357                 {
358                         ArrayList toRemove = new ArrayList ();
359                         lock (servicePoints) {
360                                 IDictionaryEnumerator e = servicePoints.GetEnumerator ();
361                                 while (e.MoveNext ()) {
362                                         ServicePoint sp = (ServicePoint) e.Value;
363                                         if (sp.AvailableForRecycling) {
364                                                 toRemove.Add (e.Key);
365                                         }
366                                 }
367                                 
368                                 for (int i = 0; i < toRemove.Count; i++) 
369                                         servicePoints.Remove (toRemove [i]);
370
371                                 if (maxServicePoints == 0 || servicePoints.Count <= maxServicePoints)
372                                         return;
373
374                                 // get rid of the ones with the longest idle time
375                                 SortedList list = new SortedList (servicePoints.Count);
376                                 e = servicePoints.GetEnumerator ();
377                                 while (e.MoveNext ()) {
378                                         ServicePoint sp = (ServicePoint) e.Value;
379                                         if (sp.CurrentConnections == 0) {
380                                                 while (list.ContainsKey (sp.IdleSince))
381                                                         sp.IdleSince = sp.IdleSince.AddMilliseconds (1);
382                                                 list.Add (sp.IdleSince, sp.Address);
383                                         }
384                                 }
385                                 
386                                 for (int i = 0; i < list.Count && servicePoints.Count > maxServicePoints; i++)
387                                         servicePoints.Remove (list.GetByIndex (i));
388                         }
389                 }
390 #if MOONLIGHT && SECURITY_DEP
391                 internal class ChainValidationHelper {
392                         object sender;
393
394                         public ChainValidationHelper (object sender)
395                         {
396                                 this.sender = sender;
397                         }
398
399                         // no need to check certificates since we are either
400                         // (a) loading from the site of origin (and we accepted its certificate to load from it)
401                         // (b) loading from a cross-domain site and we downloaded the policy file using the browser stack
402                         //     i.e. the certificate was accepted (or the policy would not be valid)
403                         internal ValidationResult ValidateChain (Mono.Security.X509.X509CertificateCollection certs)
404                         {
405                                 return new ValidationResult (true, false, 0);
406                         }
407                 }
408 #elif SECURITY_DEP
409                 internal class ChainValidationHelper {
410                         object sender;
411                         string host;
412                         static bool is_macosx = System.IO.File.Exists (MSX.OSX509Certificates.SecurityLibrary);
413                         static X509RevocationMode revocation_mode;
414
415                         static ChainValidationHelper ()
416                         {
417 #if !MONOTOUCH
418                                 revocation_mode = X509RevocationMode.NoCheck;
419                                 try {
420                                         string str = Environment.GetEnvironmentVariable ("MONO_X509_REVOCATION_MODE");
421                                         if (String.IsNullOrEmpty (str))
422                                                 return;
423                                         revocation_mode = (X509RevocationMode) Enum.Parse (typeof (X509RevocationMode), str, true);
424                                 } catch {
425                                 }
426 #endif
427                         }
428
429                         public ChainValidationHelper (object sender)
430                         {
431                                 this.sender = sender;
432                         }
433
434                         public string Host {
435                                 get {
436                                         if (host == null && sender is HttpWebRequest)
437                                                 host = ((HttpWebRequest) sender).Address.Host;
438                                         return host;
439                                 }
440
441                                 set { host = value; }
442                         }
443
444                         // Used when the obsolete ICertificatePolicy is set to DefaultCertificatePolicy
445                         // and the new ServerCertificateValidationCallback is not null
446                         internal ValidationResult ValidateChain (Mono.Security.X509.X509CertificateCollection certs)
447                         {
448                                 // user_denied is true if the user callback is called and returns false
449                                 bool user_denied = false;
450                                 if (certs == null || certs.Count == 0)
451                                         return null;
452
453                                 ICertificatePolicy policy = ServicePointManager.CertificatePolicy;
454                                 RemoteCertificateValidationCallback cb = ServicePointManager.ServerCertificateValidationCallback;
455
456                                 X509Certificate2 leaf = new X509Certificate2 (certs [0].RawData);
457                                 int status11 = 0; // Error code passed to the obsolete ICertificatePolicy callback
458                                 SslPolicyErrors errors = 0;
459                                 X509Chain chain = null;
460                                 bool result = false;
461 #if MONOTOUCH
462                                 // The X509Chain is not really usable with MonoTouch (since the decision is not based on this data)
463                                 // However if someone wants to override the results (good or bad) from iOS then they will want all
464                                 // the certificates that the server provided (which generally does not include the root) so, only  
465                                 // if there's a user callback, we'll create the X509Chain but won't build it
466                                 // ref: https://bugzilla.xamarin.com/show_bug.cgi?id=7245
467                                 if (cb != null) {
468 #endif
469                                 chain = new X509Chain ();
470                                 chain.ChainPolicy = new X509ChainPolicy ();
471                                 chain.ChainPolicy.RevocationMode = revocation_mode;
472                                 for (int i = 1; i < certs.Count; i++) {
473                                         X509Certificate2 c2 = new X509Certificate2 (certs [i].RawData);
474                                         chain.ChainPolicy.ExtraStore.Add (c2);
475                                 }
476 #if MONOTOUCH
477                                 }
478 #else
479                                 try {
480                                         if (!chain.Build (leaf))
481                                                 errors |= GetErrorsFromChain (chain);
482                                 } catch (Exception e) {
483                                         Console.Error.WriteLine ("ERROR building certificate chain: {0}", e);
484                                         Console.Error.WriteLine ("Please, report this problem to the Mono team");
485                                         errors |= SslPolicyErrors.RemoteCertificateChainErrors;
486                                 }
487
488                                 // for OSX and iOS we're using the native API to check for the SSL server policy and host names
489                                 if (!is_macosx) {
490                                         if (!CheckCertificateUsage (leaf)) {
491                                                 errors |= SslPolicyErrors.RemoteCertificateChainErrors;
492                                                 status11 = -2146762490; //CERT_E_PURPOSE 0x800B0106
493                                         }
494
495                                         if (!CheckServerIdentity (certs [0], Host)) {
496                                                 errors |= SslPolicyErrors.RemoteCertificateNameMismatch;
497                                                 status11 = -2146762481; // CERT_E_CN_NO_MATCH 0x800B010F
498                                         }
499                                 } else {
500 #endif
501                                         // Attempt to use OSX certificates
502                                         // Ideally we should return the SecTrustResult
503                                         MSX.OSX509Certificates.SecTrustResult trustResult = MSX.OSX509Certificates.SecTrustResult.Deny;
504                                         try {
505                                                 trustResult = MSX.OSX509Certificates.TrustEvaluateSsl (certs, Host);
506                                                 // We could use the other values of trustResult to pass this extra information
507                                                 // to the .NET 2 callback for values like SecTrustResult.Confirm
508                                                 result = (trustResult == MSX.OSX509Certificates.SecTrustResult.Proceed ||
509                                                                   trustResult == MSX.OSX509Certificates.SecTrustResult.Unspecified);
510                                         } catch {
511                                                 // Ignore
512                                         }
513                                         
514                                         if (result) {
515                                                 // TrustEvaluateSsl was successful so there's no trust error
516                                                 // IOW we discard our own chain (since we trust OSX one instead)
517                                                 errors = 0;
518                                         } else {
519                                                 // callback and DefaultCertificatePolicy needs this since 'result' is not specified
520                                                 status11 = (int) trustResult;
521                                                 errors |= SslPolicyErrors.RemoteCertificateChainErrors;
522                                         }
523 #if !MONOTOUCH
524                                 }
525 #endif
526
527 #if MONODROID
528                                 result = AndroidPlatform.TrustEvaluateSsl (certs, sender, leaf, chain, errors);
529                                 if (result) {
530                                         // chain.Build() + GetErrorsFromChain() (above) will ALWAYS fail on
531                                         // Android (there are no mozroots or preinstalled root certificates),
532                                         // thus `errors` will ALWAYS have RemoteCertificateChainErrors.
533                                         // Android just verified the chain; clear RemoteCertificateChainErrors.
534                                         errors  &= ~SslPolicyErrors.RemoteCertificateChainErrors;
535                                 }
536 #endif
537
538                                 if (policy != null && (!(policy is DefaultCertificatePolicy) || cb == null)) {
539                                         ServicePoint sp = null;
540                                         HttpWebRequest req = sender as HttpWebRequest;
541                                         if (req != null)
542                                                 sp = req.ServicePointNoLock;
543                                         if (status11 == 0 && errors != 0)
544                                                 status11 = GetStatusFromChain (chain);
545
546                                         // pre 2.0 callback
547                                         result = policy.CheckValidationResult (sp, leaf, req, status11);
548                                         user_denied = !result && !(policy is DefaultCertificatePolicy);
549                                 }
550                                 // If there's a 2.0 callback, it takes precedence
551                                 if (cb != null) {
552                                         result = cb (sender, leaf, chain, errors);
553                                         user_denied = !result;
554                                 }
555                                 return new ValidationResult (result, user_denied, status11);
556                         }
557
558                         static int GetStatusFromChain (X509Chain chain)
559                         {
560                                 long result = 0;
561                                 foreach (var status in chain.ChainStatus) {
562                                         X509ChainStatusFlags flags = status.Status;
563                                         if (flags == X509ChainStatusFlags.NoError)
564                                                 continue;
565
566                                         // CERT_E_EXPIRED
567                                         if ((flags & X509ChainStatusFlags.NotTimeValid) != 0) result = 0x800B0101;
568                                         // CERT_E_VALIDITYPERIODNESTING
569                                         else if ((flags & X509ChainStatusFlags.NotTimeNested) != 0) result = 0x800B0102;
570                                         // CERT_E_REVOKED
571                                         else if ((flags & X509ChainStatusFlags.Revoked) != 0) result = 0x800B010C;
572                                         // TRUST_E_CERT_SIGNATURE
573                                         else if ((flags & X509ChainStatusFlags.NotSignatureValid) != 0) result = 0x80096004;
574                                         // CERT_E_WRONG_USAGE
575                                         else if ((flags & X509ChainStatusFlags.NotValidForUsage) != 0) result = 0x800B0110;
576                                         // CERT_E_UNTRUSTEDROOT
577                                         else if ((flags & X509ChainStatusFlags.UntrustedRoot) != 0) result = 0x800B0109;
578                                         // CRYPT_E_NO_REVOCATION_CHECK
579                                         else if ((flags & X509ChainStatusFlags.RevocationStatusUnknown) != 0) result = 0x80092012;
580                                         // CERT_E_CHAINING
581                                         else if ((flags & X509ChainStatusFlags.Cyclic) != 0) result = 0x800B010A;
582                                         // TRUST_E_FAIL - generic
583                                         else if ((flags & X509ChainStatusFlags.InvalidExtension) != 0) result = 0x800B010B;
584                                         // CERT_E_UNTRUSTEDROOT
585                                         else if ((flags & X509ChainStatusFlags.InvalidPolicyConstraints) != 0) result = 0x800B010D;
586                                         // TRUST_E_BASIC_CONSTRAINTS
587                                         else if ((flags & X509ChainStatusFlags.InvalidBasicConstraints) != 0) result = 0x80096019;
588                                         // CERT_E_INVALID_NAME
589                                         else if ((flags & X509ChainStatusFlags.InvalidNameConstraints) != 0) result = 0x800B0114;
590                                         // CERT_E_INVALID_NAME
591                                         else if ((flags & X509ChainStatusFlags.HasNotSupportedNameConstraint) != 0) result = 0x800B0114;
592                                         // CERT_E_INVALID_NAME
593                                         else if ((flags & X509ChainStatusFlags.HasNotDefinedNameConstraint) != 0) result = 0x800B0114;
594                                         // CERT_E_INVALID_NAME
595                                         else if ((flags & X509ChainStatusFlags.HasNotPermittedNameConstraint) != 0) result = 0x800B0114;
596                                         // CERT_E_INVALID_NAME
597                                         else if ((flags & X509ChainStatusFlags.HasExcludedNameConstraint) != 0) result = 0x800B0114;
598                                         // CERT_E_CHAINING
599                                         else if ((flags & X509ChainStatusFlags.PartialChain) != 0) result = 0x800B010A;
600                                         // CERT_E_EXPIRED
601                                         else if ((flags & X509ChainStatusFlags.CtlNotTimeValid) != 0) result = 0x800B0101;
602                                         // TRUST_E_CERT_SIGNATURE
603                                         else if ((flags & X509ChainStatusFlags.CtlNotSignatureValid) != 0) result = 0x80096004;
604                                         // CERT_E_WRONG_USAGE
605                                         else if ((flags & X509ChainStatusFlags.CtlNotValidForUsage) != 0) result = 0x800B0110;
606                                         // CRYPT_E_NO_REVOCATION_CHECK
607                                         else if ((flags & X509ChainStatusFlags.OfflineRevocation) != 0) result = 0x80092012;
608                                         // CERT_E_ISSUERCHAINING
609                                         else if ((flags & X509ChainStatusFlags.NoIssuanceChainPolicy) != 0) result = 0x800B0107;
610                                         else result = 0x800B010B; // TRUST_E_FAIL - generic
611
612                                         break; // Exit the loop on the first error
613                                 }
614                                 return (int) result;
615                         }
616 #if !MONOTOUCH
617                         static SslPolicyErrors GetErrorsFromChain (X509Chain chain)
618                         {
619                                 SslPolicyErrors errors = SslPolicyErrors.None;
620                                 foreach (var status in chain.ChainStatus) {
621                                         if (status.Status == X509ChainStatusFlags.NoError)
622                                                 continue;
623                                         errors |= SslPolicyErrors.RemoteCertificateChainErrors;
624                                         break;
625                                 }
626                                 return errors;
627                         }
628
629                         static X509KeyUsageFlags s_flags = X509KeyUsageFlags.DigitalSignature  | 
630                                                         X509KeyUsageFlags.KeyAgreement |
631                                                         X509KeyUsageFlags.KeyEncipherment;
632                         // Adapted to System 2.0+ from TlsServerCertificate.cs
633                         //------------------------------
634                         // Note: this method only works for RSA certificates
635                         // DH certificates requires some changes - does anyone use one ?
636                         static bool CheckCertificateUsage (X509Certificate2 cert) 
637                         {
638                                 try {
639                                         // certificate extensions are required for this
640                                         // we "must" accept older certificates without proofs
641                                         if (cert.Version < 3)
642                                                 return true;
643
644                                         X509KeyUsageExtension kux = (cert.Extensions ["2.5.29.15"] as X509KeyUsageExtension);
645                                         X509EnhancedKeyUsageExtension eku = (cert.Extensions ["2.5.29.37"] as X509EnhancedKeyUsageExtension);
646                                         if (kux != null && eku != null) {
647                                                 // RFC3280 states that when both KeyUsageExtension and 
648                                                 // ExtendedKeyUsageExtension are present then BOTH should
649                                                 // be valid
650                                                 if ((kux.KeyUsages & s_flags) == 0)
651                                                         return false;
652                                                 return eku.EnhancedKeyUsages ["1.3.6.1.5.5.7.3.1"] != null ||
653                                                         eku.EnhancedKeyUsages ["2.16.840.1.113730.4.1"] != null;
654                                         } else if (kux != null) {
655                                                 return ((kux.KeyUsages & s_flags) != 0);
656                                         } else if (eku != null) {
657                                                 // Server Authentication (1.3.6.1.5.5.7.3.1) or
658                                                 // Netscape Server Gated Crypto (2.16.840.1.113730.4)
659                                                 return eku.EnhancedKeyUsages ["1.3.6.1.5.5.7.3.1"] != null ||
660                                                         eku.EnhancedKeyUsages ["2.16.840.1.113730.4.1"] != null;
661                                         }
662
663                                         // last chance - try with older (deprecated) Netscape extensions
664                                         X509Extension ext = cert.Extensions ["2.16.840.1.113730.1.1"];
665                                         if (ext != null) {
666                                                 string text = ext.NetscapeCertType (false);
667                                                 return text.IndexOf ("SSL Server Authentication", StringComparison.Ordinal) != -1;
668                                         }
669                                         return true;
670                                 } catch (Exception e) {
671                                         Console.Error.WriteLine ("ERROR processing certificate: {0}", e);
672                                         Console.Error.WriteLine ("Please, report this problem to the Mono team");
673                                         return false;
674                                 }
675                         }
676
677                         // RFC2818 - HTTP Over TLS, Section 3.1
678                         // http://www.ietf.org/rfc/rfc2818.txt
679                         // 
680                         // 1.   if present MUST use subjectAltName dNSName as identity
681                         // 1.1.         if multiples entries a match of any one is acceptable
682                         // 1.2.         wildcard * is acceptable
683                         // 2.   URI may be an IP address -> subjectAltName.iPAddress
684                         // 2.1.         exact match is required
685                         // 3.   Use of the most specific Common Name (CN=) in the Subject
686                         // 3.1          Existing practice but DEPRECATED
687                         static bool CheckServerIdentity (Mono.Security.X509.X509Certificate cert, string targetHost) 
688                         {
689                                 try {
690                                         Mono.Security.X509.X509Extension ext = cert.Extensions ["2.5.29.17"];
691                                         // 1. subjectAltName
692                                         if (ext != null) {
693                                                 SubjectAltNameExtension subjectAltName = new SubjectAltNameExtension (ext);
694                                                 // 1.1 - multiple dNSName
695                                                 foreach (string dns in subjectAltName.DNSNames) {
696                                                         // 1.2 TODO - wildcard support
697                                                         if (Match (targetHost, dns))
698                                                                 return true;
699                                                 }
700                                                 // 2. ipAddress
701                                                 foreach (string ip in subjectAltName.IPAddresses) {
702                                                         // 2.1. Exact match required
703                                                         if (ip == targetHost)
704                                                                 return true;
705                                                 }
706                                         }
707                                         // 3. Common Name (CN=)
708                                         return CheckDomainName (cert.SubjectName, targetHost);
709                                 } catch (Exception e) {
710                                         Console.Error.WriteLine ("ERROR processing certificate: {0}", e);
711                                         Console.Error.WriteLine ("Please, report this problem to the Mono team");
712                                         return false;
713                                 }
714                         }
715
716                         static bool CheckDomainName (string subjectName, string targetHost)
717                         {
718                                 string  domainName = String.Empty;
719                                 Regex search = new Regex(@"CN\s*=\s*([^,]*)");
720                                 MatchCollection elements = search.Matches(subjectName);
721                                 if (elements.Count == 1) {
722                                         if (elements[0].Success)
723                                                 domainName = elements[0].Groups[1].Value.ToString();
724                                 }
725
726                                 return Match (targetHost, domainName);
727                         }
728
729                         // ensure the pattern is valid wrt to RFC2595 and RFC2818
730                         // http://www.ietf.org/rfc/rfc2595.txt
731                         // http://www.ietf.org/rfc/rfc2818.txt
732                         static bool Match (string hostname, string pattern)
733                         {
734                                 // check if this is a pattern
735                                 int index = pattern.IndexOf ('*');
736                                 if (index == -1) {
737                                         // not a pattern, do a direct case-insensitive comparison
738                                         return (String.Compare (hostname, pattern, true, CultureInfo.InvariantCulture) == 0);
739                                 }
740
741                                 // check pattern validity
742                                 // A "*" wildcard character MAY be used as the left-most name component in the certificate.
743
744                                 // unless this is the last char (valid)
745                                 if (index != pattern.Length - 1) {
746                                         // then the next char must be a dot .'.
747                                         if (pattern [index + 1] != '.')
748                                                 return false;
749                                 }
750
751                                 // only one (A) wildcard is supported
752                                 int i2 = pattern.IndexOf ('*', index + 1);
753                                 if (i2 != -1)
754                                         return false;
755
756                                 // match the end of the pattern
757                                 string end = pattern.Substring (index + 1);
758                                 int length = hostname.Length - end.Length;
759                                 // no point to check a pattern that is longer than the hostname
760                                 if (length <= 0)
761                                         return false;
762
763                                 if (String.Compare (hostname, length, end, 0, end.Length, true, CultureInfo.InvariantCulture) != 0)
764                                         return false;
765
766                                 // special case, we start with the wildcard
767                                 if (index == 0) {
768                                         // ensure we hostname non-matched part (start) doesn't contain a dot
769                                         int i3 = hostname.IndexOf ('.');
770                                         return ((i3 == -1) || (i3 >= (hostname.Length - end.Length)));
771                                 }
772
773                                 // match the start of the pattern
774                                 string start = pattern.Substring (0, index);
775                                 return (String.Compare (hostname, 0, start, 0, start.Length, true, CultureInfo.InvariantCulture) == 0);
776                         }
777 #endif
778                 }
779 #endif
780         }
781 }
782