少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/**
 * \file
 * Security Manager (Unmanaged side)
 *
 * Author:
 *    Sebastien Pouliot  <sebastien@ximian.com>
 *
 * Copyright 2005-2009 Novell, Inc (http://www.novell.com)
 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
 */
 
#include <config.h>
#include "security-manager.h"
 
/* Class lazy loading functions */
static GENERATE_GET_CLASS_WITH_CACHE (security_manager, "System.Security", "SecurityManager")
static GENERATE_TRY_GET_CLASS_WITH_CACHE (execution_context, "System.Threading", "ExecutionContext")
 
static MonoSecurityMode mono_security_mode = MONO_SECURITY_MODE_NONE;
 
void
mono_security_set_mode (MonoSecurityMode mode)
{
    mono_security_mode = mode;
}
 
MonoSecurityMode
mono_security_get_mode (void)
{
    return mono_security_mode;
}
 
#ifndef DISABLE_SECURITY
 
static MonoSecurityManager secman;
 
MonoSecurityManager*
mono_security_manager_get_methods (void)
{
    /* Already initialized ? */
    if (secman.securitymanager)
        return &secman;
 
    /* Initialize */
    secman.securitymanager = mono_class_get_security_manager_class ();
    if (!secman.securitymanager->inited)
        mono_class_init (secman.securitymanager);
 
    return &secman;
}
 
#else
 
MonoSecurityManager*
mono_security_manager_get_methods (void)
{
    return NULL;
}
 
#endif /* DISABLE_SECURITY */
 
/*
 * @publickey    An encoded (with header) public key
 * @size    The length of the public key
 *
 * returns TRUE if the public key is the ECMA "key", FALSE otherwise
 *
 * ECMA key isn't a real public key - it's simply an empty (but valid) header
 * so it's length (16) and value (00000000000000000400000000000000) are 
 * constants.
 */
gboolean 
mono_is_ecma_key (const char *publickey, int size)
{
    int i;
    if ((publickey == NULL) || (size != MONO_ECMA_KEY_LENGTH) || (publickey [8] != 0x04))
        return FALSE;
 
    for (i=0; i < size; i++) {
        if ((publickey [i] != 0x00) && (i != 8))
            return FALSE;
    }
    return TRUE;
}
 
/*
 * Context propagation is required when:
 * (a) the security manager is active (1.x and later)
 * (b) other contexts needs to be propagated (2.x and later)
 *
 * returns NULL if no context propagation is required, else the returns the
 * MonoMethod to call to Capture the ExecutionContext.
 */
MonoMethod*
mono_get_context_capture_method (void)
{
    static MonoMethod *method = NULL;
 
    if (mono_image_get_assembly (mono_defaults.corlib)->aname.major < 2)
        return NULL;
 
    /* older corlib revisions won't have the class (nor the method) */
    MonoClass *execution_context = mono_class_try_get_execution_context_class ();
    if (execution_context && !method) {
        mono_class_init (execution_context);
        method = mono_class_get_method_from_name (execution_context, "Capture", 0);
    }
 
    return method;
}
 
 
/* System.Security icalls */
 
MonoBoolean
ves_icall_System_Security_SecurityManager_get_SecurityEnabled (void)
{
    /* SecurityManager is internal for Moonlight and SecurityEnabled is used to know if CoreCLR is active
     * (e.g. plugin executing in the browser) or not (e.g. smcs compiling source code with corlib 2.1)
     */
    return (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR);
}
 
void
ves_icall_System_Security_SecurityManager_set_SecurityEnabled (MonoBoolean value)
{
}