mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8215712: Parsing extension failure may alert decode_error
Reviewed-by: jnimeh
This commit is contained in:
parent
ef335c75e3
commit
36af90acc0
21 changed files with 313 additions and 429 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2018, 2020, 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
|
||||
|
@ -56,9 +56,10 @@ final class CertSignAlgsExtension {
|
|||
private static final
|
||||
class CertSignatureSchemesStringizer implements SSLStringizer {
|
||||
@Override
|
||||
public String toString(ByteBuffer buffer) {
|
||||
public String toString(HandshakeContext hc, ByteBuffer buffer) {
|
||||
try {
|
||||
return (new SignatureSchemesSpec(buffer)).toString();
|
||||
return (new SignatureSchemesSpec(hc, buffer))
|
||||
.toString();
|
||||
} catch (IOException ioe) {
|
||||
// For debug logging only, so please swallow exceptions.
|
||||
return ioe.getMessage();
|
||||
|
@ -149,12 +150,7 @@ final class CertSignAlgsExtension {
|
|||
}
|
||||
|
||||
// Parse the extension.
|
||||
SignatureSchemesSpec spec;
|
||||
try {
|
||||
spec = new SignatureSchemesSpec(buffer);
|
||||
} catch (IOException ioe) {
|
||||
throw shc.conContext.fatal(Alert.UNEXPECTED_MESSAGE, ioe);
|
||||
}
|
||||
SignatureSchemesSpec spec = new SignatureSchemesSpec(shc, buffer);
|
||||
|
||||
// Update the context.
|
||||
shc.handshakeExtensions.put(
|
||||
|
@ -292,12 +288,7 @@ final class CertSignAlgsExtension {
|
|||
}
|
||||
|
||||
// Parse the extension.
|
||||
SignatureSchemesSpec spec;
|
||||
try {
|
||||
spec = new SignatureSchemesSpec(buffer);
|
||||
} catch (IOException ioe) {
|
||||
throw chc.conContext.fatal(Alert.UNEXPECTED_MESSAGE, ioe);
|
||||
}
|
||||
SignatureSchemesSpec spec = new SignatureSchemesSpec(chc, buffer);
|
||||
|
||||
// Update the context.
|
||||
chc.handshakeExtensions.put(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue