test/java/rmi/server/RMISocketFactory/useSocketFactory/registry/UseCustomSocketFactory.java

Print this page


   1 /*
   2  * Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4148850
  26  *
  27  * @summary synopsis: need to obtain remote references securely
  28  *
  29  * @author Laird Dornin; code borrowed from Ann Wollrath
  30  *
  31  * @library ../../../../testlibrary
  32  * @build Hello
  33  * @build HelloImpl
  34  * @build HelloImpl_Stub

  35  * @build UseCustomSocketFactory
  36  * @build Compress
  37  * @run main/othervm/policy=security.policy/timeout=240 UseCustomSocketFactory
  38  */
  39 
  40 import java.io.*;
  41 import java.rmi.*;
  42 import java.rmi.server.*;
  43 import java.rmi.registry.*;
  44 
  45 /**
  46  * Test ensures that the rmiregistry is capable of running over customx
  47  * (i.e. compression) client and server socket factories.
  48  */
  49 public class UseCustomSocketFactory {
  50 
  51     Hello hello = null;
  52 
  53     public static void main(String[] args) {
  54 
  55         Registry registry = null;
  56         HelloImpl impl = null;
  57 
  58         System.out.println("\nRegression test for bug 4148850\n");
  59 
  60         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");

  61 
  62         try {
  63             impl = new HelloImpl();
  64 
  65             /* Make sure that the rmiregistry can communicate over a
  66              * custom socket.  Ensure that the functionality exists to
  67              * allow the rmiregistry to be secure.
  68              */
  69             registry = LocateRegistry.
  70                 createRegistry(TestLibrary.REGISTRY_PORT,
  71                                new Compress.CompressRMIClientSocketFactory(),
  72                                new Compress.CompressRMIServerSocketFactory());
  73             registry.rebind("/HelloServer", impl);
  74             checkStub(registry, "RMIServerSocket");
  75 
  76         } catch (Exception e) {
  77             TestLibrary.bomb("creating registry", e);
  78         }
  79 
  80         JavaVM serverVM = new JavaVM("HelloImpl", "-Djava.security.policy=" +
  81                                      TestParams.defaultPolicy, "");




  82 
  83         try {
  84 
  85             /*
  86              * spawn VM for HelloServer which will download a client socket
  87              * factory
  88              */
  89             serverVM.start();
  90 
  91             synchronized (impl) {
  92 
  93                 System.out.println("waiting for remote notification");
  94 
  95                 if (!HelloImpl.clientCalledSuccessfully) {
  96                     impl.wait(75 * 1000);
  97                 }
  98 
  99                 if (!HelloImpl.clientCalledSuccessfully) {
 100                     throw new RuntimeException("Client did not execute call in time...");
 101                 }


   1 /*
   2  * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4148850
  26  *
  27  * @summary synopsis: need to obtain remote references securely
  28  *
  29  * @author Laird Dornin; code borrowed from Ann Wollrath
  30  *
  31  * @library ../../../../testlibrary
  32  * @build Hello
  33  * @build HelloImpl
  34  * @build HelloImpl_Stub
  35  * @build TestLibrary
  36  * @build UseCustomSocketFactory
  37  * @build Compress
  38  * @run main/othervm/policy=security.policy/timeout=240 UseCustomSocketFactory
  39  */
  40 
  41 import java.io.*;
  42 import java.rmi.*;
  43 import java.rmi.server.*;
  44 import java.rmi.registry.*;
  45 
  46 /**
  47  * Test ensures that the rmiregistry is capable of running over customx
  48  * (i.e. compression) client and server socket factories.
  49  */
  50 public class UseCustomSocketFactory {
  51 
  52     Hello hello = null;
  53 
  54     public static void main(String[] args) {
  55 
  56         Registry registry = null;
  57         HelloImpl impl = null;
  58 
  59         System.out.println("\nRegression test for bug 4148850\n");
  60 
  61         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
  62         int registryPort = TestLibrary.getUnusedRandomPort();
  63 
  64         try {
  65             impl = new HelloImpl();
  66 
  67             /* Make sure that the rmiregistry can communicate over a
  68              * custom socket.  Ensure that the functionality exists to
  69              * allow the rmiregistry to be secure.
  70              */
  71             registry = LocateRegistry.
  72                 createRegistry(registryPort,
  73                                new Compress.CompressRMIClientSocketFactory(),
  74                                new Compress.CompressRMIServerSocketFactory());
  75             registry.rebind("/HelloServer", impl);
  76             checkStub(registry, "RMIServerSocket");
  77 
  78         } catch (Exception e) {
  79             TestLibrary.bomb("creating registry", e);
  80         }
  81 
  82         JavaVM serverVM = new JavaVM("HelloImpl",
  83                                      "-Djava.security.policy=" +
  84                                      TestParams.defaultPolicy +
  85                                      " -Drmi.registry.port=" +
  86                                      registryPort,
  87                                      "");
  88 
  89         try {
  90 
  91             /*
  92              * spawn VM for HelloServer which will download a client socket
  93              * factory
  94              */
  95             serverVM.start();
  96 
  97             synchronized (impl) {
  98 
  99                 System.out.println("waiting for remote notification");
 100 
 101                 if (!HelloImpl.clientCalledSuccessfully) {
 102                     impl.wait(75 * 1000);
 103                 }
 104 
 105                 if (!HelloImpl.clientCalledSuccessfully) {
 106                     throw new RuntimeException("Client did not execute call in time...");
 107                 }