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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/common/permissions/socket_permission_entry.h"
#include <stdint.h>
#include <cstdlib>
#include <memory>
#include <sstream>
#include <string_view>
#include <vector>
#include "base/check.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "extensions/common/permissions/api_permission.h"
#include "extensions/common/permissions/socket_permission.h"
#include "url/url_canon.h"
namespace {
using content::SocketPermissionRequest;
const char kColon = ':';
const char kDot = '.';
const char kWildcard[] = "*";
const uint16_t kWildcardPortNumber = 0;
const uint16_t kInvalidPort = 65535;
bool StartsOrEndsWithWhitespace(const std::string& str) {
return !str.empty() && (base::IsAsciiWhitespace(str.front()) ||
base::IsAsciiWhitespace(str.back()));
}
} // namespace
namespace extensions {
SocketPermissionEntry::SocketPermissionEntry()
: pattern_(SocketPermissionRequest::NONE, std::string(), kInvalidPort),
match_subdomains_(false) {}
SocketPermissionEntry::~SocketPermissionEntry() = default;
bool SocketPermissionEntry::Check(
const content::SocketPermissionRequest& request) const {
if (pattern_.type != request.type)
return false;
std::string lhost = base::ToLowerASCII(request.host);
if (pattern_.host != lhost) {
if (!match_subdomains_)
return false;
if (!pattern_.host.empty()) {
// Do not wildcard part of IP address.
url::Component component(0, lhost.length());
url::RawCanonOutputT<char, 128> ignored_output;
url::CanonHostInfo host_info;
url::CanonicalizeIPAddress(
lhost.c_str(), component, &ignored_output, &host_info);
if (host_info.IsIPAddress())
return false;
// host should equal one or more chars + "." + host_.
int i = lhost.length() - pattern_.host.length();
if (i < 2)
return false;
if (lhost.compare(i, pattern_.host.length(), pattern_.host) != 0)
return false;
if (lhost[i - 1] != kDot)
return false;
}
}
if (pattern_.port != request.port && pattern_.port != kWildcardPortNumber)
return false;
return true;
}
SocketPermissionEntry::HostType SocketPermissionEntry::GetHostType() const {
return pattern_.host.empty()
? SocketPermissionEntry::ANY_HOST
: match_subdomains_ ? SocketPermissionEntry::HOSTS_IN_DOMAINS
: SocketPermissionEntry::SPECIFIC_HOSTS;
}
bool SocketPermissionEntry::IsAddressBoundType() const {
return pattern_.type == SocketPermissionRequest::TCP_CONNECT ||
pattern_.type == SocketPermissionRequest::TCP_LISTEN ||
pattern_.type == SocketPermissionRequest::UDP_BIND ||
pattern_.type == SocketPermissionRequest::UDP_SEND_TO;
}
// static
bool SocketPermissionEntry::ParseHostPattern(
SocketPermissionRequest::OperationType type,
const std::string& pattern,
SocketPermissionEntry* entry) {
std::vector<std::string> tokens =
base::SplitString(pattern, std::string(1, kColon), base::KEEP_WHITESPACE,
base::SPLIT_WANT_ALL);
return ParseHostPattern(type, tokens, entry);
}
// static
bool SocketPermissionEntry::ParseHostPattern(
SocketPermissionRequest::OperationType type,
const std::vector<std::string>& pattern_tokens,
SocketPermissionEntry* entry) {
SocketPermissionEntry result;
if (type == SocketPermissionRequest::NONE)
return false;
if (pattern_tokens.size() > 2)
return false;
result.pattern_.type = type;
result.pattern_.port = kWildcardPortNumber;
result.match_subdomains_ = true;
if (pattern_tokens.size() == 0) {
*entry = result;
return true;
}
// Return an error if address is specified for permissions that don't
// need it (such as 'resolve-host').
if (!result.IsAddressBoundType())
return false;
result.pattern_.host = pattern_tokens[0];
if (!result.pattern_.host.empty()) {
if (StartsOrEndsWithWhitespace(result.pattern_.host))
return false;
result.pattern_.host = base::ToLowerASCII(result.pattern_.host);
// The first component can optionally be '*' to match all subdomains.
std::vector<std::string_view> host_components =
base::SplitStringPiece(result.pattern_.host, std::string{kDot},
base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
DCHECK(!host_components.empty());
if (host_components[0] == kWildcard || host_components[0].empty()) {
host_components.erase(host_components.begin(),
host_components.begin() + 1);
} else {
result.match_subdomains_ = false;
}
result.pattern_.host = base::JoinString(host_components, ".");
}
if (pattern_tokens.size() == 1 || pattern_tokens[1].empty() ||
pattern_tokens[1] == kWildcard) {
*entry = result;
return true;
}
if (StartsOrEndsWithWhitespace(pattern_tokens[1]))
return false;
int port;
if (!base::StringToInt(pattern_tokens[1], &port) || port < 1 || port > 65535)
return false;
result.pattern_.port = static_cast<uint16_t>(port);
*entry = result;
return true;
}
std::string SocketPermissionEntry::GetHostPatternAsString() const {
std::string result;
if (!IsAddressBoundType())
return result;
if (match_subdomains()) {
result.append(kWildcard);
if (!pattern_.host.empty())
result.append(1, kDot).append(pattern_.host);
} else {
result.append(pattern_.host);
}
if (pattern_.port == kWildcardPortNumber)
result.append(1, kColon).append(kWildcard);
else
result.append(1, kColon).append(base::NumberToString(pattern_.port));
return result;
}
} // namespace extensions
|