-
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.
Prevent 'sun.security.util.Debug' from being reachable.
Suppress deprecation warnings. Fix review feedback
- Loading branch information
1 parent
b01f54f
commit cf6e8fa
Showing
8 changed files
with
381 additions
and
209 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
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
140 changes: 140 additions & 0 deletions
140
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,140 @@ | ||
/* | ||
* 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 org.graalvm.compiler.serviceprovider.JavaVersionUtil; | ||
|
||
import java.security.AccessControlContext; | ||
import java.security.PrivilegedActionException; | ||
import java.security.ProtectionDomain; | ||
import java.util.ArrayDeque; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Stack for storing AccessControlContexts. Used in conjunction with | ||
* {@code StackAccessControlContextVisitor}. | ||
*/ | ||
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; | ||
} | ||
} | ||
|
||
/* Local AccessControlContext stack */ | ||
private static final FastThreadLocalObject<ArrayDeque<StackElement>> stack; | ||
|
||
static { | ||
|
||
@SuppressWarnings("unchecked") | ||
Class<ArrayDeque<StackElement>> cls = (Class<ArrayDeque<StackElement>>) (Object) ArrayDeque.class; | ||
stack = FastThreadLocalFactory.createObject(cls, "AccessControlContextStack"); | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
private static ArrayDeque<StackElement> getStack() { | ||
ensureInitialized(); | ||
return stack.get(); | ||
} | ||
|
||
private static void ensureInitialized() { | ||
if (stack.get() == null) { | ||
ArrayDeque<StackElement> tmp = new ArrayDeque<>(); | ||
stack.set(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(); | ||
} | ||
} | ||
|
||
@InternalVMMethod | ||
@SuppressWarnings({"unused"}) | ||
public class AccessControllerUtil { | ||
|
||
/** | ||
* Instance that is used to mark contexts that were disallowed in | ||
* {@code AccessControlContextReplacerFeature.replaceAccessControlContext()} If this marker is | ||
* passed to {@code AccessController.doPrivileged()} a runtime error will be thrown. | ||
*/ | ||
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); | ||
} | ||
} | ||
|
||
static Throwable wrapCheckedException(Throwable ex) { | ||
if (ex instanceof Exception && !(ex instanceof RuntimeException)) { | ||
return new PrivilegedActionException((Exception) ex); | ||
} else { | ||
return ex; | ||
} | ||
} | ||
|
||
static Throwable wrapCheckedExceptionForPrivilegedAction(Throwable ex) { | ||
if (JavaVersionUtil.JAVA_SPEC <= 11) { | ||
return wrapCheckedException(ex); | ||
} | ||
return ex; | ||
} | ||
} |
Oops, something went wrong.