2021-02-04 19:15:23 +01:00
|
|
|
import EventEmitter from 'events';
|
|
|
|
import { ObservableStore } from '@metamask/obs-store';
|
2022-09-22 17:04:24 +02:00
|
|
|
import { bufferToHex } from 'ethereumjs-util';
|
2021-02-04 19:15:23 +01:00
|
|
|
import { ethErrors } from 'eth-rpc-errors';
|
|
|
|
import log from 'loglevel';
|
|
|
|
import { MESSAGE_TYPE } from '../../../shared/constants/app';
|
2023-04-03 17:31:04 +02:00
|
|
|
import { MetaMetricsEventCategory } from '../../../shared/constants/metametrics';
|
2021-02-09 00:22:30 +01:00
|
|
|
import { METAMASK_CONTROLLER_EVENTS } from '../metamask-controller';
|
2021-03-18 19:23:46 +01:00
|
|
|
import createId from '../../../shared/modules/random-id';
|
2022-09-22 17:04:24 +02:00
|
|
|
import { stripHexPrefix } from '../../../shared/modules/hexstring-utils';
|
2021-02-04 19:15:23 +01:00
|
|
|
import { addHexPrefix } from './util';
|
2020-02-19 19:24:16 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const hexRe = /^[0-9A-Fa-f]+$/gu;
|
2020-02-19 19:24:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents, and contains data about, an 'eth_decrypt' type decryption request. These are created when a
|
|
|
|
* decryption for an eth_decrypt call is requested.
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @typedef {object} DecryptMessage
|
2020-02-19 19:24:16 +01:00
|
|
|
* @property {number} id An id to track and identify the message object
|
2022-07-27 15:28:05 +02:00
|
|
|
* @property {object} msgParams The parameters to pass to the decryptMessage method once the decryption request is
|
2020-02-19 19:24:16 +01:00
|
|
|
* approved.
|
2022-07-27 15:28:05 +02:00
|
|
|
* @property {object} msgParams.metamaskId Added to msgParams for tracking and identification within MetaMask.
|
2020-02-19 19:24:16 +01:00
|
|
|
* @property {string} msgParams.data A hex string conversion of the raw buffer data of the decryption request
|
|
|
|
* @property {number} time The epoch time at which the this message was created
|
|
|
|
* @property {string} status Indicates whether the decryption request is 'unapproved', 'approved', 'decrypted' or 'rejected'
|
|
|
|
* @property {string} type The json-prc decryption method for which a decryption request has been made. A 'Message' will
|
|
|
|
* always have a 'eth_decrypt' type.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default class DecryptMessageManager extends EventEmitter {
|
|
|
|
/**
|
|
|
|
* Controller in charge of managing - storing, adding, removing, updating - DecryptMessage.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {object} opts - Controller options
|
|
|
|
* @param {Function} opts.metricEvent - A function for emitting a metric event.
|
2020-02-19 19:24:16 +01:00
|
|
|
*/
|
2021-11-15 17:13:51 +01:00
|
|
|
constructor(opts) {
|
2021-02-04 19:15:23 +01:00
|
|
|
super();
|
2020-02-19 19:24:16 +01:00
|
|
|
this.memStore = new ObservableStore({
|
|
|
|
unapprovedDecryptMsgs: {},
|
|
|
|
unapprovedDecryptMsgCount: 0,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2022-11-22 17:56:26 +01:00
|
|
|
|
|
|
|
this.resetState = () => {
|
|
|
|
this.memStore.updateState({
|
|
|
|
unapprovedDecryptMsgs: {},
|
|
|
|
unapprovedDecryptMsgCount: 0,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
this.messages = [];
|
2021-11-15 17:13:51 +01:00
|
|
|
this.metricsEvent = opts.metricsEvent;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A getter for the number of 'unapproved' DecryptMessages in this.messages
|
|
|
|
*
|
|
|
|
* @returns {number} The number of 'unapproved' DecryptMessages in this.messages
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
get unapprovedDecryptMsgCount() {
|
2021-02-04 19:15:23 +01:00
|
|
|
return Object.keys(this.getUnapprovedMsgs()).length;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A getter for the 'unapproved' DecryptMessages in this.messages
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @returns {object} An index of DecryptMessage ids to DecryptMessages, for all 'unapproved' DecryptMessages in
|
2020-02-19 19:24:16 +01:00
|
|
|
* this.messages
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
getUnapprovedMsgs() {
|
|
|
|
return this.messages
|
|
|
|
.filter((msg) => msg.status === 'unapproved')
|
2020-02-19 19:24:16 +01:00
|
|
|
.reduce((result, msg) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
result[msg.id] = msg;
|
|
|
|
return result;
|
|
|
|
}, {});
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new DecryptMessage with an 'unapproved' status using the passed msgParams. this.addMsg is called to add
|
|
|
|
* the new DecryptMessage to this.messages, and to save the unapproved DecryptMessages from that list to
|
|
|
|
* this.memStore.
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} msgParams - The params for the eth_decrypt call to be made after the message is approved.
|
|
|
|
* @param {object} [req] - The original request object possibly containing the origin
|
2020-02-19 19:24:16 +01:00
|
|
|
* @returns {Promise<Buffer>} The raw decrypted message contents
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
addUnapprovedMessageAsync(msgParams, req) {
|
2020-02-19 19:24:16 +01:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (!msgParams.from) {
|
2021-02-04 19:15:23 +01:00
|
|
|
reject(new Error('MetaMask Decryption: from field is required.'));
|
|
|
|
return;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
const msgId = this.addUnapprovedMessage(msgParams, req);
|
2020-02-19 19:24:16 +01:00
|
|
|
this.once(`${msgId}:finished`, (data) => {
|
|
|
|
switch (data.status) {
|
|
|
|
case 'decrypted':
|
2021-02-04 19:15:23 +01:00
|
|
|
resolve(data.rawData);
|
|
|
|
return;
|
2020-02-19 19:24:16 +01:00
|
|
|
case 'rejected':
|
2020-11-03 00:41:28 +01:00
|
|
|
reject(
|
|
|
|
ethErrors.provider.userRejectedRequest(
|
|
|
|
'MetaMask Decryption: User denied message decryption.',
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
return;
|
2020-02-19 19:24:16 +01:00
|
|
|
case 'errored':
|
2021-02-04 19:15:23 +01:00
|
|
|
reject(new Error('This message cannot be decrypted'));
|
|
|
|
return;
|
2020-02-19 19:24:16 +01:00
|
|
|
default:
|
2020-11-03 00:41:28 +01:00
|
|
|
reject(
|
|
|
|
new Error(
|
|
|
|
`MetaMask Decryption: Unknown problem: ${JSON.stringify(
|
|
|
|
msgParams,
|
|
|
|
)}`,
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new DecryptMessage with an 'unapproved' status using the passed msgParams. this.addMsg is called to add
|
|
|
|
* the new DecryptMessage to this.messages, and to save the unapproved DecryptMessages from that list to
|
|
|
|
* this.memStore.
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} msgParams - The params for the eth_decryptMsg call to be made after the message is approved.
|
|
|
|
* @param {object} [req] - The original request object possibly containing the origin
|
2020-02-19 19:24:16 +01:00
|
|
|
* @returns {number} The id of the newly created DecryptMessage.
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
addUnapprovedMessage(msgParams, req) {
|
|
|
|
log.debug(
|
|
|
|
`DecryptMessageManager addUnapprovedMessage: ${JSON.stringify(
|
|
|
|
msgParams,
|
|
|
|
)}`,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-02-19 19:24:16 +01:00
|
|
|
// add origin from request
|
|
|
|
if (req) {
|
2021-02-04 19:15:23 +01:00
|
|
|
msgParams.origin = req.origin;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
msgParams.data = this.normalizeMsgData(msgParams.data);
|
2020-02-19 19:24:16 +01:00
|
|
|
// create txData obj with parameters and meta data
|
2021-02-04 19:15:23 +01:00
|
|
|
const time = new Date().getTime();
|
|
|
|
const msgId = createId();
|
2020-02-19 19:24:16 +01:00
|
|
|
const msgData = {
|
|
|
|
id: msgId,
|
2020-08-19 18:27:05 +02:00
|
|
|
msgParams,
|
|
|
|
time,
|
2020-02-19 19:24:16 +01:00
|
|
|
status: 'unapproved',
|
2020-06-04 21:22:45 +02:00
|
|
|
type: MESSAGE_TYPE.ETH_DECRYPT,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
this.addMsg(msgData);
|
2020-02-19 19:24:16 +01:00
|
|
|
|
|
|
|
// signal update
|
2021-02-04 19:15:23 +01:00
|
|
|
this.emit('update');
|
|
|
|
return msgId;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a passed DecryptMessage to this.messages, and calls this._saveMsgList() to save the unapproved DecryptMessages from that
|
|
|
|
* list to this.memStore.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {Message} msg - The DecryptMessage to add to this.messages
|
2020-02-19 19:24:16 +01:00
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
addMsg(msg) {
|
2021-02-04 19:15:23 +01:00
|
|
|
this.messages.push(msg);
|
|
|
|
this._saveMsgList();
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a specified DecryptMessage.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {number} msgId - The id of the DecryptMessage to get
|
2020-02-19 19:24:16 +01:00
|
|
|
* @returns {DecryptMessage|undefined} The DecryptMessage with the id that matches the passed msgId, or undefined
|
|
|
|
* if no DecryptMessage has that id.
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
getMsg(msgId) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return this.messages.find((msg) => msg.id === msgId);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Approves a DecryptMessage. Sets the message status via a call to this.setMsgStatusApproved, and returns a promise
|
|
|
|
* with the message params modified for proper decryption.
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} msgParams - The msgParams to be used when eth_decryptMsg is called, plus data added by MetaMask.
|
|
|
|
* @param {object} msgParams.metamaskId - Added to msgParams for tracking and identification within MetaMask.
|
2020-02-19 19:24:16 +01:00
|
|
|
* @returns {Promise<object>} Promises the msgParams object with metamaskId removed.
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
approveMessage(msgParams) {
|
2021-02-04 19:15:23 +01:00
|
|
|
this.setMsgStatusApproved(msgParams.metamaskId);
|
|
|
|
return this.prepMsgForDecryption(msgParams);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a DecryptMessage status to 'approved' via a call to this._setMsgStatus.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {number} msgId - The id of the DecryptMessage to approve.
|
2020-02-19 19:24:16 +01:00
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
setMsgStatusApproved(msgId) {
|
2021-02-04 19:15:23 +01:00
|
|
|
this._setMsgStatus(msgId, 'approved');
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a DecryptMessage status to 'decrypted' via a call to this._setMsgStatus and updates that DecryptMessage in
|
|
|
|
* this.messages by adding the raw decryption data of the decryption request to the DecryptMessage
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {number} msgId - The id of the DecryptMessage to decrypt.
|
|
|
|
* @param {buffer} rawData - The raw data of the message request
|
2020-02-19 19:24:16 +01:00
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
setMsgStatusDecrypted(msgId, rawData) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const msg = this.getMsg(msgId);
|
|
|
|
msg.rawData = rawData;
|
|
|
|
this._updateMsg(msg);
|
|
|
|
this._setMsgStatus(msgId, 'decrypted');
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the metamaskId property from passed msgParams and returns a promise which resolves the updated msgParams
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} msgParams - The msgParams to modify
|
2020-02-19 19:24:16 +01:00
|
|
|
* @returns {Promise<object>} Promises the msgParams with the metamaskId property removed
|
|
|
|
*/
|
2023-01-20 21:20:18 +01:00
|
|
|
async prepMsgForDecryption(msgParams) {
|
2021-02-04 19:15:23 +01:00
|
|
|
delete msgParams.metamaskId;
|
2023-01-20 21:20:18 +01:00
|
|
|
return msgParams;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a DecryptMessage status to 'rejected' via a call to this._setMsgStatus.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {number} msgId - The id of the DecryptMessage to reject.
|
|
|
|
* @param reason
|
2020-02-19 19:24:16 +01:00
|
|
|
*/
|
2021-11-15 17:13:51 +01:00
|
|
|
rejectMsg(msgId, reason = undefined) {
|
|
|
|
if (reason) {
|
|
|
|
this.metricsEvent({
|
|
|
|
event: reason,
|
2023-04-03 17:31:04 +02:00
|
|
|
category: MetaMetricsEventCategory.Messages,
|
2021-11-15 17:13:51 +01:00
|
|
|
properties: {
|
|
|
|
action: 'Decrypt Message Request',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
this._setMsgStatus(msgId, 'rejected');
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a TypedMessage status to 'errored' via a call to this._setMsgStatus.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {number} msgId - The id of the TypedMessage to error
|
|
|
|
* @param error
|
2020-02-19 19:24:16 +01:00
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
errorMessage(msgId, error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const msg = this.getMsg(msgId);
|
|
|
|
msg.error = error;
|
|
|
|
this._updateMsg(msg);
|
|
|
|
this._setMsgStatus(msgId, 'errored');
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
2021-02-09 00:22:30 +01:00
|
|
|
/**
|
|
|
|
* Clears all unapproved messages from memory.
|
|
|
|
*/
|
|
|
|
clearUnapproved() {
|
|
|
|
this.messages = this.messages.filter((msg) => msg.status !== 'unapproved');
|
|
|
|
this._saveMsgList();
|
|
|
|
}
|
|
|
|
|
2020-02-19 19:24:16 +01:00
|
|
|
/**
|
|
|
|
* Updates the status of a DecryptMessage in this.messages via a call to this._updateMsg
|
|
|
|
*
|
|
|
|
* @private
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {number} msgId - The id of the DecryptMessage to update.
|
|
|
|
* @param {string} status - The new status of the DecryptMessage.
|
2020-02-19 19:24:16 +01:00
|
|
|
* @throws A 'DecryptMessageManager - DecryptMessage not found for id: "${msgId}".' if there is no DecryptMessage
|
|
|
|
* in this.messages with an id equal to the passed msgId
|
|
|
|
* @fires An event with a name equal to `${msgId}:${status}`. The DecryptMessage is also fired.
|
|
|
|
* @fires If status is 'rejected' or 'decrypted', an event with a name equal to `${msgId}:finished` is fired along
|
|
|
|
* with the DecryptMessage
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
_setMsgStatus(msgId, status) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const msg = this.getMsg(msgId);
|
2020-02-19 19:24:16 +01:00
|
|
|
if (!msg) {
|
2020-11-03 00:41:28 +01:00
|
|
|
throw new Error(
|
|
|
|
`DecryptMessageManager - Message not found for id: "${msgId}".`,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
msg.status = status;
|
|
|
|
this._updateMsg(msg);
|
|
|
|
this.emit(`${msgId}:${status}`, msg);
|
2020-11-03 00:41:28 +01:00
|
|
|
if (
|
|
|
|
status === 'rejected' ||
|
|
|
|
status === 'decrypted' ||
|
|
|
|
status === 'errored'
|
|
|
|
) {
|
2021-02-04 19:15:23 +01:00
|
|
|
this.emit(`${msgId}:finished`, msg);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a DecryptMessage in this.messages to the passed DecryptMessage if the ids are equal. Then saves the
|
|
|
|
* unapprovedDecryptMsgs index to storage via this._saveMsgList
|
|
|
|
*
|
|
|
|
* @private
|
2020-11-10 18:30:41 +01:00
|
|
|
* @param {DecryptMessage} msg - A DecryptMessage that will replace an existing DecryptMessage (with the same
|
2020-02-19 19:24:16 +01:00
|
|
|
* id) in this.messages
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
_updateMsg(msg) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const index = this.messages.findIndex((message) => message.id === msg.id);
|
2020-02-19 19:24:16 +01:00
|
|
|
if (index !== -1) {
|
2021-02-04 19:15:23 +01:00
|
|
|
this.messages[index] = msg;
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
this._saveMsgList();
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves the unapproved DecryptMessages, and their count, to this.memStore
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @fires 'updateBadge'
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
_saveMsgList() {
|
2021-02-04 19:15:23 +01:00
|
|
|
const unapprovedDecryptMsgs = this.getUnapprovedMsgs();
|
|
|
|
const unapprovedDecryptMsgCount = Object.keys(unapprovedDecryptMsgs).length;
|
2020-11-03 00:41:28 +01:00
|
|
|
this.memStore.updateState({
|
|
|
|
unapprovedDecryptMsgs,
|
|
|
|
unapprovedDecryptMsgCount,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2021-02-09 00:22:30 +01:00
|
|
|
this.emit(METAMASK_CONTROLLER_EVENTS.UPDATE_BADGE);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper function that converts raw buffer data to a hex, or just returns the data if it is already formatted as a hex.
|
|
|
|
*
|
2022-01-07 16:57:33 +01:00
|
|
|
* @param {any} data - The buffer data to convert to a hex
|
2020-02-19 19:24:16 +01:00
|
|
|
* @returns {string} A hex string conversion of the buffer data
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
normalizeMsgData(data) {
|
2020-02-19 19:24:16 +01:00
|
|
|
try {
|
2021-04-16 17:05:13 +02:00
|
|
|
const stripped = stripHexPrefix(data);
|
2020-02-19 19:24:16 +01:00
|
|
|
if (stripped.match(hexRe)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return addHexPrefix(stripped);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2021-02-04 19:15:23 +01:00
|
|
|
log.debug(`Message was not hex encoded, interpreting as utf8.`);
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
|
2021-04-16 17:05:13 +02:00
|
|
|
return bufferToHex(Buffer.from(data, 'utf8'));
|
2020-02-19 19:24:16 +01:00
|
|
|
}
|
|
|
|
}
|