blob: 01fb20809890da8582a1175e98f20d7cf9b6d7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
// Copyright (c) 2012 The Chromium 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 "net/dns/dns_hosts.h"
#include "base/file_util.h"
#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/string_util.h"
#include "base/strings/string_tokenizer.h"
namespace net {
void ParseHosts(const std::string& contents, DnsHosts* dns_hosts) {
CHECK(dns_hosts);
DnsHosts& hosts = *dns_hosts;
// Split into lines. Accept CR for Windows.
base::StringTokenizer contents_lines(contents, "\n\r");
while (contents_lines.GetNext()) {
// Ignore comments after '#'.
std::string line = contents_lines.token();
base::StringTokenizer line_parts(line, "#");
line_parts.set_options(base::StringTokenizer::RETURN_DELIMS);
if (line_parts.GetNext() && !line_parts.token_is_delim()) {
// Split and trim whitespace.
std::string part = line_parts.token();
base::StringTokenizer tokens(part, " \t");
if (tokens.GetNext()) {
IPAddressNumber ip;
// TODO(szym): handle %iface notation on mac
if (!ParseIPLiteralToNumber(tokens.token(), &ip))
continue; // Ignore malformed lines.
AddressFamily fam = (ip.size() == 4) ? ADDRESS_FAMILY_IPV4 :
ADDRESS_FAMILY_IPV6;
while (tokens.GetNext()) {
DnsHostsKey key(tokens.token(), fam);
StringToLowerASCII(&(key.first));
IPAddressNumber& mapped_ip = hosts[key];
if (mapped_ip.empty())
mapped_ip = ip;
// else ignore this entry (first hit counts)
}
}
}
}
}
bool ParseHostsFile(const base::FilePath& path, DnsHosts* dns_hosts) {
dns_hosts->clear();
// Missing file indicates empty HOSTS.
if (!file_util::PathExists(path))
return true;
int64 size;
if (!file_util::GetFileSize(path, &size))
return false;
UMA_HISTOGRAM_COUNTS("AsyncDNS.HostsSize", size);
// Reject HOSTS files larger than |kMaxHostsSize|.
const int64 kMaxHostsSize = 1 << 16;
if (size > kMaxHostsSize)
return false;
std::string contents;
if (!file_util::ReadFileToString(path, &contents))
return false;
ParseHosts(contents, dns_hosts);
return true;
}
} // namespace net
|