1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/*
* Copyright (c) 1999, 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.
*/
/*
* @test
* @author Gary Ellison
* @bug 4232694
* @summary PermissionCollection.setReadOnly() does not preclude using add()
*/
import java.security.*;
import java.net.SocketPermission;
import java.io.FilePermission;
import java.util.PropertyPermission;
public class AddToReadOnlyPermissionCollection {
public static void main(String args[]) throws Exception {
try {
if (args.length == 0) {
tryAllPC();
tryBasicPC();
tryFilePC();
tryPropPC();
trySockPC();
} else {
for (int i=0; i <args.length; i++) {
switch (args[i].toLowerCase().charAt(1)) {
case 'a':
tryAllPC();
break;
case 'b':
tryBasicPC();
break;
case 'f':
tryFilePC();
break;
case 'p':
tryPropPC();
break;
case 's':
trySockPC();
break;
default:
throw new Exception("usage: AddToReadOnlyPermissonCollection [-a -b -f -p -s]");
}
}
}
} catch (Exception e) {
throw e;
}
System.out.println("Passed. OKAY");
}
static void tryPropPC() throws Exception {
try {
PropertyPermission p0 = new PropertyPermission("user.home","read");
PermissionCollection pc = p0.newPermissionCollection();
pc.setReadOnly(); // this should lock out future adds
//
PropertyPermission p1 = new PropertyPermission("java.home","read");
pc.add(p1);
throw new
Exception("Failed...PropertyPermission added to readonly PropertyPermissionCollection.");
} catch (SecurityException se) {
System.out.println("PropertyPermissionCollection passed");
}
}
static void trySockPC() throws Exception {
try {
SocketPermission p0= new SocketPermission("example.com","connect");
PermissionCollection pc = p0.newPermissionCollection();
pc.setReadOnly(); // this should lock out future adds
//
SocketPermission p1= new SocketPermission("example.net","connect");
pc.add(p1);
throw new
Exception("Failed...SocketPermission added to readonly SocketPermissionCollection.");
} catch (SecurityException se) {
System.out.println("SocketPermissionCollection passed");
}
}
static void tryFilePC() throws Exception {
try {
FilePermission p0 = new FilePermission("/tmp/foobar","read");
PermissionCollection pc = p0.newPermissionCollection();
pc.setReadOnly(); // this should lock out future adds
//
FilePermission p1 = new FilePermission("/tmp/quux","read");
pc.add(p1);
throw new
Exception("Failed...FilePermission added to readonly FilePermissionCollection.");
} catch (SecurityException se) {
System.out.println("FilePermissionCollection passed");
}
}
static void tryBasicPC() throws Exception {
try {
MyBasicPermission p0 = new MyBasicPermission("BasicPermision");
PermissionCollection pc = p0.newPermissionCollection();
pc.setReadOnly(); // this should lock out future adds
//
MyBasicPermission p1 = new MyBasicPermission("EvenMoreBasic");
pc.add(p1);
throw new
Exception("Failed...BasicPermission added to readonly BasicPermissionCollection.");
} catch (SecurityException se) {
System.out.println("BasicPermissionCollection passed");
}
}
static void tryAllPC() throws Exception {
try {
AllPermission p0 = new AllPermission("AllOfIt","read");
PermissionCollection pc = p0.newPermissionCollection();
pc.setReadOnly(); // this should lock out future adds
//
AllPermission p1 = new AllPermission("SomeOfIt","read");
pc.add(p1);
throw new
Exception("Failed...AllPermission added to readonly AllPermissionCollection.");
} catch (SecurityException se) {
System.out.println("AllPermissionCollection passed");
}
}
}
class MyBasicPermission extends BasicPermission {
public MyBasicPermission(String name) {
super(name);
}
}
|