Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2012 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 16 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 17 | #include "update_engine/common/prefs.h" |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 18 | |
Alex Deymo | d6f6007 | 2015-10-12 12:22:27 -0700 | [diff] [blame] | 19 | #include <algorithm> |
| 20 | |
Andrew | 065d78d | 2020-04-07 15:43:07 -0700 | [diff] [blame] | 21 | #include <base/files/file_enumerator.h> |
Ben Chan | 06c76a4 | 2014-09-05 08:21:06 -0700 | [diff] [blame] | 22 | #include <base/files/file_util.h> |
Darin Petkov | 3627577 | 2010-10-01 11:40:57 -0700 | [diff] [blame] | 23 | #include <base/logging.h> |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 24 | #include <base/strings/string_number_conversions.h> |
Andrew | 065d78d | 2020-04-07 15:43:07 -0700 | [diff] [blame] | 25 | #include <base/strings/string_split.h> |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 26 | #include <base/strings/string_util.h> |
Darin Petkov | 3627577 | 2010-10-01 11:40:57 -0700 | [diff] [blame] | 27 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 28 | #include "update_engine/common/utils.h" |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 29 | |
| 30 | using std::string; |
Jae Hoon Kim | c1f3692 | 2020-05-11 18:20:18 -0700 | [diff] [blame] | 31 | using std::vector; |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 32 | |
| 33 | namespace chromeos_update_engine { |
| 34 | |
Jae Hoon Kim | c1f3692 | 2020-05-11 18:20:18 -0700 | [diff] [blame] | 35 | namespace { |
| 36 | |
| 37 | void DeleteEmptyDirectories(const base::FilePath& path) { |
| 38 | base::FileEnumerator path_enum( |
| 39 | path, false /* recursive */, base::FileEnumerator::DIRECTORIES); |
| 40 | for (base::FilePath dir_path = path_enum.Next(); !dir_path.empty(); |
| 41 | dir_path = path_enum.Next()) { |
| 42 | DeleteEmptyDirectories(dir_path); |
| 43 | if (base::IsDirectoryEmpty(dir_path)) |
hscham | 043355b | 2020-11-17 16:50:10 +0900 | [diff] [blame] | 44 | #if BASE_VER < 800000 |
Jae Hoon Kim | c1f3692 | 2020-05-11 18:20:18 -0700 | [diff] [blame] | 45 | base::DeleteFile(dir_path, false); |
hscham | 043355b | 2020-11-17 16:50:10 +0900 | [diff] [blame] | 46 | #else |
| 47 | base::DeleteFile(dir_path); |
| 48 | #endif |
Jae Hoon Kim | c1f3692 | 2020-05-11 18:20:18 -0700 | [diff] [blame] | 49 | } |
| 50 | } |
| 51 | |
| 52 | } // namespace |
| 53 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 54 | bool PrefsBase::GetString(const string& key, string* value) const { |
| 55 | return storage_->GetKey(key, value); |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Kelvin Zhang | cf4600e | 2020-10-27 15:50:33 -0400 | [diff] [blame] | 58 | bool PrefsBase::SetString(const string& key, std::string_view value) { |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 59 | TEST_AND_RETURN_FALSE(storage_->SetKey(key, value)); |
Alex Deymo | d6f6007 | 2015-10-12 12:22:27 -0700 | [diff] [blame] | 60 | const auto observers_for_key = observers_.find(key); |
| 61 | if (observers_for_key != observers_.end()) { |
| 62 | std::vector<ObserverInterface*> copy_observers(observers_for_key->second); |
| 63 | for (ObserverInterface* observer : copy_observers) |
| 64 | observer->OnPrefSet(key); |
| 65 | } |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 66 | return true; |
| 67 | } |
| 68 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 69 | bool PrefsBase::GetInt64(const string& key, int64_t* value) const { |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 70 | string str_value; |
Jay Srinivasan | 08fce04 | 2012-06-07 16:31:01 -0700 | [diff] [blame] | 71 | if (!GetString(key, &str_value)) |
| 72 | return false; |
Ben Chan | 736fcb5 | 2014-05-21 18:28:22 -0700 | [diff] [blame] | 73 | base::TrimWhitespaceASCII(str_value, base::TRIM_ALL, &str_value); |
Chris Masone | 790e62e | 2010-08-12 10:41:18 -0700 | [diff] [blame] | 74 | TEST_AND_RETURN_FALSE(base::StringToInt64(str_value, value)); |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 75 | return true; |
| 76 | } |
| 77 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 78 | bool PrefsBase::SetInt64(const string& key, const int64_t value) { |
hscham | 00b6aa2 | 2020-02-20 12:32:06 +0900 | [diff] [blame] | 79 | return SetString(key, base::NumberToString(value)); |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 82 | bool PrefsBase::GetBoolean(const string& key, bool* value) const { |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 83 | string str_value; |
| 84 | if (!GetString(key, &str_value)) |
| 85 | return false; |
Ben Chan | 736fcb5 | 2014-05-21 18:28:22 -0700 | [diff] [blame] | 86 | base::TrimWhitespaceASCII(str_value, base::TRIM_ALL, &str_value); |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 87 | if (str_value == "false") { |
| 88 | *value = false; |
| 89 | return true; |
| 90 | } |
| 91 | if (str_value == "true") { |
| 92 | *value = true; |
| 93 | return true; |
| 94 | } |
| 95 | return false; |
| 96 | } |
| 97 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 98 | bool PrefsBase::SetBoolean(const string& key, const bool value) { |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 99 | return SetString(key, value ? "true" : "false"); |
| 100 | } |
| 101 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 102 | bool PrefsBase::Exists(const string& key) const { |
| 103 | return storage_->KeyExists(key); |
Jay Srinivasan | 480ddfa | 2012-06-01 19:15:26 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 106 | bool PrefsBase::Delete(const string& key) { |
| 107 | TEST_AND_RETURN_FALSE(storage_->DeleteKey(key)); |
Alex Deymo | d6f6007 | 2015-10-12 12:22:27 -0700 | [diff] [blame] | 108 | const auto observers_for_key = observers_.find(key); |
| 109 | if (observers_for_key != observers_.end()) { |
| 110 | std::vector<ObserverInterface*> copy_observers(observers_for_key->second); |
| 111 | for (ObserverInterface* observer : copy_observers) |
| 112 | observer->OnPrefDeleted(key); |
| 113 | } |
| 114 | return true; |
| 115 | } |
| 116 | |
Vyshu Khota | 4c5413d | 2020-11-04 16:17:25 -0800 | [diff] [blame] | 117 | bool PrefsBase::Delete(const string& pref_key, const vector<string>& nss) { |
| 118 | // Delete pref key for platform. |
| 119 | bool success = Delete(pref_key); |
| 120 | // Delete pref key in each namespace. |
| 121 | for (const auto& ns : nss) { |
| 122 | vector<string> namespace_keys; |
| 123 | success = GetSubKeys(ns, &namespace_keys) && success; |
| 124 | for (const auto& key : namespace_keys) { |
| 125 | auto last_key_seperator = key.find_last_of(kKeySeparator); |
| 126 | if (last_key_seperator != string::npos && |
| 127 | pref_key == key.substr(last_key_seperator + 1)) { |
| 128 | success = Delete(key) && success; |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | return success; |
| 133 | } |
| 134 | |
Jae Hoon Kim | 29a80e0 | 2020-05-11 20:18:49 -0700 | [diff] [blame] | 135 | bool PrefsBase::GetSubKeys(const string& ns, vector<string>* keys) const { |
| 136 | return storage_->GetSubKeys(ns, keys); |
| 137 | } |
| 138 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 139 | void PrefsBase::AddObserver(const string& key, ObserverInterface* observer) { |
Alex Deymo | d6f6007 | 2015-10-12 12:22:27 -0700 | [diff] [blame] | 140 | observers_[key].push_back(observer); |
| 141 | } |
| 142 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 143 | void PrefsBase::RemoveObserver(const string& key, ObserverInterface* observer) { |
Alex Deymo | d6f6007 | 2015-10-12 12:22:27 -0700 | [diff] [blame] | 144 | std::vector<ObserverInterface*>& observers_for_key = observers_[key]; |
| 145 | auto observer_it = |
| 146 | std::find(observers_for_key.begin(), observers_for_key.end(), observer); |
| 147 | if (observer_it != observers_for_key.end()) |
| 148 | observers_for_key.erase(observer_it); |
Jay Srinivasan | 480ddfa | 2012-06-01 19:15:26 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Jae Hoon Kim | c1f3692 | 2020-05-11 18:20:18 -0700 | [diff] [blame] | 151 | string PrefsInterface::CreateSubKey(const vector<string>& ns_and_key) { |
| 152 | return base::JoinString(ns_and_key, string(1, kKeySeparator)); |
Andrew | 065d78d | 2020-04-07 15:43:07 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 155 | // Prefs |
| 156 | |
| 157 | bool Prefs::Init(const base::FilePath& prefs_dir) { |
| 158 | return file_storage_.Init(prefs_dir); |
| 159 | } |
| 160 | |
| 161 | bool Prefs::FileStorage::Init(const base::FilePath& prefs_dir) { |
| 162 | prefs_dir_ = prefs_dir; |
Andrew | 065d78d | 2020-04-07 15:43:07 -0700 | [diff] [blame] | 163 | // Delete empty directories. Ignore errors when deleting empty directories. |
Jae Hoon Kim | c1f3692 | 2020-05-11 18:20:18 -0700 | [diff] [blame] | 164 | DeleteEmptyDirectories(prefs_dir_); |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 165 | return true; |
| 166 | } |
| 167 | |
| 168 | bool Prefs::FileStorage::GetKey(const string& key, string* value) const { |
| 169 | base::FilePath filename; |
| 170 | TEST_AND_RETURN_FALSE(GetFileNameForKey(key, &filename)); |
| 171 | if (!base::ReadFileToString(filename, value)) { |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 172 | return false; |
| 173 | } |
| 174 | return true; |
| 175 | } |
| 176 | |
Jae Hoon Kim | 29a80e0 | 2020-05-11 20:18:49 -0700 | [diff] [blame] | 177 | bool Prefs::FileStorage::GetSubKeys(const string& ns, |
| 178 | vector<string>* keys) const { |
| 179 | base::FilePath filename; |
| 180 | TEST_AND_RETURN_FALSE(GetFileNameForKey(ns, &filename)); |
| 181 | base::FileEnumerator namespace_enum( |
| 182 | prefs_dir_, true, base::FileEnumerator::FILES); |
| 183 | for (base::FilePath f = namespace_enum.Next(); !f.empty(); |
| 184 | f = namespace_enum.Next()) { |
| 185 | auto filename_str = filename.value(); |
| 186 | if (f.value().compare(0, filename_str.length(), filename_str) == 0) { |
| 187 | // Only return the key portion excluding the |prefs_dir_| with slash. |
| 188 | keys->push_back(f.value().substr( |
| 189 | prefs_dir_.AsEndingWithSeparator().value().length())); |
| 190 | } |
| 191 | } |
| 192 | return true; |
| 193 | } |
| 194 | |
Kelvin Zhang | cf4600e | 2020-10-27 15:50:33 -0400 | [diff] [blame] | 195 | bool Prefs::FileStorage::SetKey(const string& key, std::string_view value) { |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 196 | base::FilePath filename; |
| 197 | TEST_AND_RETURN_FALSE(GetFileNameForKey(key, &filename)); |
| 198 | if (!base::DirectoryExists(filename.DirName())) { |
| 199 | // Only attempt to create the directory if it doesn't exist to avoid calls |
| 200 | // to parent directories where we might not have permission to write to. |
| 201 | TEST_AND_RETURN_FALSE(base::CreateDirectory(filename.DirName())); |
| 202 | } |
| 203 | TEST_AND_RETURN_FALSE(base::WriteFile(filename, value.data(), value.size()) == |
| 204 | static_cast<int>(value.size())); |
| 205 | return true; |
| 206 | } |
| 207 | |
| 208 | bool Prefs::FileStorage::KeyExists(const string& key) const { |
| 209 | base::FilePath filename; |
| 210 | TEST_AND_RETURN_FALSE(GetFileNameForKey(key, &filename)); |
| 211 | return base::PathExists(filename); |
| 212 | } |
| 213 | |
| 214 | bool Prefs::FileStorage::DeleteKey(const string& key) { |
| 215 | base::FilePath filename; |
| 216 | TEST_AND_RETURN_FALSE(GetFileNameForKey(key, &filename)); |
hscham | 043355b | 2020-11-17 16:50:10 +0900 | [diff] [blame] | 217 | #if BASE_VER < 800000 |
Jae Hoon Kim | 29a80e0 | 2020-05-11 20:18:49 -0700 | [diff] [blame] | 218 | TEST_AND_RETURN_FALSE(base::DeleteFile(filename, false)); |
hscham | 043355b | 2020-11-17 16:50:10 +0900 | [diff] [blame] | 219 | #else |
| 220 | TEST_AND_RETURN_FALSE(base::DeleteFile(filename)); |
| 221 | #endif |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 222 | return true; |
| 223 | } |
| 224 | |
| 225 | bool Prefs::FileStorage::GetFileNameForKey(const string& key, |
| 226 | base::FilePath* filename) const { |
Jae Hoon Kim | 29a80e0 | 2020-05-11 20:18:49 -0700 | [diff] [blame] | 227 | // Allows only non-empty keys containing [A-Za-z0-9_-/]. |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 228 | TEST_AND_RETURN_FALSE(!key.empty()); |
Jae Hoon Kim | 29a80e0 | 2020-05-11 20:18:49 -0700 | [diff] [blame] | 229 | for (char c : key) |
Alex Vakulenko | 0103c36 | 2016-01-20 07:56:15 -0800 | [diff] [blame] | 230 | TEST_AND_RETURN_FALSE(base::IsAsciiAlpha(c) || base::IsAsciiDigit(c) || |
Andrew | 065d78d | 2020-04-07 15:43:07 -0700 | [diff] [blame] | 231 | c == '_' || c == '-' || c == kKeySeparator); |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 232 | *filename = prefs_dir_.Append(key); |
| 233 | return true; |
| 234 | } |
| 235 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 236 | // MemoryPrefs |
| 237 | |
| 238 | bool MemoryPrefs::MemoryStorage::GetKey(const string& key, |
| 239 | string* value) const { |
| 240 | auto it = values_.find(key); |
| 241 | if (it == values_.end()) |
| 242 | return false; |
| 243 | *value = it->second; |
| 244 | return true; |
| 245 | } |
| 246 | |
Jae Hoon Kim | 29a80e0 | 2020-05-11 20:18:49 -0700 | [diff] [blame] | 247 | bool MemoryPrefs::MemoryStorage::GetSubKeys(const string& ns, |
| 248 | vector<string>* keys) const { |
| 249 | using value_type = decltype(values_)::value_type; |
| 250 | using key_type = decltype(values_)::key_type; |
| 251 | auto lower_comp = [](const value_type& pr, const key_type& ns) { |
| 252 | return pr.first.substr(0, ns.length()) < ns; |
| 253 | }; |
| 254 | auto upper_comp = [](const key_type& ns, const value_type& pr) { |
| 255 | return ns < pr.first.substr(0, ns.length()); |
| 256 | }; |
| 257 | auto lower_it = |
| 258 | std::lower_bound(begin(values_), end(values_), ns, lower_comp); |
| 259 | auto upper_it = std::upper_bound(lower_it, end(values_), ns, upper_comp); |
| 260 | while (lower_it != upper_it) |
| 261 | keys->push_back((lower_it++)->first); |
| 262 | return true; |
| 263 | } |
| 264 | |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 265 | bool MemoryPrefs::MemoryStorage::SetKey(const string& key, |
Kelvin Zhang | cf4600e | 2020-10-27 15:50:33 -0400 | [diff] [blame] | 266 | std::string_view value) { |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 267 | values_[key] = value; |
| 268 | return true; |
| 269 | } |
| 270 | |
| 271 | bool MemoryPrefs::MemoryStorage::KeyExists(const string& key) const { |
| 272 | return values_.find(key) != values_.end(); |
| 273 | } |
| 274 | |
| 275 | bool MemoryPrefs::MemoryStorage::DeleteKey(const string& key) { |
| 276 | auto it = values_.find(key); |
Andrew | 914f554 | 2020-04-21 10:56:33 -0700 | [diff] [blame] | 277 | if (it != values_.end()) |
| 278 | values_.erase(it); |
Alex Deymo | a0284ac | 2016-07-22 12:51:41 -0700 | [diff] [blame] | 279 | return true; |
| 280 | } |
| 281 | |
Darin Petkov | 3003059 | 2010-07-27 13:53:20 -0700 | [diff] [blame] | 282 | } // namespace chromeos_update_engine |