Merge pull request #1127 from oleg-st/master
[mono.git] / mono / metadata / security-core-clr.h
1 /*
2  * security-core-clr.h: CoreCLR security
3  *
4  * Author:
5  *      Mark Probst <mark.probst@gmail.com>
6  *
7  * (C) 2007, 2010 Novell, Inc
8  */
9
10 #ifndef _MONO_METADATA_SECURITY_CORE_CLR_H_
11 #define _MONO_METADATA_SECURITY_CORE_CLR_H_
12
13 #include <glib.h>
14 #include <mono/metadata/reflection.h>
15 #include <mono/utils/mono-compiler.h>
16
17 typedef enum {
18         /* We compare these values as integers, so the order must not
19            be changed. */
20         MONO_SECURITY_CORE_CLR_TRANSPARENT = 0,
21         MONO_SECURITY_CORE_CLR_SAFE_CRITICAL,
22         MONO_SECURITY_CORE_CLR_CRITICAL
23 } MonoSecurityCoreCLRLevel;
24
25 typedef enum {
26         //The following flags can be used in combination, and control specific behaviour of the CoreCLR securit system.
27
28         //Default coreclr behaviour, as used in moonlight.
29         MONO_SECURITY_CORE_CLR_OPTIONS_DEFAULT = 0,
30
31         //Allow transparent code to execute methods and access fields that are not in platformcode,
32         //even if those methods and fields are private or otherwise not visible to the calling code.
33         MONO_SECURITY_CORE_CLR_OPTIONS_RELAX_REFLECTION = 1,
34
35         //Allow delegates to be created that point at methods that are not in platformcode,
36         //even if those methods and fields are private or otherwise not visible to the calling code.
37         MONO_SECURITY_CORE_CLR_OPTIONS_RELAX_DELEGATE = 2
38 } MonoSecurityCoreCLROptions;
39
40 extern gboolean mono_security_core_clr_test;
41
42 extern void mono_security_core_clr_check_inheritance (MonoClass *klass) MONO_INTERNAL;
43 extern void mono_security_core_clr_check_override (MonoClass *klass, MonoMethod *override, MonoMethod *base) MONO_INTERNAL;
44
45 extern void mono_security_core_clr_ensure_reflection_access_field (MonoClassField *field) MONO_INTERNAL;
46 extern void mono_security_core_clr_ensure_reflection_access_method (MonoMethod *method) MONO_INTERNAL;
47 extern gboolean mono_security_core_clr_ensure_delegate_creation (MonoMethod *method, gboolean throwOnBindFailure) MONO_INTERNAL;
48 extern MonoException* mono_security_core_clr_ensure_dynamic_method_resolved_object (gpointer ref, MonoClass *handle_class) MONO_INTERNAL;
49
50 extern gboolean mono_security_core_clr_can_access_internals (MonoImage *accessing, MonoImage* accessed) MONO_INTERNAL;
51
52 extern MonoException* mono_security_core_clr_is_field_access_allowed (MonoMethod *caller, MonoClassField *field) MONO_INTERNAL;
53 extern MonoException* mono_security_core_clr_is_call_allowed (MonoMethod *caller, MonoMethod *callee) MONO_INTERNAL;
54
55 extern MonoSecurityCoreCLRLevel mono_security_core_clr_class_level (MonoClass *klass) MONO_INTERNAL;
56 extern MonoSecurityCoreCLRLevel mono_security_core_clr_method_level (MonoMethod *method, gboolean with_class_level) MONO_INTERNAL;
57
58 extern gboolean mono_security_core_clr_is_platform_image (MonoImage *image) MONO_INTERNAL;
59 extern gboolean mono_security_core_clr_determine_platform_image (MonoImage *image) MONO_INTERNAL;
60
61 extern MONO_API gboolean mono_security_core_clr_require_elevated_permissions (void);
62
63 extern MONO_API void mono_security_core_clr_set_options (MonoSecurityCoreCLROptions options);
64 extern MONO_API MonoSecurityCoreCLROptions mono_security_core_clr_get_options (void);
65
66 #endif  /* _MONO_METADATA_SECURITY_CORE_CLR_H_ */