Darin Petkov | e7c6ad3 | 2012-06-29 10:22:09 +0200 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 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 "shill/profile.h" |
| 6 | |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 7 | #include <set> |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 8 | #include <string> |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 9 | #include <vector> |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 10 | |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 11 | #include <base/file_path.h> |
Paul Stewart | e73d05c | 2012-03-29 16:26:05 -0700 | [diff] [blame] | 12 | #include <base/file_util.h> |
Eric Shienbrood | 3e20a23 | 2012-02-16 11:35:56 -0500 | [diff] [blame] | 13 | #include <base/stl_util.h> |
Paul Stewart | 78af94c | 2013-04-17 16:02:06 -0700 | [diff] [blame] | 14 | #include <base/string_split.h> |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 15 | #include <base/string_util.h> |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 16 | #include <base/stringprintf.h> |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 17 | #include <chromeos/dbus/service_constants.h> |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 18 | |
| 19 | #include "shill/adaptor_interfaces.h" |
| 20 | #include "shill/control_interface.h" |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 21 | #include "shill/key_file_store.h" |
Christopher Wiley | b691efd | 2012-08-09 13:51:51 -0700 | [diff] [blame] | 22 | #include "shill/logging.h" |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 23 | #include "shill/manager.h" |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 24 | #include "shill/property_accessor.h" |
Chris Masone | 7aa5f90 | 2011-07-11 11:13:35 -0700 | [diff] [blame] | 25 | #include "shill/service.h" |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 26 | #include "shill/store_interface.h" |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 27 | |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 28 | using base::FilePath; |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 29 | using std::set; |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 30 | using std::string; |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 31 | using std::vector; |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 32 | |
| 33 | namespace shill { |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 34 | |
Paul Stewart | 78af94c | 2013-04-17 16:02:06 -0700 | [diff] [blame] | 35 | // static |
| 36 | const char Profile::kUserProfileListPathname[] = |
| 37 | RUNDIR "/loaded_profile_list"; |
| 38 | |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 39 | Profile::Profile(ControlInterface *control_interface, |
Thieu Le | 5133b71 | 2013-02-19 14:47:21 -0800 | [diff] [blame] | 40 | Metrics *metrics, |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 41 | Manager *manager, |
| 42 | const Identifier &name, |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 43 | const string &user_storage_format, |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 44 | bool connect_to_rpc) |
Thieu Le | 5133b71 | 2013-02-19 14:47:21 -0800 | [diff] [blame] | 45 | : metrics_(metrics), |
| 46 | manager_(manager), |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 47 | name_(name), |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 48 | storage_format_(user_storage_format) { |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 49 | if (connect_to_rpc) |
| 50 | adaptor_.reset(control_interface->CreateProfileAdaptor(this)); |
| 51 | |
Ben Chan | 5dc5881 | 2013-09-20 12:53:25 -0700 | [diff] [blame] | 52 | // kCheckPortalListProperty: Registered in DefaultProfile |
| 53 | // kCountryProperty: Registered in DefaultProfile |
| 54 | store_.RegisterConstString(kNameProperty, &name_.identifier); |
Paul Stewart | f3eced9 | 2013-04-17 12:18:22 -0700 | [diff] [blame] | 55 | store_.RegisterConstString(kUserHashProperty, &name_.user_hash); |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 56 | |
Ben Chan | 5dc5881 | 2013-09-20 12:53:25 -0700 | [diff] [blame] | 57 | // kOfflineModeProperty: Registered in DefaultProfile |
| 58 | // kPortalURLProperty: Registered in DefaultProfile |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 59 | |
Ben Chan | 5dc5881 | 2013-09-20 12:53:25 -0700 | [diff] [blame] | 60 | HelpRegisterConstDerivedStrings(kServicesProperty, |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 61 | &Profile::EnumerateAvailableServices); |
Ben Chan | 5dc5881 | 2013-09-20 12:53:25 -0700 | [diff] [blame] | 62 | HelpRegisterConstDerivedStrings(kEntriesProperty, &Profile::EnumerateEntries); |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 65 | Profile::~Profile() {} |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 66 | |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 67 | bool Profile::InitStorage(GLib *glib, InitStorageOption storage_option, |
| 68 | Error *error) { |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 69 | FilePath final_path; |
| 70 | if (!GetStoragePath(&final_path)) { |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 71 | Error::PopulateAndLog(error, Error::kInvalidArguments, |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 72 | base::StringPrintf("Could not set up profile storage for %s:%s", |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 73 | name_.user.c_str(), name_.identifier.c_str())); |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 74 | return false; |
| 75 | } |
| 76 | scoped_ptr<KeyFileStore> storage(new KeyFileStore(glib)); |
| 77 | storage->set_path(final_path); |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 78 | bool already_exists = storage->IsNonEmpty(); |
| 79 | if (!already_exists && storage_option != kCreateNew && |
| 80 | storage_option != kCreateOrOpenExisting) { |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 81 | Error::PopulateAndLog(error, Error::kNotFound, |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 82 | base::StringPrintf("Profile storage for %s:%s does not already exist", |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 83 | name_.user.c_str(), name_.identifier.c_str())); |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 84 | return false; |
| 85 | } else if (already_exists && storage_option != kOpenExisting && |
| 86 | storage_option != kCreateOrOpenExisting) { |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 87 | Error::PopulateAndLog(error, Error::kAlreadyExists, |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 88 | base::StringPrintf("Profile storage for %s:%s already exists", |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 89 | name_.user.c_str(), name_.identifier.c_str())); |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 90 | return false; |
| 91 | } |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 92 | if (!storage->Open()) { |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 93 | Error::PopulateAndLog(error, Error::kInternalError, |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 94 | base::StringPrintf("Could not open profile storage for %s:%s", |
Paul Stewart | be00517 | 2011-11-02 18:10:29 -0700 | [diff] [blame] | 95 | name_.user.c_str(), name_.identifier.c_str())); |
Paul Stewart | 2ebc16d | 2012-08-23 10:38:39 -0700 | [diff] [blame] | 96 | if (already_exists) { |
| 97 | // The profile contents is corrupt, or we do not have access to |
| 98 | // this file. Move this file out of the way so a future open attempt |
| 99 | // will succeed, assuming the failure reason was the former. |
| 100 | storage->MarkAsCorrupted(); |
Thieu Le | 5133b71 | 2013-02-19 14:47:21 -0800 | [diff] [blame] | 101 | metrics_->NotifyCorruptedProfile(); |
Paul Stewart | 2ebc16d | 2012-08-23 10:38:39 -0700 | [diff] [blame] | 102 | } |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 103 | return false; |
| 104 | } |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 105 | if (!already_exists) { |
| 106 | // Add a descriptive header to the profile so even if nothing is stored |
| 107 | // to it, it still has some content. Completely empty keyfiles are not |
| 108 | // valid for reading. |
| 109 | storage->SetHeader( |
| 110 | base::StringPrintf("Profile %s:%s", name_.user.c_str(), |
| 111 | name_.identifier.c_str())); |
| 112 | } |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 113 | set_storage(storage.release()); |
Paul Stewart | 3c50401 | 2013-01-17 17:49:58 -0800 | [diff] [blame] | 114 | manager_->OnProfileStorageInitialized(storage_.get()); |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 115 | return true; |
| 116 | } |
| 117 | |
Paul Stewart | e73d05c | 2012-03-29 16:26:05 -0700 | [diff] [blame] | 118 | bool Profile::RemoveStorage(GLib *glib, Error *error) { |
| 119 | FilePath path; |
| 120 | |
| 121 | CHECK(!storage_.get()); |
| 122 | |
| 123 | if (!GetStoragePath(&path)) { |
| 124 | Error::PopulateAndLog( |
| 125 | error, Error::kInvalidArguments, |
| 126 | base::StringPrintf("Could get the storage path for %s:%s", |
| 127 | name_.user.c_str(), name_.identifier.c_str())); |
| 128 | return false; |
| 129 | } |
| 130 | |
| 131 | if (!file_util::Delete(path, false)) { |
| 132 | Error::PopulateAndLog( |
| 133 | error, Error::kOperationFailed, |
| 134 | base::StringPrintf("Could not remove path %s", path.value().c_str())); |
| 135 | return false; |
| 136 | } |
| 137 | |
| 138 | return true; |
| 139 | } |
| 140 | |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 141 | string Profile::GetFriendlyName() { |
| 142 | return (name_.user.empty() ? "" : name_.user + "/") + name_.identifier; |
| 143 | } |
| 144 | |
| 145 | string Profile::GetRpcIdentifier() { |
Paul Stewart | 19c871d | 2011-12-15 16:10:13 -0800 | [diff] [blame] | 146 | if (!adaptor_.get()) { |
| 147 | // NB: This condition happens in unit tests. |
| 148 | return string(); |
| 149 | } |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 150 | return adaptor_->GetRpcIdentifier(); |
| 151 | } |
| 152 | |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 153 | void Profile::set_storage(StoreInterface *storage) { |
| 154 | storage_.reset(storage); |
| 155 | } |
| 156 | |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 157 | bool Profile::AdoptService(const ServiceRefPtr &service) { |
Paul Stewart | 451aa7f | 2012-04-11 19:07:58 -0700 | [diff] [blame] | 158 | if (service->profile() == this) { |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 159 | return false; |
Paul Stewart | 451aa7f | 2012-04-11 19:07:58 -0700 | [diff] [blame] | 160 | } |
Philipp Neubeck | 7917360 | 2012-11-13 21:10:09 +0100 | [diff] [blame] | 161 | service->SetProfile(this); |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 162 | return service->Save(storage_.get()) && storage_->Flush(); |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 165 | bool Profile::AbandonService(const ServiceRefPtr &service) { |
| 166 | if (service->profile() == this) |
Philipp Neubeck | 7917360 | 2012-11-13 21:10:09 +0100 | [diff] [blame] | 167 | service->SetProfile(NULL); |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 168 | return storage_->DeleteGroup(service->GetStorageIdentifier()) && |
| 169 | storage_->Flush(); |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 172 | bool Profile::UpdateService(const ServiceRefPtr &service) { |
| 173 | return service->Save(storage_.get()) && storage_->Flush(); |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Paul Stewart | 2c575d2 | 2012-12-07 12:28:57 -0800 | [diff] [blame] | 176 | bool Profile::LoadService(const ServiceRefPtr &service) { |
Paul Stewart | bba6a5b | 2011-11-02 18:45:59 -0700 | [diff] [blame] | 177 | if (!ContainsService(service)) |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 178 | return false; |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 179 | return service->Load(storage_.get()); |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Paul Stewart | 2c575d2 | 2012-12-07 12:28:57 -0800 | [diff] [blame] | 182 | bool Profile::ConfigureService(const ServiceRefPtr &service) { |
| 183 | if (!LoadService(service)) |
| 184 | return false; |
| 185 | service->SetProfile(this); |
| 186 | return true; |
| 187 | } |
| 188 | |
Paul Stewart | a41e38d | 2011-11-11 07:47:29 -0800 | [diff] [blame] | 189 | bool Profile::ConfigureDevice(const DeviceRefPtr &device) { |
| 190 | return device->Load(storage_.get()); |
| 191 | } |
| 192 | |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 193 | bool Profile::ContainsService(const ServiceConstRefPtr &service) { |
Paul Stewart | e7de294 | 2013-04-25 17:07:31 -0700 | [diff] [blame] | 194 | return service->IsLoadableFrom(*storage_.get()); |
Chris Masone | 7aa5f90 | 2011-07-11 11:13:35 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Paul Stewart | 7522551 | 2012-01-26 22:51:33 -0800 | [diff] [blame] | 197 | void Profile::DeleteEntry(const std::string &entry_name, Error *error) { |
| 198 | if (!storage_->ContainsGroup(entry_name)) { |
| 199 | Error::PopulateAndLog(error, Error::kNotFound, |
| 200 | base::StringPrintf("Entry %s does not exist in profile", |
| 201 | entry_name.c_str())); |
| 202 | return; |
| 203 | } |
| 204 | if (!manager_->HandleProfileEntryDeletion(this, entry_name)) { |
| 205 | // If HandleProfileEntryDeletion() returns succeeds, DeleteGroup() |
| 206 | // has already been called when AbandonService was called. |
| 207 | // Otherwise, we need to delete the group ourselves. |
| 208 | storage_->DeleteGroup(entry_name); |
| 209 | } |
Paul Stewart | 0756db9 | 2012-01-27 08:34:47 -0800 | [diff] [blame] | 210 | Save(); |
| 211 | } |
| 212 | |
| 213 | ServiceRefPtr Profile::GetServiceFromEntry(const std::string &entry_name, |
| 214 | Error *error) { |
| 215 | return manager_->GetServiceWithStorageIdentifier(this, entry_name, error); |
Paul Stewart | 7522551 | 2012-01-26 22:51:33 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Paul Stewart | a41e38d | 2011-11-11 07:47:29 -0800 | [diff] [blame] | 218 | bool Profile::IsValidIdentifierToken(const string &token) { |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 219 | if (token.empty()) { |
| 220 | return false; |
| 221 | } |
| 222 | for (string::const_iterator it = token.begin(); it != token.end(); ++it) { |
| 223 | if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it)) { |
| 224 | return false; |
| 225 | } |
| 226 | } |
| 227 | return true; |
| 228 | } |
| 229 | |
Paul Stewart | f3eced9 | 2013-04-17 12:18:22 -0700 | [diff] [blame] | 230 | // static |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 231 | bool Profile::ParseIdentifier(const string &raw, Identifier *parsed) { |
| 232 | if (raw.empty()) { |
| 233 | return false; |
| 234 | } |
| 235 | if (raw[0] == '~') { |
| 236 | // Format: "~user/identifier". |
| 237 | size_t slash = raw.find('/'); |
| 238 | if (slash == string::npos) { |
| 239 | return false; |
| 240 | } |
| 241 | string user(raw.begin() + 1, raw.begin() + slash); |
| 242 | string identifier(raw.begin() + slash + 1, raw.end()); |
| 243 | if (!IsValidIdentifierToken(user) || !IsValidIdentifierToken(identifier)) { |
| 244 | return false; |
| 245 | } |
| 246 | parsed->user = user; |
| 247 | parsed->identifier = identifier; |
| 248 | return true; |
| 249 | } |
| 250 | |
| 251 | // Format: "identifier". |
| 252 | if (!IsValidIdentifierToken(raw)) { |
| 253 | return false; |
| 254 | } |
| 255 | parsed->user = ""; |
| 256 | parsed->identifier = raw; |
| 257 | return true; |
| 258 | } |
| 259 | |
Paul Stewart | f3eced9 | 2013-04-17 12:18:22 -0700 | [diff] [blame] | 260 | // static |
| 261 | string Profile::IdentifierToString(const Identifier &name) { |
| 262 | if (name.user.empty()) { |
| 263 | // Format: "identifier". |
| 264 | return name.identifier; |
| 265 | } |
| 266 | |
| 267 | // Format: "~user/identifier". |
| 268 | return base::StringPrintf( |
| 269 | "~%s/%s", name.user.c_str(), name.identifier.c_str()); |
| 270 | } |
| 271 | |
Paul Stewart | 78af94c | 2013-04-17 16:02:06 -0700 | [diff] [blame] | 272 | // static |
| 273 | vector<Profile::Identifier> Profile::LoadUserProfileList(const FilePath &path) { |
| 274 | vector<Identifier> profile_identifiers; |
| 275 | string profile_data; |
| 276 | if (!file_util::ReadFileToString(path, &profile_data)) { |
| 277 | return profile_identifiers; |
| 278 | } |
| 279 | |
| 280 | vector<string> profile_lines; |
| 281 | base::SplitStringDontTrim(profile_data, '\n', &profile_lines); |
| 282 | vector<string>::const_iterator it; |
| 283 | for (it = profile_lines.begin(); it != profile_lines.end(); ++it) { |
| 284 | const string &line = *it; |
| 285 | if (line.empty()) { |
| 286 | // This will be the case on the last line, so let's not complain about it. |
| 287 | continue; |
| 288 | } |
| 289 | size_t space = line.find(' '); |
| 290 | if (space == string::npos || space == 0) { |
| 291 | LOG(ERROR) << "Invalid line found in " << path.value() |
| 292 | << ": " << line; |
| 293 | continue; |
| 294 | } |
| 295 | string name(line.begin(), line.begin() + space); |
| 296 | Identifier identifier; |
| 297 | if (!ParseIdentifier(name, &identifier) || identifier.user.empty()) { |
| 298 | LOG(ERROR) << "Invalid profile name found in " << path.value() |
| 299 | << ": " << name; |
| 300 | continue; |
| 301 | } |
| 302 | identifier.user_hash = string(line.begin() + space + 1, line.end()); |
| 303 | profile_identifiers.push_back(identifier); |
| 304 | } |
| 305 | |
| 306 | return profile_identifiers; |
| 307 | } |
| 308 | |
| 309 | // static |
| 310 | bool Profile::SaveUserProfileList(const FilePath &path, |
| 311 | const vector<ProfileRefPtr> &profiles) { |
| 312 | vector<string> lines; |
| 313 | vector<ProfileRefPtr>::const_iterator it; |
| 314 | for (it = profiles.begin(); it != profiles.end(); ++it) { |
| 315 | Identifier &id = (*it)->name_; |
| 316 | if (id.user.empty()) { |
| 317 | continue; |
| 318 | } |
| 319 | lines.push_back(base::StringPrintf("%s %s\n", |
| 320 | IdentifierToString(id).c_str(), |
| 321 | id.user_hash.c_str())); |
| 322 | } |
| 323 | string content = JoinString(lines, ""); |
| 324 | size_t ret = file_util::WriteFile(path, content.c_str(), content.length()); |
| 325 | return ret == content.length(); |
| 326 | } |
| 327 | |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 328 | bool Profile::MatchesIdentifier(const Identifier &name) const { |
| 329 | return name.user == name_.user && name.identifier == name_.identifier; |
| 330 | } |
| 331 | |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 332 | bool Profile::Save() { |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 333 | return storage_->Flush(); |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 334 | } |
| 335 | |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 336 | bool Profile::GetStoragePath(FilePath *path) { |
| 337 | if (name_.user.empty()) { |
| 338 | LOG(ERROR) << "Non-default profiles cannot be stored globally."; |
| 339 | return false; |
| 340 | } |
| 341 | FilePath dir(base::StringPrintf(storage_format_.c_str(), name_.user.c_str())); |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 342 | // TODO(petkov): Validate the directory permissions, etc. |
| 343 | *path = dir.Append(base::StringPrintf("%s.profile", |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 344 | name_.identifier.c_str())); |
Darin Petkov | a476682 | 2011-07-07 10:42:22 -0700 | [diff] [blame] | 345 | return true; |
| 346 | } |
| 347 | |
Gaurav Shah | 1b7a616 | 2011-11-09 11:41:01 -0800 | [diff] [blame] | 348 | vector<string> Profile::EnumerateAvailableServices(Error *error) { |
Paul Stewart | 1b25314 | 2012-01-26 14:05:52 -0800 | [diff] [blame] | 349 | // We should return the Manager's service list if this is the active profile. |
| 350 | if (manager_->IsActiveProfile(this)) { |
| 351 | return manager_->EnumerateAvailableServices(error); |
| 352 | } else { |
| 353 | return vector<string>(); |
| 354 | } |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Gaurav Shah | 1b7a616 | 2011-11-09 11:41:01 -0800 | [diff] [blame] | 357 | vector<string> Profile::EnumerateEntries(Error */*error*/) { |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 358 | set<string> groups(storage_->GetGroups()); |
Paul Stewart | 1b25314 | 2012-01-26 14:05:52 -0800 | [diff] [blame] | 359 | vector<string> service_groups; |
| 360 | |
| 361 | // Filter this list down to only entries that correspond |
| 362 | // to a technology. (wifi_*, etc) |
| 363 | for (set<string>::iterator it = groups.begin(); |
| 364 | it != groups.end(); ++it) { |
| 365 | if (Technology::IdentifierFromStorageGroup(*it) != Technology::kUnknown) |
| 366 | service_groups.push_back(*it); |
| 367 | } |
| 368 | |
| 369 | return service_groups; |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Darin Petkov | e7c6ad3 | 2012-06-29 10:22:09 +0200 | [diff] [blame] | 372 | bool Profile::UpdateDevice(const DeviceRefPtr &device) { |
| 373 | return false; |
| 374 | } |
| 375 | |
Wade Guthrie | 60a3706 | 2013-04-02 11:39:09 -0700 | [diff] [blame] | 376 | bool Profile::UpdateWiFiProvider(const WiFiProvider &wifi_provider) { |
| 377 | return false; |
| 378 | } |
| 379 | |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 380 | void Profile::HelpRegisterConstDerivedStrings( |
mukesh agrawal | ffa3d04 | 2011-10-06 15:26:10 -0700 | [diff] [blame] | 381 | const string &name, |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 382 | Strings(Profile::*get)(Error *)) { |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 383 | store_.RegisterDerivedStrings( |
| 384 | name, |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 385 | StringsAccessor(new CustomAccessor<Profile, Strings>(this, get, NULL))); |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Chris Masone | 52cd19b | 2011-06-29 17:23:04 -0700 | [diff] [blame] | 388 | } // namespace shill |