提交 0d0efa9b 编写于 作者: D dsamersoff

7169888: Narrowing resource definitions in JMX RMI connector

Summary: CPU bug, we can't put offending calls outside doPrivileged, but narrow granted permissions.
Reviewed-by: ahgross, fparain
上级 e5058cc0
...@@ -25,54 +25,40 @@ ...@@ -25,54 +25,40 @@
package javax.management.remote.rmi; package javax.management.remote.rmi;
import static com.sun.jmx.mbeanserver.Util.cast;
import com.sun.jmx.remote.internal.ServerCommunicatorAdmin;
import com.sun.jmx.remote.internal.ServerNotifForwarder;
import com.sun.jmx.remote.security.JMXSubjectDomainCombiner;
import com.sun.jmx.remote.security.SubjectDelegator;
import com.sun.jmx.remote.util.ClassLoaderWithRepository;
import com.sun.jmx.remote.util.ClassLogger;
import com.sun.jmx.remote.util.EnvHelp;
import com.sun.jmx.remote.util.OrderClassLoaders;
import java.io.IOException; import java.io.IOException;
import java.rmi.MarshalledObject; import java.rmi.MarshalledObject;
import java.rmi.UnmarshalException; import java.rmi.UnmarshalException;
import java.rmi.server.Unreferenced; import java.rmi.server.Unreferenced;
import java.security.AccessControlContext; import java.security.AccessControlContext;
import java.security.AccessController; import java.security.AccessController;
import java.security.Permission;
import java.security.PermissionCollection;
import java.security.Permissions;
import java.security.PrivilegedAction; import java.security.PrivilegedAction;
import java.security.PrivilegedActionException; import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction; import java.security.PrivilegedExceptionAction;
import java.security.ProtectionDomain;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;
import java.util.Map; import java.util.Map;
import java.util.Set; import java.util.Set;
import javax.management.Attribute; import javax.management.*;
import javax.management.AttributeList;
import javax.management.AttributeNotFoundException;
import javax.management.InstanceAlreadyExistsException;
import javax.management.InstanceNotFoundException;
import javax.management.IntrospectionException;
import javax.management.InvalidAttributeValueException;
import javax.management.ListenerNotFoundException;
import javax.management.MBeanException;
import javax.management.MBeanInfo;
import javax.management.MBeanRegistrationException;
import javax.management.MBeanServer;
import javax.management.NotCompliantMBeanException;
import javax.management.NotificationFilter;
import javax.management.ObjectInstance;
import javax.management.ObjectName;
import javax.management.QueryExp;
import javax.management.ReflectionException;
import javax.management.RuntimeOperationsException;
import javax.management.remote.JMXServerErrorException; import javax.management.remote.JMXServerErrorException;
import javax.management.remote.NotificationResult; import javax.management.remote.NotificationResult;
import javax.management.remote.TargetedNotification; import javax.management.remote.TargetedNotification;
import javax.security.auth.Subject; import javax.security.auth.Subject;
import static com.sun.jmx.mbeanserver.Util.cast;
import com.sun.jmx.remote.internal.ServerCommunicatorAdmin;
import com.sun.jmx.remote.internal.ServerNotifForwarder;
import com.sun.jmx.remote.security.JMXSubjectDomainCombiner;
import com.sun.jmx.remote.security.SubjectDelegator;
import com.sun.jmx.remote.util.ClassLoaderWithRepository;
import com.sun.jmx.remote.util.ClassLogger;
import com.sun.jmx.remote.util.EnvHelp;
import com.sun.jmx.remote.util.OrderClassLoaders;
/** /**
* <p>Implementation of the {@link RMIConnection} interface. User * <p>Implementation of the {@link RMIConnection} interface. User
* code will not usually reference this class.</p> * code will not usually reference this class.</p>
...@@ -143,6 +129,7 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced { ...@@ -143,6 +129,7 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced {
this.mbeanServer = rmiServer.getMBeanServer(); this.mbeanServer = rmiServer.getMBeanServer();
final ClassLoader dcl = defaultClassLoader; final ClassLoader dcl = defaultClassLoader;
this.classLoaderWithRepository = this.classLoaderWithRepository =
AccessController.doPrivileged( AccessController.doPrivileged(
new PrivilegedAction<ClassLoaderWithRepository>() { new PrivilegedAction<ClassLoaderWithRepository>() {
...@@ -151,13 +138,29 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced { ...@@ -151,13 +138,29 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced {
mbeanServer.getClassLoaderRepository(), mbeanServer.getClassLoaderRepository(),
dcl); dcl);
} }
}); },
withPermissions( new MBeanPermission("*", "getClassLoaderRepository"),
new RuntimePermission("createClassLoader"))
);
serverCommunicatorAdmin = new serverCommunicatorAdmin = new
RMIServerCommunicatorAdmin(EnvHelp.getServerConnectionTimeout(env)); RMIServerCommunicatorAdmin(EnvHelp.getServerConnectionTimeout(env));
this.env = env; this.env = env;
} }
private static AccessControlContext withPermissions(Permission ... perms){
Permissions col = new Permissions();
for (Permission thePerm : perms ) {
col.add(thePerm);
}
final ProtectionDomain pd = new ProtectionDomain(null, col);
return new AccessControlContext( new ProtectionDomain[] { pd });
}
private synchronized ServerNotifForwarder getServerNotifFwd() { private synchronized ServerNotifForwarder getServerNotifFwd() {
// Lazily created when first use. Mainly when // Lazily created when first use. Mainly when
// addNotificationListener is first called. // addNotificationListener is first called.
...@@ -1330,7 +1333,9 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced { ...@@ -1330,7 +1333,9 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced {
public ClassLoader run() throws InstanceNotFoundException { public ClassLoader run() throws InstanceNotFoundException {
return mbeanServer.getClassLoader(name); return mbeanServer.getClassLoader(name);
} }
}); },
withPermissions(new MBeanPermission("*", "getClassLoader"))
);
} catch (PrivilegedActionException pe) { } catch (PrivilegedActionException pe) {
throw (InstanceNotFoundException) extractException(pe); throw (InstanceNotFoundException) extractException(pe);
} }
...@@ -1345,7 +1350,9 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced { ...@@ -1345,7 +1350,9 @@ public class RMIConnectionImpl implements RMIConnection, Unreferenced {
public Object run() throws InstanceNotFoundException { public Object run() throws InstanceNotFoundException {
return mbeanServer.getClassLoaderFor(name); return mbeanServer.getClassLoaderFor(name);
} }
}); },
withPermissions(new MBeanPermission("*", "getClassLoaderFor"))
);
} catch (PrivilegedActionException pe) { } catch (PrivilegedActionException pe) {
throw (InstanceNotFoundException) extractException(pe); throw (InstanceNotFoundException) extractException(pe);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册