1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/os_crypt/sync/key_storage_kwallet.h"
#include <optional>
#include <tuple>
#include <utility>
#include "base/base64.h"
#include "base/functional/bind.h"
#include "base/notreached.h"
#include "base/rand_util.h"
#include "components/os_crypt/sync/kwallet_dbus.h"
#include "dbus/bus.h"
KeyStorageKWallet::KeyStorageKWallet(base::nix::DesktopEnvironment desktop_env,
std::string app_name)
: desktop_env_(desktop_env), app_name_(std::move(app_name)) {}
KeyStorageKWallet::~KeyStorageKWallet() {
// The handle is shared between programs that are using the same wallet.
// Closing the wallet is a nop in the typical case.
bool success = true;
std::ignore = kwallet_dbus_->Close(handle_, false, app_name_, &success);
kwallet_dbus_->GetSessionBus()->ShutdownAndBlock();
}
bool KeyStorageKWallet::Init() {
// Initialize using the production KWalletDBus.
return InitWithKWalletDBus(nullptr);
}
bool KeyStorageKWallet::InitWithKWalletDBus(
std::unique_ptr<KWalletDBus> mock_kwallet_dbus_ptr) {
if (mock_kwallet_dbus_ptr) {
kwallet_dbus_ = std::move(mock_kwallet_dbus_ptr);
} else {
// Initializing with production KWalletDBus
kwallet_dbus_ = std::make_unique<KWalletDBus>(desktop_env_);
dbus::Bus::Options options;
options.bus_type = dbus::Bus::SESSION;
options.connection_type = dbus::Bus::PRIVATE;
kwallet_dbus_->SetSessionBus(base::MakeRefCounted<dbus::Bus>(options));
}
InitResult result = InitWallet();
// If KWallet might not have started, attempt to start it and retry.
if (result == InitResult::TEMPORARY_FAIL && kwallet_dbus_->StartKWalletd()) {
result = InitWallet();
}
return result == InitResult::SUCCESS;
}
KeyStorageKWallet::InitResult KeyStorageKWallet::InitWallet() {
// Check that KWallet is enabled.
bool enabled = false;
KWalletDBus::Error error = kwallet_dbus_->IsEnabled(&enabled);
switch (error) {
case KWalletDBus::Error::CANNOT_CONTACT:
return InitResult::TEMPORARY_FAIL;
case KWalletDBus::Error::CANNOT_READ:
return InitResult::PERMANENT_FAIL;
case KWalletDBus::Error::SUCCESS:
break;
}
if (!enabled) {
return InitResult::PERMANENT_FAIL;
}
// Get the wallet name.
error = kwallet_dbus_->NetworkWallet(&wallet_name_);
switch (error) {
case KWalletDBus::Error::CANNOT_CONTACT:
return InitResult::TEMPORARY_FAIL;
case KWalletDBus::Error::CANNOT_READ:
return InitResult::PERMANENT_FAIL;
case KWalletDBus::Error::SUCCESS:
return InitResult::SUCCESS;
}
NOTREACHED();
}
std::optional<std::string> KeyStorageKWallet::GetKeyImpl() {
// Get handle
KWalletDBus::Error error =
kwallet_dbus_->Open(wallet_name_, app_name_, &handle_);
if (error || handle_ == kInvalidHandle) {
return std::nullopt;
}
// Create folder
if (!InitFolder()) {
return std::nullopt;
}
// Check if a an entry of the correct type exists.
bool has_entry = false;
if (kwallet_dbus_->HasEntry(handle_, KeyStorageLinux::kFolderName,
KeyStorageLinux::kKey, app_name_,
&has_entry) != KWalletDBus::SUCCESS) {
return std::nullopt;
}
if (!has_entry) {
return GenerateAndStorePassword();
}
KWalletDBus::Type entry_type = KWalletDBus::Type::kUnknown;
if (kwallet_dbus_->EntryType(handle_, KeyStorageLinux::kFolderName,
KeyStorageLinux::kKey, app_name_,
&entry_type) != KWalletDBus::SUCCESS) {
return std::nullopt;
}
if (entry_type != KWalletDBus::Type::kPassword) {
int ret = 0;
base::IgnoreResult(
kwallet_dbus_->RemoveEntry(handle_, KeyStorageLinux::kFolderName,
KeyStorageLinux::kKey, app_name_, &ret));
return GenerateAndStorePassword();
}
// Get the existing password.
std::optional<std::string> password;
if (kwallet_dbus_->ReadPassword(handle_, KeyStorageLinux::kFolderName,
KeyStorageLinux::kKey, app_name_,
&password) != KWalletDBus::SUCCESS) {
return std::nullopt;
}
if (!password.has_value() || password->empty()) {
return GenerateAndStorePassword();
}
return password;
}
bool KeyStorageKWallet::InitFolder() {
bool has_folder = false;
KWalletDBus::Error error = kwallet_dbus_->HasFolder(
handle_, KeyStorageLinux::kFolderName, app_name_, &has_folder);
if (error) {
return false;
}
if (!has_folder) {
bool success = false;
error = kwallet_dbus_->CreateFolder(handle_, KeyStorageLinux::kFolderName,
app_name_, &success);
if (error || !success) {
return false;
}
}
return true;
}
std::optional<std::string> KeyStorageKWallet::GenerateAndStorePassword() {
std::string password = base::Base64Encode(base::RandBytesAsVector(16));
bool success;
KWalletDBus::Error error = kwallet_dbus_->WritePassword(
handle_, KeyStorageLinux::kFolderName, KeyStorageLinux::kKey, password,
app_name_, &success);
if (error || !success) {
return std::nullopt;
}
return password;
}
|