2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-11-03 08:30:18 +00:00
|
|
|
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2010-05-25 22:58:33 +00:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-10 02:07:05 +00:00
|
|
|
//
|
|
|
|
// SunJSSE does not support dynamic system properties, no way to re-use
|
|
|
|
// system properties in samevm/agentvm mode.
|
|
|
|
//
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* @test
|
|
|
|
* @bug 4969459
|
|
|
|
* @summary Delegated tasks are not reflecting the subclasses of SSLException
|
2013-09-10 02:07:05 +00:00
|
|
|
* @run main/othervm DelegatedTaskWrongException
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import javax.net.ssl.*;
|
|
|
|
import javax.net.ssl.SSLEngineResult.*;
|
|
|
|
import java.io.*;
|
|
|
|
import java.security.*;
|
|
|
|
import java.nio.*;
|
|
|
|
|
|
|
|
public class DelegatedTaskWrongException {
|
|
|
|
|
|
|
|
private static boolean debug = false;
|
|
|
|
|
|
|
|
private SSLContext sslc;
|
|
|
|
private SSLEngine ssle1; // client
|
|
|
|
private SSLEngine ssle2; // server
|
|
|
|
|
2014-03-05 07:24:34 +00:00
|
|
|
private static String pathToStores = "../../../../javax/net/ssl/etc";
|
2007-12-01 00:00:00 +00:00
|
|
|
private static String keyStoreFile = "keystore";
|
|
|
|
private static String trustStoreFile = "truststore";
|
|
|
|
private static String passwd = "passphrase";
|
|
|
|
|
|
|
|
private static String keyFilename =
|
|
|
|
System.getProperty("test.src", "./") + "/" + pathToStores +
|
|
|
|
"/" + keyStoreFile;
|
|
|
|
private static String trustFilename =
|
|
|
|
System.getProperty("test.src", "./") + "/" + pathToStores +
|
|
|
|
"/" + trustStoreFile;
|
|
|
|
|
|
|
|
private ByteBuffer appOut1; // write side of ssle1
|
|
|
|
private ByteBuffer appIn1; // read side of ssle1
|
|
|
|
private ByteBuffer appOut2; // write side of ssle2
|
|
|
|
private ByteBuffer appIn2; // read side of ssle2
|
|
|
|
|
|
|
|
private ByteBuffer oneToTwo; // "reliable" transport ssle1->ssle2
|
|
|
|
private ByteBuffer twoToOne; // "reliable" transport ssle2->ssle1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Majority of the test case is here, setup is done below.
|
|
|
|
*/
|
|
|
|
private void createSSLEngines() throws Exception {
|
|
|
|
ssle1 = sslc.createSSLEngine("client", 1);
|
|
|
|
ssle1.setUseClientMode(true);
|
|
|
|
|
|
|
|
ssle2 = sslc.createSSLEngine();
|
|
|
|
ssle2.setUseClientMode(false);
|
|
|
|
|
|
|
|
ssle1.setEnabledProtocols(new String [] { "SSLv3" });
|
|
|
|
ssle2.setEnabledProtocols(new String [] { "TLSv1" });
|
|
|
|
}
|
|
|
|
|
|
|
|
private void runTest() throws Exception {
|
|
|
|
boolean dataDone = false;
|
|
|
|
|
|
|
|
createSSLEngines();
|
|
|
|
createBuffers();
|
|
|
|
|
|
|
|
SSLEngineResult result1; // ssle1's results from last operation
|
|
|
|
SSLEngineResult result2; // ssle2's results from last operation
|
|
|
|
|
|
|
|
result1 = ssle1.wrap(appOut1, oneToTwo);
|
|
|
|
oneToTwo.flip();
|
|
|
|
|
|
|
|
result2 = ssle2.unwrap(oneToTwo, appIn2);
|
|
|
|
|
|
|
|
runDelegatedTasks(result2, ssle2);
|
|
|
|
|
|
|
|
try {
|
|
|
|
/*
|
|
|
|
* We should be getting a SSLHandshakeException.
|
|
|
|
* If this changes, we'll need to update this test.
|
|
|
|
* Anything else and we fail.
|
|
|
|
*/
|
|
|
|
result2 = ssle2.unwrap(oneToTwo, appIn2);
|
|
|
|
throw new Exception(
|
|
|
|
"TEST FAILED: Didn't generate any exception");
|
|
|
|
} catch (SSLHandshakeException e) {
|
|
|
|
System.out.println("TEST PASSED: Caught right exception");
|
|
|
|
} catch (SSLException e) {
|
|
|
|
System.out.println("TEST FAILED: Generated wrong exception");
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String args[]) throws Exception {
|
2014-11-03 08:30:18 +00:00
|
|
|
// reset the security property to make sure that the algorithms
|
|
|
|
// and keys used in this test are not disabled.
|
|
|
|
Security.setProperty("jdk.tls.disabledAlgorithms", "");
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
DelegatedTaskWrongException test;
|
|
|
|
|
|
|
|
test = new DelegatedTaskWrongException();
|
|
|
|
|
|
|
|
test.createSSLEngines();
|
|
|
|
|
|
|
|
test.runTest();
|
|
|
|
|
|
|
|
System.out.println("Test Passed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* **********************************************************
|
|
|
|
* Majority of the test case is above, below is just setup stuff
|
|
|
|
* **********************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
public DelegatedTaskWrongException() throws Exception {
|
|
|
|
sslc = getSSLContext(keyFilename, trustFilename);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create an initialized SSLContext to use for this test.
|
|
|
|
*/
|
|
|
|
private SSLContext getSSLContext(String keyFile, String trustFile)
|
|
|
|
throws Exception {
|
|
|
|
|
|
|
|
KeyStore ks = KeyStore.getInstance("JKS");
|
|
|
|
KeyStore ts = KeyStore.getInstance("JKS");
|
|
|
|
|
|
|
|
char[] passphrase = "passphrase".toCharArray();
|
|
|
|
|
|
|
|
ks.load(new FileInputStream(keyFile), passphrase);
|
|
|
|
ts.load(new FileInputStream(trustFile), passphrase);
|
|
|
|
|
|
|
|
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
|
|
|
|
kmf.init(ks, passphrase);
|
|
|
|
|
|
|
|
TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509");
|
|
|
|
tmf.init(ts);
|
|
|
|
|
|
|
|
SSLContext sslCtx = SSLContext.getInstance("TLS");
|
|
|
|
|
|
|
|
sslCtx.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null);
|
|
|
|
|
|
|
|
return sslCtx;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void createBuffers() {
|
|
|
|
// Size the buffers as appropriate.
|
|
|
|
|
|
|
|
SSLSession session = ssle1.getSession();
|
|
|
|
int appBufferMax = session.getApplicationBufferSize();
|
|
|
|
int netBufferMax = session.getPacketBufferSize();
|
|
|
|
|
|
|
|
appIn1 = ByteBuffer.allocateDirect(appBufferMax + 50);
|
|
|
|
appIn2 = ByteBuffer.allocateDirect(appBufferMax + 50);
|
|
|
|
|
|
|
|
oneToTwo = ByteBuffer.allocateDirect(netBufferMax);
|
|
|
|
twoToOne = ByteBuffer.allocateDirect(netBufferMax);
|
|
|
|
|
|
|
|
appOut1 = ByteBuffer.wrap("Hi Engine2, I'm SSLEngine1".getBytes());
|
|
|
|
appOut2 = ByteBuffer.wrap("Hello Engine1, I'm SSLEngine2".getBytes());
|
|
|
|
|
|
|
|
log("AppOut1 = " + appOut1);
|
|
|
|
log("AppOut2 = " + appOut2);
|
|
|
|
log("");
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void runDelegatedTasks(SSLEngineResult result,
|
|
|
|
SSLEngine engine) throws Exception {
|
|
|
|
|
|
|
|
if (result.getHandshakeStatus() == HandshakeStatus.NEED_TASK) {
|
|
|
|
Runnable runnable;
|
|
|
|
while ((runnable = engine.getDelegatedTask()) != null) {
|
|
|
|
log("running delegated task...");
|
|
|
|
runnable.run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isEngineClosed(SSLEngine engine) {
|
|
|
|
return (engine.isOutboundDone() && engine.isInboundDone());
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void checkTransfer(ByteBuffer a, ByteBuffer b)
|
|
|
|
throws Exception {
|
|
|
|
a.flip();
|
|
|
|
b.flip();
|
|
|
|
|
|
|
|
if (!a.equals(b)) {
|
|
|
|
throw new Exception("Data didn't transfer cleanly");
|
|
|
|
} else {
|
|
|
|
log("Data transferred cleanly");
|
|
|
|
}
|
|
|
|
|
|
|
|
a.position(a.limit());
|
|
|
|
b.position(b.limit());
|
|
|
|
a.limit(a.capacity());
|
|
|
|
b.limit(b.capacity());
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void log(String str) {
|
|
|
|
if (debug) {
|
|
|
|
System.out.println(str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|