Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / class / System / Mono.Btls / MonoBtlsContext.cs
1 //
2 // MonoBtlsContext.cs
3 //
4 // Author:
5 //       Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2016 Xamarin Inc. (http://www.xamarin.com)
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 #if SECURITY_DEP
27 #if MONO_SECURITY_ALIAS
28 extern alias MonoSecurity;
29 #endif
30
31 using System;
32 using System.IO;
33 using System.Threading;
34 using System.Threading.Tasks;
35 using System.Security.Cryptography.X509Certificates;
36 using System.Security.Authentication;
37 using System.Runtime.InteropServices;
38
39 #if MONO_SECURITY_ALIAS
40 using MonoSecurity::Mono.Security.Interface;
41 #else
42 using Mono.Security.Interface;
43 #endif
44
45 using MNS = Mono.Net.Security;
46
47 namespace Mono.Btls
48 {
49         class MonoBtlsContext : MNS.MobileTlsContext, IMonoBtlsBioMono
50         {
51                 X509Certificate remoteCertificate;
52                 X509Certificate clientCertificate;
53                 X509CertificateImplBtls nativeServerCertificate;
54                 X509CertificateImplBtls nativeClientCertificate;
55                 MonoBtlsSslCtx ctx;
56                 MonoBtlsSsl ssl;
57                 MonoBtlsBio bio;
58                 MonoBtlsBio errbio;
59
60                 MonoTlsConnectionInfo connectionInfo;
61                 bool certificateValidated;
62                 bool isAuthenticated;
63                 bool connected;
64
65                 public MonoBtlsContext (
66                         MNS.MobileAuthenticatedStream parent,
67                         bool serverMode, string targetHost,
68                         SslProtocols enabledProtocols, X509Certificate serverCertificate,
69                         X509CertificateCollection clientCertificates, bool askForClientCert)
70                         : base (parent, serverMode, targetHost, enabledProtocols,
71                                 serverCertificate, clientCertificates, askForClientCert)
72                 {
73                         if (serverMode)
74                                 nativeServerCertificate = GetPrivateCertificate (serverCertificate);
75                 }
76
77                 static X509CertificateImplBtls GetPrivateCertificate (X509Certificate certificate)
78                 {
79                         var impl = certificate.Impl as X509CertificateImplBtls;
80                         if (impl != null)
81                                 return (X509CertificateImplBtls)impl.Clone ();
82
83                         var password = Guid.NewGuid ().ToString ();
84                         var buffer = certificate.Export (X509ContentType.Pfx, password);
85
86                         impl = new X509CertificateImplBtls ();
87                         impl.Import (buffer, password, X509KeyStorageFlags.DefaultKeySet);
88                         return impl;
89                 }
90
91                 new public MonoBtlsProvider Provider {
92                         get { return (MonoBtlsProvider)base.Provider; }
93                 }
94
95                 int VerifyCallback (MonoBtlsX509StoreCtx storeCtx)
96                 {
97                         using (var chainImpl = new X509ChainImplBtls (storeCtx))
98                         using (var managedChain = new X509Chain (chainImpl)) {
99                                 var leaf = managedChain.ChainElements[0].Certificate;
100                                 var result = ValidateCertificate (leaf, managedChain);
101                                 certificateValidated = true;
102                                 return result ? 1 : 0;
103                         }
104                 }
105
106                 int SelectCallback ()
107                 {
108                         Debug ("SELECT CALLBACK!");
109
110                         GetPeerCertificate ();
111                         if (remoteCertificate == null)
112                                 throw new TlsException (AlertDescription.InternalError, "Cannot request client certificate before receiving one from the server.");
113
114                         var clientCert = SelectClientCertificate (remoteCertificate, null);
115                         Debug ("SELECT CALLBACK #1: {0}", clientCert);
116                         if (clientCert == null)
117                                 return 1;
118
119                         nativeClientCertificate = GetPrivateCertificate (clientCert);
120                         Debug ("SELECT CALLBACK #2: {0}", nativeClientCertificate);
121                         clientCertificate = new X509Certificate (nativeClientCertificate);
122                         SetPrivateCertificate (nativeClientCertificate);
123                         return 1;
124                 }
125
126                 public override void StartHandshake ()
127                 {
128                         InitializeConnection ();
129
130                         ssl = new MonoBtlsSsl (ctx);
131
132                         bio = new MonoBtlsBioMono (this);
133                         ssl.SetBio (bio);
134
135                         if (IsServer) {
136                                 SetPrivateCertificate (nativeServerCertificate);
137                         } else {
138                                 ssl.SetServerName (TargetHost);
139                         }
140                 }
141
142                 void SetPrivateCertificate (X509CertificateImplBtls privateCert)
143                 {
144                         Debug ("SetPrivateCertificate: {0}", privateCert);
145                         ssl.SetCertificate (privateCert.X509);
146                         ssl.SetPrivateKey (privateCert.NativePrivateKey);
147                         var intermediate = privateCert.IntermediateCertificates;
148                         if (intermediate == null)
149                                 return;
150                         for (int i = 0; i < intermediate.Count; i++) {
151                                 var impl = (X509CertificateImplBtls)intermediate [i];
152                                 Debug ("SetPrivateCertificate - add intermediate: {0}", impl);
153                                 ssl.AddIntermediateCertificate (impl.X509);
154                         }
155                 }
156
157                 Exception GetException (MonoBtlsSslError status)
158                 {
159                         var error = MonoBtlsError.GetError ();
160                         if (error == null)
161                                 return new MonoBtlsException (status);
162
163                         var text = MonoBtlsError.GetErrorString (error);
164                         return new MonoBtlsException ("{0} {1}", status, text);
165                 }
166
167                 public override bool ProcessHandshake ()
168                 {
169                         var done = false;
170                         while (!done) {
171                                 Debug ("ProcessHandshake");
172                                 MonoBtlsError.ClearError ();
173                                 var status = DoProcessHandshake ();
174                                 Debug ("ProcessHandshake #1: {0}", status);
175
176                                 switch (status) {
177                                 case MonoBtlsSslError.None:
178                                         if (connected)
179                                                 done = true;
180                                         else
181                                                 connected = true;
182                                         break;
183                                 case MonoBtlsSslError.WantRead:
184                                 case MonoBtlsSslError.WantWrite:
185                                         return false;
186                                 default:
187                                         throw GetException (status);
188                                 }
189                         }
190
191                         ssl.PrintErrors ();
192
193                         return true;
194                 }
195
196                 MonoBtlsSslError DoProcessHandshake ()
197                 {
198                         if (connected)
199                                 return ssl.Handshake ();
200                         else if (IsServer)
201                                 return ssl.Accept ();
202                         else
203                                 return ssl.Connect ();
204                 }
205
206                 public override void FinishHandshake ()
207                 {
208                         InitializeSession ();
209
210                         isAuthenticated = true;
211                 }
212
213                 void SetupCertificateStore ()
214                 {
215                         MonoBtlsProvider.SetupCertificateStore (ctx.CertificateStore);
216
217                         if (Settings != null && Settings.TrustAnchors != null) {
218                                 var trust = IsServer ? MonoBtlsX509TrustKind.TRUST_CLIENT : MonoBtlsX509TrustKind.TRUST_SERVER;
219                                 ctx.CertificateStore.AddCollection (Settings.TrustAnchors, trust);
220                         }
221                 }
222
223                 void InitializeConnection ()
224                 {
225                         ctx = new MonoBtlsSslCtx ();
226
227 #if MARTIN_DEBUG
228                         errbio = MonoBtlsBio.CreateMonoStream (Console.OpenStandardError ());
229                         ctx.SetDebugBio (errbio);
230 #endif
231
232                         SetupCertificateStore ();
233
234                         if (!IsServer || AskForClientCertificate)
235                                 ctx.SetVerifyCallback (VerifyCallback, false);
236                         if (!IsServer)
237                                 ctx.SetSelectCallback (SelectCallback);
238
239                         var host = TargetHost;
240                         if (!string.IsNullOrEmpty (host)) {
241                                 var pos = TargetHost.IndexOf (':');
242                                 if (pos > 0)
243                                         host = host.Substring (0, pos);
244                         }
245
246                         ctx.SetVerifyParam (MonoBtlsProvider.GetVerifyParam (host, IsServer));
247
248                         TlsProtocolCode minProtocol, maxProtocol;
249                         GetProtocolVersions (out minProtocol, out maxProtocol);
250
251                         ctx.SetMinVersion ((int)minProtocol);
252                         ctx.SetMaxVersion ((int)maxProtocol);
253
254                         if (Settings != null && Settings.EnabledCiphers != null) {
255                                 var ciphers = new short [Settings.EnabledCiphers.Length];
256                                 for (int i = 0; i < ciphers.Length; i++)
257                                         ciphers [i] = (short)Settings.EnabledCiphers [i];
258                                 ctx.SetCiphers (ciphers, true);
259                         }
260                 }
261
262                 void GetPeerCertificate ()
263                 {
264                         if (remoteCertificate != null)
265                                 return;
266                         using (var remoteCert = ssl.GetPeerCertificate ()) {
267                                 if (remoteCert != null)
268                                         remoteCertificate = MonoBtlsProvider.CreateCertificate (remoteCert);
269                         }
270                 }
271
272                 void InitializeSession ()
273                 {
274                         GetPeerCertificate ();
275
276                         if (IsServer && AskForClientCertificate && !certificateValidated) {
277                                 if (!ValidateCertificate (null, null))
278                                         throw new TlsException (AlertDescription.CertificateUnknown);
279                         }
280
281                         var cipher = (CipherSuiteCode)ssl.GetCipher ();
282                         var protocol = (TlsProtocolCode)ssl.GetVersion ();
283                         Debug ("GET CONNECTION INFO: {0:x}:{0} {1:x}:{1} {2}", cipher, protocol, (TlsProtocolCode)protocol);
284
285                         connectionInfo = new MonoTlsConnectionInfo {
286                                 CipherSuiteCode = cipher,
287                                 ProtocolVersion = GetProtocol (protocol)
288                         };
289                 }
290
291                 static TlsProtocols GetProtocol (TlsProtocolCode protocol)
292                 {
293                         switch (protocol) {
294                         case TlsProtocolCode.Tls10:
295                                 return TlsProtocols.Tls10;
296                         case TlsProtocolCode.Tls11:
297                                 return TlsProtocols.Tls11;
298                         case TlsProtocolCode.Tls12:
299                                 return TlsProtocols.Tls12;
300                         default:
301                                 throw new NotSupportedException ();
302                         }
303                 }
304
305                 public override void Flush ()
306                 {
307                         throw new NotImplementedException ();
308                 }
309
310                 public override int Read (byte[] buffer, int offset, int size, out bool wantMore)
311                 {
312                         Debug ("Read: {0} {1} {2}", buffer.Length, offset, size);
313
314                         var data = Marshal.AllocHGlobal (size);
315                         if (data == IntPtr.Zero)
316                                 throw new OutOfMemoryException ();
317
318                         try {
319                                 MonoBtlsError.ClearError ();
320                                 var status = ssl.Read (data, ref size);
321                                 Debug ("Read done: {0} {1}", status, size);
322
323                                 if (status == MonoBtlsSslError.WantRead) {
324                                         wantMore = true;
325                                         return 0;
326                                 } else if (status != MonoBtlsSslError.None) {
327                                         throw GetException (status);
328                                 }
329
330                                 if (size > 0)
331                                         Marshal.Copy (data, buffer, offset, size);
332
333                                 wantMore = false;
334                                 return size;
335                         } finally {
336                                 Marshal.FreeHGlobal (data);
337                         }
338                 }
339
340                 public override int Write (byte[] buffer, int offset, int size, out bool wantMore)
341                 {
342                         Debug ("Write: {0} {1} {2}", buffer.Length, offset, size);
343
344                         var data = Marshal.AllocHGlobal (size);
345                         if (data == IntPtr.Zero)
346                                 throw new OutOfMemoryException ();
347
348                         try {
349                                 MonoBtlsError.ClearError ();
350                                 Marshal.Copy (buffer, offset, data, size);
351                                 var status = ssl.Write (data, ref size);
352                                 Debug ("Write done: {0} {1}", status, size);
353
354                                 if (status == MonoBtlsSslError.WantWrite) {
355                                         wantMore = true;
356                                         return 0;
357                                 } else if (status != MonoBtlsSslError.None) {
358                                         throw GetException (status);
359                                 }
360
361                                 wantMore = false;
362                                 return size;
363                         } finally {
364                                 Marshal.FreeHGlobal (data);
365                         }
366                 }
367
368                 public override void Close ()
369                 {
370                         Debug ("Close!");
371                         ssl.Dispose ();
372                 }
373
374                 void Dispose<T> (ref T disposable)
375                         where T : class, IDisposable
376                 {
377                         try {
378                                 if (disposable != null)
379                                         disposable.Dispose ();
380                         } catch {
381                                 ;
382                         } finally {
383                                 disposable = null;
384                         }
385                 }
386
387                 protected override void Dispose (bool disposing)
388                 {
389                         try {
390                                 if (disposing) {
391                                         Dispose (ref remoteCertificate);
392                                         Dispose (ref nativeServerCertificate);
393                                         Dispose (ref nativeClientCertificate);
394                                         Dispose (ref clientCertificate);
395                                         Dispose (ref ctx);
396                                         Dispose (ref ssl);
397                                         Dispose (ref bio);
398                                         Dispose (ref errbio);
399                                 }
400                         } finally {
401                                 base.Dispose (disposing);
402                         }
403                 }
404
405                 int IMonoBtlsBioMono.Read (byte[] buffer, int offset, int size, out bool wantMore)
406                 {
407                         Debug ("InternalRead: {0} {1}", offset, size);
408                         var ret = Parent.InternalRead (buffer, offset, size, out wantMore);
409                         Debug ("InternalReadDone: {0} {1}", ret, wantMore);
410                         return ret;
411                 }
412
413                 bool IMonoBtlsBioMono.Write (byte[] buffer, int offset, int size)
414                 {
415                         Debug ("InternalWrite: {0} {1}", offset, size);
416                         var ret = Parent.InternalWrite (buffer, offset, size);
417                         Debug ("InternalWrite done: {0}", ret);
418                         return ret;
419                 }
420
421                 void IMonoBtlsBioMono.Flush ()
422                 {
423                         ;
424                 }
425
426                 void IMonoBtlsBioMono.Close ()
427                 {
428                         ;
429                 }
430
431                 public override bool HasContext {
432                         get { return ssl != null && ssl.IsValid; }
433                 }
434                 public override bool IsAuthenticated {
435                         get { return isAuthenticated; }
436                 }
437                 public override MonoTlsConnectionInfo ConnectionInfo {
438                         get { return connectionInfo; }
439                 }
440                 internal override bool IsRemoteCertificateAvailable {
441                         get { return remoteCertificate != null; }
442                 }
443                 internal override X509Certificate LocalClientCertificate {
444                         get { return clientCertificate; }
445                 }
446                 public override X509Certificate RemoteCertificate {
447                         get { return remoteCertificate; }
448                 }
449                 public override TlsProtocols NegotiatedProtocol {
450                         get { return connectionInfo.ProtocolVersion; }
451                 }
452         }
453 }
454 #endif