Upstreaming browser/ui/uikit_ui_util from iOS.
[chromium-blink-merge.git] / extensions / common / permissions / socket_permission_entry.cc
blob8b2d355acc70a80e4d0413c77fb62a989350fb5f
1 // Copyright 2014 The Chromium 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.
5 #include "extensions/common/permissions/socket_permission_entry.h"
7 #include <cstdlib>
8 #include <sstream>
9 #include <vector>
11 #include "base/logging.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/strings/string_number_conversions.h"
14 #include "base/strings/string_split.h"
15 #include "base/strings/string_util.h"
16 #include "extensions/common/permissions/api_permission.h"
17 #include "extensions/common/permissions/socket_permission.h"
18 #include "url/url_canon.h"
20 namespace {
22 using content::SocketPermissionRequest;
24 const char kColon = ':';
25 const char kDot = '.';
26 const char kWildcard[] = "*";
27 const uint16 kWildcardPortNumber = 0;
28 const uint16 kInvalidPort = 65535;
30 bool StartsOrEndsWithWhitespace(const std::string& str) {
31 return !str.empty() && (base::IsUnicodeWhitespace(str[0]) ||
32 base::IsUnicodeWhitespace(str[str.length() - 1]));
35 } // namespace
37 namespace extensions {
39 SocketPermissionEntry::SocketPermissionEntry()
40 : pattern_(SocketPermissionRequest::NONE, std::string(), kInvalidPort),
41 match_subdomains_(false) {}
43 SocketPermissionEntry::~SocketPermissionEntry() {}
45 bool SocketPermissionEntry::operator<(const SocketPermissionEntry& rhs) const {
46 if (pattern_.type < rhs.pattern_.type)
47 return true;
48 if (pattern_.type > rhs.pattern_.type)
49 return false;
51 if (pattern_.host < rhs.pattern_.host)
52 return true;
53 if (pattern_.host > rhs.pattern_.host)
54 return false;
56 if (match_subdomains_ < rhs.match_subdomains_)
57 return true;
58 if (match_subdomains_ > rhs.match_subdomains_)
59 return false;
61 if (pattern_.port < rhs.pattern_.port)
62 return true;
63 return false;
66 bool SocketPermissionEntry::operator==(const SocketPermissionEntry& rhs) const {
67 return (pattern_.type == rhs.pattern_.type) &&
68 (pattern_.host == rhs.pattern_.host) &&
69 (match_subdomains_ == rhs.match_subdomains_) &&
70 (pattern_.port == rhs.pattern_.port);
73 bool SocketPermissionEntry::Check(
74 const content::SocketPermissionRequest& request) const {
75 if (pattern_.type != request.type)
76 return false;
78 std::string lhost = base::StringToLowerASCII(request.host);
79 if (pattern_.host != lhost) {
80 if (!match_subdomains_)
81 return false;
83 if (!pattern_.host.empty()) {
84 // Do not wildcard part of IP address.
85 url::Component component(0, lhost.length());
86 url::RawCanonOutputT<char, 128> ignored_output;
87 url::CanonHostInfo host_info;
88 url::CanonicalizeIPAddress(
89 lhost.c_str(), component, &ignored_output, &host_info);
90 if (host_info.IsIPAddress())
91 return false;
93 // host should equal one or more chars + "." + host_.
94 int i = lhost.length() - pattern_.host.length();
95 if (i < 2)
96 return false;
98 if (lhost.compare(i, pattern_.host.length(), pattern_.host) != 0)
99 return false;
101 if (lhost[i - 1] != kDot)
102 return false;
106 if (pattern_.port != request.port && pattern_.port != kWildcardPortNumber)
107 return false;
109 return true;
112 SocketPermissionEntry::HostType SocketPermissionEntry::GetHostType() const {
113 return pattern_.host.empty()
114 ? SocketPermissionEntry::ANY_HOST
115 : match_subdomains_ ? SocketPermissionEntry::HOSTS_IN_DOMAINS
116 : SocketPermissionEntry::SPECIFIC_HOSTS;
119 bool SocketPermissionEntry::IsAddressBoundType() const {
120 return pattern_.type == SocketPermissionRequest::TCP_CONNECT ||
121 pattern_.type == SocketPermissionRequest::TCP_LISTEN ||
122 pattern_.type == SocketPermissionRequest::UDP_BIND ||
123 pattern_.type == SocketPermissionRequest::UDP_SEND_TO;
126 // static
127 bool SocketPermissionEntry::ParseHostPattern(
128 SocketPermissionRequest::OperationType type,
129 const std::string& pattern,
130 SocketPermissionEntry* entry) {
131 std::vector<std::string> tokens;
132 base::SplitStringDontTrim(pattern, kColon, &tokens);
133 return ParseHostPattern(type, tokens, entry);
136 // static
137 bool SocketPermissionEntry::ParseHostPattern(
138 SocketPermissionRequest::OperationType type,
139 const std::vector<std::string>& pattern_tokens,
140 SocketPermissionEntry* entry) {
142 SocketPermissionEntry result;
144 if (type == SocketPermissionRequest::NONE)
145 return false;
147 if (pattern_tokens.size() > 2)
148 return false;
150 result.pattern_.type = type;
151 result.pattern_.port = kWildcardPortNumber;
152 result.match_subdomains_ = true;
154 if (pattern_tokens.size() == 0) {
155 *entry = result;
156 return true;
159 // Return an error if address is specified for permissions that don't
160 // need it (such as 'resolve-host').
161 if (!result.IsAddressBoundType())
162 return false;
164 result.pattern_.host = pattern_tokens[0];
165 if (!result.pattern_.host.empty()) {
166 if (StartsOrEndsWithWhitespace(result.pattern_.host))
167 return false;
168 result.pattern_.host = base::StringToLowerASCII(result.pattern_.host);
170 // The first component can optionally be '*' to match all subdomains.
171 std::vector<std::string> host_components;
172 base::SplitString(result.pattern_.host, kDot, &host_components);
173 DCHECK(!host_components.empty());
175 if (host_components[0] == kWildcard || host_components[0].empty()) {
176 host_components.erase(host_components.begin(),
177 host_components.begin() + 1);
178 } else {
179 result.match_subdomains_ = false;
181 result.pattern_.host = base::JoinString(host_components, ".");
184 if (pattern_tokens.size() == 1 || pattern_tokens[1].empty() ||
185 pattern_tokens[1] == kWildcard) {
186 *entry = result;
187 return true;
190 if (StartsOrEndsWithWhitespace(pattern_tokens[1]))
191 return false;
193 int port;
194 if (!base::StringToInt(pattern_tokens[1], &port) || port < 1 || port > 65535)
195 return false;
196 result.pattern_.port = static_cast<uint16>(port);
198 *entry = result;
199 return true;
202 std::string SocketPermissionEntry::GetHostPatternAsString() const {
203 std::string result;
205 if (!IsAddressBoundType())
206 return result;
208 if (match_subdomains()) {
209 result.append(kWildcard);
210 if (!pattern_.host.empty())
211 result.append(1, kDot).append(pattern_.host);
212 } else {
213 result.append(pattern_.host);
216 if (pattern_.port == kWildcardPortNumber)
217 result.append(1, kColon).append(kWildcard);
218 else
219 result.append(1, kColon).append(base::IntToString(pattern_.port));
221 return result;
224 } // namespace extensions