8154190: Deprivilege java.compiler module

Reviewed-by: alanb, chegar, jjg
This commit is contained in:
Mandy Chung 2016-05-05 16:36:00 -07:00
parent f5b6389682
commit 8c11293294
3 changed files with 63 additions and 13 deletions

View file

@ -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,13 +147,14 @@ 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) {
PrivilegedAction<Boolean> pa = () -> {
// for now, use reflection to implement // for now, use reflection to implement
// return moduleName.equals(tool.getClass().getModule().getName()); // return moduleName.equals(tool.getClass().getModule().getName());
try { try {
@ -163,5 +166,7 @@ public class ToolProvider {
} catch (InvocationTargetException | NoSuchMethodException | IllegalAccessException e) { } catch (InvocationTargetException | NoSuchMethodException | IllegalAccessException e) {
return false; return false;
} }
};
return AccessController.doPrivileged(pa);
} }
} }

View file

@ -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());
}
}

View file

@ -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;
} }