2021-08-05 22:12:54 +00:00
|
|
|
// Copyright (c) 2021 Slack Technologies, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "shell/browser/api/electron_api_safe_storage.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2023-03-20 11:06:57 +00:00
|
|
|
#include "components/os_crypt/sync/os_crypt.h"
|
2021-08-05 22:12:54 +00:00
|
|
|
#include "shell/browser/browser.h"
|
2023-07-13 09:14:33 +00:00
|
|
|
#include "shell/browser/browser_process_impl.h"
|
2021-08-05 22:12:54 +00:00
|
|
|
#include "shell/common/gin_converters/base_converter.h"
|
|
|
|
#include "shell/common/gin_converters/callback_converter.h"
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
|
|
|
#include "shell/common/platform_util.h"
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::safestorage {
|
2021-08-05 22:12:54 +00:00
|
|
|
|
|
|
|
static const char* kEncryptionVersionPrefixV10 = "v10";
|
|
|
|
static const char* kEncryptionVersionPrefixV11 = "v11";
|
2023-07-13 09:14:33 +00:00
|
|
|
static bool use_password_v10 = false;
|
2021-08-05 22:12:54 +00:00
|
|
|
|
|
|
|
bool IsEncryptionAvailable() {
|
2022-05-09 13:38:53 +00:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
// Calling IsEncryptionAvailable() before the app is ready results in a crash
|
|
|
|
// on Linux.
|
|
|
|
// Refs: https://github.com/electron/electron/issues/32206.
|
|
|
|
if (!Browser::Get()->is_ready())
|
|
|
|
return false;
|
2023-07-13 09:14:33 +00:00
|
|
|
return OSCrypt::IsEncryptionAvailable() ||
|
|
|
|
(use_password_v10 &&
|
|
|
|
static_cast<BrowserProcessImpl*>(g_browser_process)
|
|
|
|
->GetLinuxStorageBackend() == "basic_text");
|
|
|
|
#else
|
2021-08-05 22:12:54 +00:00
|
|
|
return OSCrypt::IsEncryptionAvailable();
|
2023-07-13 09:14:33 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetUsePasswordV10(bool use) {
|
|
|
|
use_password_v10 = use;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
std::string GetSelectedLinuxBackend() {
|
|
|
|
if (!Browser::Get()->is_ready())
|
|
|
|
return "unknown";
|
|
|
|
return static_cast<BrowserProcessImpl*>(g_browser_process)
|
|
|
|
->GetLinuxStorageBackend();
|
2021-08-05 22:12:54 +00:00
|
|
|
}
|
2023-07-13 09:14:33 +00:00
|
|
|
#endif
|
2021-08-05 22:12:54 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> EncryptString(v8::Isolate* isolate,
|
|
|
|
const std::string& plaintext) {
|
2022-05-09 13:38:53 +00:00
|
|
|
if (!IsEncryptionAvailable()) {
|
|
|
|
if (!Browser::Get()->is_ready()) {
|
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"safeStorage cannot be used before app is ready");
|
|
|
|
return v8::Local<v8::Value>();
|
|
|
|
}
|
2021-08-05 22:12:54 +00:00
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
2023-07-13 09:14:33 +00:00
|
|
|
"Error while encrypting the text provided to "
|
|
|
|
"safeStorage.encryptString. "
|
2021-08-05 22:12:54 +00:00
|
|
|
"Encryption is not available.");
|
|
|
|
return v8::Local<v8::Value>();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ciphertext;
|
|
|
|
bool encrypted = OSCrypt::EncryptString(plaintext, &ciphertext);
|
|
|
|
|
|
|
|
if (!encrypted) {
|
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"Error while encrypting the text provided to "
|
|
|
|
"safeStorage.encryptString.");
|
|
|
|
return v8::Local<v8::Value>();
|
|
|
|
}
|
|
|
|
|
|
|
|
return node::Buffer::Copy(isolate, ciphertext.c_str(), ciphertext.size())
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string DecryptString(v8::Isolate* isolate, v8::Local<v8::Value> buffer) {
|
2022-05-09 13:38:53 +00:00
|
|
|
if (!IsEncryptionAvailable()) {
|
|
|
|
if (!Browser::Get()->is_ready()) {
|
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"safeStorage cannot be used before app is ready");
|
|
|
|
return "";
|
|
|
|
}
|
2021-08-05 22:12:54 +00:00
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"Error while decrypting the ciphertext provided to "
|
|
|
|
"safeStorage.decryptString. "
|
|
|
|
"Decryption is not available.");
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!node::Buffer::HasInstance(buffer)) {
|
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"Expected the first argument of decryptString() to be a buffer");
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensures an error is thrown in Mac or Linux on
|
|
|
|
// decryption failure, rather than failing silently
|
|
|
|
const char* data = node::Buffer::Data(buffer);
|
|
|
|
auto size = node::Buffer::Length(buffer);
|
|
|
|
std::string ciphertext(data, size);
|
|
|
|
if (ciphertext.empty()) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ciphertext.find(kEncryptionVersionPrefixV10) != 0 &&
|
|
|
|
ciphertext.find(kEncryptionVersionPrefixV11) != 0) {
|
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"Error while decrypting the ciphertext provided to "
|
|
|
|
"safeStorage.decryptString. "
|
|
|
|
"Ciphertext does not appear to be encrypted.");
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string plaintext;
|
|
|
|
bool decrypted = OSCrypt::DecryptString(ciphertext, &plaintext);
|
|
|
|
if (!decrypted) {
|
|
|
|
gin_helper::ErrorThrower(isolate).ThrowError(
|
|
|
|
"Error while decrypting the ciphertext provided to "
|
|
|
|
"safeStorage.decryptString.");
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return plaintext;
|
|
|
|
}
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::safestorage
|
2021-08-05 22:12:54 +00:00
|
|
|
|
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
|
|
|
dict.SetMethod("isEncryptionAvailable",
|
|
|
|
&electron::safestorage::IsEncryptionAvailable);
|
|
|
|
dict.SetMethod("encryptString", &electron::safestorage::EncryptString);
|
|
|
|
dict.SetMethod("decryptString", &electron::safestorage::DecryptString);
|
2023-07-13 09:14:33 +00:00
|
|
|
dict.SetMethod("setUsePlainTextEncryption",
|
|
|
|
&electron::safestorage::SetUsePasswordV10);
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
dict.SetMethod("getSelectedStorageBackend",
|
|
|
|
&electron::safestorage::GetSelectedLinuxBackend);
|
|
|
|
#endif
|
2021-08-05 22:12:54 +00:00
|
|
|
}
|
|
|
|
|
2023-02-09 01:31:38 +00:00
|
|
|
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_safe_storage, Initialize)
|