Remove obsolete Mono.Security.Providers.* assemblies (#3595)
[mono.git] / mcs / class / System / Mono.Net.Security / MonoTlsProviderFactory.cs
1 //
2 // MonoTlsProviderFactory.cs
3 //
4 // Author:
5 //       Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2015 Xamarin, Inc.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26
27 #if SECURITY_DEP
28 #if MONO_SECURITY_ALIAS
29 extern alias MonoSecurity;
30 using MSI = MonoSecurity::Mono.Security.Interface;
31 using MX = MonoSecurity::Mono.Security.X509;
32 #else
33 using MSI = Mono.Security.Interface;
34 using MX = Mono.Security.X509;
35 #endif
36 using System.Security.Cryptography.X509Certificates;
37 #endif
38
39 using System;
40 using System.Net;
41 using System.Collections.Generic;
42
43 #if !MOBILE
44 using System.Reflection;
45 #endif
46
47 namespace Mono.Net.Security
48 {
49         /*
50          * Keep in sync with Mono.Security/Mono.Security.Interface/MonoTlsProvider.cs.
51          *
52          */
53         static partial class MonoTlsProviderFactory
54         {
55                 #region Internal API
56
57                 /*
58                  * APIs in this section are for consumption within System.dll only - do not access via
59                  * reflection or from friend assemblies.
60                  * 
61                  * @IMonoTlsProvider is defined as empty interface outside 'SECURITY_DEP', so we don't need
62                  * this conditional here.
63                  */
64
65                 internal static IMonoTlsProvider GetProviderInternal ()
66                 {
67                         lock (locker) {
68                                 if (currentProvider != null)
69                                         return currentProvider;
70
71                                 try {
72                                         defaultProvider = GetDefaultProviderInternal ();
73                                 } catch (Exception ex) {
74                                         throw new NotSupportedException ("TLS Support not available.", ex);
75                                 }
76
77                                 if (defaultProvider == null)
78                                         throw new NotSupportedException ("TLS Support not available.");
79
80                                 currentProvider = defaultProvider;
81                                 return currentProvider;
82                         }
83                 }
84
85                 internal static IMonoTlsProvider GetDefaultProviderInternal ()
86                 {
87                         lock (locker) {
88                                 if (defaultProvider != null)
89                                         return defaultProvider;
90
91                                 try {
92                                         defaultProvider = CreateDefaultProvider ();
93                                 } catch (Exception ex) {
94                                         throw new NotSupportedException ("TLS Support not available.", ex);
95                                 }
96
97                                 if (defaultProvider == null)
98                                         throw new NotSupportedException ("TLS Support not available.");
99
100                                 return defaultProvider;
101                         }
102                 }
103
104                 static IMonoTlsProvider CreateDefaultProvider ()
105                 {
106 #if SECURITY_DEP
107                         MSI.MonoTlsProvider provider = CreateDefaultProviderImpl ();
108                         if (provider != null)
109                                 return new Private.MonoTlsProviderWrapper (provider);
110 #endif
111                         return null;
112                 }
113
114                 static object locker = new object ();
115                 static IMonoTlsProvider defaultProvider;
116                 static IMonoTlsProvider currentProvider;
117
118                 #endregion
119
120 #if SECURITY_DEP
121
122                 static Dictionary<string,string> providerRegistration;
123
124                 static Type LookupProviderType (string name, bool throwOnError)
125                 {
126                         lock (locker) {
127                                 InitializeProviderRegistration ();
128                                 string typeName;
129                                 if (!providerRegistration.TryGetValue (name, out typeName)) {
130                                         if (throwOnError)
131                                                 throw new NotSupportedException (string.Format ("No such TLS Provider: `{0}'.", name));
132                                         return null;
133                                 }
134                                 var type = Type.GetType (typeName, false);
135                                 if (type == null && throwOnError)
136                                         throw new NotSupportedException (string.Format ("Could not find TLS Provider: `{0}'.", typeName));
137                                 return type;
138                         }
139                 }
140
141                 static MSI.MonoTlsProvider LookupProvider (string name, bool throwOnError)
142                 {
143                         var type = LookupProviderType (name, throwOnError);
144                         if (type == null)
145                                 return null;
146
147                         try {
148                                 return (MSI.MonoTlsProvider)Activator.CreateInstance (type, true);
149                         } catch (Exception ex) {
150                                 throw new NotSupportedException (string.Format ("Unable to instantiate TLS Provider `{0}'.", type), ex);
151                         }
152                 }
153
154                 static void InitializeProviderRegistration ()
155                 {
156                         lock (locker) {
157                                 if (providerRegistration != null)
158                                         return;
159                                 providerRegistration = new Dictionary<string,string> ();
160                                 providerRegistration.Add ("legacy", "Mono.Net.Security.Private.MonoLegacyTlsProvider");
161 #if HAVE_BTLS
162                                 if (Mono.Btls.MonoBtlsProvider.IsSupported ())
163                                         providerRegistration.Add ("btls", "Mono.Btls.MonoBtlsProvider");
164 #endif
165                                 X509Helper2.Initialize ();
166                         }
167                 }
168
169 #if MOBILE_STATIC || !MOBILE
170                 static MSI.MonoTlsProvider TryDynamicLoad ()
171                 {
172                         var variable = Environment.GetEnvironmentVariable ("MONO_TLS_PROVIDER");
173                         if (variable == null)
174                                 return null;
175
176                         if (string.Equals (variable, "default", StringComparison.OrdinalIgnoreCase))
177                                 return null;
178
179                         return LookupProvider (variable, true);
180                 }
181
182                 static MSI.MonoTlsProvider CreateDefaultProviderImpl ()
183                 {
184                         var provider = TryDynamicLoad ();
185                         if (provider != null)
186                                 return provider;
187
188                         return new Private.MonoLegacyTlsProvider ();
189                 }
190 #endif
191
192                 #region Mono.Security visible API
193
194                 /*
195                  * "Public" section, intended to be consumed via reflection.
196                  * 
197                  * Mono.Security.dll provides a public wrapper around these.
198                  */
199
200                 internal static MSI.MonoTlsProvider GetProvider ()
201                 {
202                         var provider = GetProviderInternal ();
203                         if (provider == null)
204                                 throw new NotSupportedException ("No TLS Provider available.");
205
206                         return provider.Provider;
207                 }
208
209                 internal static MSI.MonoTlsProvider GetDefaultProvider ()
210                 {
211                         var provider = GetDefaultProviderInternal ();
212                         if (provider == null)
213                                 throw new NotSupportedException ("No TLS Provider available.");
214
215                         return provider.Provider;
216                 }
217
218                 internal static MSI.MonoTlsProvider GetProvider (string name)
219                 {
220                         return LookupProvider (name, false);
221                 }
222
223                 internal static bool HasProvider {
224                         get {
225                                 lock (locker) {
226                                         return currentProvider != null;
227                                 }
228                         }
229                 }
230
231                 internal static void SetDefaultProvider (string name)
232                 {
233                         lock (locker) {
234                                 var provider = LookupProvider (name, true);
235                                 currentProvider = new Private.MonoTlsProviderWrapper (provider);
236                         }
237                 }
238
239                 internal static HttpWebRequest CreateHttpsRequest (Uri requestUri, MSI.MonoTlsProvider provider, MSI.MonoTlsSettings settings)
240                 {
241                         lock (locker) {
242                                 var internalProvider = provider != null ? new Private.MonoTlsProviderWrapper (provider) : null;
243                                 return new HttpWebRequest (requestUri, internalProvider, settings);
244                         }
245                 }
246
247                 internal static HttpListener CreateHttpListener (X509Certificate certificate, MSI.MonoTlsProvider provider, MSI.MonoTlsSettings settings)
248                 {
249                         lock (locker) {
250                                 var internalProvider = provider != null ? new Private.MonoTlsProviderWrapper (provider) : null;
251                                 return new HttpListener (certificate, internalProvider, settings);
252                         }
253                 }
254                 #endregion
255
256 #endif
257
258         }
259 }
260