All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.http.ssl.SslSelectChannelEndPoint Maven / Gradle / Ivy

There is a newer version: 12.0.13
Show newest version
// ========================================================================
// Copyright (c) 2004-2009 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
// The Eclipse Public License is available at 
// http://www.eclipse.org/legal/epl-v10.html
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
// You may elect to redistribute this code under either of these licenses. 
// ========================================================================

package org.eclipse.jetty.http.ssl;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.SocketChannel;

import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLEngineResult;
import javax.net.ssl.SSLException;
import javax.net.ssl.SSLSession;
import javax.net.ssl.SSLEngineResult.HandshakeStatus;

import org.eclipse.jetty.io.Buffer;
import org.eclipse.jetty.io.Buffers;
import org.eclipse.jetty.io.nio.NIOBuffer;
import org.eclipse.jetty.io.nio.SelectChannelEndPoint;
import org.eclipse.jetty.io.nio.SelectorManager;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;

/* ------------------------------------------------------------ */
/**
 * SslSelectChannelEndPoint
 * 

* A SelectChannelEndPoint that uses an {@link SSLEngine} to handle an * SSL connection. *

* There is a named logger "org.eclipse.jetty.http.ssl" *

*/ public class SslSelectChannelEndPoint extends SelectChannelEndPoint { static Logger __log = Log.getLogger("org.eclipse.jetty.http.ssl"); private static final ByteBuffer[] __NO_BUFFERS={}; private final Buffers _buffers; private final SSLEngine _engine; private final SSLSession _session; private final ByteBuffer _inBuffer; private final NIOBuffer _inNIOBuffer; private final ByteBuffer _outBuffer; private final NIOBuffer _outNIOBuffer; private final NIOBuffer[] _reuseBuffer=new NIOBuffer[2]; private final ByteBuffer[] _gather=new ByteBuffer[2]; private boolean _closing=false; private SSLEngineResult _result; private final boolean _debug = __log.isDebugEnabled(); // snapshot debug status for optimizer /* ------------------------------------------------------------ */ public SslSelectChannelEndPoint(Buffers buffers,SocketChannel channel, SelectorManager.SelectSet selectSet, SelectionKey key, SSLEngine engine) throws IOException { super(channel,selectSet,key); _buffers=buffers; // ssl _engine=engine; _session=engine.getSession(); // TODO pool buffers and use only when needed. _outNIOBuffer=(NIOBuffer)_buffers.getBuffer(_session.getPacketBufferSize()); _outBuffer=_outNIOBuffer.getByteBuffer(); _inNIOBuffer=(NIOBuffer)_buffers.getBuffer(_session.getPacketBufferSize()); _inBuffer=_inNIOBuffer.getByteBuffer(); if (_debug) __log.debug(_session+" channel="+channel); } // TODO get rid of these dumps public void dump() { Log.info(""+_result); // System.err.println(h.toString()); // System.err.println("--"); } /* ------------------------------------------------------------ */ /* (non-Javadoc) * @see org.eclipse.io.nio.SelectChannelEndPoint#idleExpired() */ protected void idleExpired() { try { getSelectManager().dispatch(new Runnable() { public void run() { doIdleExpired(); } }); } catch(Exception e) { Log.ignore(e); } } /* ------------------------------------------------------------ */ protected void doIdleExpired() { super.idleExpired(); } /* ------------------------------------------------------------ */ public void close() throws IOException { // TODO - this really should not be done in a loop here - but with async callbacks. _closing=true; try { if (isBufferingOutput()) { flush(); while (isOpen() && isBufferingOutput()) { Thread.sleep(100); // TODO non blocking flush(); } } _engine.closeOutbound(); loop: while (isOpen() && !(_engine.isInboundDone() && _engine.isOutboundDone())) { if (isBufferingOutput()) { flush(); while (isOpen() && isBufferingOutput()) { Thread.sleep(100); // TODO non blocking flush(); } } if (_debug) __log.debug(_session+" closing "+_engine.getHandshakeStatus()); switch(_engine.getHandshakeStatus()) { case FINISHED: case NOT_HANDSHAKING: break loop; case NEED_UNWRAP: Buffer buffer =_buffers.getBuffer(_engine.getSession().getApplicationBufferSize()); try { ByteBuffer bbuffer = ((NIOBuffer)buffer).getByteBuffer(); if (!unwrap(bbuffer) && _engine.getHandshakeStatus()==HandshakeStatus.NEED_UNWRAP) { break loop; } } catch(SSLException e) { Log.ignore(e); } finally { _buffers.returnBuffer(buffer); } break; case NEED_TASK: { Runnable task; while ((task=_engine.getDelegatedTask())!=null) { task.run(); } break; } case NEED_WRAP: { try { _outNIOBuffer.compact(); int put=_outNIOBuffer.putIndex(); _outBuffer.position(put); _result=null; _result=_engine.wrap(__NO_BUFFERS,_outBuffer); if (_debug) __log.debug(_session+" close wrap "+_result); _outNIOBuffer.setPutIndex(put+_result.bytesProduced()); } finally { _outBuffer.position(0); } break; } } } } catch(IOException e) { Log.ignore(e); } catch (InterruptedException e) { Log.ignore(e); } finally { super.close(); if (_inNIOBuffer!=null) _buffers.returnBuffer(_inNIOBuffer); if (_outNIOBuffer!=null) _buffers.returnBuffer(_outNIOBuffer); if (_reuseBuffer[0]!=null) _buffers.returnBuffer(_reuseBuffer[0]); if (_reuseBuffer[1]!=null) _buffers.returnBuffer(_reuseBuffer[1]); } } /* ------------------------------------------------------------ */ /* */ public int fill(Buffer buffer) throws IOException { final ByteBuffer bbuf=extractInputBuffer(buffer); int size=buffer.length(); HandshakeStatus initialStatus = _engine.getHandshakeStatus(); //noinspection SynchronizationOnLocalVariableOrMethodParameter synchronized (bbuf) { try { unwrap(bbuf); int wraps=0; loop: while (true) { if (isBufferingOutput()) { flush(); if (isBufferingOutput()) break loop; } switch(_engine.getHandshakeStatus()) { case FINISHED: case NOT_HANDSHAKING: if (_closing) return -1; break loop; case NEED_UNWRAP: if (!unwrap(bbuf) && _engine.getHandshakeStatus()==HandshakeStatus.NEED_UNWRAP) { break loop; } break; case NEED_TASK: { Runnable task; while ((task=_engine.getDelegatedTask())!=null) { task.run(); } if(initialStatus==HandshakeStatus.NOT_HANDSHAKING && _engine.getHandshakeStatus()==HandshakeStatus.NEED_UNWRAP && wraps==0) { // This should be NEED_WRAP // The fix simply detects the signature of the bug and then close the connection (fail-fast) so that ff3 will delegate to using SSL instead of TLS. // This is a jvm bug on java1.6 where the SSLEngine expects more data from the initial handshake when the client(ff3-tls) already had given it. // See http://jira.codehaus.org/browse/JETTY-567 for more details if (_debug) __log.warn(_session+" JETTY-567"); return -1; } break; } case NEED_WRAP: { wraps++; synchronized(_outBuffer) { try { _outNIOBuffer.compact(); int put=_outNIOBuffer.putIndex(); _outBuffer.position(); _result=null; _result=_engine.wrap(__NO_BUFFERS,_outBuffer); if (_debug) __log.debug(_session+" fill wrap "+_result); switch(_result.getStatus()) { case BUFFER_OVERFLOW: case BUFFER_UNDERFLOW: Log.warn("wrap {}",_result); case CLOSED: _closing=true; } _outNIOBuffer.setPutIndex(put+_result.bytesProduced()); } finally { _outBuffer.position(0); } } flush(); break; } } } } catch(SSLException e) { Log.warn(e.toString()); Log.debug(e); throw e; } finally { buffer.setPutIndex(bbuf.position()); bbuf.position(0); } } return buffer.length()-size; } /* ------------------------------------------------------------ */ public int flush(Buffer buffer) throws IOException { return flush(buffer,null,null); } /* ------------------------------------------------------------ */ /* */ public int flush(Buffer header, Buffer buffer, Buffer trailer) throws IOException { int consumed=0; int available=header.length(); if (buffer!=null) available+=buffer.length(); int tries=0; loop: while (true) { if (_outNIOBuffer.length()>0) { flush(); if (isBufferingOutput()) break loop; } switch(_engine.getHandshakeStatus()) { case FINISHED: case NOT_HANDSHAKING: if (_closing || available==0) { if (consumed==0) consumed= -1; break loop; } int c; if (header!=null && header.length()>0) { if (buffer!=null && buffer.length()>0) c=wrap(header,buffer); else c=wrap(header); } else c=wrap(buffer); if (c>0) { consumed+=c; available-=c; } else if (c<0) { if (consumed==0) consumed=-1; break loop; } break; case NEED_UNWRAP: Buffer buf =_buffers.getBuffer(_engine.getSession().getApplicationBufferSize()); try { ByteBuffer bbuf = ((NIOBuffer)buf).getByteBuffer(); if (!unwrap(bbuf) && _engine.getHandshakeStatus()==HandshakeStatus.NEED_UNWRAP) { break loop; } } finally { _buffers.returnBuffer(buf); } break; case NEED_TASK: { Runnable task; while ((task=_engine.getDelegatedTask())!=null) { task.run(); } break; } case NEED_WRAP: { synchronized(_outBuffer) { try { _outNIOBuffer.compact(); int put=_outNIOBuffer.putIndex(); _outBuffer.position(); _result=null; _result=_engine.wrap(__NO_BUFFERS,_outBuffer); if (_debug) __log.debug(_session+" flush wrap "+_result); switch(_result.getStatus()) { case BUFFER_OVERFLOW: case BUFFER_UNDERFLOW: Log.warn("unwrap {}",_result); case CLOSED: _closing=true; } _outNIOBuffer.setPutIndex(put+_result.bytesProduced()); } finally { _outBuffer.position(0); } } flush(); if (isBufferingOutput()) break loop; break; } } } return consumed; } /* ------------------------------------------------------------ */ public void flush() throws IOException { int len=_outNIOBuffer.length(); if (isBufferingOutput()) { int flushed=super.flush(_outNIOBuffer); if (_debug) __log.debug(_session+" Flushed "+flushed+"/"+len); if (isBufferingOutput()) { Thread.yield(); flushed=super.flush(_outNIOBuffer); if (_debug) __log.debug(_session+" flushed "+flushed+"/"+len); } } } /* ------------------------------------------------------------ */ private ByteBuffer extractInputBuffer(Buffer buffer) { assert buffer instanceof NIOBuffer; NIOBuffer nbuf=(NIOBuffer)buffer; ByteBuffer bbuf=nbuf.getByteBuffer(); bbuf.position(buffer.putIndex()); return bbuf; } /* ------------------------------------------------------------ */ /** * @return true if progress is made */ private boolean unwrap(ByteBuffer buffer) throws IOException { if (_inNIOBuffer.hasContent()) _inNIOBuffer.compact(); else _inNIOBuffer.clear(); int total_filled=0; while (_inNIOBuffer.space()>0 && super.isOpen()) { try { int filled=super.fill(_inNIOBuffer); if (_debug) __log.debug(_session+" unwrap filled "+filled); if (filled<=0) break; total_filled+=filled; } catch(IOException e) { if (_inNIOBuffer.length()==0) throw e; break; } } if (_inNIOBuffer.length()==0) { if(!isOpen()) throw new org.eclipse.jetty.io.EofException(); return false; } try { _inBuffer.position(_inNIOBuffer.getIndex()); _inBuffer.limit(_inNIOBuffer.putIndex()); _result=null; _result=_engine.unwrap(_inBuffer,buffer); if (_debug) __log.debug(_session+" unwrap unwrap "+_result); _inNIOBuffer.skip(_result.bytesConsumed()); } finally { _inBuffer.position(0); _inBuffer.limit(_inBuffer.capacity()); } switch(_result.getStatus()) { case BUFFER_OVERFLOW: throw new IllegalStateException(_result.toString()); case BUFFER_UNDERFLOW: if (Log.isDebugEnabled()) Log.debug("unwrap {}",_result); return (total_filled > 0); case CLOSED: _closing=true; case OK: return total_filled>0 ||_result.bytesConsumed()>0 || _result.bytesProduced()>0; default: Log.warn("unwrap "+_result); throw new IOException(_result.toString()); } } /* ------------------------------------------------------------ */ private ByteBuffer extractOutputBuffer(Buffer buffer,int n) { if (buffer.buffer() instanceof NIOBuffer) { NIOBuffer nBuf=(NIOBuffer)buffer.buffer(); return nBuf.getByteBuffer(); } else { if (_reuseBuffer[n]==null) _reuseBuffer[n] = (NIOBuffer)_buffers.getBuffer(_session.getApplicationBufferSize()); NIOBuffer buf = _reuseBuffer[n]; buf.clear(); buf.put(buffer); return buf.getByteBuffer(); } } /* ------------------------------------------------------------ */ private int wrap(final Buffer header, final Buffer buffer) throws IOException { _gather[0]=extractOutputBuffer(header,0); synchronized(_gather[0]) { _gather[0].position(header.getIndex()); _gather[0].limit(header.putIndex()); _gather[1]=extractOutputBuffer(buffer,1); synchronized(_gather[1]) { _gather[1].position(buffer.getIndex()); _gather[1].limit(buffer.putIndex()); synchronized(_outBuffer) { int consumed=0; try { _outNIOBuffer.clear(); _outBuffer.position(0); _outBuffer.limit(_outBuffer.capacity()); _result=null; _result=_engine.wrap(_gather,_outBuffer); if (_debug) __log.debug(_session+" wrap wrap "+_result); _outNIOBuffer.setGetIndex(0); _outNIOBuffer.setPutIndex(_result.bytesProduced()); consumed=_result.bytesConsumed(); } finally { _outBuffer.position(0); if (consumed>0) { int len=consumed0) { int len=consumed0?_result.bytesConsumed():-1; default: Log.warn("wrap "+_result); throw new IOException(_result.toString()); } } /* ------------------------------------------------------------ */ private int wrap(final Buffer buffer) throws IOException { _gather[0]=extractOutputBuffer(buffer,0); synchronized(_gather[0]) { _gather[0].position(buffer.getIndex()); _gather[0].limit(buffer.putIndex()); int consumed=0; synchronized(_outBuffer) { try { _outNIOBuffer.clear(); _outBuffer.position(0); _outBuffer.limit(_outBuffer.capacity()); _result=null; _result=_engine.wrap(_gather[0],_outBuffer); if (_debug) __log.debug(_session+" wrap wrap "+_result); _outNIOBuffer.setGetIndex(0); _outNIOBuffer.setPutIndex(_result.bytesProduced()); consumed=_result.bytesConsumed(); } finally { _outBuffer.position(0); if (consumed>0) { int len=consumed0?_result.bytesConsumed():-1; default: Log.warn("wrap "+_result); throw new IOException(_result.toString()); } } /* ------------------------------------------------------------ */ public boolean isBufferingInput() { return _inNIOBuffer.hasContent(); } /* ------------------------------------------------------------ */ public boolean isBufferingOutput() { return _outNIOBuffer.hasContent(); } /* ------------------------------------------------------------ */ public boolean isBufferred() { return true; } /* ------------------------------------------------------------ */ public SSLEngine getSSLEngine() { return _engine; } /* ------------------------------------------------------------ */ public String toString() { return super.toString()+","+_engine.getHandshakeStatus()+", in/out="+_inNIOBuffer.length()+"/"+_outNIOBuffer.length()+" "+_result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy