8267617: Certificate's IP x509 NameConstraints raises ArrayIndexOutOfBoundsException

Reviewed-by: mullan
This commit is contained in:
Daniel Jeliński 2022-12-06 08:24:17 +00:00
parent 923c746650
commit 2a243a33cc
2 changed files with 86 additions and 5 deletions

View file

@ -401,11 +401,12 @@ public class IPAddressName implements GeneralNameInterface {
else {
IPAddressName otherName = (IPAddressName)inputName;
byte[] otherAddress = otherName.address;
if (otherAddress.length == 4 && address.length == 4)
if ((otherAddress.length == 4 && address.length == 4) ||
(otherAddress.length == 16 && address.length == 16)) {
// Two host addresses
constraintType = NAME_SAME_TYPE;
else if ((otherAddress.length == 8 && address.length == 8) ||
(otherAddress.length == 32 && address.length == 32)) {
} else if ((otherAddress.length == 8 && address.length == 8) ||
(otherAddress.length == 32 && address.length == 32)) {
// Two subnet addresses
// See if one address fully encloses the other address
boolean otherSubsetOfThis = true;
@ -440,7 +441,8 @@ public class IPAddressName implements GeneralNameInterface {
constraintType = NAME_WIDENS;
else
constraintType = NAME_SAME_TYPE;
} else if (otherAddress.length == 8 || otherAddress.length == 32) {
} else if ((otherAddress.length == 8 && address.length == 4) ||
(otherAddress.length == 32 && address.length == 16)) {
//Other is a subnet, this is a host address
int i = 0;
int maskOffset = otherAddress.length/2;
@ -454,7 +456,8 @@ public class IPAddressName implements GeneralNameInterface {
constraintType = NAME_WIDENS;
else
constraintType = NAME_SAME_TYPE;
} else if (address.length == 8 || address.length == 32) {
} else if ((otherAddress.length == 4 && address.length == 8) ||
(otherAddress.length == 16 && address.length == 32)) {
//This is a subnet, other is a host address
int i = 0;
int maskOffset = address.length/2;