Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/jdk/internal/reflect/ClassDefiner.java
41159 views
1
/*
2
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package jdk.internal.reflect;
27
28
import java.security.AccessController;
29
import java.security.PrivilegedAction;
30
31
import jdk.internal.access.JavaLangAccess;
32
import jdk.internal.access.SharedSecrets;
33
34
/** Utility class which assists in calling defineClass() by
35
creating a new class loader which delegates to the one needed in
36
order for proper resolution of the given bytecodes to occur. */
37
38
class ClassDefiner {
39
static final JavaLangAccess JLA = SharedSecrets.getJavaLangAccess();
40
41
/** <P> We define generated code into a new class loader which
42
delegates to the defining loader of the target class. It is
43
necessary for the VM to be able to resolve references to the
44
target class from the generated bytecodes, which could not occur
45
if the generated code was loaded into the bootstrap class
46
loader. </P>
47
48
<P> There are two primary reasons for creating a new loader
49
instead of defining these bytecodes directly into the defining
50
loader of the target class: first, it avoids any possible
51
security risk of having these bytecodes in the same loader.
52
Second, it allows the generated bytecodes to be unloaded earlier
53
than would otherwise be possible, decreasing run-time
54
footprint. </P>
55
*/
56
static Class<?> defineClass(String name, byte[] bytes, int off, int len,
57
final ClassLoader parentClassLoader)
58
{
59
@SuppressWarnings("removal")
60
ClassLoader newLoader = AccessController.doPrivileged(
61
new PrivilegedAction<ClassLoader>() {
62
public ClassLoader run() {
63
return new DelegatingClassLoader(parentClassLoader);
64
}
65
});
66
return JLA.defineClass(newLoader, name, bytes, null, "__ClassDefiner__");
67
}
68
}
69
70
71
// NOTE: this class's name and presence are known to the virtual
72
// machine as of the fix for 4474172.
73
class DelegatingClassLoader extends ClassLoader {
74
DelegatingClassLoader(ClassLoader parent) {
75
super(parent);
76
}
77
}
78
79