org.glassfish.grizzly.config.ssl.JSSE14Support Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project for IBM JDK
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2007-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*
*
* This file incorporates work covered by the following copyright and
* permission notice:
*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.glassfish.grizzly.config.ssl;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.SocketException;
import java.security.cert.Certificate;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.net.ssl.HandshakeCompletedEvent;
import javax.net.ssl.HandshakeCompletedListener;
import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLException;
import javax.net.ssl.SSLSession;
import javax.net.ssl.SSLSocket;
import org.glassfish.grizzly.Grizzly;
// START SJSAS 6439313
// END SJSAS 6439313
/* JSSESupport
Concrete implementation class for JSSE
Support classes.
This will only work with JDK 1.2 and up since it
depends on JDK 1.2's certificate support
@author EKR
@author Craig R. McClanahan
Parts cribbed from JSSECertCompat
Parts cribbed from CertificatesValve
*/
class JSSE14Support extends JSSESupport {
/**
* Default Logger.
*/
private final static Logger logger = Grizzly.logger(JSSE14Support.class);
final Listener listener = new Listener();
public JSSE14Support(SSLSocket sock){
super(sock);
sock.addHandshakeCompletedListener(listener);
}
// START SJSAS 6439313
public JSSE14Support(SSLEngine sslEngine){
super(sslEngine);
}
// END SJSAS 6439313
@Override
protected void handShake() throws IOException {
ssl.setNeedClientAuth(true);
synchronousHandshake(ssl);
}
/**
* JSSE in JDK 1.4 has an issue/feature that requires us to do a
* read() to get the client-cert. As suggested by Andreas
* Sterbenz
*/
private void synchronousHandshake(SSLSocket socket)
throws IOException {
InputStream in = socket.getInputStream();
int oldTimeout = socket.getSoTimeout();
socket.setSoTimeout(1000);
byte[] b = new byte[0];
listener.reset();
socket.startHandshake();
int maxTries = 60; // 60 * 1000 = example 1 minute time out
for (int i = 0; i < maxTries; i++) {
if(logger.isLoggable(Level.FINE))
logger.log(Level.FINE, "Reading for try #{0}", i);
try {
final int bytesRead = in.read(b);
assert bytesRead <= 0;
} catch(SSLException sslex) {
//logger.log(Level.SEVERE,"SSL Error getting client Certs",sslex);
throw sslex;
} catch (IOException e) {
// ignore - presumably the timeout
}
if (listener.completed) {
break;
}
}
socket.setSoTimeout(oldTimeout);
if (!listener.completed) {
throw new SocketException("SSL Cert handshake timeout");
}
}
/** Return the X509certificates or null if we can't get them.
* XXX We should allow unverified certificates
*/
@Override
protected X509Certificate [] getX509Certificates(SSLSession session)
throws IOException
{
Certificate [] certs;
try {
certs = session.getPeerCertificates();
} catch( Throwable t ) {
if (logger.isLoggable(Level.FINEST))
logger.log(Level.FINEST,"Error getting client certs",t);
return null;
}
if( certs==null ) return null;
X509Certificate [] x509Certs = new X509Certificate[certs.length];
for(int i=0; i < certs.length; i++) {
if( certs[i] instanceof X509Certificate ) {
// always currently true with the JSSE 1.1.x
x509Certs[i] = (X509Certificate)certs[i];
} else {
try {
byte [] buffer = certs[i].getEncoded();
CertificateFactory cf =
CertificateFactory.getInstance("X.509");
ByteArrayInputStream stream =
new ByteArrayInputStream(buffer);
x509Certs[i] = (X509Certificate)
cf.generateCertificate(stream);
} catch(Exception ex) {
logger.log(Level.SEVERE,"Error translating cert " + certs[i], ex);
return null;
}
}
if(logger.isLoggable(Level.FINE))
logger.log(Level.FINE, "Cert #{0} = {1}", new Object[]{i, x509Certs[i]});
}
if(x509Certs.length < 1)
return null;
return x509Certs;
}
private static class Listener implements HandshakeCompletedListener {
volatile boolean completed = false;
@Override
public void handshakeCompleted(HandshakeCompletedEvent event) {
completed = true;
}
void reset() {
completed = false;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy