169N/A/*
2362N/A * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/* @test
0N/A * @bug 4164971
0N/A * @summary allow non-public activatable class and/or constructor
5551N/A * @author Laird Dornin
0N/A *
0N/A * @library ../../../testlibrary
5551N/A * @build TestLibrary RMID ActivateMe
0N/A * @run main/othervm/policy=security.policy/timeout=240 CreatePrivateActivatable
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.rmi.*;
0N/Aimport java.rmi.server.*;
0N/Aimport java.rmi.activation.*;
0N/Aimport sun.rmi.server.ActivatableRef;
0N/Aimport java.lang.reflect.*;
0N/Aimport java.util.Properties;
0N/A
0N/A/**
0N/A * Test creates a private inner class Activatable object with a
0N/A * private constructor and makes sure that the object can be
0N/A * activated.
0N/A */
0N/Apublic class CreatePrivateActivatable
0N/A{
0N/A private static class PrivateActivatable extends Activatable
169N/A implements ActivateMe, Runnable
0N/A {
169N/A private PrivateActivatable(ActivationID id, MarshalledObject obj)
169N/A throws ActivationException, RemoteException
169N/A {
169N/A super(id, 0);
169N/A }
0N/A
169N/A public void ping()
169N/A {}
0N/A
169N/A /**
169N/A * Spawns a thread to deactivate the object.
169N/A */
169N/A public void shutdown() throws Exception
169N/A {
169N/A (new Thread(this, "CreatePrivateActivatable$PrivateActivatable")).start();
169N/A }
0N/A
169N/A /**
169N/A * Thread to deactivate object. First attempts to make object
169N/A * inactive (via the inactive method). If that fails (the
169N/A * object may still have pending/executing calls), then
169N/A * unexport the object forcibly.
169N/A */
169N/A public void run() {
169N/A ActivationLibrary.deactivate(this, getID());
169N/A }
0N/A }
169N/A
0N/A public static void main(String[] args) {
169N/A /*
169N/A * The following line is required with the JDK 1.2 VM so that the
169N/A * VM can exit gracefully when this test completes. Otherwise, the
169N/A * conservative garbage collector will find a handle to the server
169N/A * object on the native stack and not clear the weak reference to
169N/A * it in the RMI runtime's object table.
169N/A */
169N/A Object dummy = new Object();
169N/A RMID rmid = null;
169N/A ActivateMe obj;
0N/A
169N/A System.err.println("\nRegression test for bug 4164971\n");
169N/A System.err.println("java.security.policy = " +
169N/A System.getProperty("java.security.policy", "no policy"));
0N/A
169N/A CreatePrivateActivatable server;
169N/A try {
169N/A TestLibrary.suggestSecurityManager(TestParams.defaultSecurityManager);
169N/A
169N/A // start an rmid.
169N/A RMID.removeLog();
169N/A rmid = RMID.createRMID();
169N/A rmid.start();
0N/A
169N/A /* Cause activation groups to have a security policy that will
169N/A * allow security managers to be downloaded and installed
169N/A */
169N/A Properties p = new Properties();
169N/A // this test must always set policies/managers in its
169N/A // activation groups
169N/A p.put("java.security.policy",
169N/A TestParams.defaultGroupPolicy);
169N/A p.put("java.security.manager",
169N/A TestParams.defaultSecurityManager);
169N/A
169N/A /*
169N/A * Activate an object by registering its object
169N/A * descriptor and invoking a method on the
169N/A * stub returned from the register call.
169N/A */
169N/A ActivationGroupDesc groupDesc =
169N/A new ActivationGroupDesc(p, null);
169N/A ActivationSystem system = ActivationGroup.getSystem();
169N/A ActivationGroupID groupID = system.registerGroup(groupDesc);
169N/A
169N/A System.err.println("Creating descriptor");
169N/A ActivationDesc desc =
169N/A new ActivationDesc(groupID,
169N/A "CreatePrivateActivatable$PrivateActivatable",
169N/A null, null);
0N/A
169N/A System.err.println("Registering descriptor");
169N/A obj = (ActivateMe) Activatable.register(desc);
169N/A
169N/A /*
169N/A * Loop a bunch of times to force activator to
169N/A * spawn VMs (groups)
169N/A */
169N/A System.err.println("Activate object via method call");
169N/A obj.ping();
169N/A
169N/A /*
169N/A * Clean up object too.
169N/A */
169N/A System.err.println("Deactivate object via method call");
169N/A obj.shutdown();
169N/A
169N/A System.err.println("\nsuccess: CreatePrivateActivatable test passed ");
169N/A
169N/A } catch (Exception e) {
169N/A if (e instanceof java.security.PrivilegedActionException) {
169N/A e = ((java.security.PrivilegedActionException)e).getException();
169N/A }
169N/A TestLibrary.bomb("\nfailure: unexpected exception " +
169N/A e.getClass().getName(), e);
169N/A
169N/A } finally {
169N/A ActivationLibrary.rmidCleanup(rmid);
169N/A obj = null;
169N/A }
0N/A }
0N/A}