forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_assertion_task.h
116 lines (90 loc) · 3.97 KB
/
get_assertion_task.h
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
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEVICE_FIDO_GET_ASSERTION_TASK_H_
#define DEVICE_FIDO_GET_ASSERTION_TASK_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/callback.h"
#include "base/component_export.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/optional.h"
#include "device/fido/ctap_get_assertion_request.h"
#include "device/fido/ctap_make_credential_request.h"
#include "device/fido/device_operation.h"
#include "device/fido/fido_constants.h"
#include "device/fido/fido_task.h"
#include "device/fido/pin.h"
namespace cbor {
class Value;
}
namespace device {
class AuthenticatorGetAssertionResponse;
class AuthenticatorMakeCredentialResponse;
// Represents per device sign operation on CTAP1/CTAP2 devices.
// https://fidoalliance.org/specs/fido-v2.0-rd-20161004/fido-client-to-authenticator-protocol-v2.0-rd-20161004.html#authenticatorgetassertion
class COMPONENT_EXPORT(DEVICE_FIDO) GetAssertionTask : public FidoTask {
public:
using GetAssertionTaskCallback = base::OnceCallback<void(
CtapDeviceResponseCode,
base::Optional<AuthenticatorGetAssertionResponse>)>;
using SignOperation = DeviceOperation<CtapGetAssertionRequest,
AuthenticatorGetAssertionResponse>;
using RegisterOperation =
DeviceOperation<CtapMakeCredentialRequest,
AuthenticatorMakeCredentialResponse>;
GetAssertionTask(FidoDevice* device,
CtapGetAssertionRequest request,
CtapGetAssertionOptions options,
GetAssertionTaskCallback callback);
~GetAssertionTask() override;
// FidoTask:
void Cancel() override;
// StringFixupPredicate indicates which fields of a GetAssertion
// response may contain truncated UTF-8 strings. See
// |Ctap2DeviceOperation::CBORPathPredicate|.
static bool StringFixupPredicate(const std::vector<const cbor::Value*>& path);
private:
// FidoTask:
void StartTask() override;
void GetAssertion();
void U2fSign();
CtapGetAssertionRequest NextSilentRequest();
// HandleResponse is the callback to a CTAP2 assertion request that requested
// user-presence.
void HandleResponse(
std::vector<PublicKeyCredentialDescriptor> allow_list,
CtapDeviceResponseCode response_code,
base::Optional<AuthenticatorGetAssertionResponse> response_data);
// HandleResponseToSilentRequest is a callback to a request without user-
// presence requested used to silently probe credentials from the allow list.
void HandleResponseToSilentRequest(
CtapDeviceResponseCode response_code,
base::Optional<AuthenticatorGetAssertionResponse> response_data);
// HandleDummyMakeCredentialComplete is the callback for the dummy credential
// creation request that will be triggered, if needed, to get a touch.
void HandleDummyMakeCredentialComplete(
CtapDeviceResponseCode response_code,
base::Optional<AuthenticatorMakeCredentialResponse> response_data);
void MaybeSetPRFParameters(
CtapGetAssertionRequest* request,
const CtapGetAssertionOptions::PRFInput* maybe_inputs);
void MaybeRevertU2fFallbackAndInvokeCallback(
CtapDeviceResponseCode status,
base::Optional<AuthenticatorGetAssertionResponse> response);
CtapGetAssertionRequest request_;
CtapGetAssertionOptions options_;
std::vector<std::vector<PublicKeyCredentialDescriptor>> allow_list_batches_;
size_t current_allow_list_batch_ = 0;
std::unique_ptr<SignOperation> sign_operation_;
std::unique_ptr<RegisterOperation> dummy_register_operation_;
GetAssertionTaskCallback callback_;
std::unique_ptr<pin::HMACSecretRequest> hmac_secret_request_;
bool canceled_ = false;
base::WeakPtrFactory<GetAssertionTask> weak_factory_{this};
DISALLOW_COPY_AND_ASSIGN(GetAssertionTask);
};
} // namespace device
#endif // DEVICE_FIDO_GET_ASSERTION_TASK_H_