Skip to content

Commit fe5cccc

Browse files
author
Bradford Wetmore
committedDec 2, 2020
8254631: Better support ALPN byte wire values in SunJSSE
Reviewed-by: xuelei, dfuchs
1 parent 541c7f7 commit fe5cccc

File tree

6 files changed

+450
-11
lines changed

6 files changed

+450
-11
lines changed
 

‎src/java.base/share/classes/javax/net/ssl/SSLEngine.java

+42
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,48 @@
336336
* started, an {@code SSLEngine} can not switch between client and server
337337
* modes, even when performing renegotiations.
338338
* <P>
339+
* The ApplicationProtocol {@code String} values returned by the methods
340+
* in this class are in the network byte representation sent by the peer.
341+
* The bytes could be directly compared, or converted to its Unicode
342+
* {code String} format for comparison.
343+
*
344+
* <blockquote><pre>
345+
* String networkString = sslEngine.getHandshakeApplicationProtocol();
346+
* byte[] bytes = networkString.getBytes(StandardCharsets.ISO_8859_1);
347+
*
348+
* //
349+
* // Match using bytes:
350+
* //
351+
* // "http/1.1" (7-bit ASCII values same in UTF-8)
352+
* // MEETEI MAYEK LETTERS "HUK UN I" (Unicode 0xabcd->0xabcf)
353+
* //
354+
* String HTTP1_1 = "http/1.1";
355+
* byte[] HTTP1_1_BYTES = HTTP1_1.getBytes(StandardCharsets.UTF_8);
356+
*
357+
* byte[] HUK_UN_I_BYTES = new byte[] {
358+
* (byte) 0xab, (byte) 0xcd,
359+
* (byte) 0xab, (byte) 0xce,
360+
* (byte) 0xab, (byte) 0xcf};
361+
*
362+
* if ((Arrays.compare(bytes, HTTP1_1_BYTES) == 0 )
363+
* || Arrays.compare(bytes, HUK_UN_I_BYTES) == 0) {
364+
* ...
365+
* }
366+
*
367+
* //
368+
* // Alternatively match using string.equals() if we know the ALPN value
369+
* // was encoded from a {@code String} using a certain character set,
370+
* // for example {@code UTF-8}. The ALPN value must first be properly
371+
* // decoded to a Unicode {@code String} before use.
372+
* //
373+
* String unicodeString = new String(bytes, StandardCharsets.UTF_8);
374+
* if (unicodeString.equals(HTTP1_1)
375+
* || unicodeString.equals("\u005cuabcd\u005cuabce\u005cuabcf")) {
376+
* ...
377+
* }
378+
* </pre></blockquote>
379+
*
380+
* <P>
339381
* Applications might choose to process delegated tasks in different
340382
* threads. When an {@code SSLEngine}
341383
* is created, the current {@link java.security.AccessControlContext}

‎src/java.base/share/classes/javax/net/ssl/SSLParameters.java

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -646,6 +646,27 @@ public String[] getApplicationProtocols() {
646646
* requested by the peer, the underlying protocol will determine what
647647
* action to take. (For example, ALPN will send a
648648
* {@code "no_application_protocol"} alert and terminate the connection.)
649+
* <p>
650+
* The {@code String} values must be presented using the network
651+
* byte representation expected by the peer. For example, if an ALPN
652+
* {@code String} should be exchanged using {@code UTF-8}, the
653+
* {@code String} should be converted to its {@code byte[]} representation
654+
* and stored as a byte-oriented {@code String} before calling this method.
655+
*
656+
* <blockquote><pre>
657+
* // MEETEI MAYEK LETTERS HUK UN I (Unicode 0xabcd->0xabcf): 2 bytes
658+
* byte[] bytes = "\u005cuabcd\u005cuabce\u005cuabcf"
659+
* .getBytes(StandardCharsets.UTF_8);
660+
* String HUK_UN_I = new String(bytes, StandardCharsets.ISO_8859_1);
661+
*
662+
* // 0x00-0xFF: 1 byte
663+
* String rfc7301Grease8F = "\u005c008F\u005c008F";
664+
*
665+
* SSLParameters p = sslSocket.getSSLParameters();
666+
* p.setApplicationProtocols(new String[] {
667+
* "h2", "http/1.1", rfc7301Grease8F, HUK_UN_I});
668+
* sslSocket.setSSLParameters(p);
669+
* </pre></blockquote>
649670
*
650671
* @implSpec
651672
* This method will make a copy of the {@code protocols} array.

‎src/java.base/share/classes/javax/net/ssl/SSLSocket.java

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -130,6 +130,47 @@
130130
* socket can not switch between client and server modes, even when
131131
* performing renegotiations.
132132
*
133+
* <P> The ApplicationProtocol {@code String} values returned by the methods
134+
* in this class are in the network byte representation sent by the peer.
135+
* The bytes could be directly compared, or converted to its Unicode
136+
* {code String} format for comparison.
137+
*
138+
* <blockquote><pre>
139+
* String networkString = sslSocket.getHandshakeApplicationProtocol();
140+
* byte[] bytes = networkString.getBytes(StandardCharsets.ISO_8859_1);
141+
*
142+
* //
143+
* // Match using bytes:
144+
* //
145+
* // "http/1.1" (7-bit ASCII values same in UTF-8)
146+
* // MEETEI MAYEK LETTERS "HUK UN I" (Unicode 0xabcd->0xabcf)
147+
* //
148+
* String HTTP1_1 = "http/1.1";
149+
* byte[] HTTP1_1_BYTES = HTTP1_1.getBytes(StandardCharsets.UTF_8);
150+
*
151+
* byte[] HUK_UN_I_BYTES = new byte[] {
152+
* (byte) 0xab, (byte) 0xcd,
153+
* (byte) 0xab, (byte) 0xce,
154+
* (byte) 0xab, (byte) 0xcf};
155+
*
156+
* if ((Arrays.compare(bytes, HTTP1_1_BYTES) == 0 )
157+
* || Arrays.compare(bytes, HUK_UN_I_BYTES) == 0) {
158+
* ...
159+
* }
160+
*
161+
* //
162+
* // Alternatively match using string.equals() if we know the ALPN value
163+
* // was encoded from a {@code String} using a certain character set,
164+
* // for example {@code UTF-8}. The ALPN value must first be properly
165+
* // decoded to a Unicode {@code String} before use.
166+
* //
167+
* String unicodeString = new String(bytes, StandardCharsets.UTF_8);
168+
* if (unicodeString.equals(HTTP1_1)
169+
* || unicodeString.equals("\u005cuabcd\u005cuabce\u005cuabcf")) {
170+
* ...
171+
* }
172+
* </pre></blockquote>
173+
*
133174
* @apiNote
134175
* When the connection is no longer needed, the client and server
135176
* applications should each close both sides of their respective connection.

‎src/java.base/share/classes/sun/security/ssl/AlpnExtension.java

+28-9
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@
2727

2828
import java.io.IOException;
2929
import java.nio.ByteBuffer;
30-
import java.nio.charset.StandardCharsets;
30+
import java.nio.charset.Charset;
31+
import java.security.AccessController;
32+
import java.security.PrivilegedAction;
33+
import java.security.Security;
3134
import java.util.Arrays;
3235
import java.util.Collections;
3336
import java.util.LinkedList;
@@ -59,6 +62,20 @@ final class AlpnExtension {
5962

6063
static final SSLStringizer alpnStringizer = new AlpnStringizer();
6164

65+
// Encoding Charset to convert between String and byte[]
66+
static final Charset alpnCharset;
67+
68+
static {
69+
String alpnCharsetString = AccessController.doPrivileged(
70+
(PrivilegedAction<String>) ()
71+
-> Security.getProperty("jdk.tls.alpnCharset"));
72+
if ((alpnCharsetString == null)
73+
|| (alpnCharsetString.length() == 0)) {
74+
alpnCharsetString = "ISO_8859_1";
75+
}
76+
alpnCharset = Charset.forName(alpnCharsetString);
77+
}
78+
6279
/**
6380
* The "application_layer_protocol_negotiation" extension.
6481
*
@@ -101,7 +118,7 @@ private AlpnSpec(HandshakeContext hc,
101118
"extension: empty application protocol name"));
102119
}
103120

104-
String appProtocol = new String(bytes, StandardCharsets.UTF_8);
121+
String appProtocol = new String(bytes, alpnCharset);
105122
protocolNames.add(appProtocol);
106123
}
107124

@@ -168,10 +185,10 @@ public byte[] produce(ConnectionContext context,
168185
return null;
169186
}
170187

171-
// Produce the extension.
188+
// Produce the extension: first find the overall length
172189
int listLength = 0; // ProtocolNameList length
173190
for (String ap : laps) {
174-
int length = ap.getBytes(StandardCharsets.UTF_8).length;
191+
int length = ap.getBytes(alpnCharset).length;
175192
if (length == 0) {
176193
// log the configuration problem
177194
if (SSLLogger.isOn && SSLLogger.isOn("ssl,handshake")) {
@@ -223,8 +240,10 @@ public byte[] produce(ConnectionContext context,
223240
byte[] extData = new byte[listLength + 2];
224241
ByteBuffer m = ByteBuffer.wrap(extData);
225242
Record.putInt16(m, listLength);
243+
244+
// opaque ProtocolName<1..2^8-1>;
226245
for (String ap : laps) {
227-
Record.putBytes8(m, ap.getBytes(StandardCharsets.UTF_8));
246+
Record.putBytes8(m, ap.getBytes(alpnCharset));
228247
}
229248

230249
// Update the context.
@@ -414,14 +433,14 @@ public byte[] produce(ConnectionContext context,
414433
}
415434

416435
// opaque ProtocolName<1..2^8-1>, RFC 7301.
417-
int listLen = shc.applicationProtocol.length() + 1;
418-
// 1: length byte
436+
byte[] bytes = shc.applicationProtocol.getBytes(alpnCharset);
437+
int listLen = bytes.length + 1; // 1: length byte
438+
419439
// ProtocolName protocol_name_list<2..2^16-1>, RFC 7301.
420440
byte[] extData = new byte[listLen + 2]; // 2: list length
421441
ByteBuffer m = ByteBuffer.wrap(extData);
422442
Record.putInt16(m, listLen);
423-
Record.putBytes8(m,
424-
shc.applicationProtocol.getBytes(StandardCharsets.UTF_8));
443+
Record.putBytes8(m, bytes);
425444

426445
// Update the context.
427446
shc.conContext.applicationProtocol = shc.applicationProtocol;

‎src/java.base/share/conf/security/java.security

+10
Original file line numberDiff line numberDiff line change
@@ -1309,3 +1309,13 @@ jdk.io.permissionsUseCanonicalPath=false
13091309
# System value prevails. The default value of the property is "false".
13101310
#
13111311
#jdk.security.allowNonCaAnchor=true
1312+
1313+
#
1314+
# The default Character set name (java.nio.charset.Charset.forName())
1315+
# for converting TLS ALPN values between byte arrays and Strings.
1316+
# Prior versions of the JDK may use UTF-8 as the default charset. If
1317+
# you experience interoperability issues, setting this property to UTF-8
1318+
# may help.
1319+
#
1320+
# jdk.tls.alpnCharset=UTF-8
1321+
jdk.tls.alpnCharset=ISO_8859_1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,306 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
// SunJSSE does not support dynamic system properties, no way to re-use
25+
// system properties in samevm/agentvm mode.
26+
27+
/*
28+
* @test
29+
* @bug 8254631
30+
* @summary Better support ALPN byte wire values in SunJSSE
31+
* @library /javax/net/ssl/templates
32+
* @run main/othervm AlpnGreaseTest
33+
*/
34+
import javax.net.ssl.*;
35+
import javax.net.ssl.SSLEngineResult.HandshakeStatus;
36+
import java.nio.ByteBuffer;
37+
import java.nio.charset.StandardCharsets;
38+
import java.util.Arrays;
39+
40+
/**
41+
* A SSLEngine usage example which simplifies the presentation
42+
* by removing the I/O and multi-threading concerns.
43+
*
44+
* The test creates two SSLEngines, simulating a client and server.
45+
* The "transport" layer consists two byte buffers: think of them
46+
* as directly connected pipes.
47+
*
48+
* Note, this is a *very* simple example: real code will be much more
49+
* involved. For example, different threading and I/O models could be
50+
* used, transport mechanisms could close unexpectedly, and so on.
51+
*
52+
* When this application runs, notice that several messages
53+
* (wrap/unwrap) pass before any application data is consumed or
54+
* produced.
55+
*/
56+
public class AlpnGreaseTest implements SSLContextTemplate {
57+
58+
private final SSLEngine clientEngine; // client Engine
59+
private final ByteBuffer clientOut; // write side of clientEngine
60+
private final ByteBuffer clientIn; // read side of clientEngine
61+
62+
private final SSLEngine serverEngine; // server Engine
63+
private final ByteBuffer serverOut; // write side of serverEngine
64+
private final ByteBuffer serverIn; // read side of serverEngine
65+
66+
// For data transport, this example uses local ByteBuffers. This
67+
// isn't really useful, but the purpose of this example is to show
68+
// SSLEngine concepts, not how to do network transport.
69+
private final ByteBuffer cTOs; // "reliable" transport client->server
70+
private final ByteBuffer sTOc; // "reliable" transport server->client
71+
72+
// These are the various 8-bit char values that could be sent as GREASE
73+
// values. We'll just make one big String here to make it easy to check
74+
// that the right values are being output.
75+
private static final byte[] greaseBytes = new byte[] {
76+
(byte) 0x0A, (byte) 0x1A, (byte) 0x2A, (byte) 0x3A,
77+
(byte) 0x4A, (byte) 0x5A, (byte) 0x6A, (byte) 0x7A,
78+
(byte) 0x8A, (byte) 0x9A, (byte) 0xAA, (byte) 0xBA,
79+
(byte) 0xCA, (byte) 0xDA, (byte) 0xEA, (byte) 0xFA
80+
};
81+
82+
private static final String greaseString =
83+
new String(greaseBytes, StandardCharsets.ISO_8859_1);
84+
85+
private static void findGreaseInClientHello(byte[] bytes) throws Exception {
86+
for (int i = 0; i < bytes.length - greaseBytes.length; i++) {
87+
if (Arrays.equals(bytes, i, i + greaseBytes.length,
88+
greaseBytes, 0, greaseBytes.length)) {
89+
System.out.println("Found greaseBytes in ClientHello at: " + i);
90+
return;
91+
}
92+
}
93+
throw new Exception("Couldn't find greaseBytes");
94+
}
95+
96+
private AlpnGreaseTest() throws Exception {
97+
serverEngine = configureServerEngine(
98+
createServerSSLContext().createSSLEngine());
99+
100+
clientEngine = configureClientEngine(
101+
createClientSSLContext().createSSLEngine());
102+
103+
// We'll assume the buffer sizes are the same
104+
// between client and server.
105+
SSLSession session = clientEngine.getSession();
106+
int appBufferMax = session.getApplicationBufferSize();
107+
int netBufferMax = session.getPacketBufferSize();
108+
109+
// We'll make the input buffers a bit bigger than the max needed
110+
// size, so that unwrap()s following a successful data transfer
111+
// won't generate BUFFER_OVERFLOWS.
112+
//
113+
// We'll use a mix of direct and indirect ByteBuffers for
114+
// tutorial purposes only. In reality, only use direct
115+
// ByteBuffers when they give a clear performance enhancement.
116+
clientIn = ByteBuffer.allocate(appBufferMax + 50);
117+
serverIn = ByteBuffer.allocate(appBufferMax + 50);
118+
119+
cTOs = ByteBuffer.allocateDirect(netBufferMax);
120+
sTOc = ByteBuffer.allocateDirect(netBufferMax);
121+
122+
clientOut = ByteBuffer.wrap("Hi Server, I'm Client".getBytes());
123+
serverOut = ByteBuffer.wrap("Hello Client, I'm Server".getBytes());
124+
}
125+
126+
//
127+
// Protected methods could be used to customize the test case.
128+
//
129+
130+
/*
131+
* Configure the client side engine.
132+
*/
133+
protected SSLEngine configureClientEngine(SSLEngine clientEngine) {
134+
clientEngine.setUseClientMode(true);
135+
136+
// Get/set parameters if needed
137+
SSLParameters paramsClient = clientEngine.getSSLParameters();
138+
paramsClient.setApplicationProtocols(new String[] { greaseString });
139+
140+
clientEngine.setSSLParameters(paramsClient);
141+
142+
return clientEngine;
143+
}
144+
145+
/*
146+
* Configure the server side engine.
147+
*/
148+
protected SSLEngine configureServerEngine(SSLEngine serverEngine) {
149+
serverEngine.setUseClientMode(false);
150+
serverEngine.setNeedClientAuth(true);
151+
152+
// Get/set parameters if needed
153+
//
154+
SSLParameters paramsServer = serverEngine.getSSLParameters();
155+
paramsServer.setApplicationProtocols(new String[] { greaseString });
156+
serverEngine.setSSLParameters(paramsServer);
157+
158+
return serverEngine;
159+
}
160+
161+
public static void main(String[] args) throws Exception {
162+
new AlpnGreaseTest().runTest();
163+
}
164+
165+
//
166+
// Private methods that used to build the common part of the test.
167+
//
168+
169+
private void runTest() throws Exception {
170+
SSLEngineResult clientResult;
171+
SSLEngineResult serverResult;
172+
173+
boolean dataDone = false;
174+
boolean firstClientWrap = true;
175+
while (isOpen(clientEngine) || isOpen(serverEngine)) {
176+
log("=================");
177+
178+
// client wrap
179+
log("---Client Wrap---");
180+
clientResult = clientEngine.wrap(clientOut, cTOs);
181+
logEngineStatus(clientEngine, clientResult);
182+
runDelegatedTasks(clientEngine);
183+
184+
if (firstClientWrap) {
185+
firstClientWrap = false;
186+
byte[] bytes = new byte[cTOs.position()];
187+
cTOs.duplicate().flip().get(bytes);
188+
findGreaseInClientHello(bytes);
189+
}
190+
191+
// server wrap
192+
log("---Server Wrap---");
193+
serverResult = serverEngine.wrap(serverOut, sTOc);
194+
logEngineStatus(serverEngine, serverResult);
195+
runDelegatedTasks(serverEngine);
196+
197+
cTOs.flip();
198+
sTOc.flip();
199+
200+
// client unwrap
201+
log("---Client Unwrap---");
202+
clientResult = clientEngine.unwrap(sTOc, clientIn);
203+
logEngineStatus(clientEngine, clientResult);
204+
runDelegatedTasks(clientEngine);
205+
206+
// server unwrap
207+
log("---Server Unwrap---");
208+
serverResult = serverEngine.unwrap(cTOs, serverIn);
209+
logEngineStatus(serverEngine, serverResult);
210+
runDelegatedTasks(serverEngine);
211+
212+
cTOs.compact();
213+
sTOc.compact();
214+
215+
// After we've transferred all application data between the client
216+
// and server, we close the clientEngine's outbound stream.
217+
// This generates a close_notify handshake message, which the
218+
// server engine receives and responds by closing itself.
219+
if (!dataDone && (clientOut.limit() == serverIn.position()) &&
220+
(serverOut.limit() == clientIn.position())) {
221+
222+
// Check ALPN Value
223+
String alpnServerValue = serverEngine.getApplicationProtocol();
224+
String alpnClientValue = clientEngine.getApplicationProtocol();
225+
226+
if (!alpnServerValue.equals(greaseString)
227+
|| !alpnClientValue.equals(greaseString)) {
228+
throw new Exception("greaseString didn't match");
229+
}
230+
231+
// A sanity check to ensure we got what was sent.
232+
checkTransfer(serverOut, clientIn);
233+
checkTransfer(clientOut, serverIn);
234+
235+
log("\tClosing clientEngine's *OUTBOUND*...");
236+
clientEngine.closeOutbound();
237+
logEngineStatus(clientEngine);
238+
239+
dataDone = true;
240+
log("\tClosing serverEngine's *OUTBOUND*...");
241+
serverEngine.closeOutbound();
242+
logEngineStatus(serverEngine);
243+
}
244+
}
245+
}
246+
247+
private static boolean isOpen(SSLEngine engine) {
248+
return (!engine.isOutboundDone() || !engine.isInboundDone());
249+
}
250+
251+
private static void logEngineStatus(SSLEngine engine) {
252+
log("\tCurrent HS State: " + engine.getHandshakeStatus());
253+
log("\tisInboundDone() : " + engine.isInboundDone());
254+
log("\tisOutboundDone(): " + engine.isOutboundDone());
255+
}
256+
257+
private static void logEngineStatus(
258+
SSLEngine engine, SSLEngineResult result) {
259+
log("\tResult Status : " + result.getStatus());
260+
log("\tResult HS Status : " + result.getHandshakeStatus());
261+
log("\tEngine HS Status : " + engine.getHandshakeStatus());
262+
log("\tisInboundDone() : " + engine.isInboundDone());
263+
log("\tisOutboundDone() : " + engine.isOutboundDone());
264+
log("\tMore Result : " + result);
265+
}
266+
267+
private static void log(String message) {
268+
System.err.println(message);
269+
}
270+
271+
// If the result indicates that we have outstanding tasks to do,
272+
// go ahead and run them in this thread.
273+
private static void runDelegatedTasks(SSLEngine engine) throws Exception {
274+
if (engine.getHandshakeStatus() == HandshakeStatus.NEED_TASK) {
275+
Runnable runnable;
276+
while ((runnable = engine.getDelegatedTask()) != null) {
277+
log(" running delegated task...");
278+
runnable.run();
279+
}
280+
HandshakeStatus hsStatus = engine.getHandshakeStatus();
281+
if (hsStatus == HandshakeStatus.NEED_TASK) {
282+
throw new Exception(
283+
"handshake shouldn't need additional tasks");
284+
}
285+
logEngineStatus(engine);
286+
}
287+
}
288+
289+
// Simple check to make sure everything came across as expected.
290+
private static void checkTransfer(ByteBuffer a, ByteBuffer b)
291+
throws Exception {
292+
a.flip();
293+
b.flip();
294+
295+
if (!a.equals(b)) {
296+
throw new Exception("Data didn't transfer cleanly");
297+
} else {
298+
log("\tData transferred cleanly");
299+
}
300+
301+
a.position(a.limit());
302+
b.position(b.limit());
303+
a.limit(a.capacity());
304+
b.limit(b.capacity());
305+
}
306+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Dec 2, 2020

@openjdk-notifier[bot]
Please sign in to comment.