blob: f3d7dd237120c3792fb102a7028a74b069fd7f53 [file] [log] [blame]
Chris Masone52cd19b2011-06-29 17:23:04 -07001// Copyright (c) 2011 The Chromium OS 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 "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>
Chris Masone52cd19b2011-06-29 17:23:04 -070013#include <base/logging.h>
Eric Shienbrood3e20a232012-02-16 11:35:56 -050014#include <base/stl_util.h>
Darin Petkova4766822011-07-07 10:42:22 -070015#include <base/string_util.h>
Chris Masone6791a432011-07-12 13:23:19 -070016#include <base/stringprintf.h>
Chris Masone88cbd5f2011-07-03 14:30:04 -070017#include <chromeos/dbus/service_constants.h>
Chris Masone52cd19b2011-06-29 17:23:04 -070018
19#include "shill/adaptor_interfaces.h"
20#include "shill/control_interface.h"
Chris Masoneb9c00592011-10-06 13:10:39 -070021#include "shill/key_file_store.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()));
Chris Masoneb9c00592011-10-06 13:10:39 -070090 return false;
91 }
Paul Stewart5dc40aa2011-10-28 19:43:43 -070092 if (!already_exists) {
93 // Add a descriptive header to the profile so even if nothing is stored
94 // to it, it still has some content. Completely empty keyfiles are not
95 // valid for reading.
96 storage->SetHeader(
97 base::StringPrintf("Profile %s:%s", name_.user.c_str(),
98 name_.identifier.c_str()));
99 }
Chris Masoneb9c00592011-10-06 13:10:39 -0700100 set_storage(storage.release());
101 return true;
102}
103
Paul Stewarte73d05c2012-03-29 16:26:05 -0700104bool Profile::RemoveStorage(GLib *glib, Error *error) {
105 FilePath path;
106
107 CHECK(!storage_.get());
108
109 if (!GetStoragePath(&path)) {
110 Error::PopulateAndLog(
111 error, Error::kInvalidArguments,
112 base::StringPrintf("Could get the storage path for %s:%s",
113 name_.user.c_str(), name_.identifier.c_str()));
114 return false;
115 }
116
117 if (!file_util::Delete(path, false)) {
118 Error::PopulateAndLog(
119 error, Error::kOperationFailed,
120 base::StringPrintf("Could not remove path %s", path.value().c_str()));
121 return false;
122 }
123
124 return true;
125}
126
Chris Masone7df0c672011-07-15 10:24:54 -0700127string Profile::GetFriendlyName() {
128 return (name_.user.empty() ? "" : name_.user + "/") + name_.identifier;
129}
130
131string Profile::GetRpcIdentifier() {
Paul Stewart19c871d2011-12-15 16:10:13 -0800132 if (!adaptor_.get()) {
133 // NB: This condition happens in unit tests.
134 return string();
135 }
Chris Masone7df0c672011-07-15 10:24:54 -0700136 return adaptor_->GetRpcIdentifier();
137}
138
Chris Masoneb9c00592011-10-06 13:10:39 -0700139void Profile::set_storage(StoreInterface *storage) {
140 storage_.reset(storage);
141}
142
Chris Masone6791a432011-07-12 13:23:19 -0700143bool Profile::AdoptService(const ServiceRefPtr &service) {
Chris Masone6515aab2011-10-12 16:19:09 -0700144 if (storage_->ContainsGroup(service->GetStorageIdentifier()))
Chris Masone6791a432011-07-12 13:23:19 -0700145 return false;
146 service->set_profile(this);
Chris Masone6515aab2011-10-12 16:19:09 -0700147 return service->Save(storage_.get()) && storage_->Flush();
Chris Masone6791a432011-07-12 13:23:19 -0700148}
149
Chris Masone6515aab2011-10-12 16:19:09 -0700150bool Profile::AbandonService(const ServiceRefPtr &service) {
151 if (service->profile() == this)
152 service->set_profile(NULL);
153 return storage_->DeleteGroup(service->GetStorageIdentifier()) &&
154 storage_->Flush();
Chris Masone6791a432011-07-12 13:23:19 -0700155}
156
Chris Masone6515aab2011-10-12 16:19:09 -0700157bool Profile::UpdateService(const ServiceRefPtr &service) {
158 return service->Save(storage_.get()) && storage_->Flush();
Chris Masone6791a432011-07-12 13:23:19 -0700159}
160
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700161bool Profile::ConfigureService(const ServiceRefPtr &service) {
162 if (!ContainsService(service))
Chris Masone6515aab2011-10-12 16:19:09 -0700163 return false;
164 service->set_profile(this);
165 return service->Load(storage_.get());
Chris Masone6791a432011-07-12 13:23:19 -0700166}
167
Paul Stewarta41e38d2011-11-11 07:47:29 -0800168bool Profile::ConfigureDevice(const DeviceRefPtr &device) {
169 return device->Load(storage_.get());
170}
171
Chris Masone6515aab2011-10-12 16:19:09 -0700172bool Profile::ContainsService(const ServiceConstRefPtr &service) {
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700173 return service->IsLoadableFrom(storage_.get());
Chris Masone7aa5f902011-07-11 11:13:35 -0700174}
175
Paul Stewart75225512012-01-26 22:51:33 -0800176void Profile::DeleteEntry(const std::string &entry_name, Error *error) {
177 if (!storage_->ContainsGroup(entry_name)) {
178 Error::PopulateAndLog(error, Error::kNotFound,
179 base::StringPrintf("Entry %s does not exist in profile",
180 entry_name.c_str()));
181 return;
182 }
183 if (!manager_->HandleProfileEntryDeletion(this, entry_name)) {
184 // If HandleProfileEntryDeletion() returns succeeds, DeleteGroup()
185 // has already been called when AbandonService was called.
186 // Otherwise, we need to delete the group ourselves.
187 storage_->DeleteGroup(entry_name);
188 }
Paul Stewart0756db92012-01-27 08:34:47 -0800189 Save();
190}
191
192ServiceRefPtr Profile::GetServiceFromEntry(const std::string &entry_name,
193 Error *error) {
194 return manager_->GetServiceWithStorageIdentifier(this, entry_name, error);
Paul Stewart75225512012-01-26 22:51:33 -0800195}
196
Paul Stewarta41e38d2011-11-11 07:47:29 -0800197bool Profile::IsValidIdentifierToken(const string &token) {
Darin Petkova4766822011-07-07 10:42:22 -0700198 if (token.empty()) {
199 return false;
200 }
201 for (string::const_iterator it = token.begin(); it != token.end(); ++it) {
202 if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it)) {
203 return false;
204 }
205 }
206 return true;
207}
208
209bool Profile::ParseIdentifier(const string &raw, Identifier *parsed) {
210 if (raw.empty()) {
211 return false;
212 }
213 if (raw[0] == '~') {
214 // Format: "~user/identifier".
215 size_t slash = raw.find('/');
216 if (slash == string::npos) {
217 return false;
218 }
219 string user(raw.begin() + 1, raw.begin() + slash);
220 string identifier(raw.begin() + slash + 1, raw.end());
221 if (!IsValidIdentifierToken(user) || !IsValidIdentifierToken(identifier)) {
222 return false;
223 }
224 parsed->user = user;
225 parsed->identifier = identifier;
226 return true;
227 }
228
229 // Format: "identifier".
230 if (!IsValidIdentifierToken(raw)) {
231 return false;
232 }
233 parsed->user = "";
234 parsed->identifier = raw;
235 return true;
236}
237
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700238bool Profile::MatchesIdentifier(const Identifier &name) const {
239 return name.user == name_.user && name.identifier == name_.identifier;
240}
241
Chris Masoneb9c00592011-10-06 13:10:39 -0700242bool Profile::Save() {
Chris Masone6515aab2011-10-12 16:19:09 -0700243 return storage_->Flush();
Chris Masone9d779932011-08-25 16:33:41 -0700244}
245
Chris Masone2ae797d2011-08-23 20:41:00 -0700246bool Profile::GetStoragePath(FilePath *path) {
247 if (name_.user.empty()) {
248 LOG(ERROR) << "Non-default profiles cannot be stored globally.";
249 return false;
250 }
251 FilePath dir(base::StringPrintf(storage_format_.c_str(), name_.user.c_str()));
Darin Petkova4766822011-07-07 10:42:22 -0700252 // TODO(petkov): Validate the directory permissions, etc.
253 *path = dir.Append(base::StringPrintf("%s.profile",
Chris Masone2ae797d2011-08-23 20:41:00 -0700254 name_.identifier.c_str()));
Darin Petkova4766822011-07-07 10:42:22 -0700255 return true;
256}
257
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800258vector<string> Profile::EnumerateAvailableServices(Error *error) {
Paul Stewart1b253142012-01-26 14:05:52 -0800259 // We should return the Manager's service list if this is the active profile.
260 if (manager_->IsActiveProfile(this)) {
261 return manager_->EnumerateAvailableServices(error);
262 } else {
263 return vector<string>();
264 }
Chris Masone6791a432011-07-12 13:23:19 -0700265}
266
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800267vector<string> Profile::EnumerateEntries(Error */*error*/) {
Chris Masone6515aab2011-10-12 16:19:09 -0700268 set<string> groups(storage_->GetGroups());
Paul Stewart1b253142012-01-26 14:05:52 -0800269 vector<string> service_groups;
270
271 // Filter this list down to only entries that correspond
272 // to a technology. (wifi_*, etc)
273 for (set<string>::iterator it = groups.begin();
274 it != groups.end(); ++it) {
275 if (Technology::IdentifierFromStorageGroup(*it) != Technology::kUnknown)
276 service_groups.push_back(*it);
277 }
278
279 return service_groups;
Chris Masone6791a432011-07-12 13:23:19 -0700280}
281
mukesh agrawalffa3d042011-10-06 15:26:10 -0700282void Profile::HelpRegisterDerivedStrings(
283 const string &name,
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800284 Strings(Profile::*get)(Error *),
mukesh agrawalffa3d042011-10-06 15:26:10 -0700285 void(Profile::*set)(const Strings&, Error *)) {
Chris Masone6791a432011-07-12 13:23:19 -0700286 store_.RegisterDerivedStrings(
287 name,
288 StringsAccessor(new CustomAccessor<Profile, Strings>(this, get, set)));
289}
290
Chris Masone52cd19b2011-06-29 17:23:04 -0700291} // namespace shill