OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/os_crypt/key_storage_libsecret.h" |
| 6 |
| 7 #include "base/base64.h" |
| 8 #include "base/rand_util.h" |
| 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "components/os_crypt/libsecret_util_linux.h" |
| 11 |
| 12 namespace { |
| 13 |
| 14 #if defined(OFFICIAL_BUILD) |
| 15 const char kKeyStorageEntryName[] = "Chrome Safe Storage"; |
| 16 #else |
| 17 const char kKeyStorageEntryName[] = "Chromium Safe Storage"; |
| 18 #endif |
| 19 |
| 20 const SecretSchema kKeystoreSchema = { |
| 21 "chrome_libsecret_os_crypt_password", |
| 22 SECRET_SCHEMA_NONE, |
| 23 { |
| 24 {nullptr, SECRET_SCHEMA_ATTRIBUTE_STRING}, |
| 25 }}; |
| 26 |
| 27 std::string AddRandomPasswordInLibsecret() { |
| 28 std::string password; |
| 29 base::Base64Encode(base::RandBytesAsString(16), &password); |
| 30 GError* error = nullptr; |
| 31 LibsecretLoader::secret_password_store_sync( |
| 32 &kKeystoreSchema, nullptr, kKeyStorageEntryName, password.c_str(), |
| 33 nullptr, &error, nullptr); |
| 34 |
| 35 if (error) { |
| 36 VLOG(1) << "Libsecret lookup failed: " << error->message; |
| 37 return std::string(); |
| 38 } |
| 39 return password; |
| 40 } |
| 41 |
| 42 } // namespace |
| 43 |
| 44 std::string KeyStorageLibsecret::GetKey() { |
| 45 GError* error = nullptr; |
| 46 LibsecretAttributesBuilder attrs; |
| 47 SecretValue* password_libsecret = LibsecretLoader::secret_service_lookup_sync( |
| 48 nullptr, &kKeystoreSchema, attrs.Get(), nullptr, &error); |
| 49 |
| 50 if (error) { |
| 51 VLOG(1) << "Libsecret lookup failed: " << error->message; |
| 52 g_error_free(error); |
| 53 return std::string(); |
| 54 } |
| 55 if (!password_libsecret) { |
| 56 return AddRandomPasswordInLibsecret(); |
| 57 } |
| 58 std::string password( |
| 59 LibsecretLoader::secret_value_get_text(password_libsecret)); |
| 60 LibsecretLoader::secret_value_unref(password_libsecret); |
| 61 return password; |
| 62 } |
| 63 |
| 64 bool KeyStorageLibsecret::Init() { |
| 65 return LibsecretLoader::EnsureLibsecretLoaded(); |
| 66 } |
OLD | NEW |