Search in sources :

Example 1 with Http2StreamSourceChannel

use of io.undertow.protocols.http2.Http2StreamSourceChannel in project undertow by undertow-io.

the class Http2ReceiveListener method handleRequests.

private void handleRequests(Http2Channel channel, Http2StreamSourceChannel frame) {
    //we have a request
    final Http2StreamSourceChannel dataChannel = frame;
    final Http2ServerConnection connection = new Http2ServerConnection(channel, dataChannel, undertowOptions, bufferSize, rootHandler);
    // Check request headers.
    if (!checkRequestHeaders(dataChannel.getHeaders())) {
        channel.sendRstStream(frame.getStreamId(), Http2Channel.ERROR_PROTOCOL_ERROR);
        try {
            Channels.drain(frame, Long.MAX_VALUE);
        } catch (IOException e) {
        // ignore, this is expected because of the RST
        }
        return;
    }
    final HttpServerExchange exchange = new HttpServerExchange(connection, dataChannel.getHeaders(), dataChannel.getResponseChannel().getHeaders(), maxEntitySize);
    connection.setExchange(exchange);
    dataChannel.setMaxStreamSize(maxEntitySize);
    exchange.setRequestScheme(exchange.getRequestHeaders().getFirst(SCHEME));
    exchange.setProtocol(Protocols.HTTP_2_0);
    exchange.setRequestMethod(Methods.fromString(exchange.getRequestHeaders().getFirst(METHOD)));
    exchange.getRequestHeaders().put(Headers.HOST, exchange.getRequestHeaders().getFirst(AUTHORITY));
    final String path = exchange.getRequestHeaders().getFirst(PATH);
    if (path == null || path.isEmpty()) {
        UndertowLogger.REQUEST_IO_LOGGER.debugf("No :path header sent in HTTP/2 request, closing connection. Remote peer %s", connection.getPeerAddress());
        channel.sendGoAway(Http2Channel.ERROR_PROTOCOL_ERROR);
        return;
    }
    try {
        Connectors.setExchangeRequestPath(exchange, path, encoding, decode, allowEncodingSlash, decodeBuffer, maxParameters);
    } catch (ParameterLimitException e) {
        //this can happen if max parameters is exceeded
        UndertowLogger.REQUEST_IO_LOGGER.debug("Failed to set request path", e);
        exchange.setStatusCode(StatusCodes.BAD_REQUEST);
        exchange.endExchange();
        return;
    }
    SSLSession session = channel.getSslSession();
    if (session != null) {
        connection.setSslSessionInfo(new Http2SslSessionInfo(channel));
    }
    dataChannel.getResponseChannel().setCompletionListener(new ChannelListener<Http2DataStreamSinkChannel>() {

        @Override
        public void handleEvent(Http2DataStreamSinkChannel channel) {
            Connectors.terminateResponse(exchange);
        }
    });
    if (!dataChannel.isOpen()) {
        Connectors.terminateRequest(exchange);
    } else {
        dataChannel.setCompletionListener(new ChannelListener<Http2StreamSourceChannel>() {

            @Override
            public void handleEvent(Http2StreamSourceChannel channel) {
                Connectors.terminateRequest(exchange);
            }
        });
    }
    if (connectorStatistics != null) {
        connectorStatistics.setup(exchange);
    }
    //TODO: we should never actually put these into the map in the first place
    exchange.getRequestHeaders().remove(AUTHORITY);
    exchange.getRequestHeaders().remove(PATH);
    exchange.getRequestHeaders().remove(SCHEME);
    exchange.getRequestHeaders().remove(METHOD);
    Connectors.executeRootHandler(rootHandler, exchange);
}
Also used : HttpServerExchange(io.undertow.server.HttpServerExchange) ParameterLimitException(io.undertow.util.ParameterLimitException) SSLSession(javax.net.ssl.SSLSession) IOException(java.io.IOException) HttpString(io.undertow.util.HttpString) AbstractHttp2StreamSourceChannel(io.undertow.protocols.http2.AbstractHttp2StreamSourceChannel) Http2StreamSourceChannel(io.undertow.protocols.http2.Http2StreamSourceChannel) Http2DataStreamSinkChannel(io.undertow.protocols.http2.Http2DataStreamSinkChannel)

Aggregations

AbstractHttp2StreamSourceChannel (io.undertow.protocols.http2.AbstractHttp2StreamSourceChannel)1 Http2DataStreamSinkChannel (io.undertow.protocols.http2.Http2DataStreamSinkChannel)1 Http2StreamSourceChannel (io.undertow.protocols.http2.Http2StreamSourceChannel)1 HttpServerExchange (io.undertow.server.HttpServerExchange)1 HttpString (io.undertow.util.HttpString)1 ParameterLimitException (io.undertow.util.ParameterLimitException)1 IOException (java.io.IOException)1 SSLSession (javax.net.ssl.SSLSession)1