Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
139 lines
5.1 KiB
Java
139 lines
5.1 KiB
Java
/*
|
|
* Copyright (c) 2025, 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
|
|
* @bug 8356997
|
|
* @summary Support "include" anywhere
|
|
* @modules java.security.jgss/sun.security.krb5
|
|
* @library /test/lib
|
|
* @run main/othervm/timeout=480 IncludeRandom
|
|
*/
|
|
import jdk.test.lib.Asserts;
|
|
import jdk.test.lib.security.SeededSecureRandom;
|
|
import sun.security.krb5.Config;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.Path;
|
|
import java.security.SecureRandom;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
// A randomized class to prove that wherever the "include" line is inside
|
|
// a krb5.conf file, it can always be parsed correctly.
|
|
public class IncludeRandom {
|
|
|
|
static SecureRandom sr = SeededSecureRandom.one();
|
|
|
|
// Must be global. Counting in recursive methods
|
|
static int nInc = 0; // number of included files
|
|
static int nAssign = 0; // number of assignments to the same setting
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
System.setProperty("java.security.krb5.conf", "f");
|
|
for (var i = 0; i < 1000; i++) {
|
|
test();
|
|
}
|
|
}
|
|
|
|
static void test() throws Exception {
|
|
nInc = 0;
|
|
nAssign = 0;
|
|
write("f");
|
|
if (nAssign != 0) {
|
|
Config.refresh();
|
|
var j = Config.getInstance().getAll("section", "sub", "x");
|
|
var r = readRaw("f", new ArrayList<String>())
|
|
.stream()
|
|
.collect(Collectors.joining(" "));
|
|
Asserts.assertEQ(r, j);
|
|
}
|
|
try (var dir = Files.newDirectoryStream(Path.of("."), "f*")) {
|
|
for (var f : dir) {
|
|
Files.delete(f);
|
|
}
|
|
}
|
|
}
|
|
|
|
// read settings as raw files
|
|
static List<String> readRaw(String f, List<String> list) throws IOException {
|
|
for (var s : Files.readAllLines(Path.of(f))) {
|
|
if (s.startsWith("include ")) {
|
|
readRaw(s.substring(8), list);
|
|
}
|
|
if (s.contains("x = ")) {
|
|
list.add(s.substring(s.indexOf("x = ") + 4));
|
|
}
|
|
}
|
|
return list;
|
|
}
|
|
|
|
// write krb5.conf with random include
|
|
static void write(String f) throws IOException {
|
|
var p = Path.of(f);
|
|
if (Files.exists(p)) return; // do not overwrite, same file can be
|
|
// included twice
|
|
var content = new ArrayList<String>();
|
|
content.add("[section]"); // always starts with section
|
|
for (var i = 0; i < sr.nextInt(5); i++) {
|
|
if (sr.nextBoolean()) { // might have more section(s)
|
|
content.add("[section]");
|
|
}
|
|
if (sr.nextBoolean()) { // style 1: { on subsection line
|
|
content.add("sub = {");
|
|
} else {
|
|
content.add("sub = ");
|
|
if (sr.nextBoolean()) {
|
|
content.add("{"); // style 2: { on individual line
|
|
} else {
|
|
// style 3: { on key-value line
|
|
content.add("{ x = " + sr.nextInt(99999999));
|
|
nAssign++;
|
|
}
|
|
}
|
|
for (var j = 0; j < sr.nextInt(3); j++) { // might have more
|
|
content.add("x = " + sr.nextInt(99999999));
|
|
nAssign++;
|
|
}
|
|
content.add("}");
|
|
}
|
|
// randomly throw in include lines
|
|
for (var i = 0; i < sr.nextInt(3); i++) {
|
|
if (nInc < 98) {
|
|
// include file name is random, so there could be dup
|
|
// but name length always grows, so no recursive.
|
|
// Extra length could be 1 digit or 2 digits, so the
|
|
// same file can be included on 2 levels, e.g. f1 includes
|
|
// f12 and f123, and f12 includes f123 again.
|
|
var inc = f + sr.nextInt(100);
|
|
content.add(sr.nextInt(content.size() + 1),
|
|
"include " + Path.of(inc).toAbsolutePath());
|
|
nInc++;
|
|
write(inc);
|
|
}
|
|
}
|
|
Files.write(p, content);
|
|
}
|
|
}
|