mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8154190: Deprivilege java.compiler module
Reviewed-by: alanb, chegar, jjg
This commit is contained in:
parent
f5b6389682
commit
8c11293294
3 changed files with 63 additions and 13 deletions
|
@ -27,6 +27,8 @@ package javax.tools;
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
import java.security.AccessController;
|
||||||
|
import java.security.PrivilegedAction;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.ServiceConfigurationError;
|
import java.util.ServiceConfigurationError;
|
||||||
import java.util.ServiceLoader;
|
import java.util.ServiceLoader;
|
||||||
|
@ -145,23 +147,26 @@ public class ToolProvider {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if this is tho desired tool instance.
|
* Determine if this is the desired tool instance.
|
||||||
* @param <T> the interface of the tool
|
* @param <T> the interface of the tool
|
||||||
* @param tool the instance of the tool
|
* @param tool the instance of the tool
|
||||||
* @param moduleName the name of the module containing the desired implementation
|
* @param moduleName the name of the module containing the desired implementation
|
||||||
* @return true if and only if the tool matches the specified criteria
|
* @return true if and only if the tool matches the specified criteria
|
||||||
*/
|
*/
|
||||||
private static <T> boolean matches(T tool, String moduleName) {
|
private static <T> boolean matches(T tool, String moduleName) {
|
||||||
// for now, use reflection to implement
|
PrivilegedAction<Boolean> pa = () -> {
|
||||||
// return moduleName.equals(tool.getClass().getModule().getName());
|
// for now, use reflection to implement
|
||||||
try {
|
// return moduleName.equals(tool.getClass().getModule().getName());
|
||||||
Method getModuleMethod = Class.class.getDeclaredMethod("getModule");
|
try {
|
||||||
Object toolModule = getModuleMethod.invoke(tool.getClass());
|
Method getModuleMethod = Class.class.getDeclaredMethod("getModule");
|
||||||
Method getNameMethod = toolModule.getClass().getDeclaredMethod("getName");
|
Object toolModule = getModuleMethod.invoke(tool.getClass());
|
||||||
String toolModuleName = (String) getNameMethod.invoke(toolModule);
|
Method getNameMethod = toolModule.getClass().getDeclaredMethod("getName");
|
||||||
return moduleName.equals(toolModuleName);
|
String toolModuleName = (String) getNameMethod.invoke(toolModule);
|
||||||
} catch (InvocationTargetException | NoSuchMethodException | IllegalAccessException e) {
|
return moduleName.equals(toolModuleName);
|
||||||
return false;
|
} catch (InvocationTargetException | NoSuchMethodException | IllegalAccessException e) {
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return AccessController.doPrivileged(pa);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2016, 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.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import javax.tools.ToolProvider;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
* @bug 8154190
|
||||||
|
* @summary Test javax.tools.ToolProvider running with security manager
|
||||||
|
* @modules java.compiler
|
||||||
|
* jdk.compiler
|
||||||
|
* @run main/othervm ToolProviderTest
|
||||||
|
*/
|
||||||
|
|
||||||
|
// run in other vm to ensure the initialization code path is exercised.
|
||||||
|
public class ToolProviderTest {
|
||||||
|
public static void main(String... args) {
|
||||||
|
System.setSecurityManager(new SecurityManager());
|
||||||
|
|
||||||
|
Objects.requireNonNull(ToolProvider.getSystemDocumentationTool());
|
||||||
|
Objects.requireNonNull(ToolProvider.getSystemJavaCompiler());
|
||||||
|
Objects.requireNonNull(ToolProvider.getSystemToolClassLoader());
|
||||||
|
}
|
||||||
|
}
|
|
@ -43,7 +43,7 @@ import toolbox.ToolBox;
|
||||||
public class ToolProviderTest1 {
|
public class ToolProviderTest1 {
|
||||||
public static void main(String... args) throws Exception {
|
public static void main(String... args) throws Exception {
|
||||||
if (args.length > 0) {
|
if (args.length > 0) {
|
||||||
System.err.println(Class.forName(args[0], true, null));
|
System.err.println(Class.forName(args[0], true, ClassLoader.getSystemClassLoader()));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue