-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathSignatureProvider.swift
415 lines (365 loc) · 14.8 KB
/
SignatureProvider.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import struct Foundation.Data
import struct Foundation.Date
#if USE_IMPL_ONLY_IMPORTS
#if canImport(Security)
internal import Security
#endif
internal import SwiftASN1
@_spi(CMS) internal import X509
#else
#if canImport(Security)
import Security
#endif
import SwiftASN1
@_spi(CMS) import X509
#endif
import Basics
// MARK: - Public signature API
public enum SignatureProvider {
public static func sign(
content: [UInt8],
identity: SigningIdentity,
intermediateCertificates: [[UInt8]],
format: SignatureFormat,
observabilityScope: ObservabilityScope
) throws -> [UInt8] {
let provider = format.provider
return try provider.sign(
content: content,
identity: identity,
intermediateCertificates: intermediateCertificates,
observabilityScope: observabilityScope
)
}
public static func status(
signature: [UInt8],
content: [UInt8],
format: SignatureFormat,
verifierConfiguration: VerifierConfiguration,
observabilityScope: ObservabilityScope
) async throws -> SignatureStatus {
let provider = format.provider
return try await provider.status(
signature: signature,
content: content,
verifierConfiguration: verifierConfiguration,
observabilityScope: observabilityScope
)
}
public static func extractSigningEntity(
signature: [UInt8],
format: SignatureFormat,
verifierConfiguration: VerifierConfiguration
) async throws -> SigningEntity {
let provider = format.provider
return try await provider.extractSigningEntity(
signature: signature,
format: format,
verifierConfiguration: verifierConfiguration
)
}
}
public struct VerifierConfiguration {
public var trustedRoots: [[UInt8]]
public var includeDefaultTrustStore: Bool
public var certificateExpiration: CertificateExpiration
public var certificateRevocation: CertificateRevocation
// for testing
init(
trustedRoots: [[UInt8]],
includeDefaultTrustStore: Bool,
certificateExpiration: CertificateExpiration,
certificateRevocation: CertificateRevocation
) {
self.trustedRoots = trustedRoots
self.includeDefaultTrustStore = includeDefaultTrustStore
self.certificateExpiration = certificateExpiration
self.certificateRevocation = certificateRevocation
}
public init() {
self.trustedRoots = []
self.includeDefaultTrustStore = true
self.certificateExpiration = .disabled
self.certificateRevocation = .disabled
}
public enum CertificateExpiration {
case enabled(validationTime: Date?)
case disabled
}
public enum CertificateRevocation {
case strict(validationTime: Date?)
case allowSoftFail(validationTime: Date?)
case disabled
}
}
public enum SignatureStatus: Equatable {
case valid(SigningEntity)
case invalid(String)
case certificateInvalid(String)
case certificateNotTrusted(SigningEntity)
}
public enum SigningError: Error {
case signingFailed(String)
case keyDoesNotSupportSignatureAlgorithm
case signingIdentityNotSupported
case unableToValidateSignature(String)
case invalidSignature(String)
case certificateInvalid(String)
case certificateNotTrusted(SigningEntity)
}
// MARK: - Signature formats and providers
public enum SignatureFormat: String {
case cms_1_0_0 = "cms-1.0.0"
public var signingKeyType: SigningKeyType {
switch self {
case .cms_1_0_0:
return .p256
}
}
var provider: SignatureProviderProtocol {
switch self {
case .cms_1_0_0:
return CMSSignatureProvider(signatureAlgorithm: .ecdsaP256)
}
}
}
public enum SigningKeyType {
case p256
// RSA support is internal/testing only, thus not included
}
enum SignatureAlgorithm {
case ecdsaP256
case rsa
var certificateSignatureAlgorithm: Certificate.SignatureAlgorithm {
switch self {
case .ecdsaP256:
return .ecdsaWithSHA256
case .rsa:
return .sha256WithRSAEncryption
}
}
}
protocol SignatureProviderProtocol {
func sign(
content: [UInt8],
identity: SigningIdentity,
intermediateCertificates: [[UInt8]],
observabilityScope: ObservabilityScope
) throws -> [UInt8]
func status(
signature: [UInt8],
content: [UInt8],
verifierConfiguration: VerifierConfiguration,
observabilityScope: ObservabilityScope
) async throws -> SignatureStatus
func extractSigningEntity(
signature: [UInt8],
format: SignatureFormat,
verifierConfiguration: VerifierConfiguration
) async throws -> SigningEntity
}
// MARK: - CMS signature provider
struct CMSSignatureProvider: SignatureProviderProtocol {
let signatureAlgorithm: SignatureAlgorithm
let httpClient: HTTPClient
init(
signatureAlgorithm: SignatureAlgorithm,
customHTTPClient: HTTPClient? = .none
) {
self.signatureAlgorithm = signatureAlgorithm
self.httpClient = customHTTPClient ?? HTTPClient()
}
func sign(
content: [UInt8],
identity: SigningIdentity,
intermediateCertificates: [[UInt8]],
observabilityScope: ObservabilityScope
) throws -> [UInt8] {
#if canImport(Security)
if CFGetTypeID(identity as CFTypeRef) == SecIdentityGetTypeID() {
let secIdentity = identity as! SecIdentity // !-safe because we ensure type above
var privateKey: SecKey?
let keyStatus = SecIdentityCopyPrivateKey(secIdentity, &privateKey)
guard keyStatus == errSecSuccess, let privateKey else {
throw SigningError.signingFailed("unable to get private key from SecIdentity: status \(keyStatus)")
}
let signature = try privateKey.sign(content: content, algorithm: self.signatureAlgorithm)
do {
let intermediateCertificates = try intermediateCertificates.map { try Certificate($0) }
return try CMS.sign(
signatureBytes: ASN1OctetString(contentBytes: ArraySlice(signature)),
signatureAlgorithm: self.signatureAlgorithm.certificateSignatureAlgorithm,
additionalIntermediateCertificates: intermediateCertificates,
certificate: try Certificate(secIdentity: secIdentity)
)
} catch {
throw SigningError.signingFailed("\(error.interpolationDescription)")
}
}
#endif
guard let swiftSigningIdentity = identity as? SwiftSigningIdentity else {
throw SigningError.signingIdentityNotSupported
}
do {
let intermediateCertificates = try intermediateCertificates.map { try Certificate($0) }
return try CMS.sign(
content,
signatureAlgorithm: self.signatureAlgorithm.certificateSignatureAlgorithm,
additionalIntermediateCertificates: intermediateCertificates,
certificate: swiftSigningIdentity.certificate,
privateKey: swiftSigningIdentity.privateKey
)
} catch let error as CertificateError where error.code == .unsupportedSignatureAlgorithm {
throw SigningError.keyDoesNotSupportSignatureAlgorithm
} catch {
throw SigningError.signingFailed("\(error.interpolationDescription)")
}
}
func status(
signature: [UInt8],
content: [UInt8],
verifierConfiguration: VerifierConfiguration,
observabilityScope: ObservabilityScope
) async throws -> SignatureStatus {
do {
var trustRoots: [Certificate] = []
if verifierConfiguration.includeDefaultTrustStore {
trustRoots.append(contentsOf: CertificateStores.defaultTrustRoots)
}
trustRoots.append(contentsOf: try verifierConfiguration.trustedRoots.map { try Certificate($0) })
let result = await CMS.isValidSignature(
dataBytes: content,
signatureBytes: signature,
// The intermediates supplied here will be combined with those
// included in the signature to build cert chain for validation.
//
// Those who use ADP certs for signing are not required to provide
// the entire cert chain, thus we must supply WWDR intermediates
// here so that the chain can be constructed during validation.
// Whether the signing cert is trusted still depends on whether
// the WWDR roots are in the trust store or not, which by default
// they are but user may disable that through configuration.
additionalIntermediateCertificates: Certificates.wwdrIntermediates,
trustRoots: CertificateStore(trustRoots)
) {
self.buildPolicySet(configuration: verifierConfiguration, httpClient: self.httpClient)
}
switch result {
case .success(let valid):
let signingEntity = SigningEntity.from(certificate: valid.signer)
return .valid(signingEntity)
case .failure(CMS.VerificationError.unableToValidateSigner(let failure)):
if failure.validationFailures.isEmpty {
let signingEntity = SigningEntity.from(certificate: failure.signer)
return .certificateNotTrusted(signingEntity)
} else {
observabilityScope
.emit(
info: "cannot validate certificate chain. Validation failures: \(failure.validationFailures)"
)
return .certificateInvalid("failures: \(failure.validationFailures.map(\.policyFailureReason))")
}
case .failure(CMS.VerificationError.invalidCMSBlock(let error)):
return .invalid(error.reason)
case .failure(let error):
return .invalid("\(error.interpolationDescription)")
}
} catch {
throw SigningError.unableToValidateSignature("\(error.interpolationDescription)")
}
}
func extractSigningEntity(
signature: [UInt8],
format: SignatureFormat,
verifierConfiguration: VerifierConfiguration
) async throws -> SigningEntity {
switch format {
case .cms_1_0_0:
do {
let cmsSignature = try CMSSignature(derEncoded: signature)
let signers = try cmsSignature.signers
guard signers.count == 1, let signer = signers.first else {
throw SigningError.invalidSignature("expected 1 signer but got \(signers.count)")
}
let signingCertificate = signer.certificate
var trustRoots: [Certificate] = []
if verifierConfiguration.includeDefaultTrustStore {
trustRoots.append(contentsOf: CertificateStores.defaultTrustRoots)
}
trustRoots.append(contentsOf: try verifierConfiguration.trustedRoots.map { try Certificate($0) })
// Verifier uses these to build cert chain for validation
// (see also notes in `status` method)
var untrustedIntermediates: [Certificate] = []
// WWDR intermediates are not required when signing with ADP certs,
// (i.e., these intermediates may not be in the signature), hence
// we include them here to ensure Verifier can build cert chain.
untrustedIntermediates.append(contentsOf: Certificates.wwdrIntermediates)
// For self-signed certificate, the signature should include intermediate(s).
untrustedIntermediates.append(contentsOf: cmsSignature.certificates)
var verifier = Verifier(rootCertificates: CertificateStore(trustRoots)) {
self.buildPolicySet(configuration: verifierConfiguration, httpClient: self.httpClient)
}
let result = await verifier.validate(
leafCertificate: signingCertificate,
intermediates: CertificateStore(untrustedIntermediates)
)
switch result {
case .validCertificate:
return SigningEntity.from(certificate: signingCertificate)
case .couldNotValidate(let validationFailures):
if validationFailures.isEmpty {
let signingEntity = SigningEntity.from(certificate: signingCertificate)
throw SigningError.certificateNotTrusted(signingEntity)
} else {
throw SigningError
.certificateInvalid("failures: \(validationFailures.map(\.policyFailureReason))")
}
}
} catch let error as SigningError {
throw error
} catch {
throw SigningError.invalidSignature("\(error.interpolationDescription)")
}
}
}
}
#if canImport(Security)
extension SecKey {
func sign(content: [UInt8], algorithm: SignatureAlgorithm) throws -> [UInt8] {
let secKeyAlgorithm: SecKeyAlgorithm
switch algorithm {
case .ecdsaP256:
secKeyAlgorithm = .ecdsaSignatureMessageX962SHA256
case .rsa:
secKeyAlgorithm = .rsaSignatureMessagePKCS1v15SHA256
}
guard SecKeyIsAlgorithmSupported(self, .sign, secKeyAlgorithm) else {
throw SigningError.keyDoesNotSupportSignatureAlgorithm
}
var error: Unmanaged<CFError>?
guard let signatureData = SecKeyCreateSignature(
self,
secKeyAlgorithm,
Data(content) as CFData,
&error
) as Data? else {
if let error = error?.takeRetainedValue() as Error? {
throw SigningError.signingFailed("\(error.interpolationDescription)")
}
throw SigningError.signingFailed("Failed to sign with SecKey")
}
return Array(signatureData)
}
}
#endif