2018-04-18 14:38:06 +00:00
|
|
|
/* gpgme.js - Javascript integration for gpgme
|
|
|
|
* Copyright (C) 2018 Bundesamt für Sicherheit in der Informationstechnik
|
|
|
|
*
|
|
|
|
* This file is part of GPGME.
|
|
|
|
*
|
|
|
|
* GPGME is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GPGME is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
2018-06-06 11:05:53 +00:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Maximilian Krambach <mkrambach@intevation.de>
|
2018-04-18 14:38:06 +00:00
|
|
|
*/
|
|
|
|
|
2018-06-06 11:05:53 +00:00
|
|
|
/* global chrome */
|
|
|
|
|
|
|
|
import { permittedOperations } from './permittedOperations';
|
|
|
|
import { gpgme_error } from './Errors';
|
|
|
|
import { GPGME_Message, createMessage } from './Message';
|
2018-08-22 14:32:31 +00:00
|
|
|
import { decode, atobArray, Utf8ArrayToStr } from './Helpers';
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-04-23 15:18:46 +00:00
|
|
|
/**
|
2018-07-10 12:32:26 +00:00
|
|
|
* A Connection handles the nativeMessaging interaction via a port. As the
|
|
|
|
* protocol only allows up to 1MB of message sent from the nativeApp to the
|
|
|
|
* browser, the connection will stay open until all parts of a communication
|
|
|
|
* are finished. For a new request, a new port will open, to avoid mixing
|
|
|
|
* contexts.
|
|
|
|
* @class
|
2018-09-05 16:46:28 +00:00
|
|
|
* @private
|
2018-04-23 15:18:46 +00:00
|
|
|
*/
|
2018-04-18 14:38:06 +00:00
|
|
|
export class Connection{
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-08-20 13:12:01 +00:00
|
|
|
constructor (){
|
2018-08-20 10:12:43 +00:00
|
|
|
this._connection = chrome.runtime.connectNative('gpgmejson');
|
|
|
|
}
|
2018-07-27 18:36:21 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
/**
|
|
|
|
* Immediately closes an open port.
|
|
|
|
*/
|
2018-08-20 13:12:01 +00:00
|
|
|
disconnect () {
|
2018-08-20 10:12:43 +00:00
|
|
|
if (this._connection){
|
|
|
|
this._connection.disconnect();
|
|
|
|
this._connection = null;
|
|
|
|
}
|
|
|
|
}
|
2018-07-27 18:36:21 +00:00
|
|
|
|
2018-04-24 16:44:30 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
/**
|
|
|
|
* @typedef {Object} backEndDetails
|
|
|
|
* @property {String} gpgme Version number of gpgme
|
|
|
|
* @property {Array<Object>} info Further information about the backend
|
|
|
|
* and the used applications (Example:
|
2018-09-05 16:46:28 +00:00
|
|
|
* <pre>
|
2018-08-20 10:12:43 +00:00
|
|
|
* {
|
|
|
|
* "protocol": "OpenPGP",
|
|
|
|
* "fname": "/usr/bin/gpg",
|
|
|
|
* "version": "2.2.6",
|
|
|
|
* "req_version": "1.4.0",
|
|
|
|
* "homedir": "default"
|
|
|
|
* }
|
2018-09-05 16:46:28 +00:00
|
|
|
* </pre>
|
2018-08-20 10:12:43 +00:00
|
|
|
*/
|
2018-07-10 12:32:26 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
/**
|
|
|
|
* Retrieves the information about the backend.
|
|
|
|
* @param {Boolean} details (optional) If set to false, the promise will
|
|
|
|
* just return if a connection was successful.
|
|
|
|
* @returns {Promise<backEndDetails>|Promise<Boolean>} Details from the
|
|
|
|
* backend
|
|
|
|
* @async
|
|
|
|
*/
|
|
|
|
checkConnection (details = true){
|
|
|
|
const msg = createMessage('version');
|
|
|
|
if (details === true) {
|
|
|
|
return this.post(msg);
|
|
|
|
} else {
|
|
|
|
let me = this;
|
2018-08-20 13:12:01 +00:00
|
|
|
return new Promise(function (resolve) {
|
2018-08-20 10:12:43 +00:00
|
|
|
Promise.race([
|
|
|
|
me.post(msg),
|
2018-08-20 13:12:01 +00:00
|
|
|
new Promise(function (resolve, reject){
|
|
|
|
setTimeout(function (){
|
2018-08-20 10:12:43 +00:00
|
|
|
reject(gpgme_error('CONN_TIMEOUT'));
|
|
|
|
}, 500);
|
|
|
|
})
|
2018-08-20 13:12:01 +00:00
|
|
|
]).then(function (){ // success
|
2018-08-20 10:12:43 +00:00
|
|
|
resolve(true);
|
2018-08-20 13:12:01 +00:00
|
|
|
}, function (){ // failure
|
2018-08-20 10:12:43 +00:00
|
|
|
resolve(false);
|
2018-05-25 09:53:24 +00:00
|
|
|
});
|
2018-08-20 10:12:43 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-04-23 15:18:46 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
/**
|
2018-09-05 16:46:28 +00:00
|
|
|
* Sends a {@link GPGME_Message} via the nativeMessaging port. It
|
2018-08-20 10:12:43 +00:00
|
|
|
* resolves with the completed answer after all parts have been
|
|
|
|
* received and reassembled, or rejects with an {@link GPGME_Error}.
|
|
|
|
*
|
|
|
|
* @param {GPGME_Message} message
|
2018-09-05 16:46:28 +00:00
|
|
|
* @returns {Promise<*>} The collected answer, depending on the messages'
|
|
|
|
* operation
|
|
|
|
* @private
|
2018-08-20 10:12:43 +00:00
|
|
|
* @async
|
|
|
|
*/
|
2018-08-20 13:12:01 +00:00
|
|
|
post (message){
|
2018-08-20 10:12:43 +00:00
|
|
|
if (!message || !(message instanceof GPGME_Message)){
|
|
|
|
this.disconnect();
|
|
|
|
return Promise.reject(gpgme_error(
|
|
|
|
'PARAM_WRONG', 'Connection.post'));
|
|
|
|
}
|
|
|
|
if (message.isComplete() !== true){
|
|
|
|
this.disconnect();
|
|
|
|
return Promise.reject(gpgme_error('MSG_INCOMPLETE'));
|
|
|
|
}
|
|
|
|
let chunksize = message.chunksize;
|
|
|
|
const me = this;
|
2018-08-20 13:12:01 +00:00
|
|
|
return new Promise(function (resolve, reject){
|
2018-08-20 10:12:43 +00:00
|
|
|
let answer = new Answer(message);
|
2018-08-20 13:12:01 +00:00
|
|
|
let listener = function (msg) {
|
2018-08-20 10:12:43 +00:00
|
|
|
if (!msg){
|
|
|
|
me._connection.onMessage.removeListener(listener);
|
|
|
|
me._connection.disconnect();
|
|
|
|
reject(gpgme_error('CONN_EMPTY_GPG_ANSWER'));
|
|
|
|
} else {
|
|
|
|
let answer_result = answer.collect(msg);
|
|
|
|
if (answer_result !== true){
|
|
|
|
me._connection.onMessage.removeListener(listener);
|
|
|
|
me._connection.disconnect();
|
|
|
|
reject(answer_result);
|
2018-04-18 14:38:06 +00:00
|
|
|
} else {
|
2018-08-20 10:12:43 +00:00
|
|
|
if (msg.more === true){
|
|
|
|
me._connection.postMessage({
|
|
|
|
'op': 'getmore',
|
|
|
|
'chunksize': chunksize
|
|
|
|
});
|
2018-07-27 18:56:11 +00:00
|
|
|
} else {
|
2018-08-20 10:12:43 +00:00
|
|
|
me._connection.onMessage.removeListener(listener);
|
|
|
|
me._connection.disconnect();
|
|
|
|
const message = answer.getMessage();
|
|
|
|
if (message instanceof Error){
|
|
|
|
reject(message);
|
2018-06-08 15:54:58 +00:00
|
|
|
} else {
|
2018-08-20 10:12:43 +00:00
|
|
|
resolve(message);
|
2018-06-08 15:54:58 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|
2018-07-27 18:56:11 +00:00
|
|
|
}
|
2018-08-20 10:12:43 +00:00
|
|
|
};
|
|
|
|
me._connection.onMessage.addListener(listener);
|
|
|
|
if (permittedOperations[message.operation].pinentry){
|
|
|
|
return me._connection.postMessage(message.message);
|
|
|
|
} else {
|
|
|
|
return Promise.race([
|
|
|
|
me._connection.postMessage(message.message),
|
2018-08-20 13:12:01 +00:00
|
|
|
function (resolve, reject){
|
|
|
|
setTimeout(function (){
|
2018-08-20 10:12:43 +00:00
|
|
|
me._connection.disconnect();
|
|
|
|
reject(gpgme_error('CONN_TIMEOUT'));
|
|
|
|
}, 5000);
|
|
|
|
}
|
2018-08-20 13:12:01 +00:00
|
|
|
]).then(function (result){
|
2018-08-20 10:12:43 +00:00
|
|
|
return result;
|
2018-08-20 13:12:01 +00:00
|
|
|
}, function (reject){
|
|
|
|
if (!(reject instanceof Error)) {
|
2018-08-20 10:12:43 +00:00
|
|
|
me._connection.disconnect();
|
|
|
|
return gpgme_error('GNUPG_ERROR', reject);
|
|
|
|
} else {
|
|
|
|
return reject;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2018-07-27 18:56:11 +00:00
|
|
|
}
|
2018-06-06 11:05:53 +00:00
|
|
|
}
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
|
2018-04-18 14:38:06 +00:00
|
|
|
/**
|
|
|
|
* A class for answer objects, checking and processing the return messages of
|
2018-04-23 15:18:46 +00:00
|
|
|
* the nativeMessaging communication.
|
2018-09-05 16:46:28 +00:00
|
|
|
* @private
|
2018-04-18 14:38:06 +00:00
|
|
|
*/
|
|
|
|
class Answer{
|
2018-04-10 09:33:14 +00:00
|
|
|
|
2018-07-10 12:32:26 +00:00
|
|
|
/**
|
|
|
|
* @param {GPGME_Message} message
|
|
|
|
*/
|
2018-08-20 13:12:01 +00:00
|
|
|
constructor (message){
|
2018-08-20 10:12:43 +00:00
|
|
|
this._operation = message.operation;
|
|
|
|
this._expected = message.expected;
|
|
|
|
this._response_b64 = null;
|
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
get operation (){
|
|
|
|
return this._operation;
|
|
|
|
}
|
2018-07-30 10:31:27 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
get expected (){
|
|
|
|
return this._expected;
|
|
|
|
}
|
2018-07-27 18:56:11 +00:00
|
|
|
|
2018-08-20 10:12:43 +00:00
|
|
|
/**
|
|
|
|
* Adds incoming base64 encoded data to the existing response
|
|
|
|
* @param {*} msg base64 encoded data.
|
|
|
|
* @returns {Boolean}
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
collect (msg){
|
2018-08-20 13:12:01 +00:00
|
|
|
if (typeof (msg) !== 'object' || !msg.hasOwnProperty('response')) {
|
2018-08-20 10:12:43 +00:00
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
|
|
|
}
|
|
|
|
if (!this._response_b64){
|
|
|
|
this._response_b64 = msg.response;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
this._response_b64 += msg.response;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
2018-08-22 14:32:31 +00:00
|
|
|
* Decodes and verifies the base64 encoded answer data. Verified against
|
|
|
|
* {@link permittedOperations}.
|
|
|
|
* @returns {Object} The readable gpnupg answer
|
2018-08-20 10:12:43 +00:00
|
|
|
*/
|
2018-08-20 13:12:01 +00:00
|
|
|
getMessage (){
|
2018-08-20 10:12:43 +00:00
|
|
|
if (this._response_b64 === null){
|
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
|
|
|
}
|
|
|
|
let _decodedResponse = JSON.parse(atob(this._response_b64));
|
2018-08-27 09:50:09 +00:00
|
|
|
let _response = {
|
|
|
|
format: 'ascii'
|
|
|
|
};
|
2018-08-20 10:12:43 +00:00
|
|
|
let messageKeys = Object.keys(_decodedResponse);
|
|
|
|
let poa = permittedOperations[this.operation].answer;
|
|
|
|
if (messageKeys.length === 0){
|
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
|
|
|
}
|
|
|
|
for (let i= 0; i < messageKeys.length; i++){
|
|
|
|
let key = messageKeys[i];
|
|
|
|
switch (key) {
|
2018-08-30 10:04:50 +00:00
|
|
|
case 'type': {
|
2018-08-20 10:12:43 +00:00
|
|
|
if (_decodedResponse.type === 'error'){
|
|
|
|
return (gpgme_error('GNUPG_ERROR',
|
|
|
|
decode(_decodedResponse.msg)));
|
|
|
|
} else if (poa.type.indexOf(_decodedResponse.type) < 0){
|
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
|
|
|
}
|
|
|
|
break;
|
2018-08-30 10:04:50 +00:00
|
|
|
}
|
|
|
|
case 'base64': {
|
2018-08-20 10:12:43 +00:00
|
|
|
break;
|
2018-08-30 10:04:50 +00:00
|
|
|
}
|
|
|
|
case 'msg': {
|
2018-08-20 10:12:43 +00:00
|
|
|
if (_decodedResponse.type === 'error'){
|
|
|
|
return (gpgme_error('GNUPG_ERROR', _decodedResponse.msg));
|
|
|
|
}
|
|
|
|
break;
|
2018-08-30 10:04:50 +00:00
|
|
|
}
|
|
|
|
default: {
|
|
|
|
let answerType = null;
|
|
|
|
if (poa.payload && poa.payload.hasOwnProperty(key)){
|
|
|
|
answerType = 'p';
|
|
|
|
} else if (poa.info && poa.info.hasOwnProperty(key)){
|
|
|
|
answerType = 'i';
|
2018-08-20 10:12:43 +00:00
|
|
|
}
|
2018-08-30 10:04:50 +00:00
|
|
|
if (answerType !== 'p' && answerType !== 'i'){
|
2018-08-20 10:12:43 +00:00
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
|
|
|
}
|
2018-08-30 10:04:50 +00:00
|
|
|
|
|
|
|
if (answerType === 'i') {
|
|
|
|
if ( typeof (_decodedResponse[key]) !== poa.info[key] ){
|
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
|
|
|
}
|
|
|
|
_response[key] = decode(_decodedResponse[key]);
|
|
|
|
|
|
|
|
} else if (answerType === 'p') {
|
|
|
|
if (_decodedResponse.base64 === true
|
|
|
|
&& poa.payload[key] === 'string'
|
|
|
|
) {
|
|
|
|
if (this.expected === 'uint8'){
|
|
|
|
_response[key] = atobArray(_decodedResponse[key]);
|
|
|
|
_response.format = 'uint8';
|
|
|
|
|
|
|
|
} else if (this.expected === 'base64'){
|
|
|
|
_response[key] = _decodedResponse[key];
|
|
|
|
_response.format = 'base64';
|
|
|
|
|
|
|
|
} else { // no 'expected'
|
|
|
|
_response[key] = Utf8ArrayToStr(
|
|
|
|
atobArray(_decodedResponse[key]));
|
|
|
|
_response.format = 'string';
|
|
|
|
}
|
|
|
|
} else if (poa.payload[key] === 'string') {
|
2018-08-22 17:07:05 +00:00
|
|
|
_response[key] = _decodedResponse[key];
|
2018-08-22 14:32:31 +00:00
|
|
|
} else {
|
2018-08-30 10:04:50 +00:00
|
|
|
// fallthrough, should not be reached
|
|
|
|
// (payload is always string)
|
|
|
|
return gpgme_error('CONN_UNEXPECTED_ANSWER');
|
2018-08-22 14:32:31 +00:00
|
|
|
}
|
2018-05-09 17:40:57 +00:00
|
|
|
}
|
2018-08-20 10:12:43 +00:00
|
|
|
break;
|
2018-08-30 10:04:50 +00:00
|
|
|
} }
|
2018-08-20 10:12:43 +00:00
|
|
|
}
|
|
|
|
return _response;
|
2018-07-27 18:56:11 +00:00
|
|
|
}
|
2018-04-18 14:38:06 +00:00
|
|
|
}
|