blob: 5f7147b1c34c58f6c1b86d610595179b421278d1 [file] [log] [blame]
Ben Chanfad4a0b2012-04-18 15:49:59 -07001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkove02b3ca2011-05-31 16:00:44 -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/ipconfig.h"
6
7#include <base/logging.h>
Chris Masone43b48a12011-07-01 13:37:07 -07008#include <chromeos/dbus/service_constants.h>
Darin Petkove02b3ca2011-05-31 16:00:44 -07009
Chris Masonec6c6c132011-06-30 11:29:52 -070010#include "shill/adaptor_interfaces.h"
Chris Masone19e30402011-07-19 15:48:47 -070011#include "shill/control_interface.h"
Chris Masone43b48a12011-07-01 13:37:07 -070012#include "shill/error.h"
Ben Chanfad4a0b2012-04-18 15:49:59 -070013#include "shill/scope_logger.h"
Chris Masone8a7b8be2011-07-22 12:43:37 -070014#include "shill/store_interface.h"
Chris Masonec6c6c132011-06-30 11:29:52 -070015
Eric Shienbrood3e20a232012-02-16 11:35:56 -050016using base::Callback;
Darin Petkove02b3ca2011-05-31 16:00:44 -070017using std::string;
18
19namespace shill {
20
Chris Masone0756f232011-07-21 17:24:00 -070021// static
Chris Masone5dec5f42011-07-22 14:07:55 -070022const char IPConfig::kStorageType[] = "Method";
Chris Masone8a7b8be2011-07-22 12:43:37 -070023// static
Chris Masone0756f232011-07-21 17:24:00 -070024const char IPConfig::kType[] = "ip";
25// static
26uint IPConfig::global_serial_ = 0;
27
Chris Masone19e30402011-07-19 15:48:47 -070028IPConfig::IPConfig(ControlInterface *control_interface,
29 const std::string &device_name)
30 : device_name_(device_name),
Chris Masone0756f232011-07-21 17:24:00 -070031 type_(kType),
32 serial_(global_serial_++),
Chris Masone19e30402011-07-19 15:48:47 -070033 adaptor_(control_interface->CreateIPConfigAdaptor(this)) {
Chris Masone0756f232011-07-21 17:24:00 -070034 Init();
35}
36
37IPConfig::IPConfig(ControlInterface *control_interface,
38 const std::string &device_name,
39 const std::string &type)
40 : device_name_(device_name),
41 type_(type),
42 serial_(global_serial_++),
43 adaptor_(control_interface->CreateIPConfigAdaptor(this)) {
44 Init();
45}
46
47void IPConfig::Init() {
Chris Masone43b48a12011-07-01 13:37:07 -070048 // Address might be R/O or not, depending on the type of IPconfig, so
49 // we'll leave this up to the subclasses.
50 // Register(Const?)String(flimflam::kAddressProperty, &properties_.address);
Chris Masone27c4aa52011-07-02 13:10:14 -070051 store_.RegisterString(flimflam::kBroadcastProperty,
52 &properties_.broadcast_address);
53 store_.RegisterString(flimflam::kDomainNameProperty,
54 &properties_.domain_name);
55 store_.RegisterString(flimflam::kGatewayProperty, &properties_.gateway);
56 store_.RegisterConstString(flimflam::kMethodProperty, &properties_.method);
57 store_.RegisterInt32(flimflam::kMtuProperty, &properties_.mtu);
58 store_.RegisterStrings(flimflam::kNameServersProperty,
59 &properties_.dns_servers);
60 store_.RegisterString(flimflam::kPeerAddressProperty,
61 &properties_.peer_address);
Paul Stewart48100b02012-03-19 07:53:52 -070062 store_.RegisterInt32(flimflam::kPrefixlenProperty,
63 &properties_.subnet_prefix);
Chris Masone43b48a12011-07-01 13:37:07 -070064 // TODO(cmasone): Does anyone use this?
Chris Masone27c4aa52011-07-02 13:10:14 -070065 // store_.RegisterStrings(flimflam::kSearchDomainsProperty,
66 // &properties_.domain_search);
Ben Chanfad4a0b2012-04-18 15:49:59 -070067 SLOG(Inet, 2) << __func__ << " device: " << device_name();
Darin Petkove02b3ca2011-05-31 16:00:44 -070068}
69
70IPConfig::~IPConfig() {
Ben Chanfad4a0b2012-04-18 15:49:59 -070071 SLOG(Inet, 2) << __func__ << " device: " << device_name();
Darin Petkove02b3ca2011-05-31 16:00:44 -070072}
73
Chris Masone4e851612011-07-01 10:46:53 -070074string IPConfig::GetRpcIdentifier() {
75 return adaptor_->GetRpcIdentifier();
76}
77
Chris Masone34af2182011-08-22 11:59:36 -070078string IPConfig::GetStorageIdentifier(const string &id_suffix) {
Chris Masone5dec5f42011-07-22 14:07:55 -070079 string id = GetRpcIdentifier();
80 ControlInterface::RpcIdToStorageId(&id);
Chris Masone34af2182011-08-22 11:59:36 -070081 size_t needle = id.find('_');
82 LOG_IF(ERROR, needle == string::npos) << "No _ in storage id?!?!";
83 id.replace(id.begin() + needle + 1, id.end(), id_suffix);
Chris Masone5dec5f42011-07-22 14:07:55 -070084 return id;
85}
86
Darin Petkov92c43902011-06-09 20:46:06 -070087bool IPConfig::RequestIP() {
Darin Petkove7cb7f82011-06-03 13:21:51 -070088 return false;
89}
90
Darin Petkov92c43902011-06-09 20:46:06 -070091bool IPConfig::RenewIP() {
92 return false;
93}
94
95bool IPConfig::ReleaseIP() {
Darin Petkove7cb7f82011-06-03 13:21:51 -070096 return false;
97}
98
Chris Masone34af2182011-08-22 11:59:36 -070099bool IPConfig::Load(StoreInterface *storage, const string &id_suffix) {
100 const string id = GetStorageIdentifier(id_suffix);
Chris Masone8a7b8be2011-07-22 12:43:37 -0700101 if (!storage->ContainsGroup(id)) {
102 LOG(WARNING) << "IPConfig is not available in the persistent store: " << id;
103 return false;
104 }
105 string local_type;
106 storage->GetString(id, kStorageType, &local_type);
107 return local_type == type();
108}
109
Chris Masone34af2182011-08-22 11:59:36 -0700110bool IPConfig::Save(StoreInterface *storage, const string &id_suffix) {
111 const string id = GetStorageIdentifier(id_suffix);
Chris Masone8a7b8be2011-07-22 12:43:37 -0700112 storage->SetString(id, kStorageType, type());
113 return true;
114}
115
Darin Petkovf9b0ca82011-06-20 12:10:23 -0700116void IPConfig::UpdateProperties(const Properties &properties, bool success) {
Darin Petkove7cb7f82011-06-03 13:21:51 -0700117 properties_ = properties;
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500118 if (!update_callback_.is_null()) {
119 update_callback_.Run(this, success);
Darin Petkovefb09c32011-06-07 20:24:17 -0700120 }
121}
122
123void IPConfig::RegisterUpdateCallback(
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500124 const Callback<void(const IPConfigRefPtr&, bool)> &callback) {
125 update_callback_ = callback;
Darin Petkove7cb7f82011-06-03 13:21:51 -0700126}
127
Darin Petkove02b3ca2011-05-31 16:00:44 -0700128} // namespace shill