blob: 58e94a222aaebd528e2a5e78a10fcd6f55b09434 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/ppp_device.h"
#include <base/stl_util.h>
#include <base/strings/string_number_conversions.h>
#include "shill/logging.h"
#include "shill/technology.h"
using std::map;
using std::string;
namespace shill {
namespace Logging {
static auto kModuleLogScope = ScopeLogger::kPPP;
static string ObjectID(PPPDevice *p) { return p->link_name(); }
}
PPPDevice::PPPDevice(ControlInterface *control,
EventDispatcher *dispatcher,
Metrics *metrics,
Manager *manager,
const string &link_name,
int interface_index)
: VirtualDevice(control, dispatcher, metrics, manager, link_name,
interface_index, Technology::kPPP) {}
PPPDevice::~PPPDevice() {}
void PPPDevice::UpdateIPConfigFromPPP(const map<string, string> &configuration,
bool blackhole_ipv6) {
SLOG(this, 2) << __func__ << " on " << link_name();
IPConfig::Properties properties =
ParseIPConfiguration(link_name(), configuration);
properties.blackhole_ipv6 = blackhole_ipv6;
UpdateIPConfig(properties);
}
void PPPDevice::UpdateIPConfigFromPPPWithMTU(
const map<string, string> &configuration,
bool blackhole_ipv6,
int32_t mtu) {
SLOG(this, 2) << __func__ << " on " << link_name();
IPConfig::Properties properties =
ParseIPConfiguration(link_name(), configuration);
properties.blackhole_ipv6 = blackhole_ipv6;
properties.mtu = mtu;
UpdateIPConfig(properties);
}
// static
string PPPDevice::GetInterfaceName(const map<string, string> &configuration) {
if (ContainsKey(configuration, kPPPInterfaceName)) {
return configuration.find(kPPPInterfaceName)->second;
}
return string();
}
// static
IPConfig::Properties PPPDevice::ParseIPConfiguration(
const string &link_name, const map<string, string> &configuration) {
SLOG(PPP, nullptr, 2) << __func__ << " on " << link_name;
IPConfig::Properties properties;
properties.address_family = IPAddress::kFamilyIPv4;
properties.subnet_prefix = IPAddress::GetMaxPrefixLength(
properties.address_family);
for (const auto &it : configuration) {
const string &key = it.first;
const string &value = it.second;
SLOG(PPP, nullptr, 2) << "Processing: " << key << " -> " << value;
if (key == kPPPInternalIP4Address) {
properties.address = value;
} else if (key == kPPPExternalIP4Address) {
properties.peer_address = value;
} else if (key == kPPPGatewayAddress) {
properties.gateway = value;
} else if (key == kPPPDNS1) {
properties.dns_servers.insert(properties.dns_servers.begin(), value);
} else if (key == kPPPDNS2) {
properties.dns_servers.push_back(value);
} else if (key == kPPPLNSAddress) {
// This is really a L2TPIPSec property. But it's sent to us by
// our PPP plugin.
size_t prefix = IPAddress::GetMaxPrefixLength(properties.address_family);
properties.exclusion_list.push_back(value + "/" +
base::SizeTToString(prefix));
} else if (key == kPPPMRU) {
int mru;
if (!base::StringToInt(value, &mru)) {
LOG(WARNING) << "Failed to parse MRU: " << value;
continue;
}
properties.mtu = mru;
} else {
SLOG(PPP, nullptr, 2) << "Key ignored.";
}
}
if (properties.gateway.empty()) {
// The gateway may be unspecified, since this is a point-to-point
// link. Set to the peer's address, so that Connection can set the
// routing table.
properties.gateway = properties.peer_address;
}
return properties;
}
} // namespace shill