Update
[mono.git] / mono / metadata / security-manager.c
1 /*
2  * security-manager.c:  Security Manager (Unmanaged side)
3  *
4  * Author:
5  *      Sebastien Pouliot  <sebastien@ximian.com>
6  *
7  * Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
8  */
9
10 #include "security-manager.h"
11
12
13 /* Internal stuff */
14
15 static MonoSecurityManager secman;
16 static MonoBoolean mono_security_manager_activated = FALSE;
17 static MonoBoolean mono_security_manager_enabled = TRUE;
18 static MonoBoolean mono_security_manager_execution = TRUE;
19
20
21 /* Public stuff */
22
23 MonoSecurityManager*
24 mono_security_manager_get_methods (void)
25 {
26         /* Already initialized ? */
27         if (secman.securitymanager)
28                 return &secman;
29
30         /* Initialize */
31         secman.securitymanager = mono_class_from_name (mono_defaults.corlib, 
32                 "System.Security", "SecurityManager");
33         g_assert (secman.securitymanager);
34         if (!secman.securitymanager->inited)
35                 mono_class_init (secman.securitymanager);
36                 
37         secman.demand = mono_class_get_method_from_name (secman.securitymanager,
38                 "InternalDemand", 2);   
39         g_assert (secman.demand);
40
41         secman.demandchoice = mono_class_get_method_from_name (secman.securitymanager,
42                 "InternalDemandChoice", 2);     
43         g_assert (secman.demandchoice);
44
45         secman.demandunmanaged = mono_class_get_method_from_name (secman.securitymanager,
46                 "DemandUnmanaged", 0);
47         g_assert (secman.demandunmanaged);
48
49         secman.inheritancedemand = mono_class_get_method_from_name (secman.securitymanager,
50                 "InheritanceDemand", 2);        
51         g_assert (secman.inheritancedemand);
52
53         secman.inheritsecurityexception = mono_class_get_method_from_name (secman.securitymanager,
54                 "InheritanceDemandSecurityException", 4);       
55         g_assert (secman.inheritsecurityexception);
56
57         secman.linkdemand = mono_class_get_method_from_name (secman.securitymanager,
58                 "LinkDemand", 3);
59         g_assert (secman.linkdemand);
60
61         secman.linkdemandunmanaged = mono_class_get_method_from_name (secman.securitymanager,
62                 "LinkDemandUnmanaged", 1);
63         g_assert (secman.linkdemandunmanaged);
64
65         secman.linkdemandfulltrust = mono_class_get_method_from_name (secman.securitymanager,
66                 "LinkDemandFullTrust", 1);
67         g_assert (secman.linkdemandfulltrust);
68
69         secman.linkdemandsecurityexception = mono_class_get_method_from_name (secman.securitymanager,
70                 "LinkDemandSecurityException", 3);
71         g_assert (secman.linkdemandsecurityexception);
72
73         secman.allowpartiallytrustedcallers = mono_class_from_name (mono_defaults.corlib, "System.Security", 
74                 "AllowPartiallyTrustedCallersAttribute");
75         g_assert (secman.allowpartiallytrustedcallers);
76
77         secman.suppressunmanagedcodesecurity = mono_class_from_name (mono_defaults.corlib, "System.Security", 
78                 "SuppressUnmanagedCodeSecurityAttribute");
79         g_assert (secman.suppressunmanagedcodesecurity);
80
81         return &secman;
82 }
83
84 static gboolean
85 mono_secman_inheritance_check (MonoClass *klass, MonoDeclSecurityActions *demands)
86 {
87         MonoSecurityManager* secman = mono_security_manager_get_methods ();
88         MonoDomain *domain = mono_domain_get ();
89         MonoAssembly *assembly = mono_image_get_assembly (klass->image);
90         MonoReflectionAssembly *refass = mono_assembly_get_object (domain, assembly);
91         MonoObject *res;
92         gpointer args [2];
93
94         args [0] = refass;
95         args [1] = demands;
96
97         res = mono_runtime_invoke (secman->inheritancedemand, NULL, args, NULL);
98         return (*(MonoBoolean *) mono_object_unbox (res));
99 }
100
101 void
102 mono_secman_inheritancedemand_class (MonoClass *klass, MonoClass *parent)
103 {
104         MonoDeclSecurityActions demands;
105
106         /* don't hide previous results -and- don't calc everything for nothing */
107         if (klass->exception_type != 0)
108                 return;
109
110         /* Check if there are an InheritanceDemand on the parent class */
111         if (mono_declsec_get_inheritdemands_class (parent, &demands)) {
112                 /* If so check the demands on the klass (inheritor) */
113                 if (!mono_secman_inheritance_check (klass, &demands)) {
114                         /* Keep flags in MonoClass to be able to throw a SecurityException later (if required) */
115                         klass->exception_type = MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND;
116                         klass->exception_data = NULL;
117                 }
118         }
119 }
120
121 void
122 mono_secman_inheritancedemand_method (MonoMethod *override, MonoMethod *base)
123 {
124         MonoDeclSecurityActions demands;
125
126         /* don't hide previous results -and- don't calc everything for nothing */
127         if (override->klass->exception_type != 0)
128                 return;
129
130         /* Check if there are an InheritanceDemand on the base (virtual) method */
131         if (mono_declsec_get_inheritdemands_method (base, &demands)) {
132                 /* If so check the demands on the overriding method */
133                 if (!mono_secman_inheritance_check (override->klass, &demands)) {
134                         /* Keep flags in MonoClass to be able to throw a SecurityException later (if required) */
135                         override->klass->exception_type = MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND;
136                         override->klass->exception_data = base;
137                 }
138         }
139 }
140
141
142 /*
143  * Note: The security manager is activate once when executing the Mono. This 
144  * is not meant to be a turn on/off runtime switch.
145  */
146 void
147 mono_activate_security_manager (void)
148 {
149         mono_security_manager_activated = TRUE;
150 }
151
152 gboolean
153 mono_is_security_manager_active (void)
154 {
155         return mono_security_manager_activated;
156 }
157
158 /*
159  * @publickey   An encoded (with header) public key
160  * @size        The length of the public key
161  *
162  * returns TRUE if the public key is the ECMA "key", FALSE otherwise
163  *
164  * ECMA key isn't a real public key - it's simply an empty (but valid) header
165  * so it's length (16) and value (00000000000000000400000000000000) are 
166  * constants.
167  */
168 gboolean 
169 mono_is_ecma_key (const char *publickey, int size)
170 {
171         int i;
172         if ((publickey == NULL) || (size != MONO_ECMA_KEY_LENGTH) || (publickey [8] != 0x04))
173                 return FALSE;
174
175         for (i=0; i < size; i++) {
176                 if ((publickey [i] != 0x00) && (i != 8))
177                         return FALSE;
178         }
179         return TRUE;
180 }
181
182 /* System.Security icalls */
183
184 MonoBoolean
185 ves_icall_System_Security_SecurityManager_get_SecurityEnabled (void)
186 {
187         if (!mono_security_manager_activated)
188                 return FALSE;
189         return mono_security_manager_enabled;
190 }
191
192 void
193 ves_icall_System_Security_SecurityManager_set_SecurityEnabled (MonoBoolean value)
194 {
195         /* value can be changed only if the security manager is activated */
196         if (mono_security_manager_activated) {
197                 mono_security_manager_enabled = value;
198         }
199 }
200
201 MonoBoolean
202 ves_icall_System_Security_SecurityManager_get_CheckExecutionRights (void)
203 {
204         if (!mono_security_manager_activated)
205                 return FALSE;
206         return mono_security_manager_execution;
207 }
208
209 void
210 ves_icall_System_Security_SecurityManager_set_CheckExecutionRights (MonoBoolean value)
211 {
212         /* value can be changed only id the security manager is activated */
213         if (mono_security_manager_activated) {
214                 mono_security_manager_execution = value;
215         }
216 }
217
218 MonoBoolean
219 ves_icall_System_Security_SecurityManager_GetLinkDemandSecurity (MonoReflectionMethod *m, MonoDeclSecurityActions *kactions, MonoDeclSecurityActions *mactions)
220 {
221         MonoMethod *method = m->method;
222         /* we want the original as the wrapper is "free" of the security informations */
223         if (method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
224                 method = mono_marshal_method_from_wrapper (method);
225         }
226
227         mono_class_init (method->klass);
228
229         /* if either the method or it's class has security (any type) */
230         if ((method->flags & METHOD_ATTRIBUTE_HAS_SECURITY) || (method->klass->flags & TYPE_ATTRIBUTE_HAS_SECURITY)) {
231                 memset (kactions, 0, sizeof (MonoDeclSecurityActions));
232                 memset (mactions, 0, sizeof (MonoDeclSecurityActions));
233
234                 /* get any linkdemand (either on the method or it's class) */
235                 return mono_declsec_get_linkdemands (method, kactions, mactions);
236         }
237         return FALSE;
238 }