swift-nio-extras/Sources/NIOCertificateReloading/TimedCertificateReloader.swift
2025-05-07 14:32:05 +01:00

455 lines
18 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2025 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import AsyncAlgorithms
import Logging
import NIOConcurrencyHelpers
import NIOSSL
import ServiceLifecycle
import SwiftASN1
import X509
import struct NIOCore.TimeAmount
#if canImport(FoundationEssentials)
import FoundationEssentials
#else
import Foundation
#endif
/// A ``TimedCertificateReloader`` is an implementation of a ``CertificateReloader``, where the certificate and private
/// key pair is updated at a fixed interval from the file path or memory location configured.
///
/// You initialize a ``TimedCertificateReloader`` by providing a refresh interval, and locations for the certificate and the private
/// key. You may then set it on your ``NIOSSL/TLSConfiguration`` using
/// ``NIOSSL/TLSConfiguration/setCertificateReloader(_:)``:
///
/// ```swift
/// var configuration = TLSConfiguration.makeServerConfiguration(
/// certificateChain: chain,
/// privateKey: key
/// )
/// let reloader = TimedCertificateReloader(
/// refreshInterval: .seconds(500),
/// certificateDescription: TimedCertificateReloader.CertificateDescription(...),
/// privateKeyDescription: TimedCertificateReloader.PrivateKeyDescription(...)
/// )
/// configuration.setCertificateReloader(reloader)
/// ```
///
/// If you're creating a server configuration, you can instead opt to use
/// ``NIOSSL/TLSConfiguration/makeServerConfiguration(certificateReloader:)``, which will set the initial
/// certificate chain and private key, as well as set the reloader:
///
/// ```swift
/// let configuration = TLSConfiguration.makeServerConfiguration(
/// certificateReloader: reloader
/// )
/// ```
///
/// Finally, you must call ``run()`` on the reloader for it to start observing changes.
/// Once the reloader is running, you can also manually access its ``sslContextConfigurationOverride`` property to get a
/// `NIOSSLContextConfigurationOverride`, although this will typically not be necessary, as it's the NIO channel that will
/// handle the override when initiating TLS handshakes.
///
/// ```swift
/// try await withThrowingTaskGroup(of: Void.self) { group in
/// group.addTask {
/// reloader.run()
/// }
/// // ...
/// let override = reloader.sslContextConfigurationOverride
/// // ...
/// }
/// ```
///
/// ``TimedCertificateReloader`` conforms to `ServiceLifecycle`'s `Service` protocol, meaning you can simply create
/// the reloader and add it to your `ServiceGroup` without having to manually run it.
///
/// If any errors occur during a reload attempt (such as: being unable to find the file(s) containing the certificate or the key; the format
/// not being recognized or not matching the configured one; not being able to verify a certificate's signature against the given
/// private key; etc), then that attempt will be aborted but the service will keep on trying at the configured interval.
/// The last-valid certificate-key pair (if any) will be returned as the ``sslContextConfigurationOverride``.
#if compiler(>=6.0)
@available(macOS 13, iOS 16, watchOS 9, tvOS 16, macCatalyst 16, visionOS 1, *)
#else
@available(macOS 13, iOS 16, watchOS 9, tvOS 16, macCatalyst 16, *)
#endif
public struct TimedCertificateReloader: CertificateReloader {
/// The encoding for the certificate or the key.
public struct Encoding: Sendable, Hashable {
fileprivate enum _Backing {
case der
case pem
}
fileprivate let _backing: _Backing
private init(_ backing: _Backing) {
self._backing = backing
}
/// The encoding of this certificate/key is DER bytes.
public static var der: Self { .init(.der) }
/// The encoding of this certificate/key is PEM.
public static var pem: Self { .init(.pem) }
}
/// A location specification for a certificate or key.
public struct Location: Sendable, CustomStringConvertible {
fileprivate enum _Backing: CustomStringConvertible {
case file(path: String)
case memory(provider: @Sendable () -> [UInt8]?)
var description: String {
switch self {
case .file(let path):
return "Filepath: \(path)"
case .memory:
return "<in-memory location>"
}
}
}
fileprivate let _backing: _Backing
private init(_ backing: _Backing) {
self._backing = backing
}
public var description: String {
self._backing.description
}
/// This certificate/key can be found at the given filepath.
/// - Parameter path: The filepath where the certificate/key can be found.
/// - Returns: A `Location`.
public static func file(path: String) -> Self { Self(_Backing.file(path: path)) }
/// This certificate/key is available in memory, and will be provided by the given closure.
/// - Parameter provider: A closure providing the bytes for the given certificate or key. This closure should return
/// `nil` if a certificate/key isn't currently available for whatever reason.
/// - Returns: A `Location`.
public static func memory(provider: @Sendable @escaping () -> [UInt8]?) -> Self {
Self(_Backing.memory(provider: provider))
}
}
/// A description of a certificate, in terms of its ``TimedCertificateReloader/Location`` and
/// ``TimedCertificateReloader/Encoding``.
public struct CertificateDescription: Sendable {
/// The certificate's ``TimedCertificateReloader/Location``.
public var location: Location
/// The certificate's ``TimedCertificateReloader/Encoding``.
public var format: Encoding
/// Initialize a new ``TimedCertificateReloader/CertificateDescription``.
/// - Parameters:
/// - location: A ``TimedCertificateReloader/Location``.
/// - format: A ``TimedCertificateReloader/Encoding``.
public init(location: Location, format: Encoding) {
self.location = location
self.format = format
}
}
/// A description of a private key, in terms of its ``TimedCertificateReloader/Location`` and
/// ``TimedCertificateReloader/Encoding``.
public struct PrivateKeyDescription: Sendable {
/// The key's ``TimedCertificateReloader/Location``.
public var location: Location
/// The key's ``TimedCertificateReloader/Encoding``.
public var format: Encoding
/// Initialize a new ``TimedCertificateReloader/PrivateKeyDescription``.
/// - Parameters:
/// - location: A ``TimedCertificateReloader/Location``.
/// - format: A ``TimedCertificateReloader/Encoding``.
public init(location: Location, format: Encoding) {
self.location = location
self.format = format
}
}
/// Errors specific to the ``TimedCertificateReloader``.
public struct Error: Swift.Error, Hashable, CustomStringConvertible {
private enum _Backing: Hashable, CustomStringConvertible {
case certificatePathNotFound(String)
case privateKeyPathNotFound(String)
var description: String {
switch self {
case .certificatePathNotFound(let path):
return "Certificate path not found: \(path)"
case .privateKeyPathNotFound(let path):
return "Private key path not found: \(path)"
}
}
}
private let _backing: _Backing
private init(_ backing: _Backing) {
self._backing = backing
}
/// The file path given for the certificate cannot be found.
/// - Parameter path: The file path given for the certificate.
/// - Returns: A ``TimedCertificateReloader/Error``.
public static func certificatePathNotFound(_ path: String) -> Self {
Self(.certificatePathNotFound(path))
}
/// The file path given for the private key cannot be found.
/// - Parameter path: The file path given for the private key.
/// - Returns: A ``TimedCertificateReloader/Error``.
public static func privateKeyPathNotFound(_ path: String) -> Self {
Self(.privateKeyPathNotFound(path))
}
public var description: String {
self._backing.description
}
}
private struct CertificateKeyPair {
var certificate: NIOSSLCertificateSource
var privateKey: NIOSSLPrivateKeySource
}
private let refreshInterval: Duration
private let certificateDescription: CertificateDescription
private let privateKeyDescription: PrivateKeyDescription
private let state: NIOLockedValueBox<CertificateKeyPair?>
private let logger: Logger?
/// A `NIOSSLContextConfigurationOverride` that will be used as part of the NIO application's TLS configuration.
/// Its certificate and private key will be kept up-to-date via the reload mechanism the ``TimedCertificateReloader``
/// implementation provides.
public var sslContextConfigurationOverride: NIOSSLContextConfigurationOverride {
get {
var override = NIOSSLContextConfigurationOverride()
guard let certificateKeyPair = self.state.withLockedValue({ $0 }) else {
return override
}
override.certificateChain = [certificateKeyPair.certificate]
override.privateKey = certificateKeyPair.privateKey
return override
}
}
/// Initialize a new ``TimedCertificateReloader``.
/// - Parameters:
/// - refreshInterval: The interval at which attempts to update the certificate and private key should be made.
/// - certificateDescription: A ``CertificateDescription``.
/// - privateKeyDescription: A ``PrivateKeyDescription``.
public init(
refreshInterval: TimeAmount,
certificateDescription: CertificateDescription,
privateKeyDescription: PrivateKeyDescription,
logger: Logger? = nil
) {
self.init(
refreshInterval: Duration(refreshInterval),
certificateDescription: certificateDescription,
privateKeyDescription: privateKeyDescription,
logger: logger
)
}
/// Attempt to initialize a new ``TimedCertificateReloader``, but throw if the given certificate and private keys cannot be
/// loaded.
/// - Parameters:
/// - refreshInterval: The interval at which attempts to update the certificate and private key should be made.
/// - validatingCertificateDescription: A ``CertificateDescription``.
/// - validatingPrivateKeyDescription: A ``PrivateKeyDescription``.
/// - Throws: If the certificate or private key cannot be loaded.
public init(
refreshInterval: TimeAmount,
validatingCertificateDescription: CertificateDescription,
validatingPrivateKeyDescription: PrivateKeyDescription,
logger: Logger? = nil
) throws {
try self.init(
refreshInterval: Duration(refreshInterval),
validatingCertificateDescription: validatingCertificateDescription,
validatingPrivateKeyDescription: validatingPrivateKeyDescription,
logger: logger
)
}
/// Initialize a new ``TimedCertificateReloader``.
/// - Parameters:
/// - refreshInterval: The interval at which attempts to update the certificate and private key should be made.
/// - certificateDescription: A ``CertificateDescription``.
/// - privateKeyDescription: A ``PrivateKeyDescription``.
public init(
refreshInterval: Duration,
certificateDescription: CertificateDescription,
privateKeyDescription: PrivateKeyDescription,
logger: Logger? = nil
) {
self.refreshInterval = refreshInterval
self.certificateDescription = certificateDescription
self.privateKeyDescription = privateKeyDescription
self.state = NIOLockedValueBox(nil)
self.logger = logger
// Immediately try to load the configured cert and key to avoid having to wait for the first
// reload loop to run.
// We ignore errors because this initializer tolerates not finding the certificate and/or
// private key on first load.
try? self.reloadPair()
}
/// Attempt to initialize a new ``TimedCertificateReloader``, but throw if the given certificate and private keys cannot be
/// loaded.
/// - Parameters:
/// - refreshInterval: The interval at which attempts to update the certificate and private key should be made.
/// - validatingCertificateDescription: A ``CertificateDescription``.
/// - validatingPrivateKeyDescription: A ``PrivateKeyDescription``.
/// - Throws: If the certificate or private key cannot be loaded.
public init(
refreshInterval: Duration,
validatingCertificateDescription: CertificateDescription,
validatingPrivateKeyDescription: PrivateKeyDescription,
logger: Logger? = nil
) throws {
self.refreshInterval = refreshInterval
self.certificateDescription = validatingCertificateDescription
self.privateKeyDescription = validatingPrivateKeyDescription
self.state = NIOLockedValueBox(nil)
self.logger = logger
// Immediately try to load the configured cert and key to avoid having to wait for the first
// reload loop to run.
try self.reloadPair()
}
/// A long-running method to run the ``TimedCertificateReloader`` and start observing updates for the certificate and
/// private key pair.
/// - Important: You *must* call this method to get certificate and key updates.
public func run() async throws {
for try await _ in AsyncTimerSequence.repeating(every: self.refreshInterval).cancelOnGracefulShutdown() {
do {
try self.reloadPair()
} catch {
self.logger?.debug(
"Failed to reload certificate and private key.",
metadata: [
"error": "\(error)",
"certificatePath": "\(self.certificateDescription.location)",
"privateKeyPath": "\(self.privateKeyDescription.location)",
]
)
}
}
}
private func reloadPair() throws {
if let certificateBytes = try self.loadCertificate(),
let keyBytes = try self.loadPrivateKey(),
let certificate = try self.parseCertificate(from: certificateBytes),
let key = try self.parsePrivateKey(from: keyBytes),
key.publicKey.isValidSignature(certificate.signature, for: certificate)
{
try self.attemptToUpdatePair(certificate: certificate, key: key)
}
}
private func loadCertificate() throws -> [UInt8]? {
let certificateBytes: [UInt8]?
switch self.certificateDescription.location._backing {
case .file(let path):
guard let bytes = FileManager.default.contents(atPath: path) else {
throw Error.certificatePathNotFound(path)
}
certificateBytes = Array(bytes)
case .memory(let bytesProvider):
certificateBytes = bytesProvider()
}
return certificateBytes
}
private func loadPrivateKey() throws -> [UInt8]? {
let keyBytes: [UInt8]?
switch self.privateKeyDescription.location._backing {
case .file(let path):
guard let bytes = FileManager.default.contents(atPath: path) else {
throw Error.privateKeyPathNotFound(path)
}
keyBytes = Array(bytes)
case .memory(let bytesProvider):
keyBytes = bytesProvider()
}
return keyBytes
}
private func parseCertificate(from certificateBytes: [UInt8]) throws -> Certificate? {
let certificate: Certificate?
switch self.certificateDescription.format._backing {
case .der:
certificate = try Certificate(derEncoded: certificateBytes)
case .pem:
certificate = try String(bytes: certificateBytes, encoding: .utf8)
.flatMap { try Certificate(pemEncoded: $0) }
}
return certificate
}
private func parsePrivateKey(from keyBytes: [UInt8]) throws -> Certificate.PrivateKey? {
let key: Certificate.PrivateKey?
switch self.privateKeyDescription.format._backing {
case .der:
key = try Certificate.PrivateKey(derBytes: keyBytes)
case .pem:
key = try String(bytes: keyBytes, encoding: .utf8)
.flatMap { try Certificate.PrivateKey(pemEncoded: $0) }
}
return key
}
private func attemptToUpdatePair(certificate: Certificate, key: Certificate.PrivateKey) throws {
let nioSSLCertificate = try NIOSSLCertificate(
bytes: certificate.serializeAsPEM().derBytes,
format: .der
)
let nioSSLPrivateKey = try NIOSSLPrivateKey(
bytes: key.serializeAsPEM().derBytes,
format: .der
)
self.state.withLockedValue {
$0 = CertificateKeyPair(
certificate: .certificate(nioSSLCertificate),
privateKey: .privateKey(nioSSLPrivateKey)
)
}
}
}
#if compiler(>=6.0)
@available(macOS 13, iOS 16, watchOS 9, tvOS 16, macCatalyst 16, visionOS 1, *)
#else
@available(macOS 13, iOS 16, watchOS 9, tvOS 16, macCatalyst 16, *)
#endif
extension TimedCertificateReloader: Service {}