ServerTrustEvaluation.swift 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. //
  2. // ServerTrustPolicy.swift
  3. //
  4. // Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/)
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining a copy
  7. // of this software and associated documentation files (the "Software"), to deal
  8. // in the Software without restriction, including without limitation the rights
  9. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. // copies of the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be included in
  14. // all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. // THE SOFTWARE.
  23. //
  24. import Foundation
  25. /// Responsible for managing the mapping of `ServerTrustEvaluating` values to given hosts.
  26. open class ServerTrustManager {
  27. /// Determines whether all hosts for this `ServerTrustManager` must be evaluated. `true` by default.
  28. public let allHostsMustBeEvaluated: Bool
  29. /// The dictionary of policies mapped to a particular host.
  30. public let evaluators: [String: ServerTrustEvaluating]
  31. /// Initializes the `ServerTrustManager` instance with the given evaluators.
  32. ///
  33. /// Since different servers and web services can have different leaf certificates, intermediate and even root
  34. /// certificates, it is important to have the flexibility to specify evaluation policies on a per host basis. This
  35. /// allows for scenarios such as using default evaluation for host1, certificate pinning for host2, public key
  36. /// pinning for host3 and disabling evaluation for host4.
  37. ///
  38. /// - Parameters:
  39. /// - allHostsMustBeEvaluated: The value determining whether all hosts for this instance must be evaluated. `true`
  40. /// by default.
  41. /// - evaluators: A dictionary of evaluators mapped to hosts.
  42. public init(allHostsMustBeEvaluated: Bool = true, evaluators: [String: ServerTrustEvaluating]) {
  43. self.allHostsMustBeEvaluated = allHostsMustBeEvaluated
  44. self.evaluators = evaluators
  45. }
  46. #if !(os(Linux) || os(Windows))
  47. /// Returns the `ServerTrustEvaluating` value for the given host, if one is set.
  48. ///
  49. /// By default, this method will return the policy that perfectly matches the given host. Subclasses could override
  50. /// this method and implement more complex mapping implementations such as wildcards.
  51. ///
  52. /// - Parameter host: The host to use when searching for a matching policy.
  53. ///
  54. /// - Returns: The `ServerTrustEvaluating` value for the given host if found, `nil` otherwise.
  55. /// - Throws: `AFError.serverTrustEvaluationFailed` if `allHostsMustBeEvaluated` is `true` and no matching
  56. /// evaluators are found.
  57. open func serverTrustEvaluator(forHost host: String) throws -> ServerTrustEvaluating? {
  58. guard let evaluator = evaluators[host] else {
  59. if allHostsMustBeEvaluated {
  60. throw AFError.serverTrustEvaluationFailed(reason: .noRequiredEvaluator(host: host))
  61. }
  62. return nil
  63. }
  64. return evaluator
  65. }
  66. #endif
  67. }
  68. /// A protocol describing the API used to evaluate server trusts.
  69. public protocol ServerTrustEvaluating {
  70. #if os(Linux) || os(Windows)
  71. // Implement this once Linux/Windows has API for evaluating server trusts.
  72. #else
  73. /// Evaluates the given `SecTrust` value for the given `host`.
  74. ///
  75. /// - Parameters:
  76. /// - trust: The `SecTrust` value to evaluate.
  77. /// - host: The host for which to evaluate the `SecTrust` value.
  78. ///
  79. /// - Returns: A `Bool` indicating whether the evaluator considers the `SecTrust` value valid for `host`.
  80. func evaluate(_ trust: SecTrust, forHost host: String) throws
  81. #endif
  82. }
  83. // MARK: - Server Trust Evaluators
  84. #if !(os(Linux) || os(Windows))
  85. /// An evaluator which uses the default server trust evaluation while allowing you to control whether to validate the
  86. /// host provided by the challenge. Applications are encouraged to always validate the host in production environments
  87. /// to guarantee the validity of the server's certificate chain.
  88. public final class DefaultTrustEvaluator: ServerTrustEvaluating {
  89. private let validateHost: Bool
  90. /// Creates a `DefaultTrustEvaluator`.
  91. ///
  92. /// - Parameter validateHost: Determines whether or not the evaluator should validate the host. `true` by default.
  93. public init(validateHost: Bool = true) {
  94. self.validateHost = validateHost
  95. }
  96. public func evaluate(_ trust: SecTrust, forHost host: String) throws {
  97. if validateHost {
  98. try trust.af.performValidation(forHost: host)
  99. }
  100. try trust.af.performDefaultValidation(forHost: host)
  101. }
  102. }
  103. /// An evaluator which Uses the default and revoked server trust evaluations allowing you to control whether to validate
  104. /// the host provided by the challenge as well as specify the revocation flags for testing for revoked certificates.
  105. /// Apple platforms did not start testing for revoked certificates automatically until iOS 10.1, macOS 10.12 and tvOS
  106. /// 10.1 which is demonstrated in our TLS tests. Applications are encouraged to always validate the host in production
  107. /// environments to guarantee the validity of the server's certificate chain.
  108. public final class RevocationTrustEvaluator: ServerTrustEvaluating {
  109. /// Represents the options to be use when evaluating the status of a certificate.
  110. /// Only Revocation Policy Constants are valid, and can be found in [Apple's documentation](https://developer.apple.com/documentation/security/certificate_key_and_trust_services/policies/1563600-revocation_policy_constants).
  111. public struct Options: OptionSet {
  112. /// Perform revocation checking using the CRL (Certification Revocation List) method.
  113. public static let crl = Options(rawValue: kSecRevocationCRLMethod)
  114. /// Consult only locally cached replies; do not use network access.
  115. public static let networkAccessDisabled = Options(rawValue: kSecRevocationNetworkAccessDisabled)
  116. /// Perform revocation checking using OCSP (Online Certificate Status Protocol).
  117. public static let ocsp = Options(rawValue: kSecRevocationOCSPMethod)
  118. /// Prefer CRL revocation checking over OCSP; by default, OCSP is preferred.
  119. public static let preferCRL = Options(rawValue: kSecRevocationPreferCRL)
  120. /// Require a positive response to pass the policy. If the flag is not set, revocation checking is done on a
  121. /// "best attempt" basis, where failure to reach the server is not considered fatal.
  122. public static let requirePositiveResponse = Options(rawValue: kSecRevocationRequirePositiveResponse)
  123. /// Perform either OCSP or CRL checking. The checking is performed according to the method(s) specified in the
  124. /// certificate and the value of `preferCRL`.
  125. public static let any = Options(rawValue: kSecRevocationUseAnyAvailableMethod)
  126. /// The raw value of the option.
  127. public let rawValue: CFOptionFlags
  128. /// Creates an `Options` value with the given `CFOptionFlags`.
  129. ///
  130. /// - Parameter rawValue: The `CFOptionFlags` value to initialize with.
  131. public init(rawValue: CFOptionFlags) {
  132. self.rawValue = rawValue
  133. }
  134. }
  135. private let performDefaultValidation: Bool
  136. private let validateHost: Bool
  137. private let options: Options
  138. /// Creates a `RevocationTrustEvaluator`.
  139. ///
  140. /// - Note: Default and host validation will fail when using this evaluator with self-signed certificates. Use
  141. /// `PinnedCertificatesTrustEvaluator` if you need to use self-signed certificates.
  142. ///
  143. /// - Parameters:
  144. /// - performDefaultValidation: Determines whether default validation should be performed in addition to
  145. /// evaluating the pinned certificates. `true` by default.
  146. /// - validateHost: Determines whether or not the evaluator should validate the host, in addition
  147. /// to performing the default evaluation, even if `performDefaultValidation` is
  148. /// `false`. `true` by default.
  149. /// - options: The `Options` to use to check the revocation status of the certificate. `.any`
  150. /// by default.
  151. public init(performDefaultValidation: Bool = true, validateHost: Bool = true, options: Options = .any) {
  152. self.performDefaultValidation = performDefaultValidation
  153. self.validateHost = validateHost
  154. self.options = options
  155. }
  156. public func evaluate(_ trust: SecTrust, forHost host: String) throws {
  157. if performDefaultValidation {
  158. try trust.af.performDefaultValidation(forHost: host)
  159. }
  160. if validateHost {
  161. try trust.af.performValidation(forHost: host)
  162. }
  163. if #available(iOS 12, macOS 10.14, tvOS 12, watchOS 5, *) {
  164. try trust.af.evaluate(afterApplying: SecPolicy.af.revocation(options: options))
  165. } else {
  166. try trust.af.validate(policy: SecPolicy.af.revocation(options: options)) { status, result in
  167. AFError.serverTrustEvaluationFailed(reason: .revocationCheckFailed(output: .init(host, trust, status, result), options: options))
  168. }
  169. }
  170. }
  171. }
  172. /// Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned
  173. /// certificates match one of the server certificates. By validating both the certificate chain and host, certificate
  174. /// pinning provides a very secure form of server trust validation mitigating most, if not all, MITM attacks.
  175. /// Applications are encouraged to always validate the host and require a valid certificate chain in production
  176. /// environments.
  177. public final class PinnedCertificatesTrustEvaluator: ServerTrustEvaluating {
  178. private let certificates: [SecCertificate]
  179. private let acceptSelfSignedCertificates: Bool
  180. private let performDefaultValidation: Bool
  181. private let validateHost: Bool
  182. /// Creates a `PinnedCertificatesTrustEvaluator`.
  183. ///
  184. /// - Parameters:
  185. /// - certificates: The certificates to use to evaluate the trust. All `cer`, `crt`, and `der`
  186. /// certificates in `Bundle.main` by default.
  187. /// - acceptSelfSignedCertificates: Adds the provided certificates as anchors for the trust evaluation, allowing
  188. /// self-signed certificates to pass. `false` by default. THIS SETTING SHOULD BE
  189. /// FALSE IN PRODUCTION!
  190. /// - performDefaultValidation: Determines whether default validation should be performed in addition to
  191. /// evaluating the pinned certificates. `true` by default.
  192. /// - validateHost: Determines whether or not the evaluator should validate the host, in addition
  193. /// to performing the default evaluation, even if `performDefaultValidation` is
  194. /// `false`. `true` by default.
  195. public init(certificates: [SecCertificate] = Bundle.main.af.certificates,
  196. acceptSelfSignedCertificates: Bool = false,
  197. performDefaultValidation: Bool = true,
  198. validateHost: Bool = true) {
  199. self.certificates = certificates
  200. self.acceptSelfSignedCertificates = acceptSelfSignedCertificates
  201. self.performDefaultValidation = performDefaultValidation
  202. self.validateHost = validateHost
  203. }
  204. public func evaluate(_ trust: SecTrust, forHost host: String) throws {
  205. guard !certificates.isEmpty else {
  206. throw AFError.serverTrustEvaluationFailed(reason: .noCertificatesFound)
  207. }
  208. if acceptSelfSignedCertificates {
  209. try trust.af.setAnchorCertificates(certificates)
  210. }
  211. if performDefaultValidation {
  212. try trust.af.performDefaultValidation(forHost: host)
  213. }
  214. if validateHost {
  215. try trust.af.performValidation(forHost: host)
  216. }
  217. let serverCertificatesData = Set(trust.af.certificateData)
  218. let pinnedCertificatesData = Set(certificates.af.data)
  219. let pinnedCertificatesInServerData = !serverCertificatesData.isDisjoint(with: pinnedCertificatesData)
  220. if !pinnedCertificatesInServerData {
  221. throw AFError.serverTrustEvaluationFailed(reason: .certificatePinningFailed(host: host,
  222. trust: trust,
  223. pinnedCertificates: certificates,
  224. serverCertificates: trust.af.certificates))
  225. }
  226. }
  227. }
  228. /// Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned
  229. /// public keys match one of the server certificate public keys. By validating both the certificate chain and host,
  230. /// public key pinning provides a very secure form of server trust validation mitigating most, if not all, MITM attacks.
  231. /// Applications are encouraged to always validate the host and require a valid certificate chain in production
  232. /// environments.
  233. public final class PublicKeysTrustEvaluator: ServerTrustEvaluating {
  234. private let keys: [SecKey]
  235. private let performDefaultValidation: Bool
  236. private let validateHost: Bool
  237. /// Creates a `PublicKeysTrustEvaluator`.
  238. ///
  239. /// - Note: Default and host validation will fail when using this evaluator with self-signed certificates. Use
  240. /// `PinnedCertificatesTrustEvaluator` if you need to use self-signed certificates.
  241. ///
  242. /// - Parameters:
  243. /// - keys: The `SecKey`s to use to validate public keys. Defaults to the public keys of all
  244. /// certificates included in the main bundle.
  245. /// - performDefaultValidation: Determines whether default validation should be performed in addition to
  246. /// evaluating the pinned certificates. `true` by default.
  247. /// - validateHost: Determines whether or not the evaluator should validate the host, in addition to
  248. /// performing the default evaluation, even if `performDefaultValidation` is `false`.
  249. /// `true` by default.
  250. public init(keys: [SecKey] = Bundle.main.af.publicKeys,
  251. performDefaultValidation: Bool = true,
  252. validateHost: Bool = true) {
  253. self.keys = keys
  254. self.performDefaultValidation = performDefaultValidation
  255. self.validateHost = validateHost
  256. }
  257. public func evaluate(_ trust: SecTrust, forHost host: String) throws {
  258. guard !keys.isEmpty else {
  259. throw AFError.serverTrustEvaluationFailed(reason: .noPublicKeysFound)
  260. }
  261. if performDefaultValidation {
  262. try trust.af.performDefaultValidation(forHost: host)
  263. }
  264. if validateHost {
  265. try trust.af.performValidation(forHost: host)
  266. }
  267. let pinnedKeysInServerKeys: Bool = {
  268. for serverPublicKey in trust.af.publicKeys {
  269. for pinnedPublicKey in keys {
  270. if serverPublicKey == pinnedPublicKey {
  271. return true
  272. }
  273. }
  274. }
  275. return false
  276. }()
  277. if !pinnedKeysInServerKeys {
  278. throw AFError.serverTrustEvaluationFailed(reason: .publicKeyPinningFailed(host: host,
  279. trust: trust,
  280. pinnedKeys: keys,
  281. serverKeys: trust.af.publicKeys))
  282. }
  283. }
  284. }
  285. /// Uses the provided evaluators to validate the server trust. The trust is only considered valid if all of the
  286. /// evaluators consider it valid.
  287. public final class CompositeTrustEvaluator: ServerTrustEvaluating {
  288. private let evaluators: [ServerTrustEvaluating]
  289. /// Creates a `CompositeTrustEvaluator`.
  290. ///
  291. /// - Parameter evaluators: The `ServerTrustEvaluating` values used to evaluate the server trust.
  292. public init(evaluators: [ServerTrustEvaluating]) {
  293. self.evaluators = evaluators
  294. }
  295. public func evaluate(_ trust: SecTrust, forHost host: String) throws {
  296. try evaluators.evaluate(trust, forHost: host)
  297. }
  298. }
  299. /// Disables all evaluation which in turn will always consider any server trust as valid.
  300. ///
  301. /// - Note: Instead of disabling server trust evaluation, it's a better idea to configure systems to properly trust test
  302. /// certificates, as outlined in [this Apple tech note](https://developer.apple.com/library/archive/qa/qa1948/_index.html).
  303. ///
  304. /// **THIS EVALUATOR SHOULD NEVER BE USED IN PRODUCTION!**
  305. @available(*, deprecated, renamed: "DisabledTrustEvaluator", message: "DisabledEvaluator has been renamed DisabledTrustEvaluator.")
  306. public typealias DisabledEvaluator = DisabledTrustEvaluator
  307. /// Disables all evaluation which in turn will always consider any server trust as valid.
  308. ///
  309. ///
  310. /// - Note: Instead of disabling server trust evaluation, it's a better idea to configure systems to properly trust test
  311. /// certificates, as outlined in [this Apple tech note](https://developer.apple.com/library/archive/qa/qa1948/_index.html).
  312. ///
  313. /// **THIS EVALUATOR SHOULD NEVER BE USED IN PRODUCTION!**
  314. public final class DisabledTrustEvaluator: ServerTrustEvaluating {
  315. /// Creates an instance.
  316. public init() {}
  317. public func evaluate(_ trust: SecTrust, forHost host: String) throws {}
  318. }
  319. // MARK: - Extensions
  320. extension Array where Element == ServerTrustEvaluating {
  321. #if os(Linux) || os(Windows)
  322. // Add this same convenience method for Linux/Windows.
  323. #else
  324. /// Evaluates the given `SecTrust` value for the given `host`.
  325. ///
  326. /// - Parameters:
  327. /// - trust: The `SecTrust` value to evaluate.
  328. /// - host: The host for which to evaluate the `SecTrust` value.
  329. ///
  330. /// - Returns: Whether or not the evaluator considers the `SecTrust` value valid for `host`.
  331. public func evaluate(_ trust: SecTrust, forHost host: String) throws {
  332. for evaluator in self {
  333. try evaluator.evaluate(trust, forHost: host)
  334. }
  335. }
  336. #endif
  337. }
  338. extension Bundle: AlamofireExtended {}
  339. extension AlamofireExtension where ExtendedType: Bundle {
  340. /// Returns all valid `cer`, `crt`, and `der` certificates in the bundle.
  341. public var certificates: [SecCertificate] {
  342. paths(forResourcesOfTypes: [".cer", ".CER", ".crt", ".CRT", ".der", ".DER"]).compactMap { path in
  343. guard
  344. let certificateData = try? Data(contentsOf: URL(fileURLWithPath: path)) as CFData,
  345. let certificate = SecCertificateCreateWithData(nil, certificateData) else { return nil }
  346. return certificate
  347. }
  348. }
  349. /// Returns all public keys for the valid certificates in the bundle.
  350. public var publicKeys: [SecKey] {
  351. certificates.af.publicKeys
  352. }
  353. /// Returns all pathnames for the resources identified by the provided file extensions.
  354. ///
  355. /// - Parameter types: The filename extensions locate.
  356. ///
  357. /// - Returns: All pathnames for the given filename extensions.
  358. public func paths(forResourcesOfTypes types: [String]) -> [String] {
  359. Array(Set(types.flatMap { type.paths(forResourcesOfType: $0, inDirectory: nil) }))
  360. }
  361. }
  362. extension SecTrust: AlamofireExtended {}
  363. extension AlamofireExtension where ExtendedType == SecTrust {
  364. /// Evaluates `self` after applying the `SecPolicy` value provided.
  365. ///
  366. /// - Parameter policy: The `SecPolicy` to apply to `self` before evaluation.
  367. ///
  368. /// - Throws: Any `Error` from applying the `SecPolicy` or from evaluation.
  369. @available(iOS 12, macOS 10.14, tvOS 12, watchOS 5, *)
  370. public func evaluate(afterApplying policy: SecPolicy) throws {
  371. try apply(policy: policy).af.evaluate()
  372. }
  373. /// Attempts to validate `self` using the `SecPolicy` provided and transforming any error produced using the closure passed.
  374. ///
  375. /// - Parameters:
  376. /// - policy: The `SecPolicy` used to evaluate `self`.
  377. /// - errorProducer: The closure used transform the failed `OSStatus` and `SecTrustResultType`.
  378. /// - Throws: Any `Error` from applying the `policy`, or the result of `errorProducer` if validation fails.
  379. @available(iOS, introduced: 10, deprecated: 12, renamed: "evaluate(afterApplying:)")
  380. @available(macOS, introduced: 10.12, deprecated: 10.14, renamed: "evaluate(afterApplying:)")
  381. @available(tvOS, introduced: 10, deprecated: 12, renamed: "evaluate(afterApplying:)")
  382. @available(watchOS, introduced: 3, deprecated: 5, renamed: "evaluate(afterApplying:)")
  383. public func validate(policy: SecPolicy, errorProducer: (_ status: OSStatus, _ result: SecTrustResultType) -> Error) throws {
  384. try apply(policy: policy).af.validate(errorProducer: errorProducer)
  385. }
  386. /// Applies a `SecPolicy` to `self`, throwing if it fails.
  387. ///
  388. /// - Parameter policy: The `SecPolicy`.
  389. ///
  390. /// - Returns: `self`, with the policy applied.
  391. /// - Throws: An `AFError.serverTrustEvaluationFailed` instance with a `.policyApplicationFailed` reason.
  392. public func apply(policy: SecPolicy) throws -> SecTrust {
  393. let status = SecTrustSetPolicies(type, policy)
  394. guard status.af.isSuccess else {
  395. throw AFError.serverTrustEvaluationFailed(reason: .policyApplicationFailed(trust: type,
  396. policy: policy,
  397. status: status))
  398. }
  399. return type
  400. }
  401. /// Evaluate `self`, throwing an `Error` if evaluation fails.
  402. ///
  403. /// - Throws: `AFError.serverTrustEvaluationFailed` with reason `.trustValidationFailed` and associated error from
  404. /// the underlying evaluation.
  405. @available(iOS 12, macOS 10.14, tvOS 12, watchOS 5, *)
  406. public func evaluate() throws {
  407. var error: CFError?
  408. let evaluationSucceeded = SecTrustEvaluateWithError(type, &error)
  409. if !evaluationSucceeded {
  410. throw AFError.serverTrustEvaluationFailed(reason: .trustEvaluationFailed(error: error))
  411. }
  412. }
  413. /// Validate `self`, passing any failure values through `errorProducer`.
  414. ///
  415. /// - Parameter errorProducer: The closure used to transform the failed `OSStatus` and `SecTrustResultType` into an
  416. /// `Error`.
  417. /// - Throws: The `Error` produced by the `errorProducer` closure.
  418. @available(iOS, introduced: 10, deprecated: 12, renamed: "evaluate()")
  419. @available(macOS, introduced: 10.12, deprecated: 10.14, renamed: "evaluate()")
  420. @available(tvOS, introduced: 10, deprecated: 12, renamed: "evaluate()")
  421. @available(watchOS, introduced: 3, deprecated: 5, renamed: "evaluate()")
  422. public func validate(errorProducer: (_ status: OSStatus, _ result: SecTrustResultType) -> Error) throws {
  423. var result = SecTrustResultType.invalid
  424. let status = SecTrustEvaluate(type, &result)
  425. guard status.af.isSuccess && result.af.isSuccess else {
  426. throw errorProducer(status, result)
  427. }
  428. }
  429. /// Sets a custom certificate chain on `self`, allowing full validation of a self-signed certificate and its chain.
  430. ///
  431. /// - Parameter certificates: The `SecCertificate`s to add to the chain.
  432. /// - Throws: Any error produced when applying the new certificate chain.
  433. public func setAnchorCertificates(_ certificates: [SecCertificate]) throws {
  434. // Add additional anchor certificates.
  435. let status = SecTrustSetAnchorCertificates(type, certificates as CFArray)
  436. guard status.af.isSuccess else {
  437. throw AFError.serverTrustEvaluationFailed(reason: .settingAnchorCertificatesFailed(status: status,
  438. certificates: certificates))
  439. }
  440. // Trust only the set anchor certs.
  441. let onlyStatus = SecTrustSetAnchorCertificatesOnly(type, true)
  442. guard onlyStatus.af.isSuccess else {
  443. throw AFError.serverTrustEvaluationFailed(reason: .settingAnchorCertificatesFailed(status: onlyStatus,
  444. certificates: certificates))
  445. }
  446. }
  447. /// The public keys contained in `self`.
  448. public var publicKeys: [SecKey] {
  449. certificates.af.publicKeys
  450. }
  451. /// The `SecCertificate`s contained i `self`.
  452. public var certificates: [SecCertificate] {
  453. (0..<SecTrustGetCertificateCount(type)).compactMap { index in
  454. SecTrustGetCertificateAtIndex(type, index)
  455. }
  456. }
  457. /// The `Data` values for all certificates contained in `self`.
  458. public var certificateData: [Data] {
  459. certificates.af.data
  460. }
  461. /// Validates `self` after applying `SecPolicy.af.default`. This evaluation does not validate the hostname.
  462. ///
  463. /// - Parameter host: The hostname, used only in the error output if validation fails.
  464. /// - Throws: An `AFError.serverTrustEvaluationFailed` instance with a `.defaultEvaluationFailed` reason.
  465. public func performDefaultValidation(forHost host: String) throws {
  466. if #available(iOS 12, macOS 10.14, tvOS 12, watchOS 5, *) {
  467. try evaluate(afterApplying: SecPolicy.af.default)
  468. } else {
  469. try validate(policy: SecPolicy.af.default) { status, result in
  470. AFError.serverTrustEvaluationFailed(reason: .defaultEvaluationFailed(output: .init(host, type, status, result)))
  471. }
  472. }
  473. }
  474. /// Validates `self` after applying `SecPolicy.af.hostname(host)`, which performs the default validation as well as
  475. /// hostname validation.
  476. ///
  477. /// - Parameter host: The hostname to use in the validation.
  478. /// - Throws: An `AFError.serverTrustEvaluationFailed` instance with a `.defaultEvaluationFailed` reason.
  479. public func performValidation(forHost host: String) throws {
  480. if #available(iOS 12, macOS 10.14, tvOS 12, watchOS 5, *) {
  481. try evaluate(afterApplying: SecPolicy.af.hostname(host))
  482. } else {
  483. try validate(policy: SecPolicy.af.hostname(host)) { status, result in
  484. AFError.serverTrustEvaluationFailed(reason: .hostValidationFailed(output: .init(host, type, status, result)))
  485. }
  486. }
  487. }
  488. }
  489. extension SecPolicy: AlamofireExtended {}
  490. extension AlamofireExtension where ExtendedType == SecPolicy {
  491. /// Creates a `SecPolicy` instance which will validate server certificates but not require a host name match.
  492. public static let `default` = SecPolicyCreateSSL(true, nil)
  493. /// Creates a `SecPolicy` instance which will validate server certificates and much match the provided hostname.
  494. ///
  495. /// - Parameter hostname: The hostname to validate against.
  496. ///
  497. /// - Returns: The `SecPolicy`.
  498. public static func hostname(_ hostname: String) -> SecPolicy {
  499. SecPolicyCreateSSL(true, hostname as CFString)
  500. }
  501. /// Creates a `SecPolicy` which checks the revocation of certificates.
  502. ///
  503. /// - Parameter options: The `RevocationTrustEvaluator.Options` for evaluation.
  504. ///
  505. /// - Returns: The `SecPolicy`.
  506. /// - Throws: An `AFError.serverTrustEvaluationFailed` error with reason `.revocationPolicyCreationFailed`
  507. /// if the policy cannot be created.
  508. public static func revocation(options: RevocationTrustEvaluator.Options) throws -> SecPolicy {
  509. guard let policy = SecPolicyCreateRevocation(options.rawValue) else {
  510. throw AFError.serverTrustEvaluationFailed(reason: .revocationPolicyCreationFailed)
  511. }
  512. return policy
  513. }
  514. }
  515. extension Array: AlamofireExtended {}
  516. extension AlamofireExtension where ExtendedType == [SecCertificate] {
  517. /// All `Data` values for the contained `SecCertificate`s.
  518. public var data: [Data] {
  519. type.map { SecCertificateCopyData($0) as Data }
  520. }
  521. /// All public `SecKey` values for the contained `SecCertificate`s.
  522. public var publicKeys: [SecKey] {
  523. type.compactMap { $0.af.publicKey }
  524. }
  525. }
  526. extension SecCertificate: AlamofireExtended {}
  527. extension AlamofireExtension where ExtendedType == SecCertificate {
  528. /// The public key for `self`, if it can be extracted.
  529. public var publicKey: SecKey? {
  530. let policy = SecPolicyCreateBasicX509()
  531. var trust: SecTrust?
  532. let trustCreationStatus = SecTrustCreateWithCertificates(type, policy, &trust)
  533. guard let createdTrust = trust, trustCreationStatus == errSecSuccess else { return nil }
  534. return SecTrustCopyPublicKey(createdTrust)
  535. }
  536. }
  537. extension OSStatus: AlamofireExtended {}
  538. extension AlamofireExtension where ExtendedType == OSStatus {
  539. /// Returns whether `self` is `errSecSuccess`.
  540. public var isSuccess: Bool { type == errSecSuccess }
  541. }
  542. extension SecTrustResultType: AlamofireExtended {}
  543. extension AlamofireExtension where ExtendedType == SecTrustResultType {
  544. /// Returns whether `self is `.unspecified` or `.proceed`.
  545. public var isSuccess: Bool {
  546. type == .unspecified || type == .proceed
  547. }
  548. }
  549. #endif