summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/cryptotoken/gnubbies.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/cryptotoken/gnubbies.js')
-rw-r--r--chromium/chrome/browser/resources/cryptotoken/gnubbies.js312
1 files changed, 312 insertions, 0 deletions
diff --git a/chromium/chrome/browser/resources/cryptotoken/gnubbies.js b/chromium/chrome/browser/resources/cryptotoken/gnubbies.js
new file mode 100644
index 00000000000..87b9baf49cf
--- /dev/null
+++ b/chromium/chrome/browser/resources/cryptotoken/gnubbies.js
@@ -0,0 +1,312 @@
+// Copyright 2014 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.
+
+/**
+ * @fileoverview A class for managing all enumerated gnubby devices.
+ */
+'use strict';
+
+/**
+ * @typedef {{
+ * namespace: string,
+ * device: number
+ * }}
+ */
+var llGnubbyDeviceId;
+
+/**
+ * @typedef {{
+ * enumerate: function(function(Array)),
+ * deviceToDeviceId: function(*): llGnubbyDeviceId,
+ * open: function(Gnubbies, number, *, function(number, llGnubby=))
+ * }}
+ */
+var GnubbyNamespaceImpl;
+
+/**
+ * Manager of opened devices.
+ * @constructor
+ */
+function Gnubbies() {
+ /** @private {Object.<string, Array>} */
+ this.devs_ = {};
+ this.pendingEnumerate = []; // clients awaiting an enumerate
+ /** @private {Object.<string, GnubbyNamespaceImpl>} */
+ this.impl_ = {};
+ /** @private {Object.<string, Object.<number, !llGnubby>>} */
+ this.openDevs_ = {};
+ /** @private {Object.<string, Object.<number, *>>} */
+ this.pendingOpens_ = {}; // clients awaiting an open
+}
+
+/**
+ * Registers a new gnubby namespace, i.e. an implementation of the
+ * enumerate/open functions for all devices within a namespace.
+ * @param {string} namespace The namespace of the numerator, e.g. 'usb'.
+ * @param {GnubbyNamespaceImpl} impl The implementation.
+ */
+Gnubbies.prototype.registerNamespace = function(namespace, impl) {
+ this.impl_[namespace] = impl;
+};
+
+/**
+ * @param {llGnubbyDeviceId} which The device to remove.
+ */
+Gnubbies.prototype.removeOpenDevice = function(which) {
+ if (this.openDevs_[which.namespace] &&
+ this.openDevs_[which.namespace].hasOwnProperty(which.device)) {
+ delete this.openDevs_[which.namespace][which.device];
+ }
+};
+
+/** Close all enumerated devices. */
+Gnubbies.prototype.closeAll = function() {
+ if (this.inactivityTimer) {
+ this.inactivityTimer.clearTimeout();
+ this.inactivityTimer = undefined;
+ }
+ // Close and stop talking to any gnubbies we have enumerated.
+ for (var namespace in this.openDevs_) {
+ for (var dev in this.openDevs_[namespace]) {
+ var deviceId = Number(dev);
+ this.openDevs_[namespace][deviceId].destroy();
+ }
+ }
+ this.devs_ = {};
+ this.openDevs_ = {};
+};
+
+/**
+ * @param {function(number, Array.<llGnubbyDeviceId>)} cb Called back with the
+ * result of enumerating.
+ */
+Gnubbies.prototype.enumerate = function(cb) {
+ var self = this;
+
+ /**
+ * @param {string} namespace The namespace that was enumerated.
+ * @param {boolean} lastNamespace Whether this was the last namespace.
+ * @param {Array.<llGnubbyDeviceId>} existingDeviceIds Previously enumerated
+ * device IDs (from other namespaces), if any.
+ * @param {Array} devs The devices in the namespace.
+ */
+ function enumerated(namespace, lastNamespace, existingDeviceIds, devs) {
+ if (chrome.runtime.lastError) {
+ console.warn(UTIL_fmt('lastError: ' + chrome.runtime.lastError));
+ console.log(chrome.runtime.lastError);
+ devs = [];
+ }
+
+ console.log(UTIL_fmt('Enumerated ' + devs.length + ' gnubbies'));
+ console.log(devs);
+
+ var presentDevs = {};
+ var deviceIds = [];
+ var deviceToDeviceId = self.impl_[namespace].deviceToDeviceId;
+ for (var i = 0; i < devs.length; ++i) {
+ var deviceId = deviceToDeviceId(devs[i]);
+ deviceIds.push(deviceId);
+ presentDevs[deviceId.device] = devs[i];
+ }
+
+ var toRemove = [];
+ for (var dev in self.openDevs_[namespace]) {
+ if (!presentDevs.hasOwnProperty(dev)) {
+ toRemove.push(dev);
+ }
+ }
+
+ for (var i = 0; i < toRemove.length; i++) {
+ dev = toRemove[i];
+ if (self.openDevs_[namespace][dev]) {
+ self.openDevs_[namespace][dev].destroy();
+ delete self.openDevs_[namespace][dev];
+ }
+ }
+
+ self.devs_[namespace] = devs;
+ existingDeviceIds.push.apply(existingDeviceIds, deviceIds);
+ if (lastNamespace) {
+ while (self.pendingEnumerate.length != 0) {
+ var cb = self.pendingEnumerate.shift();
+ cb(-llGnubby.OK, existingDeviceIds);
+ }
+ }
+ }
+
+ this.pendingEnumerate.push(cb);
+ if (this.pendingEnumerate.length == 1) {
+ var namespaces = Object.keys(/** @type {!Object} */ (this.impl_));
+ if (!namespaces.length) {
+ cb(-llGnubby.OK, []);
+ return;
+ }
+ var deviceIds = [];
+ for (var i = 0; i < namespaces.length; i++) {
+ var namespace = namespaces[i];
+ var enumerator = this.impl_[namespace].enumerate;
+ enumerator(
+ enumerated.bind(null,
+ namespace,
+ i == namespaces.length - 1,
+ deviceIds));
+ }
+ }
+};
+
+/**
+ * Amount of time past last activity to set the inactivity timer to, in millis.
+ * @const
+ */
+Gnubbies.INACTIVITY_TIMEOUT_MARGIN_MILLIS = 30000;
+
+/**
+ * @param {number|undefined} opt_timeoutMillis Timeout in milliseconds
+ */
+Gnubbies.prototype.resetInactivityTimer = function(opt_timeoutMillis) {
+ var millis = opt_timeoutMillis ?
+ opt_timeoutMillis + Gnubbies.INACTIVITY_TIMEOUT_MARGIN_MILLIS :
+ Gnubbies.INACTIVITY_TIMEOUT_MARGIN_MILLIS;
+ if (!this.inactivityTimer) {
+ this.inactivityTimer =
+ new CountdownTimer(millis, this.inactivityTimeout_.bind(this));
+ } else if (millis > this.inactivityTimer.millisecondsUntilExpired()) {
+ this.inactivityTimer.clearTimeout();
+ this.inactivityTimer.setTimeout(millis, this.inactivityTimeout_.bind(this));
+ }
+};
+
+/**
+ * Called when the inactivity timeout expires.
+ * @private
+ */
+Gnubbies.prototype.inactivityTimeout_ = function() {
+ this.inactivityTimer = undefined;
+ for (var namespace in this.openDevs_) {
+ for (var dev in this.openDevs_[namespace]) {
+ var deviceId = Number(dev);
+ console.warn(namespace + ' device ' + deviceId +
+ ' still open after inactivity, closing');
+ this.openDevs_[namespace][deviceId].destroy();
+ }
+ }
+};
+
+/**
+ * Opens and adds a new client of the specified device.
+ * @param {llGnubbyDeviceId} which Which device to open.
+ * @param {*} who Client of the device.
+ * @param {function(number, llGnubby=)} cb Called back with the result of
+ * opening the device.
+ */
+Gnubbies.prototype.addClient = function(which, who, cb) {
+ this.resetInactivityTimer();
+
+ var self = this;
+
+ function opened(gnubby, who, cb) {
+ if (gnubby.closing) {
+ // Device is closing or already closed.
+ self.removeClient(gnubby, who);
+ if (cb) { cb(-llGnubby.NODEVICE); }
+ } else {
+ gnubby.registerClient(who);
+ if (cb) { cb(-llGnubby.OK, gnubby); }
+ }
+ }
+
+ function notifyOpenResult(rc) {
+ if (self.pendingOpens_[which.namespace]) {
+ while (self.pendingOpens_[which.namespace][which.device].length != 0) {
+ var client = self.pendingOpens_[which.namespace][which.device].shift();
+ client.cb(rc);
+ }
+ delete self.pendingOpens_[which.namespace][which.device];
+ }
+ }
+
+ var dev = null;
+ var deviceToDeviceId = this.impl_[which.namespace].deviceToDeviceId;
+ if (this.devs_[which.namespace]) {
+ for (var i = 0; i < this.devs_[which.namespace].length; i++) {
+ var device = this.devs_[which.namespace][i];
+ if (deviceToDeviceId(device).device == which.device) {
+ dev = device;
+ break;
+ }
+ }
+ }
+ if (!dev) {
+ // Index out of bounds. Device does not exist in current enumeration.
+ this.removeClient(null, who);
+ if (cb) { cb(-llGnubby.NODEVICE); }
+ return;
+ }
+
+ function openCb(rc, opt_gnubby) {
+ if (rc) {
+ notifyOpenResult(rc);
+ return;
+ }
+ if (!opt_gnubby) {
+ notifyOpenResult(-llGnubby.NODEVICE);
+ return;
+ }
+ var gnubby = /** @type {!llGnubby} */ (opt_gnubby);
+ if (!self.openDevs_[which.namespace]) {
+ self.openDevs_[which.namespace] = {};
+ }
+ self.openDevs_[which.namespace][which.device] = gnubby;
+ while (self.pendingOpens_[which.namespace][which.device].length != 0) {
+ var client = self.pendingOpens_[which.namespace][which.device].shift();
+ opened(gnubby, client.who, client.cb);
+ }
+ delete self.pendingOpens_[which.namespace][which.device];
+ }
+
+ if (this.openDevs_[which.namespace] &&
+ this.openDevs_[which.namespace].hasOwnProperty(which.device)) {
+ var gnubby = this.openDevs_[which.namespace][which.device];
+ opened(gnubby, who, cb);
+ } else {
+ var opener = {who: who, cb: cb};
+ if (!this.pendingOpens_.hasOwnProperty(which.namespace)) {
+ this.pendingOpens_[which.namespace] = {};
+ }
+ if (this.pendingOpens_[which.namespace].hasOwnProperty(which.device)) {
+ this.pendingOpens_[which.namespace][which.device].push(opener);
+ } else {
+ this.pendingOpens_[which.namespace][which.device] = [opener];
+ var openImpl = this.impl_[which.namespace].open;
+ openImpl(this, which.device, dev, openCb);
+ }
+ }
+};
+
+/**
+ * Removes a client from a low-level gnubby.
+ * @param {llGnubby} whichDev The gnubby.
+ * @param {*} who The client.
+ */
+Gnubbies.prototype.removeClient = function(whichDev, who) {
+ console.log(UTIL_fmt('Gnubbies.removeClient()'));
+
+ this.resetInactivityTimer();
+
+ // De-register client from all known devices.
+ for (var namespace in this.openDevs_) {
+ for (var devId in this.openDevs_[namespace]) {
+ var deviceId = Number(devId);
+ var dev = this.openDevs_[namespace][deviceId];
+ if (dev.hasClient(who)) {
+ if (whichDev && dev != whichDev) {
+ console.warn('usbGnubby attached to more than one device!?');
+ }
+ if (!dev.deregisterClient(who)) {
+ dev.destroy();
+ }
+ }
+ }
+ }
+};