|
| 1 | +//===----------------------------------------------------------------------===// |
| 2 | +// |
| 3 | +// This source file is part of the SwiftNIO open source project |
| 4 | +// |
| 5 | +// Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors |
| 6 | +// Licensed under Apache License v2.0 |
| 7 | +// |
| 8 | +// See LICENSE.txt for license information |
| 9 | +// See CONTRIBUTORS.txt for the list of SwiftNIO project authors |
| 10 | +// |
| 11 | +// SPDX-License-Identifier: Apache-2.0 |
| 12 | +// |
| 13 | +//===----------------------------------------------------------------------===// |
| 14 | + |
| 15 | +import NIO |
| 16 | + |
| 17 | +/// A simple channel handler that catches errors emitted by parsing HTTP requests |
| 18 | +/// and sends 400 Bad Request responses. |
| 19 | +/// |
| 20 | +/// This channel handler provides the basic behaviour that the majority of simple HTTP |
| 21 | +/// servers want. This handler does not suppress the parser errors: it allows them to |
| 22 | +/// continue to pass through the pipeline so that other handlers (e.g. logging ones) can |
| 23 | +/// deal with the error. |
| 24 | +public final class HTTPServerProtocolErrorHandler: ChannelInboundHandler { |
| 25 | + public typealias InboundIn = HTTPServerRequestPart |
| 26 | + public typealias InboundOut = HTTPServerRequestPart |
| 27 | + public typealias OutboundOut = HTTPServerResponsePart |
| 28 | + |
| 29 | + public func errorCaught(ctx: ChannelHandlerContext, error: Error) { |
| 30 | + guard error is HTTPParserError else { |
| 31 | + ctx.fireErrorCaught(error) |
| 32 | + return |
| 33 | + } |
| 34 | + |
| 35 | + // Any HTTPParserError is automatically fatal, and we don't actually need (or want) to |
| 36 | + // provide that error to the client: we just want to tell it that it screwed up and then |
| 37 | + // let the rest of the pipeline shut the door in its face. |
| 38 | + // |
| 39 | + // A side note here: we cannot block or do any delayed work. ByteToMessageDecoder is going |
| 40 | + // to come along and close the channel right after we return from this function. |
| 41 | + let headers = HTTPHeaders([("Connection", "close"), ("Content-Length", "0")]) |
| 42 | + let head = HTTPResponseHead(version: .init(major: 1, minor: 1), status: .badRequest, headers: headers) |
| 43 | + ctx.write(self.wrapOutboundOut(.head(head)), promise: nil) |
| 44 | + ctx.writeAndFlush(self.wrapOutboundOut(.end(nil)), promise: nil) |
| 45 | + |
| 46 | + // Now pass the error on in case someone else wants to see it. |
| 47 | + ctx.fireErrorCaught(error) |
| 48 | + } |
| 49 | +} |
0 commit comments