/* Copyright 2016 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ "use strict"; /** * olm.js wrapper * * @module crypto/OlmDevice */ var Olm = require("olm"); var utils = require("../utils"); /** * Manages the olm cryptography functions. Each OlmDevice has a single * OlmAccount and a number of OlmSessions. * * Accounts and sessions are kept pickled in a sessionStore. * * @constructor * @alias module:crypto/OlmDevice * * @param {Object} sessionStore A store to be used for data in end-to-end * crypto * * @property {string} deviceCurve25519Key Curve25519 key for the account * @property {string} deviceEd25519Key Ed25519 key for the account */ function OlmDevice(sessionStore) { this._sessionStore = sessionStore; this._pickleKey = "DEFAULT_KEY"; var e2eKeys; var account = new Olm.Account(); try { _initialise_account(this._sessionStore, this._pickleKey, account); e2eKeys = JSON.parse(account.identity_keys()); } finally { account.free(); } this.deviceCurve25519Key = e2eKeys.curve25519; this.deviceEd25519Key = e2eKeys.ed25519; // we don't bother stashing outboundgroupsessions in the sessionstore - // instead we keep them here. this._outboundGroupSessionStore = {}; } function _initialise_account(sessionStore, pickleKey, account) { var e2eAccount = sessionStore.getEndToEndAccount(); if (e2eAccount !== null) { account.unpickle(pickleKey, e2eAccount); return; } account.create(); var pickled = account.pickle(pickleKey); sessionStore.storeEndToEndAccount(pickled); } /** * @return {array} The version of Olm. */ OlmDevice.getOlmVersion = function() { return Olm.get_library_version(); }; /** * extract our OlmAccount from the session store and call the given function * * @param {function} func * @return {object} result of func * @private */ OlmDevice.prototype._getAccount = function(func) { var account = new Olm.Account(); try { var pickledAccount = this._sessionStore.getEndToEndAccount(); account.unpickle(this._pickleKey, pickledAccount); return func(account); } finally { account.free(); } }; /** * store our OlmAccount in the session store * * @param {OlmAccount} account * @private */ OlmDevice.prototype._saveAccount = function(account) { var pickledAccount = account.pickle(this._pickleKey); this._sessionStore.storeEndToEndAccount(pickledAccount); }; /** * extract an OlmSession from the session store and call the given function * * @param {string} deviceKey * @param {string} sessionId * @param {function} func * @return {object} result of func * @private */ OlmDevice.prototype._getSession = function(deviceKey, sessionId, func) { var sessions = this._sessionStore.getEndToEndSessions(deviceKey); var pickledSession = sessions[sessionId]; var session = new Olm.Session(); try { session.unpickle(this._pickleKey, pickledSession); return func(session); } finally { session.free(); } }; /** * store our OlmSession in the session store * * @param {string} deviceKey * @param {OlmSession} session * @private */ OlmDevice.prototype._saveSession = function(deviceKey, session) { var pickledSession = session.pickle(this._pickleKey); this._sessionStore.storeEndToEndSession( deviceKey, session.session_id(), pickledSession ); }; /** * get an OlmUtility and call the given function * * @param {function} func * @return {object} result of func * @private */ OlmDevice.prototype._getUtility = function(func) { var utility = new Olm.Utility(); try { return func(utility); } finally { utility.free(); } }; /** * Signs a message with the ed25519 key for this account. * * @param {string} message message to be signed * @return {string} base64-encoded signature */ OlmDevice.prototype.sign = function(message) { return this._getAccount(function(account) { return account.sign(message); }); }; /** * Get the current (unused, unpublished) one-time keys for this account. * * @return {object} one time keys; an object with the single property * curve25519, which is itself an object mapping key id to Curve25519 * key. */ OlmDevice.prototype.getOneTimeKeys = function() { return this._getAccount(function(account) { return JSON.parse(account.one_time_keys()); }); }; /** * Get the maximum number of one-time keys we can store. * * @return {number} number of keys */ OlmDevice.prototype.maxNumberOfOneTimeKeys = function() { return this._getAccount(function(account) { return account.max_number_of_one_time_keys(); }); }; /** * Marks all of the one-time keys as published. */ OlmDevice.prototype.markKeysAsPublished = function() { var self = this; this._getAccount(function(account) { account.mark_keys_as_published(); self._saveAccount(account); }); }; /** * Generate some new one-time keys * * @param {number} numKeys number of keys to generate */ OlmDevice.prototype.generateOneTimeKeys = function(numKeys) { var self = this; this._getAccount(function(account) { account.generate_one_time_keys(numKeys); self._saveAccount(account); }); }; /** * Generate a new outbound session * * The new session will be stored in the sessionStore. * * @param {string} theirIdentityKey remote user's Curve25519 identity key * @param {string} theirOneTimeKey remote user's one-time Curve25519 key * @return {string} sessionId for the outbound session. */ OlmDevice.prototype.createOutboundSession = function( theirIdentityKey, theirOneTimeKey ) { var self = this; return this._getAccount(function(account) { var session = new Olm.Session(); try { session.create_outbound(account, theirIdentityKey, theirOneTimeKey); self._saveSession(theirIdentityKey, session); return session.session_id(); } finally { session.free(); } }); }; /** * Generate a new inbound session, given an incoming message * * @param {string} theirDeviceIdentityKey remote user's Curve25519 identity key * @param {number} message_type message_type field from the received message (must be 0) * @param {string} ciphertext base64-encoded body from the received message * * @return {string} decrypted payload * * @raises {Error} if the received message was not valid (for instance, it * didn't use a valid one-time key). */ OlmDevice.prototype.createInboundSession = function( theirDeviceIdentityKey, message_type, ciphertext ) { if (message_type !== 0) { throw new Error("Need message_type == 0 to create inbound session"); } var self = this; return this._getAccount(function(account) { var session = new Olm.Session(); try { session.create_inbound_from(account, theirDeviceIdentityKey, ciphertext); account.remove_one_time_keys(session); self._saveAccount(account); var payloadString = session.decrypt(message_type, ciphertext); self._saveSession(theirDeviceIdentityKey, session); return payloadString; } finally { session.free(); } }); }; /** * Get a list of known session IDs for the given device * * @param {string} theirDeviceIdentityKey Curve25519 identity key for the * remote device * @return {string[]} a list of known session ids for the device */ OlmDevice.prototype.getSessionIdsForDevice = function(theirDeviceIdentityKey) { var sessions = this._sessionStore.getEndToEndSessions( theirDeviceIdentityKey ); return utils.keys(sessions); }; /** * Get the right olm session id for encrypting messages to the given identity key * * @param {string} theirDeviceIdentityKey Curve25519 identity key for the * remote device * @return {string?} session id, or null if no established session */ OlmDevice.prototype.getSessionIdForDevice = function(theirDeviceIdentityKey) { var sessionIds = this.getSessionIdsForDevice(theirDeviceIdentityKey); if (sessionIds.length === 0) { return null; } // Use the session with the lowest ID. sessionIds.sort(); return sessionIds[0]; }; /** * Get information on the active Olm sessions for a device. *
* Returns an array, with an entry for each active session. The first entry in * the result will be the one used for outgoing messages. Each entry contains * the keys 'hasReceivedMessage' (true if the session has received an incoming * message and is therefore past the pre-key stage), and 'sessionId'. * * @param {string} deviceIdentityKey Curve25519 identity key for the device * @return {Array.<{sessionId: string, hasReceivedMessage: Boolean}>} */ OlmDevice.prototype.getSessionInfoForDevice = function(deviceIdentityKey) { var sessionIds = this.getSessionIdsForDevice(deviceIdentityKey); sessionIds.sort(); var info = []; function getSessionInfo(session) { return { hasReceivedMessage: session.has_received_message() }; } for (var i = 0; i < sessionIds.length; i++) { var sessionId = sessionIds[i]; var res = this._getSession(deviceIdentityKey, sessionId, getSessionInfo); res.sessionId = sessionId; info.push(res); } return info; }; /** * Encrypt an outgoing message using an existing session * * @param {string} theirDeviceIdentityKey Curve25519 identity key for the * remote device * @param {string} sessionId the id of the active session * @param {string} payloadString payload to be encrypted and sent * * @return {string} ciphertext */ OlmDevice.prototype.encryptMessage = function( theirDeviceIdentityKey, sessionId, payloadString ) { var self = this; return this._getSession(theirDeviceIdentityKey, sessionId, function(session) { var res = session.encrypt(payloadString); self._saveSession(theirDeviceIdentityKey, session); return res; }); }; /** * Decrypt an incoming message using an existing session * * @param {string} theirDeviceIdentityKey Curve25519 identity key for the * remote device * @param {string} sessionId the id of the active session * @param {number} message_type message_type field from the received message * @param {string} ciphertext base64-encoded body from the received message * * @return {object} Result, with keys