-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathReactNativePasskeysModule.swift
More file actions
547 lines (457 loc) · 21 KB
/
ReactNativePasskeysModule.swift
File metadata and controls
547 lines (457 loc) · 21 KB
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
import AuthenticationServices
import ExpoModulesCore
import LocalAuthentication
struct PasskeyContext {
let passkeyDelegate: PasskeyDelegate
let promise: Promise
}
final public class ReactNativePasskeysModule: Module, PasskeyResultHandler {
private var passkeyContext: PasskeyContext?
public func definition() -> ModuleDefinition {
Name("ReactNativePasskeys")
Function("isSupported") { () -> Bool in
if #available(iOS 15.0, *) {
return true
} else {
return false
}
}
Function("isAutoFillAvailable") { () -> Bool in
return false
}
AsyncFunction("get") {
(request: PublicKeyCredentialRequestOptions, promise: Promise) throws in
do {
// - all the throws are already in the helper `isAvailable` so we don't need to do anything
// ? this seems like a code smell ... what is the best way to do this
let _ = try isAvailable()
} catch let error {
throw error
}
let passkeyDelegate = PasskeyDelegate(handler: self)
passkeyContext = PasskeyContext(passkeyDelegate: passkeyDelegate, promise: promise)
guard let challengeData: Data = Data(base64URLEncoded: request.challenge) else {
throw InvalidChallengeException()
}
let crossPlatformKeyAssertionRequest = prepareCrossPlatformAssertionRequest(
challenge: challengeData, request: request)
let platformKeyAssertionRequest = try preparePlatformAssertionRequest(
challenge: challengeData, request: request)
let authController = ASAuthorizationController(authorizationRequests: [
platformKeyAssertionRequest, crossPlatformKeyAssertionRequest,
])
passkeyDelegate.performAuthForController(controller: authController)
}.runOnQueue(.main)
AsyncFunction("create") {
(request: PublicKeyCredentialCreationOptions, promise: Promise) throws in
do {
// - all the throws are already in the helper `isAvailable` so we don't need to do anything
// ? this seems like a code smell ... what is the best way to do this
let _ = try isAvailable()
} catch let error {
throw error
}
let passkeyDelegate = PasskeyDelegate(handler: self)
let context = PasskeyContext(passkeyDelegate: passkeyDelegate, promise: promise)
guard let challengeData: Data = Data(base64URLEncoded: request.challenge) else {
throw InvalidChallengeException()
}
guard let userId: Data = Data(base64URLEncoded: request.user.id) else {
throw InvalidUserIdException()
}
var crossPlatformKeyRegistrationRequest:
ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest?
var platformKeyRegistrationRequest:
ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest?
if request.authenticatorSelection?.authenticatorAttachment
== AuthenticatorAttachment.crossPlatform
{
crossPlatformKeyRegistrationRequest = prepareCrossPlatformRegistrationRequest(
challenge: challengeData,
userId: userId,
request: request)
} else {
platformKeyRegistrationRequest = try preparePlatformRegistrationRequest(
challenge: challengeData,
userId: userId,
request: request)
}
let authController: ASAuthorizationController
if platformKeyRegistrationRequest != nil {
authController = ASAuthorizationController(authorizationRequests: [
platformKeyRegistrationRequest!
])
} else {
authController = ASAuthorizationController(authorizationRequests: [
crossPlatformKeyRegistrationRequest!
])
}
passkeyContext = context
context.passkeyDelegate.performAuthForController(controller: authController)
}.runOnQueue(.main)
}
private func isAvailable() throws -> Bool {
if #unavailable(iOS 15.0) {
throw NotSupportedException()
}
if passkeyContext != nil {
throw PendingPasskeyRequestException()
}
if LAContext().biometricType == .none {
throw BiometricException()
}
return true
}
internal func onSuccess(_ data: PublicKeyCredentialJSON) {
guard let promise = passkeyContext?.promise else {
log.error("Passkey context has been lost")
return
}
passkeyContext = nil
if let registrationResult: RegistrationResponseJSON = data.get() {
promise.resolve(registrationResult)
return
}
if let assertionResult: AuthenticationResponseJSON = data.get() {
promise.resolve(assertionResult)
return
}
}
internal func onFailure(_ error: Error) {
guard let promise = passkeyContext?.promise else {
log.error("Passkey context has been lost")
return
}
passkeyContext = nil
promise.reject(
handleASAuthorizationError(
errorCode: (error as NSError).code,
localizedDescription: error.localizedDescription))
}
}
private func prepareCrossPlatformRegistrationRequest(
challenge: Data,
userId: Data,
request: PublicKeyCredentialCreationOptions
) -> ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest {
let crossPlatformCredentialProvider = ASAuthorizationSecurityKeyPublicKeyCredentialProvider(
relyingPartyIdentifier: request.rp.id!)
let crossPlatformRegistrationRequest =
crossPlatformCredentialProvider.createCredentialRegistrationRequest(
challenge: challenge,
displayName: request.user.displayName,
name: request.user.name,
userID: userId)
// Set request options to the Security Key provider
crossPlatformRegistrationRequest.credentialParameters = request.pubKeyCredParams.map({
$0.appleise()
})
if let residentCredPref = request.authenticatorSelection?.residentKey {
crossPlatformRegistrationRequest.residentKeyPreference = residentCredPref.appleise()
}
if let userVerificationPref = request.authenticatorSelection?.userVerification {
crossPlatformRegistrationRequest.userVerificationPreference =
userVerificationPref.appleise()
}
if let rpAttestationPref = request.attestation {
crossPlatformRegistrationRequest.attestationPreference = rpAttestationPref.appleise()
}
if let excludedCredentials = request.excludeCredentials {
if !excludedCredentials.isEmpty {
if #available(iOS 17.4, *) {
crossPlatformRegistrationRequest.excludedCredentials = excludedCredentials.map({
$0.getCrossPlatformDescriptor()
})
}
}
}
return crossPlatformRegistrationRequest
}
private func preparePlatformRegistrationRequest(
challenge: Data,
userId: Data,
request: PublicKeyCredentialCreationOptions
) throws -> ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest {
let platformKeyCredentialProvider = ASAuthorizationPlatformPublicKeyCredentialProvider(
relyingPartyIdentifier: request.rp.id!)
let platformKeyRegistrationRequest =
platformKeyCredentialProvider.createCredentialRegistrationRequest(
challenge: challenge,
name: request.user.name,
userID: userId)
// if let residentCredPref = request.authenticatorSelection?.residentKey {
// platformKeyRegistrationRequest.residentKeyPreference = residentCredPref.appleise()
// }
// TODO: integrate this
// platformKeyRegistrationRequest.shouldShowHybridTransport
if #available(iOS 17, *) {
switch request.extensions?.largeBlob?.support {
case .preferred:
platformKeyRegistrationRequest.largeBlob =
ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput.supportPreferred
case .required:
platformKeyRegistrationRequest.largeBlob =
ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput.supportRequired
case .none:
break
}
}
if #available(iOS 18, *) {
if let prf = request.extensions?.prf {
platformKeyRegistrationRequest.prf =
try prf.eval.map { eval in
guard let first = Data(base64URLEncoded: eval.first) else {
throw InvalidPRFInputException(
name: "InvalidFirstPRFInput",
description: "Incorrect base64url encoding")
}
let second = try eval.second.map {
guard let data = Data(base64URLEncoded: $0) else {
throw InvalidPRFInputException(
name: "InvalidSecondPRFInput",
description: "Incorrect base64url encoding")
}
return data
}
return .inputValues(
ASAuthorizationPublicKeyCredentialPRFRegistrationInput.InputValues(
saltInput1: first, saltInput2: second))
} ?? .checkForSupport
}
}
if let userVerificationPref = request.authenticatorSelection?.userVerification {
platformKeyRegistrationRequest.userVerificationPreference = userVerificationPref.appleise()
}
if let rpAttestationPref = request.attestation {
platformKeyRegistrationRequest.attestationPreference = rpAttestationPref.appleise()
}
if let excludedCredentials = request.excludeCredentials {
if !excludedCredentials.isEmpty {
if #available(iOS 17.4, *) {
platformKeyRegistrationRequest.excludedCredentials = excludedCredentials.map({
$0.getPlatformDescriptor()
})
}
}
}
return platformKeyRegistrationRequest
}
private func prepareCrossPlatformAssertionRequest(
challenge: Data,
request: PublicKeyCredentialRequestOptions
) -> ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest {
let crossPlatformCredentialProvider = ASAuthorizationSecurityKeyPublicKeyCredentialProvider(
relyingPartyIdentifier: request.rpId)
let crossPlatformAssertionRequest:
ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest =
crossPlatformCredentialProvider.createCredentialAssertionRequest(challenge: challenge)
if let allowCredentials = request.allowCredentials {
if !allowCredentials.isEmpty {
crossPlatformAssertionRequest.allowedCredentials = allowCredentials.map({
$0.getCrossPlatformDescriptor()
})
}
}
return crossPlatformAssertionRequest
}
private func preparePlatformAssertionRequest(
challenge: Data, request: PublicKeyCredentialRequestOptions
) throws -> ASAuthorizationPlatformPublicKeyCredentialAssertionRequest {
let platformKeyCredentialProvider = ASAuthorizationPlatformPublicKeyCredentialProvider(
relyingPartyIdentifier: request.rpId)
let platformKeyAssertionRequest: ASAuthorizationPlatformPublicKeyCredentialAssertionRequest =
platformKeyCredentialProvider.createCredentialAssertionRequest(challenge: challenge)
if #available(iOS 17, *) {
if request.extensions?.largeBlob?.read == true {
platformKeyAssertionRequest.largeBlob =
ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput.read
} else if let blob = request.extensions?.largeBlob?.write {
guard let blobData = Data(base64URLEncoded: blob) else {
throw InvalidLargeBlobWriteInputException(
name: "InvalidLargeBlobWriteInput", description: "Incorrect base64url encoding")
}
platformKeyAssertionRequest.largeBlob =
ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput.write(blobData)
}
}
if #available(iOS 18, *) {
if let prfInputs = request.extensions?.prf {
/// Helper function to decode PRF values
func decodePRFValues(
_ values: AuthenticationExtensionsPRFValues,
credentialId: String?
) throws -> ASAuthorizationPublicKeyCredentialPRFAssertionInput.InputValues {
guard let first = Data(base64URLEncoded: values.first) else {
throw InvalidPRFInputException(
name: "InvalidFirstPRFInput",
description: credentialId.map {
"Incorrect base64url encoding for credential \($0)"
} ?? "Incorrect base64url encoding")
}
let second = try values.second.map {
guard let data = Data(base64URLEncoded: $0) else {
throw InvalidPRFInputException(
name: "InvalidSecondPRFInput",
description: credentialId.map {
"Incorrect base64url encoding for credential \($0)"
} ?? "Incorrect base64url encoding")
}
return data
}
return ASAuthorizationPublicKeyCredentialPRFAssertionInput.InputValues(
saltInput1: first,
saltInput2: second
)
}
// Handle evalByCredential first (per WebAuthn spec: evalByCredential takes precedence, eval is fallback)
if let evalByCredential = prfInputs.evalByCredential, !evalByCredential.isEmpty {
// Validate that allowCredentials is specified per WebAuthn spec
guard let allowCredentials = request.allowCredentials, !allowCredentials.isEmpty
else {
throw InvalidPRFInputException(
name: "NotSupportedError",
description: "evalByCredential requires allowCredentials to be specified")
}
var perCredentialInputs:
[Data: ASAuthorizationPublicKeyCredentialPRFAssertionInput.InputValues] = [:]
// Process each credential in allowCredentials
for descriptor in allowCredentials {
guard let credentialIdData = Data(base64URLEncoded: descriptor.id) else {
throw InvalidPRFInputException(
name: "SyntaxError",
description: "Credential ID is not valid base64url")
}
// Check if there's a specific entry in evalByCredential for this credential
// If not, use eval as fallback (per WebAuthn spec)
guard let values = evalByCredential[descriptor.id] ?? prfInputs.eval else {
throw InvalidPRFInputException(
name: "MissingPRFInput",
description: "No PRF input provided for credential \(descriptor.id)")
}
perCredentialInputs[credentialIdData] = try decodePRFValues(
values, credentialId: descriptor.id)
}
platformKeyAssertionRequest.prf = .perCredentialInputValues(perCredentialInputs)
}
// Handle eval only (single input for selected credential)
else if let eval = prfInputs.eval {
platformKeyAssertionRequest.prf = .inputValues(
try decodePRFValues(eval, credentialId: nil))
}
}
}
// TODO: integrate this
// platformKeyAssertionRequest.shouldShowHybridTransport
if let userVerificationPref = request.userVerification {
platformKeyAssertionRequest.userVerificationPreference = userVerificationPref.appleise()
}
if let allowCredentials = request.allowCredentials {
if !allowCredentials.isEmpty {
platformKeyAssertionRequest.allowedCredentials = allowCredentials.map({
$0.getPlatformDescriptor()
})
}
}
return platformKeyAssertionRequest
}
func handleASAuthorizationError(errorCode: Int, localizedDescription: String = "") -> Exception {
// Helper to check if iOS gave us a generic/useless error message
func isGenericErrorMessage(_ description: String) -> Bool {
let isEmpty = description.isEmpty
let hasNull = description.contains("(null)")
// Remove all non-alphabetic characters and check for the key phrase
let alphaOnly = description.filter { $0.isLetter || $0.isWhitespace }
let hasOperationNotCompleted = alphaOnly.contains("The operation couldnt be completed")
return isEmpty || hasNull || hasOperationNotCompleted
}
switch errorCode {
case 1000:
// ASAuthorizationErrorUnknown
let message =
isGenericErrorMessage(localizedDescription)
? "The authorization attempt failed for an unknown reason."
: localizedDescription
return UnknownException(name: "UnknownError", description: message)
case 1001:
// ASAuthorizationErrorCanceled - maps to WebAuthn NotAllowedError
let message =
isGenericErrorMessage(localizedDescription)
? "The user canceled the authorization attempt."
: localizedDescription
return UserCancelledException(name: "NotAllowedError", description: message)
case 1002:
// ASAuthorizationErrorInvalidResponse - maps to WebAuthn EncodingError
let message =
isGenericErrorMessage(localizedDescription)
? "The authorization request received an invalid response."
: localizedDescription
return InvalidResponseException(name: "EncodingError", description: message)
case 1003:
// ASAuthorizationErrorNotHandled - maps to WebAuthn NotSupportedError
let message =
isGenericErrorMessage(localizedDescription)
? "The authorization request was not handled."
: localizedDescription
return NotHandledException(name: "NotSupportedError", description: message)
case 1004:
// ASAuthorizationErrorFailed - maps to WebAuthn OperationError
let message =
isGenericErrorMessage(localizedDescription)
? "The authorization attempt failed."
: localizedDescription
return PasskeyRequestFailedException(name: "OperationError", description: message)
case 1005:
// ASAuthorizationErrorNotInteractive - maps to WebAuthn InvalidStateError
let message =
isGenericErrorMessage(localizedDescription)
? "The authorization request cannot be interactive."
: localizedDescription
return NotInteractiveException(name: "InvalidStateError", description: message)
case 1006:
// ASAuthorizationErrorMatchedExcludedCredential (iOS 18.0+) - maps to WebAuthn InvalidStateError
let message =
isGenericErrorMessage(localizedDescription)
? "The user attempted to register an authenticator that contains one of the credentials already registered with the relying party."
: localizedDescription
return MatchedExcludedCredentialException(name: "InvalidStateError", description: message)
default:
// Unknown error code
let message =
isGenericErrorMessage(localizedDescription)
? "An unknown authorization error occurred (code: \(errorCode))."
: localizedDescription
return UnknownException(name: "UnknownError", description: message)
}
}
extension LAContext {
enum BiometricType: String {
case none
case touchID
case faceID
case opticID
}
var biometricType: BiometricType {
var error: NSError?
guard self.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) else {
// Capture these recoverable error thru Crashlytics
return .none
}
if #available(iOS 11.0, *) {
switch self.biometryType {
case .none:
return .none
case .touchID:
return .touchID
case .faceID:
return .faceID
case .opticID:
return .opticID
@unknown default:
return .none
}
} else {
return self.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: nil)
? .touchID : .none
}
}
}