8201867: Kerberos keytabs with holes in certain places are parsed incorrectly

Reviewed-by: valeriep
This commit is contained in:
Weijun Wang 2018-05-18 16:27:15 +08:00
parent fdaaae3622
commit b8855ebbc2
2 changed files with 133 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2000, 2018, 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
@ -62,13 +62,29 @@ public class KeyTabInputStream extends KrbDataInputStream implements KeyTabConst
}
KeyTabEntry readEntry(int entryLen, int ktVersion) throws IOException, RealmException {
KeyTabEntry readEntry(int entryLen, int ktVersion)
throws IOException, RealmException {
index = entryLen;
if (index == 0) { //in native implementation, when the last entry is deleted, a byte 0 is left.
// in native implementation, when the last entry is deleted,
// an entry length of 0 is left.
if (index == 0) {
return null;
}
if (index < 0) { //in native implementation, when one of the entries is deleted, the entry length turns to be negative, and
skip(Math.abs(index)); //the fields are left with 0 bytes
// in native implementation, when one of the entries is deleted,
// the entry length is changed to be negative, and the content
// is zeroed out to be a "hole".
if (index < 0) {
// Skip the zeroed content.
long n = -index;
while (n > 0) {
long n2 = skip(n);
if (n2 == 0) {
throw new IOException("Premature end of stream reached");
} else {
n -= n2;
}
}
return null;
}
int principalNum = read(2); //the number of service names.

View File

@ -0,0 +1,112 @@
/*
* Copyright (c) 2018, 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 8201867
* @summary Kerberos keytabs with holes in certain places are parsed incorrectly
* @modules java.security.jgss/sun.security.krb5
* java.security.jgss/sun.security.krb5.internal.ktab
* @run main/othervm BufferBoundary
*/
import sun.security.krb5.PrincipalName;
import sun.security.krb5.internal.ktab.KeyTab;
import sun.security.krb5.internal.ktab.KeyTabEntry;
import sun.security.krb5.internal.ktab.KeyTabInputStream;
import sun.security.krb5.internal.ktab.KeyTabOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
public class BufferBoundary {
public static void main(String[] args) throws Exception {
// We force using one etype so the output is determined
Files.write(Paths.get("krb5.conf"), List.of(
"[libdefaults]",
"default_tkt_enctypes = aes128-cts"
));
System.setProperty("java.security.krb5.conf", "krb5.conf");
KeyTab kt = KeyTab.create("ktab");
int num = 0;
while (true) {
num++;
PrincipalName pn = new PrincipalName(
String.format("user%03d@REALM", num));
kt.addEntry(pn, "password".toCharArray(), num, true);
int length = 2;
for (KeyTabEntry e : kt.getEntries()) {
length += e.entryLength() + 4;
}
// Create enough big keytab
if (length > 8400) {
break;
}
}
kt.save();
int count = 0;
boolean written = false;
try (KeyTabInputStream kin
= new KeyTabInputStream(new FileInputStream("ktab"));
KeyTabOutputStream kout
= new KeyTabOutputStream(new FileOutputStream("ktab2"))) {
kout.write(kin.readNBytes(2)); // version
count += 2;
while (true) {
int len;
try {
len = kin.read(4);
} catch (IOException e) {
break; // reach end
}
count += 4;
byte[] data = kin.readNBytes(len);
count += len;
if (count < 8192 || written) {
kout.write32(len);
kout.write(data);
} else {
// Create a hole on the 8192 boundary
kout.write32(-len);
kout.write(new byte[len]);
written = true;
}
}
}
kt = KeyTab.getInstance("ktab2");
if (!kt.isValid()) {
throw new Exception("Should be valid");
}
if (kt.getEntries().length != num - 1) {
throw new Exception("Should have " + (num - 1) + " entries");
}
}
}