1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*
* Copyright (c) 2018, 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
* 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.
*
* 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.
*/
/**
* @test
* @bug 8212261
* @summary Add SSLSession accessors to HttpsURLConnection and
* SecureCacheResponse
* @library /test/lib
* @modules jdk.httpserver
* @build jdk.test.lib.net.SimpleSSLContext
* @run main/othervm DummyCacheResponse
*/
import java.io.*;
import java.net.*;
import javax.net.ssl.*;
import java.util.*;
import java.util.concurrent.*;
import java.security.Principal;
import java.security.cert.Certificate;
import jdk.test.lib.net.SimpleSSLContext;
import com.sun.net.httpserver.*;
public class DummyCacheResponse extends SecureCacheResponse {
static SSLContext sslContext;
private final SSLSession cachedSession;
private final Map<String, List<String>> rqstHeaders;
public static void main(String[] args) throws Exception {
ResponseCache reservedResponseCache = ResponseCache.getDefault();
HttpsServer httpsServer = null;
ExecutorService executor = null;
try {
ResponseCache.setDefault(new DummyResponseCache());
httpsServer = HttpsServer.create(new InetSocketAddress(0), 0);
HttpContext c2 =
httpsServer.createContext("/test", new HttpsHandler());
executor = Executors.newCachedThreadPool();
httpsServer.setExecutor(executor);
sslContext = new SimpleSSLContext().get();
httpsServer.setHttpsConfigurator(new HttpsConfigurator(sslContext));
httpsServer.start();
int httpsPort = httpsServer.getAddress().getPort();
System.out.println(
"Server address: " + httpsServer.getAddress());
// the 1st connection
runTest(httpsPort, false);
// the 2nd connection that use the cache
runTest(httpsPort, true);
} finally {
if (httpsServer != null) {
httpsServer.stop(2);
}
if (executor != null) {
executor.shutdown();
}
ResponseCache.setDefault(reservedResponseCache);
}
}
private static class HttpsHandler implements HttpHandler {
public void handle(HttpExchange httpExchange) throws IOException {
InputStream is = httpExchange.getRequestBody();
while (is.read() != -1) {
// read to EOF
}
is.close();
httpExchange.sendResponseHeaders(200, 0);
httpExchange.close();
}
}
static void runTest(int port, boolean useCache) throws Exception {
URL url = new URL(
String.format("https://localhost:%s/test/", port));
HttpsURLConnection urlc =
(HttpsURLConnection)url.openConnection();
urlc.setSSLSocketFactory(sslContext.getSocketFactory());
urlc.setHostnameVerifier(new HostnameVerifier() {
public boolean verify(String s, SSLSession s1) {
return true;
}
});
try (InputStream is = urlc.getInputStream()) {
while (is.read() != -1) {
// read to EOF
}
SSLSession session = urlc.getSSLSession().orElseThrow();
if (!Objects.equals(urlc.getCipherSuite(),
session.getCipherSuite())) {
throw new Exception(
"Incorrect SSLSession for HTTPsURLConnection: " +
urlc.getCipherSuite() + "/" + session.getCipherSuite());
}
// Make sure the cache implementation is used.
try {
urlc.getServerCertificates();
if (useCache) {
throw new Exception(
"The SecureCacheResponse impl should be used");
}
} catch (UnsupportedOperationException uoe) {
if (!useCache) {
throw new Exception(
"The SecureCacheResponse impl should not be used");
}
}
}
}
DummyCacheResponse(SSLSession sslSession,
Map<String, List<String>> rqstHeaders) {
this.rqstHeaders = rqstHeaders;
this.cachedSession = sslSession;
}
@Override
public String getCipherSuite() {
return cachedSession.getCipherSuite();
}
@Override
public List<Certificate> getLocalCertificateChain() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List<Certificate> getServerCertificateChain()
throws SSLPeerUnverifiedException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Principal getLocalPrincipal() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Map<String, List<String>> getHeaders() throws IOException {
return rqstHeaders;
}
@Override
public InputStream getBody() throws IOException {
return new ByteArrayInputStream(new byte[0]);
}
@Override
public Optional<SSLSession> getSSLSession() {
return Optional.of(cachedSession);
}
private static class DummyResponseCache extends ResponseCache {
Map<URI, SSLSession> httpsConnections = new HashMap<>();
@Override
public CacheResponse get(URI uri, String rqstMethod,
Map<String, List<String>> rqstHeaders) throws IOException {
if (httpsConnections.containsKey(uri)) {
return new DummyCacheResponse(
httpsConnections.get(uri), rqstHeaders);
}
return null;
}
@Override
public CacheRequest put(URI uri,
URLConnection conn) throws IOException {
if (conn instanceof HttpsURLConnection) {
HttpsURLConnection httpsConn = (HttpsURLConnection)conn;
httpsConnections.putIfAbsent(
uri, httpsConn.getSSLSession().orElseThrow());
}
return null;
}
}
}
|