bitwarden-estensione-browser/src/main/nativeMessaging.main.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

313 lines
9.4 KiB
TypeScript
Raw Normal View History

2021-02-03 19:21:22 +01:00
import { existsSync, promises as fs } from "fs";
import { Socket } from "net";
import * as ipc from "node-ipc";
2021-02-03 19:21:22 +01:00
import { homedir, userInfo } from "os";
import * as path from "path";
import * as util from "util";
2020-10-21 16:48:40 +02:00
import { ipcMain } from "electron";
import { LogService } from "jslib-common/abstractions/log.service";
import { WindowMain } from "jslib-electron/window.main";
export class NativeMessagingMain {
private connected: Socket[] = [];
private socket: any;
2021-12-20 15:47:17 +01:00
constructor(
private logService: LogService,
private windowMain: WindowMain,
private userPath: string,
private exePath: string
2021-12-20 15:47:17 +01:00
) {}
async listen() {
ipc.config.id = "bitwarden";
ipc.config.retry = 1500;
2021-01-26 19:11:36 +01:00
if (process.platform === "darwin") {
if (!existsSync(`${homedir()}/tmp`)) {
await fs.mkdir(`${homedir()}/tmp`);
2021-12-20 15:47:17 +01:00
}
ipc.config.socketRoot = `${homedir()}/tmp/`;
2021-12-20 15:47:17 +01:00
}
ipc.serve(() => {
ipc.server.on("message", (data: any, socket: any) => {
this.socket = socket;
this.windowMain.win.webContents.send("nativeMessaging", data);
2021-12-20 15:47:17 +01:00
});
2021-01-26 19:11:36 +01:00
ipcMain.on("nativeMessagingReply", (event, msg) => {
if (this.socket != null && msg != null) {
this.send(msg, this.socket);
2021-01-26 19:11:36 +01:00
}
2021-12-20 15:47:17 +01:00
});
ipc.server.on("connect", (socket: Socket) => {
this.connected.push(socket);
});
ipc.server.on("socket.disconnected", (socket, destroyedSocketID) => {
const index = this.connected.indexOf(socket);
if (index > -1) {
this.connected.splice(index, 1);
}
this.socket = null;
ipc.log("client " + destroyedSocketID + " has disconnected!");
2021-12-20 15:47:17 +01:00
});
});
ipc.server.start();
2021-12-20 15:47:17 +01:00
}
stop() {
ipc.server.stop();
// Kill all existing connections
this.connected.forEach((socket) => {
if (!socket.destroyed) {
socket.destroy();
2021-12-20 15:47:17 +01:00
}
});
}
send(message: object, socket: any) {
ipc.server.emit(socket, "message", message);
2021-12-20 15:47:17 +01:00
}
generateManifests() {
const baseJson = {
name: "com.8bit.bitwarden",
description: "Bitwarden desktop <-> browser bridge",
path: this.binaryPath(),
2021-12-20 15:47:17 +01:00
type: "stdio",
};
2020-11-25 15:25:18 +01:00
const firefoxJson = {
...baseJson,
...{ allowed_extensions: ["{446900e4-71c2-419f-a6a7-df9c091e268b}"] },
2021-12-20 15:47:17 +01:00
};
2020-11-25 15:25:18 +01:00
const chromeJson = {
...baseJson,
2021-12-20 15:47:17 +01:00
...{
2020-11-25 15:25:18 +01:00
allowed_origins: [
"chrome-extension://nngceckbapebfimnlniiiahkandclblb/",
"chrome-extension://jbkfoedolllekgbhcbcoahefnbanhhlh/",
2021-02-08 19:58:44 +01:00
"chrome-extension://ccnckbpmaceehanjmeomladnmlffdjgn/",
2021-12-20 15:47:17 +01:00
],
},
};
switch (process.platform) {
case "win32":
2020-10-21 16:48:40 +02:00
const destination = path.join(this.userPath, "browsers");
this.writeManifest(path.join(destination, "firefox.json"), firefoxJson);
this.writeManifest(path.join(destination, "chrome.json"), chromeJson);
2021-12-20 15:47:17 +01:00
2021-01-04 20:31:33 +01:00
this.createWindowsRegistry(
"HKLM\\SOFTWARE\\Mozilla\\Firefox",
"HKCU\\SOFTWARE\\Mozilla\\NativeMessagingHosts\\com.8bit.bitwarden",
path.join(destination, "firefox.json")
2021-12-20 15:47:17 +01:00
);
2021-01-04 20:31:33 +01:00
this.createWindowsRegistry(
"HKCU\\SOFTWARE\\Google\\Chrome",
"HKCU\\SOFTWARE\\Google\\Chrome\\NativeMessagingHosts\\com.8bit.bitwarden",
path.join(destination, "chrome.json")
2021-12-20 15:47:17 +01:00
);
break;
case "darwin":
2021-03-15 05:11:56 +01:00
const nmhs = this.getDarwinNMHS();
for (const [key, value] of Object.entries(nmhs)) {
if (existsSync(value)) {
const p = path.join(value, "NativeMessagingHosts", "com.8bit.bitwarden.json");
2021-12-20 15:47:17 +01:00
let manifest: any = chromeJson;
2021-03-15 05:11:56 +01:00
if (key === "Firefox") {
manifest = firefoxJson;
}
this.writeManifest(p, manifest).catch((e) =>
this.logService.error(`Error writing manifest for ${key}. ${e}`)
2021-02-03 19:21:22 +01:00
);
2020-11-25 15:25:18 +01:00
} else {
2021-01-04 20:31:33 +01:00
this.logService.warning(`${key} not found skipping.`);
2021-12-20 15:47:17 +01:00
}
}
break;
case "linux":
if (existsSync(`${this.homedir()}/.mozilla/`)) {
this.writeManifest(
`${this.homedir()}/.mozilla/native-messaging-hosts/com.8bit.bitwarden.json`,
firefoxJson
2021-03-09 02:49:20 +01:00
);
}
if (existsSync(`${this.homedir()}/.config/google-chrome/`)) {
this.writeManifest(
`${this.homedir()}/.config/google-chrome/NativeMessagingHosts/com.8bit.bitwarden.json`,
chromeJson
2021-03-09 02:49:20 +01:00
);
}
if (existsSync(`${this.homedir()}/.config/microsoft-edge/`)) {
this.writeManifest(
`${this.homedir()}/.config/microsoft-edge/NativeMessagingHosts/com.8bit.bitwarden.json`,
chromeJson
2021-03-15 05:11:56 +01:00
);
}
2021-12-20 15:47:17 +01:00
break;
default:
break;
2021-03-15 05:11:56 +01:00
}
2021-12-20 15:47:17 +01:00
}
removeManifests() {
switch (process.platform) {
case "win32":
2020-10-21 16:48:40 +02:00
fs.unlink(path.join(this.userPath, "browsers", "firefox.json"));
fs.unlink(path.join(this.userPath, "browsers", "chrome.json"));
this.deleteWindowsRegistry(
"HKCU\\SOFTWARE\\Mozilla\\NativeMessagingHosts\\com.8bit.bitwarden"
2021-12-20 15:47:17 +01:00
);
this.deleteWindowsRegistry(
2021-01-04 20:31:33 +01:00
"HKCU\\SOFTWARE\\Google\\Chrome\\NativeMessagingHosts\\com.8bit.bitwarden"
2021-12-20 15:47:17 +01:00
);
break;
case "darwin":
2021-03-15 05:11:56 +01:00
const nmhs = this.getDarwinNMHS();
for (const [_, value] of Object.entries(nmhs)) {
const p = path.join(value, "NativeMessagingHosts", "com.8bit.bitwarden.json");
2021-03-15 05:11:56 +01:00
if (existsSync(p)) {
fs.unlink(p);
2021-12-20 15:47:17 +01:00
}
}
break;
case "linux":
2021-12-20 15:47:17 +01:00
if (
existsSync(`${this.homedir()}/.mozilla/native-messaging-hosts/com.8bit.bitwarden.json`)
2021-12-20 15:47:17 +01:00
) {
fs.unlink(`${this.homedir()}/.mozilla/native-messaging-hosts/com.8bit.bitwarden.json`);
2021-12-20 15:47:17 +01:00
}
2021-03-15 05:11:56 +01:00
if (
existsSync(
`${this.homedir()}/.config/google-chrome/NativeMessagingHosts/com.8bit.bitwarden.json`
2021-12-20 15:47:17 +01:00
)
) {
fs.unlink(
`${this.homedir()}/.config/google-chrome/NativeMessagingHosts/com.8bit.bitwarden.json`
);
}
2021-12-20 15:47:17 +01:00
if (
2021-03-09 02:49:20 +01:00
existsSync(
`${this.homedir()}/.config/microsoft-edge/NativeMessagingHosts/com.8bit.bitwarden.json`
)
) {
fs.unlink(
`${this.homedir()}/.config/microsoft-edge/NativeMessagingHosts/com.8bit.bitwarden.json`
);
}
2021-12-20 15:47:17 +01:00
break;
default:
break;
}
}
2021-03-15 05:11:56 +01:00
private getDarwinNMHS() {
2021-12-20 15:47:17 +01:00
return {
Firefox: `${this.homedir()}/Library/Application\ Support/Mozilla/`,
Chrome: `${this.homedir()}/Library/Application\ Support/Google/Chrome/`,
"Chrome Beta": `${this.homedir()}/Library/Application\ Support/Google/Chrome\ Beta/`,
"Chrome Dev": `${this.homedir()}/Library/Application\ Support/Google/Chrome\ Dev/`,
"Chrome Canary": `${this.homedir()}/Library/Application\ Support/Google/Chrome\ Canary/`,
Chromium: `${this.homedir()}/Library/Application\ Support/Chromium/`,
"Microsoft Edge": `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge/`,
"Microsoft Edge Beta": `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Beta/`,
"Microsoft Edge Dev": `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Dev/`,
"Microsoft Edge Canary": `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Canary/`,
Vivaldi: `${this.homedir()}/Library/Application\ Support/Vivaldi/`,
2021-12-20 15:47:17 +01:00
};
}
private async writeManifest(destination: string, manifest: object) {
2021-03-09 02:49:20 +01:00
if (!existsSync(path.dirname(destination))) {
2021-01-04 20:31:33 +01:00
await fs.mkdir(path.dirname(destination));
2021-12-20 15:47:17 +01:00
}
fs.writeFile(destination, JSON.stringify(manifest, null, 2)).catch(this.logService.error);
2021-12-20 15:47:17 +01:00
}
private binaryPath() {
if (process.platform === "win32") {
return path.join(path.dirname(this.exePath), "resources", "native-messaging.bat");
}
return this.exePath;
2021-12-20 15:47:17 +01:00
}
private getRegeditInstance() {
const regedit = require("regedit");
regedit.setExternalVBSLocation(path.join(path.dirname(this.exePath), "resources/regedit/vbs"));
return regedit;
}
private async createWindowsRegistry(check: string, location: string, jsonFile: string) {
const regedit = this.getRegeditInstance();
2021-02-03 19:21:22 +01:00
const list = util.promisify(regedit.list);
const createKey = util.promisify(regedit.createKey);
const putValue = util.promisify(regedit.putValue);
2021-01-04 20:31:33 +01:00
this.logService.debug(`Adding registry: ${location}`);
// Check installed
try {
2021-02-03 19:21:22 +01:00
await list(check);
} catch {
2021-03-15 05:11:56 +01:00
this.logService.warning(`Not finding registry ${check} skipping.`);
2021-12-20 15:47:17 +01:00
return;
}
try {
await createKey(location);
2021-12-20 15:47:17 +01:00
// Insert path to manifest
const obj: any = {};
obj[location] = {
default: {
value: jsonFile,
type: "REG_DEFAULT",
},
2021-02-03 19:21:22 +01:00
};
2021-12-20 15:47:17 +01:00
return putValue(obj);
} catch (error) {
this.logService.error(error);
}
2021-12-20 15:47:17 +01:00
}
private async deleteWindowsRegistry(key: string) {
const regedit = this.getRegeditInstance();
const list = util.promisify(regedit.list);
const deleteKey = util.promisify(regedit.deleteKey);
2021-02-03 19:21:22 +01:00
this.logService.debug(`Removing registry: ${key}`);
try {
await list(key);
await deleteKey(key);
} catch {
this.logService.error(`Unable to delete registry key: ${key}`);
}
2021-12-20 15:47:17 +01:00
}
private homedir() {
if (process.platform === "darwin") {
return userInfo().homedir;
} else {
return homedir();
}
2021-12-20 15:47:17 +01:00
}
}