Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / mini / declsec.c
1 /*
2  * declsec.c:  Declarative Security support
3  *
4  * Author:
5  *      Sebastien Pouliot  <sebastien@ximian.com>
6  *
7  * Copyright (C) 2004 Novell, Inc (http://www.novell.com)
8  */
9
10 #include "declsec.h"
11
12 /*
13  * Does the methods (or it's class) as any declarative security attribute ?
14  * Is so are they applicable ? (e.g. static class constructor)
15  */
16 MonoBoolean
17 mono_method_has_declsec (MonoMethod *method)
18 {
19         if (method->wrapper_type != MONO_WRAPPER_NONE)
20                 return FALSE;
21                 
22         if ((method->klass->flags & TYPE_ATTRIBUTE_HAS_SECURITY) || (method->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
23                 /* ignore static constructors */
24                 if (strcmp (method->name, ".cctor"))
25                         return TRUE;
26         }
27         return FALSE;
28 }
29
30
31 /*
32  * Fill actions for the specific index (which may either be an encoded class token or
33  * an encoded method token) from the metadata image.
34  * Returns TRUE if some actions requiring code generation are present, FALSE otherwise.
35  */
36 void
37 mono_declsec_cache_stack_modifiers (MonoJitInfo *jinfo)
38 {
39         /* first find the stack modifiers applied to the method */
40         guint32 flags = mono_declsec_flags_from_method (jinfo->method);
41         jinfo->cas_method_assert = (flags & MONO_DECLSEC_FLAG_ASSERT) != 0;
42         jinfo->cas_method_deny = (flags & MONO_DECLSEC_FLAG_DENY) != 0;
43         jinfo->cas_method_permitonly = (flags & MONO_DECLSEC_FLAG_PERMITONLY) != 0;
44
45         /* then find the stack modifiers applied to the class */
46         flags = mono_declsec_flags_from_class (jinfo->method->klass);
47         jinfo->cas_class_assert = (flags & MONO_DECLSEC_FLAG_ASSERT) != 0;
48         jinfo->cas_class_deny = (flags & MONO_DECLSEC_FLAG_DENY) != 0;
49         jinfo->cas_class_permitonly = (flags & MONO_DECLSEC_FLAG_PERMITONLY) != 0;
50 }
51
52
53 MonoSecurityFrame*
54 mono_declsec_create_frame (MonoDomain *domain, MonoJitInfo *jinfo)
55 {
56         MonoSecurityFrame *frame = (MonoSecurityFrame*) mono_object_new (domain, mono_defaults.runtimesecurityframe_class);
57
58         if (!jinfo->cas_inited) {
59                 if (mono_method_has_declsec (jinfo->method)) {
60                         /* Cache the stack modifiers into the MonoJitInfo structure to speed up future stack walks */
61                         mono_declsec_cache_stack_modifiers (jinfo);
62                 }
63                 jinfo->cas_inited = TRUE;
64         }
65
66         frame->method = mono_method_get_object (domain, jinfo->method, NULL);
67
68         /* stack modifiers on methods have priority on (i.e. replaces) modifiers on class */
69
70         if (jinfo->cas_method_assert) {
71                 mono_declsec_get_method_action (jinfo->method, SECURITY_ACTION_ASSERT, &frame->assert);
72         } else if (jinfo->cas_class_assert) {
73                 mono_declsec_get_class_action (jinfo->method->klass, SECURITY_ACTION_ASSERT, &frame->assert);
74         }
75
76         if (jinfo->cas_method_deny) {
77                 mono_declsec_get_method_action (jinfo->method, SECURITY_ACTION_DENY, &frame->deny);
78         } else if (jinfo->cas_class_deny) {
79                 mono_declsec_get_class_action (jinfo->method->klass, SECURITY_ACTION_DENY, &frame->deny);
80         }
81
82         if (jinfo->cas_method_permitonly) {
83                 mono_declsec_get_method_action (jinfo->method, SECURITY_ACTION_PERMITONLY, &frame->permitonly);
84         } else if (jinfo->cas_class_permitonly) {
85                 mono_declsec_get_class_action (jinfo->method->klass, SECURITY_ACTION_PERMITONLY, &frame->permitonly);
86         }
87
88         /* g_warning ("FRAME %s A(%p,%d) D(%p,%d) PO(%p,%d)", 
89         jinfo->method->name, frame->assert.blob, frame->assert.size, frame->deny.blob, frame->deny.size, frame->permitonly.blob,frame->permitonly.size); */
90
91         return frame;
92 }