b91f7132c07168978cf22ae5f8f2cec3998a825d
[mono.git] / mcs / class / System / Mono.AppleTls / Policy.cs
1 #if SECURITY_DEP && MONO_FEATURE_APPLETLS
2 // 
3 // Policy.cs: Implements the managed SecPolicy wrapper.
4 //
5 // Authors: 
6 //      Miguel de Icaza
7 //  Sebastien Pouliot  <sebastien@xamarin.com>
8 //
9 // Copyright 2010 Novell, Inc
10 // Copyright 2012-2014 Xamarin Inc.
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 using System;
32 using System.Runtime.InteropServices;
33 using ObjCRuntime;
34 using Mono.Net;
35
36 namespace Mono.AppleTls {
37         partial class SecPolicy : INativeObject, IDisposable {
38                 IntPtr handle;
39
40                 internal SecPolicy (IntPtr handle, bool owns = false)
41                 {
42                         if (handle == IntPtr.Zero)
43                                 throw new Exception ("Invalid handle");
44
45                         this.handle = handle;
46                         if (!owns)
47                                 CFObject.CFRetain (handle);
48                 }
49
50                 [DllImport (AppleTlsContext.SecurityLibrary)]
51                 extern static IntPtr /* SecPolicyRef */ SecPolicyCreateSSL (bool server, IntPtr /* CFStringRef */ hostname);
52
53                 static public SecPolicy CreateSslPolicy (bool server, string hostName)
54                 {
55                         CFString host = hostName == null ? null : CFString.Create (hostName);
56                         IntPtr handle = host == null ? IntPtr.Zero : host.Handle; 
57                         SecPolicy policy = new SecPolicy (SecPolicyCreateSSL (server, handle), true);
58                         if (host != null)
59                                 host.Dispose ();
60                         return policy;
61                 }
62
63                 ~SecPolicy ()
64                 {
65                         Dispose (false);
66                 }
67
68                 public void Dispose ()
69                 {
70                         Dispose (true);
71                         GC.SuppressFinalize (this);
72                 }
73
74                 public IntPtr Handle {
75                         get { return handle; }
76                 }
77
78                 protected virtual void Dispose (bool disposing)
79                 {
80                         if (handle != IntPtr.Zero){
81                                 CFObject.CFRelease (handle);
82                                 handle = IntPtr.Zero;
83                         }
84                 }
85         }
86 }
87 #endif