1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 * @fileoverview Implements an enroll handler using USB gnubbies.
11 * @param {!EnrollHelperRequest} request The enroll request.
13 * @implements {RequestHandler}
15 function UsbEnrollHandler(request) {
16 /** @private {!EnrollHelperRequest} */
17 this.request_ = request;
19 /** @private {Array<Gnubby>} */
20 this.waitingForTouchGnubbies_ = [];
22 /** @private {boolean} */
24 /** @private {boolean} */
25 this.notified_ = false;
29 * Default timeout value in case the caller never provides a valid timeout.
32 UsbEnrollHandler.DEFAULT_TIMEOUT_MILLIS = 30 * 1000;
35 * @param {RequestHandlerCallback} cb Called back with the result of the
36 * request, and an optional source for the result.
37 * @return {boolean} Whether this handler could be run.
39 UsbEnrollHandler.prototype.run = function(cb) {
41 this.request_.timeoutSeconds ?
42 this.request_.timeoutSeconds * 1000 :
43 UsbEnrollHandler.DEFAULT_TIMEOUT_MILLIS;
44 /** @private {Countdown} */
45 this.timer_ = DEVICE_FACTORY_REGISTRY.getCountdownFactory().createTimer(
47 this.enrollChallenges = this.request_.enrollChallenges;
48 /** @private {RequestHandlerCallback} */
50 this.signer_ = new MultipleGnubbySigner(
52 this.signerCompleted_.bind(this),
53 this.signerFoundGnubby_.bind(this),
55 this.request_.logMsgUrl);
56 return this.signer_.doSign(this.request_.signData);
59 /** Closes this helper. */
60 UsbEnrollHandler.prototype.close = function() {
62 for (var i = 0; i < this.waitingForTouchGnubbies_.length; i++) {
63 this.waitingForTouchGnubbies_[i].closeWhenIdle();
65 this.waitingForTouchGnubbies_ = [];
73 * Called when a MultipleGnubbySigner completes its sign request.
74 * @param {boolean} anyPending Whether any gnubbies are pending.
77 UsbEnrollHandler.prototype.signerCompleted_ = function(anyPending) {
78 if (!this.anyGnubbiesFound_ || this.anyTimeout_ || anyPending ||
79 this.timer_.expired()) {
80 this.notifyError_(DeviceStatusCodes.TIMEOUT_STATUS);
82 // Do nothing: signerFoundGnubby will have been called with each succeeding
88 * Called when a MultipleGnubbySigner finds a gnubby that can enroll.
89 * @param {MultipleSignerResult} signResult Signature results
90 * @param {boolean} moreExpected Whether the signer expects to report
91 * results from more gnubbies.
94 UsbEnrollHandler.prototype.signerFoundGnubby_ =
95 function(signResult, moreExpected) {
96 if (!signResult.code) {
97 // If the signer reports a gnubby can sign, report this immediately to the
98 // caller, as the gnubby is already enrolled. Map ok to WRONG_DATA, so the
99 // caller knows what to do.
100 this.notifyError_(DeviceStatusCodes.WRONG_DATA_STATUS);
101 } else if (SingleGnubbySigner.signErrorIndicatesInvalidKeyHandle(
103 var gnubby = signResult['gnubby'];
104 // A valid helper request contains at least one enroll challenge, so use
105 // the app id hash from the first challenge.
106 var appIdHash = this.request_.enrollChallenges[0].appIdHash;
107 DEVICE_FACTORY_REGISTRY.getGnubbyFactory().notEnrolledPrerequisiteCheck(
108 gnubby, appIdHash, this.gnubbyPrerequisitesChecked_.bind(this));
110 // Unexpected error in signing? Send this immediately to the caller.
111 this.notifyError_(signResult.code);
116 * Called with the result of a gnubby prerequisite check.
117 * @param {number} rc The result of the prerequisite check.
118 * @param {Gnubby=} opt_gnubby The gnubby whose prerequisites were checked.
121 UsbEnrollHandler.prototype.gnubbyPrerequisitesChecked_ =
122 function(rc, opt_gnubby) {
123 if (rc || this.timer_.expired()) {
125 // If the timer is expired, the signerCompleted_ callback will indicate
126 // timeout to the caller.
127 // If there's an error, this gnubby is ineligible, but there's nothing we
128 // can do about that here.
131 // If the callback succeeded, the gnubby is not null.
132 var gnubby = /** @type {Gnubby} */ (opt_gnubby);
133 this.anyGnubbiesFound_ = true;
134 this.waitingForTouchGnubbies_.push(gnubby);
135 this.matchEnrollVersionToGnubby_(gnubby);
139 * Attempts to match the gnubby's U2F version with an appropriate enroll
141 * @param {Gnubby} gnubby Gnubby instance
144 UsbEnrollHandler.prototype.matchEnrollVersionToGnubby_ = function(gnubby) {
146 console.warn(UTIL_fmt('no gnubby, WTF?'));
149 gnubby.version(this.gnubbyVersioned_.bind(this, gnubby));
153 * Called with the result of a version command.
154 * @param {Gnubby} gnubby Gnubby instance
155 * @param {number} rc result of version command.
156 * @param {ArrayBuffer=} data version.
159 UsbEnrollHandler.prototype.gnubbyVersioned_ = function(gnubby, rc, data) {
161 this.removeWrongVersionGnubby_(gnubby);
164 var version = UTIL_BytesToString(new Uint8Array(data || null));
165 this.tryEnroll_(gnubby, version);
169 * Drops the gnubby from the list of eligible gnubbies.
170 * @param {Gnubby} gnubby Gnubby instance
173 UsbEnrollHandler.prototype.removeWaitingGnubby_ = function(gnubby) {
174 gnubby.closeWhenIdle();
175 var index = this.waitingForTouchGnubbies_.indexOf(gnubby);
177 this.waitingForTouchGnubbies_.splice(index, 1);
182 * Drops the gnubby from the list of eligible gnubbies, as it has the wrong
184 * @param {Gnubby} gnubby Gnubby instance
187 UsbEnrollHandler.prototype.removeWrongVersionGnubby_ = function(gnubby) {
188 this.removeWaitingGnubby_(gnubby);
189 if (!this.waitingForTouchGnubbies_.length) {
190 // Whoops, this was the last gnubby.
191 this.anyGnubbiesFound_ = false;
192 if (this.timer_.expired()) {
193 this.notifyError_(DeviceStatusCodes.TIMEOUT_STATUS);
194 } else if (this.signer_) {
195 this.signer_.reScanDevices();
201 * Attempts enrolling a particular gnubby with a challenge of the appropriate
203 * @param {Gnubby} gnubby Gnubby instance
204 * @param {string} version Protocol version
207 UsbEnrollHandler.prototype.tryEnroll_ = function(gnubby, version) {
208 var challenge = this.getChallengeOfVersion_(version);
210 this.removeWrongVersionGnubby_(gnubby);
213 var challengeValue = B64_decode(challenge['challengeHash']);
214 var appIdHash = challenge['appIdHash'];
215 var individualAttest =
216 DEVICE_FACTORY_REGISTRY.getIndividualAttestation().
217 requestIndividualAttestation(appIdHash);
218 gnubby.enroll(challengeValue, B64_decode(appIdHash),
219 this.enrollCallback_.bind(this, gnubby, version), individualAttest);
223 * Finds the (first) challenge of the given version in this helper's challenges.
224 * @param {string} version Protocol version
225 * @return {Object} challenge, if found, or null if not.
228 UsbEnrollHandler.prototype.getChallengeOfVersion_ = function(version) {
229 for (var i = 0; i < this.enrollChallenges.length; i++) {
230 if (this.enrollChallenges[i]['version'] == version) {
231 return this.enrollChallenges[i];
238 * Called with the result of an enroll request to a gnubby.
239 * @param {Gnubby} gnubby Gnubby instance
240 * @param {string} version Protocol version
241 * @param {number} code Status code
242 * @param {ArrayBuffer=} infoArray Returned data
245 UsbEnrollHandler.prototype.enrollCallback_ =
246 function(gnubby, version, code, infoArray) {
247 if (this.notified_) {
248 // Enroll completed after previous success or failure. Disregard.
252 case -GnubbyDevice.GONE:
253 // Close this gnubby.
254 this.removeWaitingGnubby_(gnubby);
255 if (!this.waitingForTouchGnubbies_.length) {
256 // Last enroll attempt is complete and last gnubby is gone.
257 this.anyGnubbiesFound_ = false;
258 if (this.timer_.expired()) {
259 this.notifyError_(DeviceStatusCodes.TIMEOUT_STATUS);
260 } else if (this.signer_) {
261 this.signer_.reScanDevices();
266 case DeviceStatusCodes.WAIT_TOUCH_STATUS:
267 case DeviceStatusCodes.BUSY_STATUS:
268 case DeviceStatusCodes.TIMEOUT_STATUS:
269 if (this.timer_.expired()) {
270 // Record that at least one gnubby timed out, to return a timeout status
271 // from the complete callback if no other eligible gnubbies are found.
272 /** @private {boolean} */
273 this.anyTimeout_ = true;
274 // Close this gnubby.
275 this.removeWaitingGnubby_(gnubby);
276 if (!this.waitingForTouchGnubbies_.length) {
277 // Last enroll attempt is complete: return this error.
278 console.log(UTIL_fmt('timeout (' + code.toString(16) +
280 this.notifyError_(DeviceStatusCodes.TIMEOUT_STATUS);
283 DEVICE_FACTORY_REGISTRY.getCountdownFactory().createTimer(
284 UsbEnrollHandler.ENUMERATE_DELAY_INTERVAL_MILLIS,
285 this.tryEnroll_.bind(this, gnubby, version));
289 case DeviceStatusCodes.OK_STATUS:
290 var info = B64_encode(new Uint8Array(infoArray || []));
291 this.notifySuccess_(version, info);
295 console.log(UTIL_fmt('Failed to enroll gnubby: ' + code));
296 this.notifyError_(code);
302 * How long to delay between repeated enroll attempts, in milliseconds.
305 UsbEnrollHandler.ENUMERATE_DELAY_INTERVAL_MILLIS = 200;
308 * Notifies the callback with an error code.
309 * @param {number} code The error code to report.
312 UsbEnrollHandler.prototype.notifyError_ = function(code) {
313 if (this.notified_ || this.closed_)
315 this.notified_ = true;
318 'type': 'enroll_helper_reply',
325 * @param {string} version Protocol version
326 * @param {string} info B64 encoded success data
329 UsbEnrollHandler.prototype.notifySuccess_ = function(version, info) {
330 if (this.notified_ || this.closed_)
332 this.notified_ = true;
335 'type': 'enroll_helper_reply',
336 'code': DeviceStatusCodes.OK_STATUS,