-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3b65f6
commit 74ff3eb
Showing
4 changed files
with
224 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 112 additions & 0 deletions
112
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/AccessControllerUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
/* | ||
* Copyright (c) 2021, 2021, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package com.oracle.svm.core.jdk; | ||
|
||
import com.oracle.svm.core.threadlocal.FastThreadLocalFactory; | ||
import com.oracle.svm.core.threadlocal.FastThreadLocalObject; | ||
import com.oracle.svm.core.util.VMError; | ||
import com.oracle.svm.util.ReflectionUtil; | ||
|
||
import java.security.AccessControlContext; | ||
import java.security.PrivilegedActionException; | ||
import java.security.ProtectionDomain; | ||
import java.util.ArrayDeque; | ||
import java.util.Objects; | ||
|
||
@InternalVMMethod | ||
@SuppressWarnings({"unused"}) | ||
public class AccessControllerUtil { | ||
|
||
public static final AccessControlContext DISALLOWED_CONTEXT_MARKER; | ||
|
||
static { | ||
try { | ||
DISALLOWED_CONTEXT_MARKER = ReflectionUtil.lookupConstructor(AccessControlContext.class, ProtectionDomain[].class, boolean.class).newInstance(new ProtectionDomain[0], true); | ||
} catch (ReflectiveOperationException ex) { | ||
throw VMError.shouldNotReachHere(ex); | ||
} | ||
} | ||
|
||
public static class PrivilegedStack { | ||
|
||
public static class StackElement { | ||
protected AccessControlContext context; | ||
protected Class<?> caller; | ||
|
||
StackElement(AccessControlContext context, Class<?> caller) { | ||
this.context = context; | ||
this.caller = caller; | ||
} | ||
|
||
public AccessControlContext getContext() { | ||
return context; | ||
} | ||
|
||
public Class<?> getCaller() { | ||
return caller; | ||
} | ||
} | ||
|
||
@SuppressWarnings("rawtypes") private static final FastThreadLocalObject<ArrayDeque> stack = FastThreadLocalFactory.createObject(ArrayDeque.class, "AccessControlContextStack"); | ||
|
||
@SuppressWarnings("unchecked") | ||
private static ArrayDeque<StackElement> getStack() { | ||
ArrayDeque<StackElement> tmp = stack.get(); | ||
if (tmp == null) { | ||
tmp = new ArrayDeque<>(); | ||
stack.set(tmp); | ||
} | ||
return tmp; | ||
} | ||
|
||
public static void push(AccessControlContext context, Class<?> caller) { | ||
getStack().push(new StackElement(context, caller)); | ||
} | ||
|
||
public static void pop() { | ||
getStack().pop(); | ||
} | ||
|
||
public static AccessControlContext peekContext() { | ||
return Objects.requireNonNull(getStack().peek()).getContext(); | ||
} | ||
|
||
public static Class<?> peekCaller() { | ||
return Objects.requireNonNull(getStack().peek()).getCaller(); | ||
} | ||
|
||
public static int length() { | ||
return getStack().size(); | ||
} | ||
} | ||
|
||
static Throwable wrapCheckedException(Throwable ex) { | ||
if (ex instanceof Exception && !(ex instanceof RuntimeException)) { | ||
return new PrivilegedActionException((Exception) ex); | ||
} else { | ||
return ex; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.