blob: 51668c0269e721b3903afa4536c58e40bb11eea3 [file] [log] [blame]
Darin Petkove7c6ad32012-06-29 10:22:09 +02001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Chris Masone52cd19b2011-06-29 17:23:04 -07002// 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 Masone6515aab2011-10-12 16:19:09 -07007#include <set>
Chris Masone52cd19b2011-06-29 17:23:04 -07008#include <string>
Chris Masone6791a432011-07-12 13:23:19 -07009#include <vector>
Chris Masone52cd19b2011-06-29 17:23:04 -070010
Chris Masoneb9c00592011-10-06 13:10:39 -070011#include <base/file_path.h>
Paul Stewarte73d05c2012-03-29 16:26:05 -070012#include <base/file_util.h>
Eric Shienbrood3e20a232012-02-16 11:35:56 -050013#include <base/stl_util.h>
Darin Petkova4766822011-07-07 10:42:22 -070014#include <base/string_util.h>
Chris Masone6791a432011-07-12 13:23:19 -070015#include <base/stringprintf.h>
Chris Masone88cbd5f2011-07-03 14:30:04 -070016#include <chromeos/dbus/service_constants.h>
Chris Masone52cd19b2011-06-29 17:23:04 -070017
18#include "shill/adaptor_interfaces.h"
19#include "shill/control_interface.h"
Chris Masoneb9c00592011-10-06 13:10:39 -070020#include "shill/key_file_store.h"
Christopher Wileyb691efd2012-08-09 13:51:51 -070021#include "shill/logging.h"
Chris Masone6791a432011-07-12 13:23:19 -070022#include "shill/manager.h"
Chris Masone52cd19b2011-06-29 17:23:04 -070023#include "shill/property_accessor.h"
Chris Masone7aa5f902011-07-11 11:13:35 -070024#include "shill/service.h"
Chris Masone9d779932011-08-25 16:33:41 -070025#include "shill/store_interface.h"
Chris Masone52cd19b2011-06-29 17:23:04 -070026
Chris Masone6515aab2011-10-12 16:19:09 -070027using std::set;
Chris Masone52cd19b2011-06-29 17:23:04 -070028using std::string;
Chris Masone6791a432011-07-12 13:23:19 -070029using std::vector;
Chris Masone52cd19b2011-06-29 17:23:04 -070030
31namespace shill {
Darin Petkova4766822011-07-07 10:42:22 -070032
Darin Petkova4766822011-07-07 10:42:22 -070033Profile::Profile(ControlInterface *control_interface,
Chris Masone7df0c672011-07-15 10:24:54 -070034 Manager *manager,
35 const Identifier &name,
Chris Masone2ae797d2011-08-23 20:41:00 -070036 const string &user_storage_format,
Chris Masone7df0c672011-07-15 10:24:54 -070037 bool connect_to_rpc)
Chris Masone6791a432011-07-12 13:23:19 -070038 : manager_(manager),
Chris Masone7df0c672011-07-15 10:24:54 -070039 name_(name),
Chris Masone2ae797d2011-08-23 20:41:00 -070040 storage_format_(user_storage_format) {
Chris Masone7df0c672011-07-15 10:24:54 -070041 if (connect_to_rpc)
42 adaptor_.reset(control_interface->CreateProfileAdaptor(this));
43
Chris Masone88cbd5f2011-07-03 14:30:04 -070044 // flimflam::kCheckPortalListProperty: Registered in DefaultProfile
45 // flimflam::kCountryProperty: Registered in DefaultProfile
Chris Masone7df0c672011-07-15 10:24:54 -070046 store_.RegisterConstString(flimflam::kNameProperty, &name_.identifier);
Chris Masone88cbd5f2011-07-03 14:30:04 -070047
48 // flimflam::kOfflineModeProperty: Registered in DefaultProfile
49 // flimflam::kPortalURLProperty: Registered in DefaultProfile
50
Chris Masone6791a432011-07-12 13:23:19 -070051 HelpRegisterDerivedStrings(flimflam::kServicesProperty,
52 &Profile::EnumerateAvailableServices,
53 NULL);
Chris Masone7df0c672011-07-15 10:24:54 -070054 HelpRegisterDerivedStrings(flimflam::kEntriesProperty,
55 &Profile::EnumerateEntries,
56 NULL);
Chris Masone52cd19b2011-06-29 17:23:04 -070057}
58
Chris Masone6515aab2011-10-12 16:19:09 -070059Profile::~Profile() {}
Chris Masone52cd19b2011-06-29 17:23:04 -070060
Paul Stewart5dc40aa2011-10-28 19:43:43 -070061bool Profile::InitStorage(GLib *glib, InitStorageOption storage_option,
62 Error *error) {
Chris Masoneb9c00592011-10-06 13:10:39 -070063 FilePath final_path;
64 if (!GetStoragePath(&final_path)) {
Paul Stewartbe005172011-11-02 18:10:29 -070065 Error::PopulateAndLog(error, Error::kInvalidArguments,
Chris Masoneb9c00592011-10-06 13:10:39 -070066 base::StringPrintf("Could not set up profile storage for %s:%s",
Paul Stewartbe005172011-11-02 18:10:29 -070067 name_.user.c_str(), name_.identifier.c_str()));
Chris Masoneb9c00592011-10-06 13:10:39 -070068 return false;
69 }
70 scoped_ptr<KeyFileStore> storage(new KeyFileStore(glib));
71 storage->set_path(final_path);
Paul Stewart5dc40aa2011-10-28 19:43:43 -070072 bool already_exists = storage->IsNonEmpty();
73 if (!already_exists && storage_option != kCreateNew &&
74 storage_option != kCreateOrOpenExisting) {
Paul Stewartbe005172011-11-02 18:10:29 -070075 Error::PopulateAndLog(error, Error::kNotFound,
Paul Stewart5dc40aa2011-10-28 19:43:43 -070076 base::StringPrintf("Profile storage for %s:%s does not already exist",
Paul Stewartbe005172011-11-02 18:10:29 -070077 name_.user.c_str(), name_.identifier.c_str()));
Paul Stewart5dc40aa2011-10-28 19:43:43 -070078 return false;
79 } else if (already_exists && storage_option != kOpenExisting &&
80 storage_option != kCreateOrOpenExisting) {
Paul Stewartbe005172011-11-02 18:10:29 -070081 Error::PopulateAndLog(error, Error::kAlreadyExists,
Paul Stewart5dc40aa2011-10-28 19:43:43 -070082 base::StringPrintf("Profile storage for %s:%s already exists",
Paul Stewartbe005172011-11-02 18:10:29 -070083 name_.user.c_str(), name_.identifier.c_str()));
Paul Stewart5dc40aa2011-10-28 19:43:43 -070084 return false;
85 }
Chris Masoneb9c00592011-10-06 13:10:39 -070086 if (!storage->Open()) {
Paul Stewartbe005172011-11-02 18:10:29 -070087 Error::PopulateAndLog(error, Error::kInternalError,
Chris Masoneb9c00592011-10-06 13:10:39 -070088 base::StringPrintf("Could not open profile storage for %s:%s",
Paul Stewartbe005172011-11-02 18:10:29 -070089 name_.user.c_str(), name_.identifier.c_str()));
Paul Stewart2ebc16d2012-08-23 10:38:39 -070090 if (already_exists) {
91 // The profile contents is corrupt, or we do not have access to
92 // this file. Move this file out of the way so a future open attempt
93 // will succeed, assuming the failure reason was the former.
94 storage->MarkAsCorrupted();
95 }
Chris Masoneb9c00592011-10-06 13:10:39 -070096 return false;
97 }
Paul Stewart5dc40aa2011-10-28 19:43:43 -070098 if (!already_exists) {
99 // Add a descriptive header to the profile so even if nothing is stored
100 // to it, it still has some content. Completely empty keyfiles are not
101 // valid for reading.
102 storage->SetHeader(
103 base::StringPrintf("Profile %s:%s", name_.user.c_str(),
104 name_.identifier.c_str()));
105 }
Chris Masoneb9c00592011-10-06 13:10:39 -0700106 set_storage(storage.release());
Paul Stewart3c504012013-01-17 17:49:58 -0800107 manager_->OnProfileStorageInitialized(storage_.get());
Chris Masoneb9c00592011-10-06 13:10:39 -0700108 return true;
109}
110
Paul Stewarte73d05c2012-03-29 16:26:05 -0700111bool Profile::RemoveStorage(GLib *glib, Error *error) {
112 FilePath path;
113
114 CHECK(!storage_.get());
115
116 if (!GetStoragePath(&path)) {
117 Error::PopulateAndLog(
118 error, Error::kInvalidArguments,
119 base::StringPrintf("Could get the storage path for %s:%s",
120 name_.user.c_str(), name_.identifier.c_str()));
121 return false;
122 }
123
124 if (!file_util::Delete(path, false)) {
125 Error::PopulateAndLog(
126 error, Error::kOperationFailed,
127 base::StringPrintf("Could not remove path %s", path.value().c_str()));
128 return false;
129 }
130
131 return true;
132}
133
Chris Masone7df0c672011-07-15 10:24:54 -0700134string Profile::GetFriendlyName() {
135 return (name_.user.empty() ? "" : name_.user + "/") + name_.identifier;
136}
137
138string Profile::GetRpcIdentifier() {
Paul Stewart19c871d2011-12-15 16:10:13 -0800139 if (!adaptor_.get()) {
140 // NB: This condition happens in unit tests.
141 return string();
142 }
Chris Masone7df0c672011-07-15 10:24:54 -0700143 return adaptor_->GetRpcIdentifier();
144}
145
Chris Masoneb9c00592011-10-06 13:10:39 -0700146void Profile::set_storage(StoreInterface *storage) {
147 storage_.reset(storage);
148}
149
Chris Masone6791a432011-07-12 13:23:19 -0700150bool Profile::AdoptService(const ServiceRefPtr &service) {
Paul Stewart451aa7f2012-04-11 19:07:58 -0700151 if (service->profile() == this) {
Chris Masone6791a432011-07-12 13:23:19 -0700152 return false;
Paul Stewart451aa7f2012-04-11 19:07:58 -0700153 }
Philipp Neubeck79173602012-11-13 21:10:09 +0100154 service->SetProfile(this);
Chris Masone6515aab2011-10-12 16:19:09 -0700155 return service->Save(storage_.get()) && storage_->Flush();
Chris Masone6791a432011-07-12 13:23:19 -0700156}
157
Chris Masone6515aab2011-10-12 16:19:09 -0700158bool Profile::AbandonService(const ServiceRefPtr &service) {
159 if (service->profile() == this)
Philipp Neubeck79173602012-11-13 21:10:09 +0100160 service->SetProfile(NULL);
Chris Masone6515aab2011-10-12 16:19:09 -0700161 return storage_->DeleteGroup(service->GetStorageIdentifier()) &&
162 storage_->Flush();
Chris Masone6791a432011-07-12 13:23:19 -0700163}
164
Chris Masone6515aab2011-10-12 16:19:09 -0700165bool Profile::UpdateService(const ServiceRefPtr &service) {
166 return service->Save(storage_.get()) && storage_->Flush();
Chris Masone6791a432011-07-12 13:23:19 -0700167}
168
Paul Stewart2c575d22012-12-07 12:28:57 -0800169bool Profile::LoadService(const ServiceRefPtr &service) {
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700170 if (!ContainsService(service))
Chris Masone6515aab2011-10-12 16:19:09 -0700171 return false;
Chris Masone6515aab2011-10-12 16:19:09 -0700172 return service->Load(storage_.get());
Chris Masone6791a432011-07-12 13:23:19 -0700173}
174
Paul Stewart2c575d22012-12-07 12:28:57 -0800175bool Profile::ConfigureService(const ServiceRefPtr &service) {
176 if (!LoadService(service))
177 return false;
178 service->SetProfile(this);
179 return true;
180}
181
Paul Stewarta41e38d2011-11-11 07:47:29 -0800182bool Profile::ConfigureDevice(const DeviceRefPtr &device) {
183 return device->Load(storage_.get());
184}
185
Chris Masone6515aab2011-10-12 16:19:09 -0700186bool Profile::ContainsService(const ServiceConstRefPtr &service) {
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700187 return service->IsLoadableFrom(storage_.get());
Chris Masone7aa5f902011-07-11 11:13:35 -0700188}
189
Paul Stewart75225512012-01-26 22:51:33 -0800190void Profile::DeleteEntry(const std::string &entry_name, Error *error) {
191 if (!storage_->ContainsGroup(entry_name)) {
192 Error::PopulateAndLog(error, Error::kNotFound,
193 base::StringPrintf("Entry %s does not exist in profile",
194 entry_name.c_str()));
195 return;
196 }
197 if (!manager_->HandleProfileEntryDeletion(this, entry_name)) {
198 // If HandleProfileEntryDeletion() returns succeeds, DeleteGroup()
199 // has already been called when AbandonService was called.
200 // Otherwise, we need to delete the group ourselves.
201 storage_->DeleteGroup(entry_name);
202 }
Paul Stewart0756db92012-01-27 08:34:47 -0800203 Save();
204}
205
206ServiceRefPtr Profile::GetServiceFromEntry(const std::string &entry_name,
207 Error *error) {
208 return manager_->GetServiceWithStorageIdentifier(this, entry_name, error);
Paul Stewart75225512012-01-26 22:51:33 -0800209}
210
Paul Stewarta41e38d2011-11-11 07:47:29 -0800211bool Profile::IsValidIdentifierToken(const string &token) {
Darin Petkova4766822011-07-07 10:42:22 -0700212 if (token.empty()) {
213 return false;
214 }
215 for (string::const_iterator it = token.begin(); it != token.end(); ++it) {
216 if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it)) {
217 return false;
218 }
219 }
220 return true;
221}
222
223bool Profile::ParseIdentifier(const string &raw, Identifier *parsed) {
224 if (raw.empty()) {
225 return false;
226 }
227 if (raw[0] == '~') {
228 // Format: "~user/identifier".
229 size_t slash = raw.find('/');
230 if (slash == string::npos) {
231 return false;
232 }
233 string user(raw.begin() + 1, raw.begin() + slash);
234 string identifier(raw.begin() + slash + 1, raw.end());
235 if (!IsValidIdentifierToken(user) || !IsValidIdentifierToken(identifier)) {
236 return false;
237 }
238 parsed->user = user;
239 parsed->identifier = identifier;
240 return true;
241 }
242
243 // Format: "identifier".
244 if (!IsValidIdentifierToken(raw)) {
245 return false;
246 }
247 parsed->user = "";
248 parsed->identifier = raw;
249 return true;
250}
251
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700252bool Profile::MatchesIdentifier(const Identifier &name) const {
253 return name.user == name_.user && name.identifier == name_.identifier;
254}
255
Chris Masoneb9c00592011-10-06 13:10:39 -0700256bool Profile::Save() {
Chris Masone6515aab2011-10-12 16:19:09 -0700257 return storage_->Flush();
Chris Masone9d779932011-08-25 16:33:41 -0700258}
259
Chris Masone2ae797d2011-08-23 20:41:00 -0700260bool Profile::GetStoragePath(FilePath *path) {
261 if (name_.user.empty()) {
262 LOG(ERROR) << "Non-default profiles cannot be stored globally.";
263 return false;
264 }
265 FilePath dir(base::StringPrintf(storage_format_.c_str(), name_.user.c_str()));
Darin Petkova4766822011-07-07 10:42:22 -0700266 // TODO(petkov): Validate the directory permissions, etc.
267 *path = dir.Append(base::StringPrintf("%s.profile",
Chris Masone2ae797d2011-08-23 20:41:00 -0700268 name_.identifier.c_str()));
Darin Petkova4766822011-07-07 10:42:22 -0700269 return true;
270}
271
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800272vector<string> Profile::EnumerateAvailableServices(Error *error) {
Paul Stewart1b253142012-01-26 14:05:52 -0800273 // We should return the Manager's service list if this is the active profile.
274 if (manager_->IsActiveProfile(this)) {
275 return manager_->EnumerateAvailableServices(error);
276 } else {
277 return vector<string>();
278 }
Chris Masone6791a432011-07-12 13:23:19 -0700279}
280
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800281vector<string> Profile::EnumerateEntries(Error */*error*/) {
Chris Masone6515aab2011-10-12 16:19:09 -0700282 set<string> groups(storage_->GetGroups());
Paul Stewart1b253142012-01-26 14:05:52 -0800283 vector<string> service_groups;
284
285 // Filter this list down to only entries that correspond
286 // to a technology. (wifi_*, etc)
287 for (set<string>::iterator it = groups.begin();
288 it != groups.end(); ++it) {
289 if (Technology::IdentifierFromStorageGroup(*it) != Technology::kUnknown)
290 service_groups.push_back(*it);
291 }
292
293 return service_groups;
Chris Masone6791a432011-07-12 13:23:19 -0700294}
295
Darin Petkove7c6ad32012-06-29 10:22:09 +0200296bool Profile::UpdateDevice(const DeviceRefPtr &device) {
297 return false;
298}
299
mukesh agrawalffa3d042011-10-06 15:26:10 -0700300void Profile::HelpRegisterDerivedStrings(
301 const string &name,
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800302 Strings(Profile::*get)(Error *),
mukesh agrawalffa3d042011-10-06 15:26:10 -0700303 void(Profile::*set)(const Strings&, Error *)) {
Chris Masone6791a432011-07-12 13:23:19 -0700304 store_.RegisterDerivedStrings(
305 name,
306 StringsAccessor(new CustomAccessor<Profile, Strings>(this, get, set)));
307}
308
Chris Masone52cd19b2011-06-29 17:23:04 -0700309} // namespace shill