mirror of
https://github.com/apple/container.git
synced 2026-08-01 14:21:04 +00:00
Signed-off-by: Kathryn Baldauf <k_baldauf@apple.com> Co-authored-by: John Logan <john_logan@apple.com> Co-authored-by: Raj Aryan Singh <rajaryan_singh@apple.com>
70 lines
2.6 KiB
Swift
70 lines
2.6 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2025-2026 Apple Inc. and the container project authors.
|
|
//
|
|
// 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
|
|
//
|
|
// https://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.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import Foundation
|
|
import Logging
|
|
import NIO
|
|
import NIOFoundationCompat
|
|
|
|
public struct TCPForwarder: SocketForwarder {
|
|
private let proxyAddress: SocketAddress
|
|
|
|
private let serverAddress: SocketAddress
|
|
|
|
private let eventLoopGroup: any EventLoopGroup
|
|
|
|
private let connectTimeout: TimeAmount
|
|
|
|
private let log: Logger?
|
|
|
|
public init(
|
|
proxyAddress: SocketAddress,
|
|
serverAddress: SocketAddress,
|
|
eventLoopGroup: any EventLoopGroup,
|
|
connectTimeout: TimeAmount = .seconds(10),
|
|
log: Logger? = nil
|
|
) throws {
|
|
self.proxyAddress = proxyAddress
|
|
self.serverAddress = serverAddress
|
|
self.eventLoopGroup = eventLoopGroup
|
|
self.connectTimeout = connectTimeout
|
|
self.log = log
|
|
}
|
|
|
|
public func run() throws -> EventLoopFuture<SocketForwarderResult> {
|
|
self.log?.trace("frontend - creating listener")
|
|
|
|
let bootstrap = ServerBootstrap(group: self.eventLoopGroup)
|
|
.serverChannelOption(ChannelOptions.socket(.init(SOL_SOCKET), .init(SO_REUSEADDR)), value: 1)
|
|
.childChannelOption(ChannelOptions.socket(.init(SOL_SOCKET), .init(SO_REUSEADDR)), value: 1)
|
|
// Reads are paused until the backend connects; the client's bytes are held in the
|
|
// kernel receive buffer instead of an app-level buffer while we wait.
|
|
.childChannelOption(ChannelOptions.autoRead, value: false)
|
|
.childChannelInitializer { channel in
|
|
channel.eventLoop.makeCompletedFuture {
|
|
try channel.pipeline.syncOperations.addHandler(
|
|
ConnectHandler(serverAddress: self.serverAddress, connectTimeout: self.connectTimeout, log: log)
|
|
)
|
|
}
|
|
}
|
|
|
|
return
|
|
bootstrap
|
|
.bind(to: self.proxyAddress)
|
|
.map { SocketForwarderResult(channel: $0) }
|
|
}
|
|
}
|