blob: 2afb9464671d424656cd62d87874a43ebd9006c9 (
plain)
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
|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
//
#include "common.h"
#include "security.h"
#include "securitydescriptor.h"
#include "securitydescriptorappdomain.h"
#include "securitydescriptorassembly.h"
IApplicationSecurityDescriptor * Security::CreateApplicationSecurityDescriptor(AppDomain * pDomain)
{
WRAPPER_NO_CONTRACT;
return static_cast<IApplicationSecurityDescriptor*>(new ApplicationSecurityDescriptor(pDomain));
}
IAssemblySecurityDescriptor* Security::CreateAssemblySecurityDescriptor(AppDomain *pDomain, DomainAssembly *pAssembly, LoaderAllocator *pLoaderAllocator)
{
WRAPPER_NO_CONTRACT;
return static_cast<IAssemblySecurityDescriptor*>(new AssemblySecurityDescriptor(pDomain, pAssembly, pLoaderAllocator));
}
ISharedSecurityDescriptor* Security::CreateSharedSecurityDescriptor(Assembly* pAssembly)
{
WRAPPER_NO_CONTRACT;
return static_cast<ISharedSecurityDescriptor*>(new SharedSecurityDescriptor(pAssembly));
}
void Security::DeleteSharedSecurityDescriptor(ISharedSecurityDescriptor *descriptor)
{
WRAPPER_NO_CONTRACT;
delete static_cast<SharedSecurityDescriptor *>(descriptor);
}
BOOL Security::IsTransparencyEnforcementEnabled()
{
LIMITED_METHOD_CONTRACT;
// No transparency enforcement in .NET Core
return FALSE;
}
//---------------------------------------------------------------------------------------
//
// Determine if security checks should be bypassed for a method because the method is
// being used by a profiler.
//
// Profilers often do things like inject unverifiable IL or P/Invoke which won't be allowed
// if they're working with a transparent method. This hook allows those checks to be
// suppressed if we're currently profiling.
//
// Arguments:
// pMD - Method we're checking to see if security checks may be bypassed for
//
BOOL Security::BypassSecurityChecksForProfiler(MethodDesc *pMD)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
PRECONDITION(CheckPointer(pMD));
}
CONTRACTL_END;
#if defined(PROFILING_SUPPORTED) && !defined(CROSSGEN_COMPILE)
return CORProfilerPresent() &&
CORProfilerBypassSecurityChecks() &&
pMD->GetAssembly()->GetSecurityDescriptor()->IsFullyTrusted();
#else
return FALSE;
#endif
}
|