bitwarden-estensione-browser/src/background/runtime.background.ts

491 lines
20 KiB
TypeScript
Raw Normal View History

2021-09-17 15:44:27 +02:00
import { CipherType } from 'jslib-common/enums/cipherType';
import { CipherView } from 'jslib-common/models/view/cipherView';
import { LoginUriView } from 'jslib-common/models/view/loginUriView';
import { LoginView } from 'jslib-common/models/view/loginView';
import { CipherService } from 'jslib-common/abstractions/cipher.service';
import { EnvironmentService } from 'jslib-common/abstractions/environment.service';
import { FolderService } from 'jslib-common/abstractions/folder.service';
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { MessagingService } from 'jslib-common/abstractions/messaging.service';
import { NotificationsService } from 'jslib-common/abstractions/notifications.service';
import { PolicyService } from 'jslib-common/abstractions/policy.service';
import { StorageService } from 'jslib-common/abstractions/storage.service';
import { SystemService } from 'jslib-common/abstractions/system.service';
import { UserService } from 'jslib-common/abstractions/user.service';
import { VaultTimeoutService } from 'jslib-common/abstractions/vaultTimeout.service';
import { ConstantsService } from 'jslib-common/services/constants.service';
import { PopupUtilsService } from '../popup/services/popup-utils.service';
2021-02-10 16:40:15 +01:00
import { AutofillService } from '../services/abstractions/autofill.service';
import BrowserPlatformUtilsService from '../services/browserPlatformUtils.service';
2017-12-07 21:36:24 +01:00
2018-01-12 17:09:30 +01:00
import { BrowserApi } from '../browser/browserApi';
2017-12-07 21:36:24 +01:00
import MainBackground from './main.background';
import { Utils } from 'jslib-common/misc/utils';
2018-04-23 19:04:11 +02:00
import { PolicyType } from 'jslib-common/enums/policyType';
import addChangePasswordQueueMessage from './models/addChangePasswordQueueMessage';
import addLoginQueueMessage from './models/addLoginQueueMessage';
export default class RuntimeBackground {
private runtime: any;
2018-04-06 17:48:45 +02:00
private autofillTimeout: any;
2017-12-07 21:36:24 +01:00
private pageDetailsToAutoFill: any[] = [];
private onInstalledReason: string = null;
private lockedVaultPendingNotifications: any[] = [];
2017-12-07 21:36:24 +01:00
constructor(private main: MainBackground, private autofillService: AutofillService,
2018-04-10 20:20:03 +02:00
private cipherService: CipherService, private platformUtilsService: BrowserPlatformUtilsService,
2018-08-20 23:40:39 +02:00
private storageService: StorageService, private i18nService: I18nService,
private notificationsService: NotificationsService,
private systemService: SystemService, private vaultTimeoutService: VaultTimeoutService,
private environmentService: EnvironmentService, private policyService: PolicyService,
private userService: UserService, private messagingService: MessagingService,
private folderService: FolderService, private popupUtilsService: PopupUtilsService) {
// onInstalled listener must be wired up before anything else, so we do it in the ctor
chrome.runtime.onInstalled.addListener((details: any) => {
this.onInstalledReason = details.reason;
});
}
async init() {
if (!chrome.runtime) {
2017-12-07 21:36:24 +01:00
return;
}
2018-01-16 06:03:17 +01:00
await this.checkOnInstalled();
BrowserApi.messageListener('runtime.background', async (msg: any, sender: any, sendResponse: any) => {
2018-01-12 21:20:19 +01:00
await this.processMessage(msg, sender, sendResponse);
});
}
2017-12-07 21:36:24 +01:00
2018-01-14 00:16:19 +01:00
async processMessage(msg: any, sender: any, sendResponse: any) {
2018-01-12 21:20:19 +01:00
switch (msg.command) {
case 'loggedIn':
case 'unlocked':
await this.main.setIcon();
2019-02-25 22:19:19 +01:00
await this.main.refreshBadgeAndMenu(false);
2018-08-23 15:26:07 +02:00
this.notificationsService.updateConnection(msg.command === 'unlocked');
2019-02-27 15:28:16 +01:00
this.systemService.cancelProcessReload();
if (this.lockedVaultPendingNotifications.length > 0) {
const retryItem = this.lockedVaultPendingNotifications.pop();
await this.processMessage(retryItem.msg, retryItem.sender, null);
}
break;
case 'addToRetryQueue':
const retryMessage = {
msg: msg.retryItem,
sender: sender,
};
this.lockedVaultPendingNotifications.push(retryMessage);
2018-01-12 21:20:19 +01:00
break;
case 'logout':
await this.main.logout(msg.expired);
break;
case 'syncCompleted':
if (msg.successfully) {
setTimeout(async () => await this.main.refreshBadgeAndMenu(), 2000);
}
break;
2018-01-18 22:17:58 +01:00
case 'openPopup':
await this.main.openPopup();
break;
case 'openPopout':
await this.popupUtilsService.popOut(window, 'popup/index.html?uilocation=popout');
break;
2018-04-10 20:20:03 +02:00
case 'showDialogResolve':
this.platformUtilsService.resolveDialogPromise(msg.dialogId, msg.confirmed);
break;
2018-01-13 16:13:31 +01:00
case 'bgGetDataForTab':
await this.getDataForTab(sender.tab, msg.responseCommand);
break;
2018-01-12 21:20:19 +01:00
case 'bgCloseNotificationBar':
await BrowserApi.tabSendMessageData(sender.tab, 'closeNotificationBar');
break;
case 'bgAdjustNotificationBar':
await BrowserApi.tabSendMessageData(sender.tab, 'adjustNotificationBar', msg.data);
break;
case 'bgCollectPageDetails':
await this.main.collectPageDetailsForContentScript(sender.tab, msg.sender, sender.frameId);
2018-01-12 21:20:19 +01:00
break;
case 'bgAddLogin':
await this.addLogin(msg.login, sender.tab);
break;
2018-08-01 05:24:11 +02:00
case 'bgChangedPassword':
await this.changedPassword(msg.data, sender.tab);
break;
2018-01-12 21:20:19 +01:00
case 'bgAddClose':
2018-08-01 05:24:11 +02:00
case 'bgChangeClose':
this.removeTabFromNotificationQueue(sender.tab);
2018-01-12 21:20:19 +01:00
break;
case 'bgAddSave':
2018-08-01 05:24:11 +02:00
case 'bgChangeSave':
await this.saveOrUpdateCredentials(sender.tab, msg.folder);
2018-08-01 05:24:11 +02:00
break;
2018-01-12 21:20:19 +01:00
case 'bgNeverSave':
await this.saveNever(sender.tab);
break;
case 'bgUpdateContextMenu':
case 'editedCipher':
case 'addedCipher':
case 'deletedCipher':
2018-01-12 21:20:19 +01:00
await this.main.refreshBadgeAndMenu();
break;
case 'bgReseedStorage':
2019-02-13 17:34:42 +01:00
await this.main.reseedStorage();
break;
2018-01-12 21:20:19 +01:00
case 'collectPageDetailsResponse':
switch (msg.sender) {
case 'notificationBar':
const forms = this.autofillService.getFormsWithPasswordFields(msg.details);
await BrowserApi.tabSendMessageData(msg.tab, 'notificationBarPageDetails', {
details: msg.details,
forms: forms,
});
break;
case 'autofiller':
case 'autofill_cmd':
const totpCode = await this.autofillService.doAutoFillActiveTab([{
2018-01-12 21:20:19 +01:00
frameId: sender.frameId,
tab: msg.tab,
details: msg.details,
}], msg.sender === 'autofill_cmd');
2018-08-31 03:47:49 +02:00
if (totpCode != null) {
this.platformUtilsService.copyToClipboard(totpCode, { window: window });
}
2018-01-12 21:20:19 +01:00
break;
case 'contextMenu':
clearTimeout(this.autofillTimeout);
this.pageDetailsToAutoFill.push({
frameId: sender.frameId,
tab: msg.tab,
details: msg.details,
});
this.autofillTimeout = setTimeout(async () => await this.autofillPage(), 300);
break;
default:
break;
}
break;
2020-08-14 22:20:16 +02:00
case 'authResult':
const vaultUrl = this.environmentService.getWebVaultUrl();
2020-08-14 22:20:16 +02:00
if (msg.referrer == null || Utils.getHostname(vaultUrl) !== msg.referrer) {
return;
}
try {
2020-09-18 22:03:08 +02:00
BrowserApi.createNewTab('popup/index.html?uilocation=popout#/sso?code=' +
msg.code + '&state=' + msg.state);
}
catch { }
2020-08-14 22:20:16 +02:00
break;
case 'webAuthnResult':
const vaultUrl2 = this.environmentService.getWebVaultUrl();
if (msg.referrer == null || Utils.getHostname(vaultUrl2) !== msg.referrer) {
return;
}
const params = `webAuthnResponse=${encodeURIComponent(msg.data)};remember=${msg.remember}`;
BrowserApi.createNewTab(`popup/index.html?uilocation=popout#/2fa;${params}`, undefined, false);
break;
case 'reloadPopup':
this.messagingService.send('reloadPopup');
break;
2021-05-12 05:35:18 +02:00
case 'emailVerificationRequired':
this.messagingService.send('showDialog', {
dialogId: 'emailVerificationRequired',
title: this.i18nService.t('emailVerificationRequired'),
text: this.i18nService.t('emailVerificationRequiredDesc'),
confirmText: this.i18nService.t('ok'),
type: 'info',
});
break;
case 'getClickedElementResponse':
this.platformUtilsService.copyToClipboard(msg.identifier, { window: window });
2018-01-12 21:20:19 +01:00
default:
break;
}
}
2017-12-07 21:36:24 +01:00
private async autofillPage() {
const totpCode = await this.autofillService.doAutoFill({
2017-12-07 21:36:24 +01:00
cipher: this.main.loginToAutoFill,
pageDetails: this.pageDetailsToAutoFill,
2021-02-10 16:40:15 +01:00
fillNewPassword: true,
2017-12-07 21:36:24 +01:00
});
2018-08-31 03:47:49 +02:00
if (totpCode != null) {
this.platformUtilsService.copyToClipboard(totpCode, { window: window });
}
2017-12-07 21:36:24 +01:00
// reset
this.main.loginToAutoFill = null;
this.pageDetailsToAutoFill = [];
}
private async saveOrUpdateCredentials(tab: any, folderId?: string) {
2018-08-01 05:24:11 +02:00
for (let i = this.main.notificationQueue.length - 1; i >= 0; i--) {
const queueMessage = this.main.notificationQueue[i];
if (queueMessage.tabId !== tab.id ||
(queueMessage.type !== 'addLogin' && queueMessage.type !== 'changePassword')) {
2017-12-07 21:36:24 +01:00
continue;
}
2018-10-14 04:52:49 +02:00
const tabDomain = Utils.getDomain(tab.url);
2018-08-01 05:24:11 +02:00
if (tabDomain != null && tabDomain !== queueMessage.domain) {
2017-12-07 21:36:24 +01:00
continue;
}
2018-08-01 05:24:11 +02:00
this.main.notificationQueue.splice(i, 1);
BrowserApi.tabSendMessageData(tab, 'closeNotificationBar');
2017-12-07 21:36:24 +01:00
if (queueMessage.type === 'changePassword') {
const message = (queueMessage as addChangePasswordQueueMessage);
const cipher = await this.getDecryptedCipherById(message.cipherId);
if (cipher == null) {
return;
}
await this.updateCipher(cipher, message.newPassword);
return;
}
if (!queueMessage.wasVaultLocked) {
await this.createNewCipher(queueMessage, folderId);
}
2017-12-07 21:36:24 +01:00
// If the vault was locked, check if a cipher needs updating instead of creating a new one
if (queueMessage.type === 'addLogin' && queueMessage.wasVaultLocked === true) {
const message = (queueMessage as addLoginQueueMessage);
const ciphers = await this.cipherService.getAllDecryptedForUrl(message.uri);
const usernameMatches = ciphers.filter(c => c.login.username != null &&
c.login.username.toLowerCase() === message.username);
if (usernameMatches.length >= 1) {
await this.updateCipher(usernameMatches[0], message.password);
return;
}
await this.createNewCipher(message, folderId);
2018-08-01 05:24:11 +02:00
}
}
}
2018-08-01 05:24:11 +02:00
private async createNewCipher(queueMessage: addLoginQueueMessage, folderId: string) {
const loginModel = new LoginView();
const loginUri = new LoginUriView();
loginUri.uri = queueMessage.uri;
loginModel.uris = [loginUri];
loginModel.username = queueMessage.username;
loginModel.password = queueMessage.password;
const model = new CipherView();
model.name = Utils.getHostname(queueMessage.uri) || queueMessage.domain;
model.name = model.name.replace(/^www\./, '');
model.type = CipherType.Login;
model.login = loginModel;
if (!Utils.isNullOrWhitespace(folderId)) {
const folders = await this.folderService.getAllDecrypted();
if (folders.some(x => x.id === folderId)) {
model.folderId = folderId;
2018-08-01 05:24:11 +02:00
}
}
2018-08-01 05:24:11 +02:00
const cipher = await this.cipherService.encrypt(model);
await this.cipherService.saveWithServer(cipher);
}
2018-08-01 05:24:11 +02:00
private async getDecryptedCipherById(cipherId: string) {
const cipher = await this.cipherService.get(cipherId);
if (cipher != null && cipher.type === CipherType.Login) {
return await cipher.decrypt();
}
return null;
}
private async updateCipher(cipher: CipherView, newPassword: string) {
if (cipher != null && cipher.type === CipherType.Login) {
cipher.login.password = newPassword;
const newCipher = await this.cipherService.encrypt(cipher);
await this.cipherService.saveWithServer(newCipher);
2018-08-01 05:24:11 +02:00
}
}
2017-12-07 21:36:24 +01:00
private async saveNever(tab: any) {
2018-08-01 05:24:11 +02:00
for (let i = this.main.notificationQueue.length - 1; i >= 0; i--) {
const queueMessage = this.main.notificationQueue[i];
if (queueMessage.tabId !== tab.id || queueMessage.type !== 'addLogin') {
2017-12-07 21:36:24 +01:00
continue;
}
2018-10-14 04:52:49 +02:00
const tabDomain = Utils.getDomain(tab.url);
2018-08-01 05:24:11 +02:00
if (tabDomain != null && tabDomain !== queueMessage.domain) {
2017-12-07 21:36:24 +01:00
continue;
}
2018-08-01 05:24:11 +02:00
this.main.notificationQueue.splice(i, 1);
BrowserApi.tabSendMessageData(tab, 'closeNotificationBar');
2018-04-23 19:04:11 +02:00
const hostname = Utils.getHostname(tab.url);
2017-12-07 21:36:24 +01:00
await this.cipherService.saveNeverDomain(hostname);
}
}
private async addLogin(loginInfo: any, tab: any) {
2018-10-14 04:52:49 +02:00
const loginDomain = Utils.getDomain(loginInfo.url);
2017-12-07 21:36:24 +01:00
if (loginDomain == null) {
return;
}
let normalizedUsername = loginInfo.username;
if (normalizedUsername != null) {
normalizedUsername = normalizedUsername.toLowerCase();
2019-12-26 13:51:16 +01:00
}
if (await this.vaultTimeoutService.isLocked()) {
this.pushAddLoginToQueue(loginDomain, loginInfo, tab, true);
return;
}
const ciphers = await this.cipherService.getAllDecryptedForUrl(loginInfo.url);
2021-02-10 16:40:15 +01:00
const usernameMatches = ciphers.filter(c =>
c.login.username != null && c.login.username.toLowerCase() === normalizedUsername);
2018-08-06 19:37:29 +02:00
if (usernameMatches.length === 0) {
2018-08-07 15:22:06 +02:00
const disabledAddLogin = await this.storageService.get<boolean>(
ConstantsService.disableAddLoginNotificationKey);
if (disabledAddLogin) {
return;
}
if (!(await this.allowPersonalOwnership())) {
return;
}
this.pushAddLoginToQueue(loginDomain, loginInfo, tab);
} else if (usernameMatches.length === 1 && usernameMatches[0].login.password !== loginInfo.password) {
const disabledChangePassword = await this.storageService.get<boolean>(
ConstantsService.disableChangedPasswordNotificationKey);
if (disabledChangePassword) {
return;
}
this.pushChangePasswordToQueue(usernameMatches[0].id, loginDomain, loginInfo.password, tab);
}
}
private async pushAddLoginToQueue(loginDomain: string, loginInfo: any, tab: any, isVaultLocked: boolean = false) {
// remove any old messages for this tab
this.removeTabFromNotificationQueue(tab);
const message: addLoginQueueMessage = {
type: 'addLogin',
username: loginInfo.username,
password: loginInfo.password,
domain: loginDomain,
uri: loginInfo.url,
tabId: tab.id,
expires: new Date((new Date()).getTime() + 30 * 60000), // 30 minutes
wasVaultLocked: isVaultLocked,
};
this.main.notificationQueue.push(message);
await this.main.checkNotificationQueue(tab);
2018-08-01 05:24:11 +02:00
}
2017-12-07 21:36:24 +01:00
2018-08-01 05:24:11 +02:00
private async changedPassword(changeData: any, tab: any) {
const loginDomain = Utils.getDomain(changeData.url);
if (loginDomain == null) {
return;
}
if (await this.vaultTimeoutService.isLocked()) {
this.pushChangePasswordToQueue(null, loginDomain, changeData.newPassword, tab, true);
2018-08-01 05:24:11 +02:00
return;
}
let id: string = null;
2018-08-01 05:24:11 +02:00
const ciphers = await this.cipherService.getAllDecryptedForUrl(changeData.url);
if (changeData.currentPassword != null) {
2021-02-10 16:40:15 +01:00
const passwordMatches = ciphers.filter(c => c.login.password === changeData.currentPassword);
if (passwordMatches.length === 1) {
id = passwordMatches[0].id;
}
} else if (ciphers.length === 1) {
id = ciphers[0].id;
}
if (id != null) {
this.pushChangePasswordToQueue(id, loginDomain, changeData.newPassword, tab);
2017-12-07 21:36:24 +01:00
}
}
private async pushChangePasswordToQueue(cipherId: string, loginDomain: string, newPassword: string, tab: any, isVaultLocked: boolean = false) {
2018-08-06 19:37:29 +02:00
// remove any old messages for this tab
this.removeTabFromNotificationQueue(tab);
const message: addChangePasswordQueueMessage = {
2018-08-06 19:37:29 +02:00
type: 'changePassword',
cipherId: cipherId,
newPassword: newPassword,
domain: loginDomain,
tabId: tab.id,
expires: new Date((new Date()).getTime() + 30 * 60000), // 30 minutes
wasVaultLocked: isVaultLocked,
};
this.main.notificationQueue.push(message);
2018-08-06 19:37:29 +02:00
await this.main.checkNotificationQueue(tab);
}
2018-08-01 05:24:11 +02:00
private removeTabFromNotificationQueue(tab: any) {
for (let i = this.main.notificationQueue.length - 1; i >= 0; i--) {
if (this.main.notificationQueue[i].tabId === tab.id) {
this.main.notificationQueue.splice(i, 1);
2017-12-07 21:36:24 +01:00
}
}
}
2018-01-16 06:03:17 +01:00
private async checkOnInstalled() {
setTimeout(async () => {
if (this.onInstalledReason != null) {
if (this.onInstalledReason === 'install') {
BrowserApi.createNewTab('https://bitwarden.com/browser-start/');
2018-01-18 04:42:31 +01:00
await this.setDefaultSettings();
2018-01-16 06:03:17 +01:00
}
this.onInstalledReason = null;
}
2018-01-19 17:42:35 +01:00
}, 100);
}
2018-01-18 04:42:31 +01:00
private async setDefaultSettings() {
// Default timeout option to "on restart".
const currentVaultTimeout = await this.storageService.get<number>(ConstantsService.vaultTimeoutKey);
if (currentVaultTimeout == null) {
await this.storageService.save(ConstantsService.vaultTimeoutKey, -1);
}
// Default action to "lock".
const currentVaultTimeoutAction = await this.storageService.get<string>(ConstantsService.vaultTimeoutActionKey);
if (currentVaultTimeoutAction == null) {
await this.storageService.save(ConstantsService.vaultTimeoutActionKey, 'lock');
2018-01-18 04:42:31 +01:00
}
}
2018-01-13 16:13:31 +01:00
private async getDataForTab(tab: any, responseCommand: string) {
2018-01-13 21:09:05 +01:00
const responseData: any = {};
2021-09-30 16:51:53 +02:00
if (responseCommand === 'notificationBarGetFoldersList') {
responseData.folders = await this.folderService.getAllDecrypted();
2018-01-13 16:13:31 +01:00
}
2018-01-13 21:09:05 +01:00
await BrowserApi.tabSendMessageData(tab, responseCommand, responseData);
2018-01-13 16:13:31 +01:00
}
private async allowPersonalOwnership(): Promise<boolean> {
return !await this.policyService.policyAppliesToUser(PolicyType.PersonalOwnership);
}
}