6803376: BasicConstraintsExtension does not encode when (ca==false && pathLen<0)
Reviewed-by: xuelei
--- a/jdk/src/share/classes/sun/security/x509/BasicConstraintsExtension.java Mon Feb 23 10:04:52 2009 +0800
+++ b/jdk/src/share/classes/sun/security/x509/BasicConstraintsExtension.java Mon Feb 23 10:05:41 2009 +0800
@@ -1,5 +1,5 @@
/*
- * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 1997-2009 Sun Microsystems, Inc. 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
@@ -70,18 +70,15 @@
// Encode this extension value
private void encodeThis() throws IOException {
- if (ca == false && pathLen < 0) {
- this.extensionValue = null;
- return;
- }
DerOutputStream out = new DerOutputStream();
DerOutputStream tmp = new DerOutputStream();
if (ca) {
tmp.putBoolean(ca);
- }
- if (pathLen >= 0) {
- tmp.putInteger(pathLen);
+ // Only encode pathLen when ca == true
+ if (pathLen >= 0) {
+ tmp.putInteger(pathLen);
+ }
}
out.write(DerValue.tag_Sequence, tmp);
this.extensionValue = out.toByteArray();
@@ -134,7 +131,7 @@
throw new IOException("Invalid encoding of BasicConstraints");
}
- if (val.data == null) {
+ if (val.data == null || val.data.available() == 0) {
// non-CA cert ("cA" field is FALSE by default), return -1
return;
}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/jdk/test/sun/security/x509/Extensions/BCNull.java Mon Feb 23 10:05:41 2009 +0800
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2009 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+/*
+ * @test
+ * @summary BasicConstraintsExtension does not encode when (ca==false && pathLen<0)
+ * @bug 6803376
+ */
+
+import sun.security.x509.BasicConstraintsExtension;
+import java.io.ByteArrayOutputStream;
+
+public class BCNull {
+ public static void main(String [] args) throws Exception {
+ new BasicConstraintsExtension(false, -1).encode(new ByteArrayOutputStream());
+ }
+}