blob: 1d1cacfd62229dce621989f4e772736d36fb6ec6 [file] [log] [blame]
// Copyright (c) 2012 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/resolver.h"
#include <string>
#include <vector>
#include <base/file_util.h>
#include <base/string_util.h>
#include <base/stringprintf.h>
#include "shill/ipconfig.h"
using base::StringPrintf;
using std::string;
using std::vector;
namespace shill {
// TODO(ers): not using LAZY_INSTANCE_INITIALIZER
// because of http://crbug.com/114828
static base::LazyInstance<Resolver> g_resolver = {0, {{0}}};
Resolver::Resolver() {}
Resolver::~Resolver() {}
Resolver* Resolver::GetInstance() {
return g_resolver.Pointer();
}
bool Resolver::SetDNSFromIPConfig(const IPConfigRefPtr &ipconfig) {
VLOG(2) << __func__;
CHECK(!path_.empty());
const IPConfig::Properties &props = ipconfig->properties();
return SetDNSFromLists(props.dns_servers, props.domain_search);
}
bool Resolver::SetDNSFromLists(const std::vector<std::string> &dns_servers,
const std::vector<std::string> &domain_search) {
VLOG(2) << __func__;
if (dns_servers.empty() && domain_search.empty()) {
VLOG(2) << "DNS list is empty";
return ClearDNS();
}
vector<string> lines;
vector<string>::const_iterator iter;
for (iter = dns_servers.begin();
iter != dns_servers.end(); ++iter) {
lines.push_back("nameserver " + *iter);
}
if (!domain_search.empty()) {
lines.push_back("search " + JoinString(domain_search, ' '));
}
// Send queries one-at-a-time, rather than parallelizing IPv4
// and IPv6 queries for a single host. Also override the default
// 5-second request timeout and use a 1-second tiemout instead.
lines.push_back("options single-request timeout:1");
// Newline at end of file
lines.push_back("");
string contents = JoinString(lines, '\n');
VLOG(2) << "Writing DNS out to " << path_.value();
int count = file_util::WriteFile(path_, contents.c_str(), contents.size());
return count == static_cast<int>(contents.size());
}
bool Resolver::ClearDNS() {
VLOG(2) << __func__;
CHECK(!path_.empty());
return file_util::Delete(path_, false);
}
} // namespace shill