[BTLS]: Send server name extension on the client.
[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 #if MONODROID
216                         ctx.CertificateStore.SetDefaultPaths ();
217                         ctx.CertificateStore.AddAndroidLookup ();
218 #else
219                         var userPath = MonoBtlsX509StoreManager.GetStorePath (MonoBtlsX509StoreType.UserTrustedRoots);
220                         if (Directory.Exists (userPath))
221                                 ctx.CertificateStore.AddDirectoryLookup (userPath, MonoBtlsX509FileType.PEM);
222                         var machinePath = MonoBtlsX509StoreManager.GetStorePath (MonoBtlsX509StoreType.MachineTrustedRoots);
223                         if (Directory.Exists (machinePath))
224                                 ctx.CertificateStore.AddDirectoryLookup (machinePath, MonoBtlsX509FileType.PEM);
225 #endif
226
227                         if (Settings != null && Settings.TrustAnchors != null) {
228                                 var trust = IsServer ? MonoBtlsX509TrustKind.TRUST_CLIENT : MonoBtlsX509TrustKind.TRUST_SERVER;
229                                 ctx.CertificateStore.AddCollection (Settings.TrustAnchors, trust);
230                         }
231                 }
232
233                 void InitializeConnection ()
234                 {
235                         ctx = new MonoBtlsSslCtx ();
236
237 #if MARTIN_DEBUG
238                         errbio = MonoBtlsBio.CreateMonoStream (Console.OpenStandardError ());
239                         ctx.SetDebugBio (errbio);
240 #endif
241
242                         SetupCertificateStore ();
243
244                         if (!IsServer || AskForClientCertificate)
245                                 ctx.SetVerifyCallback (VerifyCallback, false);
246                         if (!IsServer)
247                                 ctx.SetSelectCallback (SelectCallback);
248
249                         ctx.SetVerifyParam (MonoBtlsProvider.GetVerifyParam (TargetHost, IsServer));
250
251                         TlsProtocolCode minProtocol, maxProtocol;
252                         GetProtocolVersions (out minProtocol, out maxProtocol);
253
254                         ctx.SetMinVersion ((int)minProtocol);
255                         ctx.SetMaxVersion ((int)maxProtocol);
256
257                         if (Settings != null && Settings.EnabledCiphers != null) {
258                                 var ciphers = new short [Settings.EnabledCiphers.Length];
259                                 for (int i = 0; i < ciphers.Length; i++)
260                                         ciphers [i] = (short)Settings.EnabledCiphers [i];
261                                 ctx.SetCiphers (ciphers, true);
262                         }
263                 }
264
265                 void GetPeerCertificate ()
266                 {
267                         if (remoteCertificate != null)
268                                 return;
269                         using (var remoteCert = ssl.GetPeerCertificate ()) {
270                                 if (remoteCert != null)
271                                         remoteCertificate = MonoBtlsProvider.CreateCertificate (remoteCert);
272                         }
273                 }
274
275                 void InitializeSession ()
276                 {
277                         GetPeerCertificate ();
278
279                         if (IsServer && AskForClientCertificate && !certificateValidated) {
280                                 if (!ValidateCertificate (null, null))
281                                         throw new TlsException (AlertDescription.CertificateUnknown);
282                         }
283
284                         var cipher = (CipherSuiteCode)ssl.GetCipher ();
285                         var protocol = (TlsProtocolCode)ssl.GetVersion ();
286                         Debug ("GET CONNECTION INFO: {0:x}:{0} {1:x}:{1} {2}", cipher, protocol, (TlsProtocolCode)protocol);
287
288                         connectionInfo = new MonoTlsConnectionInfo {
289                                 CipherSuiteCode = cipher,
290                                 ProtocolVersion = GetProtocol (protocol)
291                         };
292                 }
293
294                 static TlsProtocols GetProtocol (TlsProtocolCode protocol)
295                 {
296                         switch (protocol) {
297                         case TlsProtocolCode.Tls10:
298                                 return TlsProtocols.Tls10;
299                         case TlsProtocolCode.Tls11:
300                                 return TlsProtocols.Tls11;
301                         case TlsProtocolCode.Tls12:
302                                 return TlsProtocols.Tls12;
303                         default:
304                                 throw new NotSupportedException ();
305                         }
306                 }
307
308                 public override void Flush ()
309                 {
310                         throw new NotImplementedException ();
311                 }
312
313                 public override int Read (byte[] buffer, int offset, int size, out bool wantMore)
314                 {
315                         Debug ("Read: {0} {1} {2}", buffer.Length, offset, size);
316
317                         var data = Marshal.AllocHGlobal (size);
318                         if (data == IntPtr.Zero)
319                                 throw new OutOfMemoryException ();
320
321                         try {
322                                 MonoBtlsError.ClearError ();
323                                 var status = ssl.Read (data, ref size);
324                                 Debug ("Read done: {0} {1}", status, size);
325
326                                 if (status == MonoBtlsSslError.WantRead) {
327                                         wantMore = true;
328                                         return 0;
329                                 } else if (status != MonoBtlsSslError.None) {
330                                         throw GetException (status);
331                                 }
332
333                                 if (size > 0)
334                                         Marshal.Copy (data, buffer, offset, size);
335
336                                 wantMore = false;
337                                 return size;
338                         } finally {
339                                 Marshal.FreeHGlobal (data);
340                         }
341                 }
342
343                 public override int Write (byte[] buffer, int offset, int size, out bool wantMore)
344                 {
345                         Debug ("Write: {0} {1} {2}", buffer.Length, offset, size);
346
347                         var data = Marshal.AllocHGlobal (size);
348                         if (data == IntPtr.Zero)
349                                 throw new OutOfMemoryException ();
350
351                         try {
352                                 MonoBtlsError.ClearError ();
353                                 Marshal.Copy (buffer, offset, data, size);
354                                 var status = ssl.Write (data, ref size);
355                                 Debug ("Write done: {0} {1}", status, size);
356
357                                 if (status == MonoBtlsSslError.WantWrite) {
358                                         wantMore = true;
359                                         return 0;
360                                 } else if (status != MonoBtlsSslError.None) {
361                                         throw GetException (status);
362                                 }
363
364                                 wantMore = false;
365                                 return size;
366                         } finally {
367                                 Marshal.FreeHGlobal (data);
368                         }
369                 }
370
371                 public override void Close ()
372                 {
373                         Debug ("Close!");
374                         ssl.Dispose ();
375                 }
376
377                 void Dispose<T> (ref T disposable)
378                         where T : class, IDisposable
379                 {
380                         try {
381                                 if (disposable != null)
382                                         disposable.Dispose ();
383                         } catch {
384                                 ;
385                         } finally {
386                                 disposable = null;
387                         }
388                 }
389
390                 protected override void Dispose (bool disposing)
391                 {
392                         try {
393                                 if (disposing) {
394                                         Dispose (ref remoteCertificate);
395                                         Dispose (ref nativeServerCertificate);
396                                         Dispose (ref nativeClientCertificate);
397                                         Dispose (ref clientCertificate);
398                                         Dispose (ref ctx);
399                                         Dispose (ref ssl);
400                                         Dispose (ref bio);
401                                         Dispose (ref errbio);
402                                 }
403                         } finally {
404                                 base.Dispose (disposing);
405                         }
406                 }
407
408                 int IMonoBtlsBioMono.Read (byte[] buffer, int offset, int size, out bool wantMore)
409                 {
410                         Debug ("InternalRead: {0} {1}", offset, size);
411                         var ret = Parent.InternalRead (buffer, offset, size, out wantMore);
412                         Debug ("InternalReadDone: {0} {1}", ret, wantMore);
413                         return ret;
414                 }
415
416                 bool IMonoBtlsBioMono.Write (byte[] buffer, int offset, int size)
417                 {
418                         Debug ("InternalWrite: {0} {1}", offset, size);
419                         var ret = Parent.InternalWrite (buffer, offset, size);
420                         Debug ("InternalWrite done: {0}", ret);
421                         return ret;
422                 }
423
424                 void IMonoBtlsBioMono.Flush ()
425                 {
426                         ;
427                 }
428
429                 void IMonoBtlsBioMono.Close ()
430                 {
431                         ;
432                 }
433
434                 public override bool HasContext {
435                         get { return ssl != null && ssl.IsValid; }
436                 }
437                 public override bool IsAuthenticated {
438                         get { return isAuthenticated; }
439                 }
440                 public override MonoTlsConnectionInfo ConnectionInfo {
441                         get { return connectionInfo; }
442                 }
443                 internal override bool IsRemoteCertificateAvailable {
444                         get { return remoteCertificate != null; }
445                 }
446                 internal override X509Certificate LocalClientCertificate {
447                         get { return clientCertificate; }
448                 }
449                 public override X509Certificate RemoteCertificate {
450                         get { return remoteCertificate; }
451                 }
452                 public override TlsProtocols NegotiatedProtocol {
453                         get { return connectionInfo.ProtocolVersion; }
454                 }
455         }
456 }
457 #endif