|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, 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 | +/* |
| 25 | + * @test |
| 26 | + * @bug 8284490 |
| 27 | + * @summary Remove finalizer method in java.security.jgss |
| 28 | + * @key intermittent |
| 29 | + * @requires os.family != "windows" |
| 30 | + * @library /test/lib |
| 31 | + * @compile -XDignore.symbol.file Cleaners.java |
| 32 | + * @run main/othervm Cleaners launcher |
| 33 | + */ |
| 34 | + |
| 35 | +import java.nio.charset.StandardCharsets; |
| 36 | +import java.nio.file.Files; |
| 37 | +import java.nio.file.Paths; |
| 38 | +import java.nio.file.attribute.PosixFilePermission; |
| 39 | +import java.util.Arrays; |
| 40 | +import java.util.Set; |
| 41 | + |
| 42 | +import jdk.test.lib.Asserts; |
| 43 | +import jdk.test.lib.process.Proc; |
| 44 | +import org.ietf.jgss.Oid; |
| 45 | +import sun.security.krb5.Config; |
| 46 | + |
| 47 | +public class Cleaners { |
| 48 | + |
| 49 | + private static final String CONF = "krb5.conf"; |
| 50 | + private static final String KTAB_S = "server.ktab"; |
| 51 | + private static final String KTAB_B = "backend.ktab"; |
| 52 | + |
| 53 | + private static final String HOST = "localhost"; |
| 54 | + private static final String SERVER = "server/" + HOST; |
| 55 | + private static final String BACKEND = "backend/" + HOST; |
| 56 | + private static final String USER = "user"; |
| 57 | + private static final char[] PASS = "password".toCharArray(); |
| 58 | + private static final String REALM = "REALM"; |
| 59 | + |
| 60 | + private static final byte[] MSG = "12345678".repeat(128) |
| 61 | + .getBytes(StandardCharsets.UTF_8); |
| 62 | + |
| 63 | + public static void main(String[] args) throws Exception { |
| 64 | + |
| 65 | + Oid oid = new Oid("1.2.840.113554.1.2.2"); |
| 66 | + byte[] token, msg; |
| 67 | + |
| 68 | + switch (args[0]) { |
| 69 | + case "launcher" -> { |
| 70 | + KDC kdc = KDC.create(REALM, HOST, 0, true); |
| 71 | + kdc.addPrincipal(USER, PASS); |
| 72 | + kdc.addPrincipalRandKey("krbtgt/" + REALM); |
| 73 | + kdc.addPrincipalRandKey(SERVER); |
| 74 | + kdc.addPrincipalRandKey(BACKEND); |
| 75 | + |
| 76 | + // Native lib might do some name lookup |
| 77 | + KDC.saveConfig(CONF, kdc, |
| 78 | + "dns_lookup_kdc = no", |
| 79 | + "ticket_lifetime = 1h", |
| 80 | + "dns_lookup_realm = no", |
| 81 | + "dns_canonicalize_hostname = false", |
| 82 | + "forwardable = true"); |
| 83 | + System.setProperty("java.security.krb5.conf", CONF); |
| 84 | + Config.refresh(); |
| 85 | + |
| 86 | + // Create kaytab and ccache files for native clients |
| 87 | + kdc.writeKtab(KTAB_S, false, SERVER); |
| 88 | + kdc.writeKtab(KTAB_B, false, BACKEND); |
| 89 | + kdc.kinit(USER, "ccache"); |
| 90 | + Files.setPosixFilePermissions(Paths.get("ccache"), |
| 91 | + Set.of(PosixFilePermission.OWNER_READ, |
| 92 | + PosixFilePermission.OWNER_WRITE)); |
| 93 | + |
| 94 | + Proc pc = proc("client") |
| 95 | + .env("KRB5CCNAME", "FILE:ccache") |
| 96 | + .env("KRB5_KTNAME", "none") // Do not try system ktab if ccache fails |
| 97 | + .start(); |
| 98 | + Proc ps = proc("server") |
| 99 | + .env("KRB5_KTNAME", KTAB_S) |
| 100 | + .start(); |
| 101 | + Proc pb = proc("backend") |
| 102 | + .env("KRB5_KTNAME", KTAB_B) |
| 103 | + .start(); |
| 104 | + |
| 105 | + // Client and server |
| 106 | + ps.println(pc.readData()); // AP-REQ |
| 107 | + pc.println(ps.readData()); // AP-REP, mutual auth |
| 108 | + ps.println(pc.readData()); // wrap msg |
| 109 | + ps.println(pc.readData()); // mic msg |
| 110 | + |
| 111 | + // Server and backend |
| 112 | + pb.println(ps.readData()); // AP-REQ |
| 113 | + ps.println(pb.readData()); // wrap msg |
| 114 | + ps.println(pb.readData()); // mic msg |
| 115 | + |
| 116 | + ensureCleanersCalled(pc); |
| 117 | + ensureCleanersCalled(ps); |
| 118 | + ensureCleanersCalled(pb); |
| 119 | + } |
| 120 | + case "client" -> { |
| 121 | + Context c = Context.fromThinAir(); |
| 122 | + c.startAsClient(SERVER, oid); |
| 123 | + c.x().requestCredDeleg(true); |
| 124 | + c.x().requestMutualAuth(true); |
| 125 | + Proc.binOut(c.take(new byte[0])); // AP-REQ |
| 126 | + c.take(Proc.binIn()); // AP-REP |
| 127 | + Proc.binOut(c.wrap(MSG, true)); |
| 128 | + Proc.binOut(c.getMic(MSG)); |
| 129 | + } |
| 130 | + case "server" -> { |
| 131 | + Context s = Context.fromThinAir(); |
| 132 | + s.startAsServer(oid); |
| 133 | + token = Proc.binIn(); // AP-REQ |
| 134 | + Proc.binOut(s.take(token)); // AP-REP |
| 135 | + msg = s.unwrap(Proc.binIn(), true); |
| 136 | + Asserts.assertTrue(Arrays.equals(msg, MSG)); |
| 137 | + s.verifyMic(Proc.binIn(), msg); |
| 138 | + Context s2 = s.delegated(); |
| 139 | + s2.startAsClient(BACKEND, oid); |
| 140 | + s2.x().requestMutualAuth(false); |
| 141 | + Proc.binOut(s2.take(new byte[0])); // AP-REQ |
| 142 | + msg = s2.unwrap(Proc.binIn(), true); |
| 143 | + Asserts.assertTrue(Arrays.equals(msg, MSG)); |
| 144 | + s2.verifyMic(Proc.binIn(), msg); |
| 145 | + } |
| 146 | + case "backend" -> { |
| 147 | + Context b = Context.fromThinAir(); |
| 148 | + b.startAsServer(oid); |
| 149 | + token = b.take(Proc.binIn()); // AP-REQ |
| 150 | + Asserts.assertTrue(token == null); |
| 151 | + Proc.binOut(b.wrap(MSG, true)); |
| 152 | + Proc.binOut(b.getMic(MSG)); |
| 153 | + } |
| 154 | + } |
| 155 | + System.out.println("Prepare for GC"); |
| 156 | + for (int i = 0; i < 10; i++) { |
| 157 | + System.gc(); |
| 158 | + Thread.sleep(100); |
| 159 | + } |
| 160 | + } |
| 161 | + |
| 162 | + private static void ensureCleanersCalled(Proc p) throws Exception { |
| 163 | + p.output() |
| 164 | + .shouldHaveExitValue(0) |
| 165 | + .stdoutShouldMatch("Prepare for GC(.|\\n)*GSSLibStub_deleteContext") |
| 166 | + .stdoutShouldMatch("Prepare for GC(.|\\n)*GSSLibStub_releaseName") |
| 167 | + .stdoutShouldMatch("Prepare for GC(.|\\n)*GSSLibStub_releaseCred"); |
| 168 | + } |
| 169 | + |
| 170 | + private static Proc proc(String type) throws Exception { |
| 171 | + return Proc.create("Cleaners") |
| 172 | + .args(type) |
| 173 | + .debug(type) |
| 174 | + .env("KRB5_CONFIG", CONF) |
| 175 | + .env("KRB5_TRACE", "/dev/stderr") |
| 176 | + .prop("sun.security.jgss.native", "true") |
| 177 | + .prop("javax.security.auth.useSubjectCredsOnly", "false") |
| 178 | + .prop("sun.security.nativegss.debug", "true"); |
| 179 | + } |
| 180 | +} |
0 commit comments