Skip to content

Commit d285fd6

Browse files
committedFeb 6, 2020
8234418: Better parsing with CertificateFactory
Reviewed-by: weijun, mschoene, rhalade
1 parent 8a616df commit d285fd6

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed
 

‎src/java.base/share/classes/sun/security/util/DerInputBuffer.java

+19-2
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,12 @@ private Date getTime(int len, boolean generalized) throws IOException {
354354
second += toDigit(buf[pos++], type);
355355
len -= 2;
356356
// handle fractional seconds (if present)
357-
if (buf[pos] == '.' || buf[pos] == ',') {
357+
if (generalized && (buf[pos] == '.' || buf[pos] == ',')) {
358358
len --;
359+
if (len == 0) {
360+
throw new IOException("Parse " + type +
361+
" time, empty fractional part");
362+
}
359363
pos++;
360364
int precision = 0;
361365
while (buf[pos] != 'Z' &&
@@ -365,6 +369,11 @@ private Date getTime(int len, boolean generalized) throws IOException {
365369
// store millisecond precision only
366370
int thisDigit = toDigit(buf[pos], type);
367371
precision++;
372+
len--;
373+
if (len == 0) {
374+
throw new IOException("Parse " + type +
375+
" time, invalid fractional part");
376+
}
368377
pos++;
369378
switch (precision) {
370379
case 1:
@@ -382,7 +391,6 @@ private Date getTime(int len, boolean generalized) throws IOException {
382391
throw new IOException("Parse " + type +
383392
" time, empty fractional part");
384393
}
385-
len -= precision;
386394
}
387395
} else
388396
second = 0;
@@ -412,6 +420,9 @@ private Date getTime(int len, boolean generalized) throws IOException {
412420

413421
switch (buf[pos++]) {
414422
case '+':
423+
if (len != 5) {
424+
throw new IOException("Parse " + type + " time, invalid offset");
425+
}
415426
hr = 10 * toDigit(buf[pos++], type);
416427
hr += toDigit(buf[pos++], type);
417428
min = 10 * toDigit(buf[pos++], type);
@@ -424,6 +435,9 @@ private Date getTime(int len, boolean generalized) throws IOException {
424435
break;
425436

426437
case '-':
438+
if (len != 5) {
439+
throw new IOException("Parse " + type + " time, invalid offset");
440+
}
427441
hr = 10 * toDigit(buf[pos++], type);
428442
hr += toDigit(buf[pos++], type);
429443
min = 10 * toDigit(buf[pos++], type);
@@ -436,6 +450,9 @@ private Date getTime(int len, boolean generalized) throws IOException {
436450
break;
437451

438452
case 'Z':
453+
if (len != 1) {
454+
throw new IOException("Parse " + type + " time, invalid format");
455+
}
439456
break;
440457

441458
default:

0 commit comments

Comments
 (0)
Please sign in to comment.