1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftCertificates open source project
//
// Copyright (c) 2022-2023 Apple Inc. and the SwiftCertificates project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftCertificates project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import SwiftASN1
import Crypto
#if canImport(Darwin)
import Foundation
#else
@preconcurrency import Foundation
#endif
// Swift CI has implicit concurrency disabled
import _Concurrency
public protocol OCSPRequester: Sendable {
/// Called with an OCSP Request.
///
/// The ``OCSPVerifierPolicy`` will call this method for each certificate that contains an OCSP URI and will cancel the call if it reaches a deadline.
/// Therefore the implementation of this method should **not** set a deadline on the HTTP request.
/// - Parameters:
/// - request: DER-encoded request bytes
/// - uri: uri of the OCSP responder
/// - Returns: DER-encoded response bytes if they request was successful or a terminal or non-terminal error.
func query(request: [UInt8], uri: String) async -> OCSPRequesterQueryResult
}
public struct OCSPRequesterQueryResult: Sendable {
@usableFromInline
enum Storage: Sendable {
case success([UInt8])
case nonTerminal(Error)
case terminal(Error)
}
@usableFromInline
var storage: Storage
@inlinable
init(_ storage: Storage) {
self.storage = storage
}
}
extension OCSPRequesterQueryResult {
/// The OCSP query is considered successful and has returned the given DER-encoded response bytes.
/// - Parameter bytes: DER-encoded response bytes
@inlinable
public static func response(_ bytes: [UInt8]) -> Self {
.init(.success(bytes))
}
/// The OCSP query is considered unsuccessful but will **not** fail verification, neither in ``OCSPFailureMode/soft`` nor in ``OCSPFailureMode/hard`` failure mode.
/// The certificate is then considered to meet the ``OCSPVerifierPolicy``.
/// - Parameter reason: the reason why the OCSP query failed which may be used for diagnostics
/// - warning: The ``OCSPVerifierPolicy`` will assume that verification has succeeded and therefore pass OCSP verification for the given certificate.
@inlinable
public static func nonTerminalError(_ reason: Error) -> Self {
.init(.nonTerminal(reason))
}
/// The OCSP query is considered unsuccessful and will fail verification in both ``OCSPFailureMode/soft`` and ``OCSPFailureMode/hard`` failure mode.
/// The certificate is then considered to not meet the ``OCSPVerifierPolicy`` and ``OCSPVerifierPolicy/chainMeetsPolicyRequirements(chain:)`` will return ``PolicyEvaluationResult/failsToMeetPolicy(reason:)`` with the given ``reason``.
/// - Parameter reason: the reason why the OCSP query failed
@inlinable
public static func terminalError(_ reason: Error) -> Self {
.init(.terminal(reason))
}
}
extension ASN1ObjectIdentifier {
static let sha256NoSign: Self = [2, 16, 840, 1, 101, 3, 4, 2, 1]
static let sha1NoSign: Self = [1, 3, 14, 3, 2, 26]
}
struct OCSPResponderSigningPolicy: VerifierPolicy {
let verifyingCriticalExtensions: [ASN1ObjectIdentifier] = []
/// direct issuer of the certificate for which we check the OCSP status for
var issuer: Certificate
mutating func chainMeetsPolicyRequirements(chain: UnverifiedCertificateChain) async -> PolicyEvaluationResult {
// The root of the chain is always guaranteed to be the issuer as the root certificate store only contains the issuer
guard chain.last == issuer else {
return .failsToMeetPolicy(
reason:
"OCSP response must be signed by the certificate issuer or a certificate that chains up to the issuer"
)
}
if chain.count == 1 {
// the leaf is the issuer which does not need to have the OCSP signing extended key usage
return .meetsPolicy
}
let leaf = chain.leaf
// RFC 6960 Section 4.2.2.2. Authorized Responders
// OCSP signing delegation SHALL be designated by the inclusion of
// id-kp-OCSPSigning in an extended key usage certificate extension
// included in the OCSP response signer's certificate.
guard let extendedKeyUsage: ExtendedKeyUsage = try? leaf.extensions.extendedKeyUsage else {
return .failsToMeetPolicy(reason: "OCSP response certificate has no extended key usages")
}
guard extendedKeyUsage.usages.contains(.ocspSigning) else {
return .failsToMeetPolicy(
reason: "OCSP response certificate does not have OCSP signing extended key usage set"
)
}
return .meetsPolicy
}
}
enum OCSPRequestHashAlgorithm {
case insecureSha1
// we can't yet enable sha256 by default but we want in the future
case sha256
var oid: ASN1ObjectIdentifier {
switch self {
case .insecureSha1: return .sha1NoSign
case .sha256: return .sha256NoSign
}
}
private func hashed(_ value: ArraySlice<UInt8>) -> ArraySlice<UInt8> {
switch self {
case .insecureSha1:
var hashAlgorithm = Insecure.SHA1()
hashAlgorithm.update(data: value)
return Array(hashAlgorithm.finalize())[...]
case .sha256:
var hashAlgorithm = SHA256()
hashAlgorithm.update(data: value)
return Array(hashAlgorithm.finalize())[...]
}
}
fileprivate func issuerNameHashed(_ certificate: Certificate) throws -> ArraySlice<UInt8> {
/// issuerNameHash is the hash of the issuer's distinguished name
/// (DN). The hash shall be calculated over the DER encoding of the
/// issuer's name field in the certificate being checked.
var serializer = DER.Serializer()
try serializer.serialize(certificate.subject)
return self.hashed(serializer.serializedBytes[...])
}
fileprivate func issuerPublicKeyHashed(_ certificate: Certificate) -> ArraySlice<UInt8> {
/// issuerKeyHash is the hash of the issuer's public key. The hash
/// shall be calculated over the value (excluding tag and length) of
/// the subject public key field in the issuer's certificate.
self.hashed(certificate.publicKey.subjectPublicKeyInfoBytes)
}
}
/// Defines the behaviour of ``OCSPVerifierPolicy`` in the event of a failure.
/// ``soft`` should be used most of the time and will only fail verification if a verified OCSP response reports a status of revoked.
public struct OCSPFailureMode: Hashable, Sendable {
/// ``soft`` failure mode will only fail verification if a verified and valid OCSP response reports a status of revoked.
/// If the request, decoding or validation fails, the certificates will still meet the policy.
public static var soft: Self { .init(storage: .soft) }
/// ``hard`` failure mode will fail verification if any of the OCSP request decoding or validation fails in addition to revoked or unknown status reports from the responder.
/// Verification will succeed if the OCSP response status is good.
/// In addition, if the request fails or times out the certificate will still meet the policy though to allow the network to be down.
public static var hard: Self { .init(storage: .hard) }
enum Storage: Hashable, Sendable {
case soft
case hard
}
var storage: Storage
}
public struct OCSPVerifierPolicy<Requester: OCSPRequester>: VerifierPolicy {
public let verifyingCriticalExtensions: [ASN1ObjectIdentifier] = []
struct Storage: Sendable {
private var failureMode: OCSPFailureMode
private var requester: Requester
private var requestHashAlgorithm: OCSPRequestHashAlgorithm
/// max duration the policy verification is allowed in total
///
/// This is not the duration for a single OCSP request but the total duration of all OCSP requests.
private var maxDuration: TimeInterval
/// the time used to decide if the request is relatively recent
private var validationTime: Date
/// If true, a nonce is generated per OCSP request and attached to the request.
/// If the response contains a nonce, it must match with the initially send nonce.
/// currently only set to false for testing
fileprivate var nonceExtensionEnabled: Bool = true
fileprivate init(
failureMode: OCSPFailureMode,
requester: Requester,
requestHashAlgorithm: OCSPRequestHashAlgorithm,
maxDuration: TimeInterval,
validationTime: Date
) {
self.requester = requester
self.requestHashAlgorithm = requestHashAlgorithm
self.maxDuration = maxDuration
self.validationTime = validationTime
self.failureMode = failureMode
}
}
var nonceExtensionEnabled: Bool {
get {
self.storage.nonceExtensionEnabled
}
set {
self.storage.nonceExtensionEnabled = newValue
}
}
private var storage: Storage
public init(failureMode: OCSPFailureMode, requester: Requester, validationTime: Date) {
self.storage = .init(
failureMode: failureMode,
requester: requester,
requestHashAlgorithm: .insecureSha1,
maxDuration: 10,
validationTime: validationTime
)
}
// this method currently doesn't need to be mutating. However, we want to reserve the right to change our mind
// in the future and therefore still declare this method as mutating in the public API.
public mutating func chainMeetsPolicyRequirements(chain: UnverifiedCertificateChain) async -> PolicyEvaluationResult
{
await self.storage.chainMeetsPolicyWithDeadline(chain: chain)
}
}
extension OCSPVerifierPolicy.Storage {
/// Returns `.meetsPolicy` if the `failureMode` is set to `.soft`.
/// If it is set to `.hard` it will return `.failsToMeetPolicy` with the given `reason`.
private func softFailure(reason: PolicyFailureReason) -> PolicyEvaluationResult {
switch self.failureMode.storage {
case .soft:
return .meetsPolicy
case .hard:
return .failsToMeetPolicy(reason: reason)
}
}
fileprivate func chainMeetsPolicyWithDeadline(chain: UnverifiedCertificateChain) async -> PolicyEvaluationResult {
await withTimeout(maxDuration) {
await self.chainMeetsPolicyRequirementsWithoutDeadline(chain: chain)
}
}
private func chainMeetsPolicyRequirementsWithoutDeadline(
chain: UnverifiedCertificateChain
) async -> PolicyEvaluationResult {
for index in chain.dropLast().indices {
let certificate = chain[index]
let issuer = chain[chain.index(after: index)]
switch await self.certificateMeetsPolicyRequirements(certificate, issuer: issuer) {
case .meetsPolicy:
continue
case .failsToMeetPolicy(let reason):
return .failsToMeetPolicy(reason: reason)
}
}
do {
let hasRootCertificateOCSPURI =
try chain.last?.extensions.authorityInformationAccess?.contains { $0.method == .ocspServer } ?? false
if hasRootCertificateOCSPURI {
return .failsToMeetPolicy(reason: "root certificate is not allowed to have an OCSP URI")
}
} catch {
return .failsToMeetPolicy(reason: "failed to parse AuthorityInformationAccess extension")
}
return .meetsPolicy
}
private func certificateMeetsPolicyRequirements(
_ certificate: Certificate,
issuer: Certificate
) async -> PolicyEvaluationResult {
let authorityInformationAccess: AuthorityInformationAccess?
do {
authorityInformationAccess = try certificate.extensions.authorityInformationAccess
} catch {
return self.softFailure(reason: .init("failed to decode AuthorityInformationAccess \(error)"))
}
guard let authorityInformationAccess else {
// OCSP not necessary for certificate
return .meetsPolicy
}
let ocspAccessDescriptions = authorityInformationAccess.lazy.filter { $0.method == .ocspServer }
if ocspAccessDescriptions.isEmpty {
// OCSP not necessary for certificate
return .meetsPolicy
}
// We could find more than one ocsp server, where only one has a uri. We want to find the first one with a uri.
let responderURI = ocspAccessDescriptions.lazy.compactMap { description -> String? in
guard case .uniformResourceIdentifier(let responderURI) = description.location else {
return nil
}
return responderURI
}.first
guard let responderURI else {
return self.softFailure(
reason: .init("expected OCSP location to be a URI but got \(ocspAccessDescriptions)")
)
}
let certID: OCSPCertID
do {
certID = try OCSPCertID(hashAlgorithm: requestHashAlgorithm, certificate: certificate, issuer: issuer)
} catch {
return self.softFailure(reason: .init("failed to create OCSPCertID \(error)"))
}
return await self.queryAndVerifyCertificateStatus(for: certID, responderURI: responderURI, issuer: issuer)
}
private func queryAndVerifyCertificateStatus(
for certID: OCSPCertID,
responderURI: String,
issuer: Certificate
) async -> PolicyEvaluationResult {
let requestNonce = nonceExtensionEnabled ? OCSPNonce() : nil
let requestBytes: [UInt8]
do {
let request = try OCSPRequest(certID: certID, nonce: requestNonce)
var serializer = DER.Serializer()
try serializer.serialize(request)
requestBytes = serializer.serializedBytes
} catch {
return self.softFailure(reason: .init("failed to create OCSPRequest \(error)"))
}
let responseDerEncoded: [UInt8]
switch await self.requester.query(request: requestBytes, uri: responderURI).storage {
case .success(let responseBytes):
responseDerEncoded = responseBytes
case .nonTerminal:
// TODO: "log" error
return .meetsPolicy
case .terminal(let error):
return .failsToMeetPolicy(reason: String(describing: error))
}
let response: OCSPResponse
do {
response = try OCSPResponse(derEncoded: responseDerEncoded[...])
} catch {
return self.softFailure(reason: .init("OCSP deserialisation failed \(error)"))
}
return await self.verifyResponse(response, requestedCertID: certID, requestNonce: requestNonce, issuer: issuer)
}
private func verifyResponse(
_ response: OCSPResponse,
requestedCertID: OCSPCertID,
requestNonce: OCSPNonce?,
issuer: Certificate
) async -> PolicyEvaluationResult {
switch response {
case .unauthorized, .tryLater, .sigRequired, .malformedRequest, .internalError:
return self.softFailure(reason: .init("OCSP request failed \(OCSPResponseStatus(response))"))
case .successful(let basicResponse):
return await self.verifySuccessfulResponse(
basicResponse,
requestedCertID: requestedCertID,
requestNonce: requestNonce,
issuer: issuer
)
}
}
private func verifySuccessfulResponse(
_ basicResponse: BasicOCSPResponse,
requestedCertID: OCSPCertID,
requestNonce: OCSPNonce?,
issuer: Certificate
) async -> PolicyEvaluationResult {
guard let response = basicResponse.responseData.responses.first(where: { $0.certID == requestedCertID }) else {
return self.softFailure(
reason: .init(
"OCSP response does not include a response for the queried certificate \(requestedCertID) - responses: \(basicResponse.responseData.responses)"
)
)
}
switch await self.validateResponseSignature(basicResponse, issuer: issuer) {
case .meetsPolicy:
break
case .failsToMeetPolicy(let reason):
return self.softFailure(reason: reason)
}
guard basicResponse.responseData.version == .v1 else {
return self.softFailure(
reason: .init("OCSP response version unsupported \(basicResponse.responseData.version)")
)
}
switch basicResponse.responseData.verifyTime(validationTime: self.validationTime) {
case .failsToMeetPolicy(reason: let reason):
return self.softFailure(reason: reason)
case .meetsPolicy:
break
}
do {
// if requestNonce is nil, `nonceExtensionEnabled` is set to false and we therefore skip nonce verification
if let requestNonce {
// OCSP responders are allowed to not include the nonce, but if they do it needs to match
if let responseNonce = try basicResponse.responseData.responseExtensions?.ocspNonce,
requestNonce != responseNonce
{
return self.softFailure(reason: .init("OCSP response nonce does not match request nonce"))
}
} else {
precondition(nonceExtensionEnabled == false)
}
} catch {
return self.softFailure(reason: .init("failed to decode nonce response \(error)"))
}
switch response.verifyTime(validationTime: self.validationTime) {
case .meetsPolicy:
break
case .failsToMeetPolicy(let reason):
return self.softFailure(reason: reason)
}
switch response.certStatus {
case .revoked(let info):
return .failsToMeetPolicy(
reason: "revoked through OCSP, reason: \(info.revocationReason?.description ?? "nil")"
)
case .unknown:
return self.softFailure(reason: .init("OCSP response returned as status unknown"))
case .good:
return .meetsPolicy
}
}
private func validateResponseSignature(
_ basicResponse: BasicOCSPResponse,
issuer: Certificate
) async -> PolicyEvaluationResult {
let responderID = basicResponse.responseData.responderID
let leafCertificate: Certificate?
if issuer.matches(responderID) {
leafCertificate = issuer
} else {
leafCertificate = basicResponse.certs?.first(where: { $0.matches(responderID) })
}
guard let leafCertificate else {
return .failsToMeetPolicy(reason: "could not find OCSP responder certificate for id \(responderID)")
}
let signatureValidationResult = self.validateSignature(
certificate: leafCertificate,
tbsResponse: basicResponse.responseDataBytes,
signatureBytes: basicResponse.signature.bytes,
signatureAlgorithmIdentifier: basicResponse.signatureAlgorithm
)
switch signatureValidationResult {
case .meetsPolicy:
break
case .failsToMeetPolicy(let reason):
return .failsToMeetPolicy(reason: reason)
}
var verifier = Verifier(
rootCertificates: CertificateStore([issuer])
) {
OCSPResponderSigningPolicy(issuer: issuer)
RFC5280Policy(validationTime: validationTime)
}
let validationResult = await verifier.validate(
leafCertificate: leafCertificate,
intermediates: CertificateStore()
)
switch validationResult {
case .couldNotValidate(let failures):
return .failsToMeetPolicy(reason: "could not validate OCSP responder certificates \(failures)")
case .validCertificate:
return .meetsPolicy
}
}
private func validateSignature(
certificate: Certificate,
tbsResponse: ArraySlice<UInt8>,
signatureBytes: ArraySlice<UInt8>,
signatureAlgorithmIdentifier: AlgorithmIdentifier
) -> PolicyEvaluationResult {
let signatureAlgorithm = Certificate.SignatureAlgorithm(algorithmIdentifier: signatureAlgorithmIdentifier)
let signature: Certificate.Signature
do {
signature = try Certificate.Signature(
signatureAlgorithm: signatureAlgorithm,
signatureBytes: .init(bytes: signatureBytes)
)
} catch {
return .failsToMeetPolicy(reason: "could not create signature for OCSP response \(error)")
}
guard
certificate.publicKey.isValidSignature(signature, for: tbsResponse, signatureAlgorithm: signatureAlgorithm)
else {
return .failsToMeetPolicy(reason: "OCSP response signature is not valid")
}
return .meetsPolicy
}
}
extension OCSPCertID {
init(hashAlgorithm: OCSPRequestHashAlgorithm, certificate: Certificate, issuer: Certificate) throws {
self.init(
hashAlgorithm: .init(algorithm: hashAlgorithm.oid, parameters: nil),
issuerNameHash: .init(contentBytes: try hashAlgorithm.issuerNameHashed(issuer)),
issuerKeyHash: .init(contentBytes: hashAlgorithm.issuerPublicKeyHashed(issuer)),
serialNumber: certificate.serialNumber
)
}
}
extension OCSPRequest {
init(certID: OCSPCertID, nonce: OCSPNonce?) throws {
self.init(
tbsRequest: OCSPTBSRequest(
version: .v1,
requestList: [
OCSPSingleRequest(certID: certID)
],
requestExtensions: try .init(builder: {
if let nonce {
nonce
}
})
)
)
}
}
extension OCSPResponseData {
/// 1 hour to address time zone bugs and 15 min for clock skew of the responder/requester
static let defaultTrustTimeLeeway: TimeInterval = 4500.0
func verifyTime(
validationTime: Date,
trustTimeLeeway: TimeInterval = Self.defaultTrustTimeLeeway
) -> PolicyEvaluationResult {
let producedAt = Date(self.producedAt)
guard producedAt <= validationTime.advanced(by: trustTimeLeeway) else {
return .failsToMeetPolicy(
reason:
"OCSP response `producedAt` (\(self.producedAt) is in the future (+\(trustTimeLeeway) seconds leeway) but should be in the past"
)
}
return .meetsPolicy
}
}
extension OCSPSingleResponse {
func verifyTime(
validationTime: Date,
trustTimeLeeway: TimeInterval = OCSPResponseData.defaultTrustTimeLeeway
) -> PolicyEvaluationResult {
/// Clients MUST check for the existence of the nextUpdate field and MUST
/// ensure the current time, expressed in GMT time as described in
/// Section 2.2.4, falls between the thisUpdate and nextUpdate times.
/// If the nextUpdate field is absent, the client MUST reject the response.
/// https://www.rfc-editor.org/rfc/rfc5019#section-4
guard let nextUpdateGeneralizedTime = self.nextUpdate else {
return .failsToMeetPolicy(reason: "OCSP response `nextUpdate` is nil")
}
let thisUpdate = Date(self.thisUpdate)
let nextUpdate = Date(nextUpdateGeneralizedTime)
guard thisUpdate <= validationTime.advanced(by: trustTimeLeeway) else {
return .failsToMeetPolicy(
reason:
"OCSP response `thisUpdate` (\(self.thisUpdate) is in the future (+\(trustTimeLeeway) seconds leeway) but should be in the past"
)
}
guard nextUpdate >= validationTime.advanced(by: -trustTimeLeeway) else {
return .failsToMeetPolicy(
reason:
"OCSP response `nextUpdate` (\(nextUpdateGeneralizedTime) is in the past (-\(trustTimeLeeway) seconds leeway) but should be in the future"
)
}
return .meetsPolicy
}
}
extension Certificate {
fileprivate func matches(_ responderID: ResponderID) -> Bool {
switch responderID {
case .byName(let subject):
return self.subject == subject
case .byKey(let responderPublicKeyHash):
let publicKeyHash = Insecure.SHA1.hash(data: self.publicKey.subjectPublicKeyInfoBytes)
return publicKeyHash == responderPublicKeyHash.bytes
}
}
}
/// Executes the given `operation` up to `maxDuration` seconds and cancels it if it exceeds the timeout.
/// - Parameters:
/// - maxDuration: max execution duration in seconds of `operation`
/// - operation: the task to start and cancel after `maxDuration` seconds
/// - Returns: the result of `operation`
private func withTimeout<Result: Sendable>(
_ maxDuration: TimeInterval,
operation: @escaping @Sendable () async -> Result
) async -> Result {
await withTaskGroup(of: Optional<Result>.self) { group in
// add actual operation
group.addTask(operation: operation)
// add watchdog
group.addTask {
try? await Task.sleep(nanoseconds: UInt64(maxDuration * 1000 * 1000 * 1000))
return nil
}
// we add two tasks and it is therefore safe to unwrap two calls to `group.next()`
let firstResult = await group.next()!
// either the operation or the watchdog has finished
// regardless of which finished first, we need to cancel the second task
group.cancelAll()
let secondResult = await group.next()!
// the watchdog and the actually operation have now completed.
// the result of the operation is non-nil and must be in either firstResult or secondResult
// therefore it is safe to unwrap it
return (firstResult ?? secondResult)!
}
}
|