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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/websockets/websocket_common.h"
#include <stddef.h>
#include "base/metrics/histogram_macros.h"
#include "services/network/public/cpp/is_potentially_trustworthy.h"
#include "third_party/blink/public/common/security_context/insecure_request_policy.h"
#include "third_party/blink/public/mojom/security_context/insecure_request_policy.mojom-blink.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
#include "third_party/blink/renderer/core/frame/csp/content_security_policy.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/loader/mixed_content_checker.h"
#include "third_party/blink/renderer/modules/websockets/websocket_channel.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/text/string_utf8_adaptor.h"
#include "third_party/blink/renderer/platform/wtf/wtf_size_t.h"
namespace blink {
namespace {
constexpr char kWebSocketSubprotocolSeparator[] = ", ";
constexpr size_t kMaxReasonSizeInBytes = 123;
} // namespace
WebSocketCommon::ConnectResult WebSocketCommon::Connect(
ExecutionContext* execution_context,
const String& url,
const Vector<String>& protocols,
WebSocketChannel* channel,
ExceptionState& exception_state) {
// CompleteURL is not used here because this is expected to always be UTF-8,
// and not match document encoding.
url_ = KURL(execution_context->BaseURL(), url);
if (url_.IsValid()) {
if (url_.ProtocolIs("http")) {
url_.SetProtocol("ws");
} else if (url_.ProtocolIs("https")) {
url_.SetProtocol("wss");
}
}
bool upgrade_insecure_requests_set =
(execution_context->GetSecurityContext().GetInsecureRequestPolicy() &
mojom::blink::InsecureRequestPolicy::kUpgradeInsecureRequests) !=
mojom::blink::InsecureRequestPolicy::kLeaveInsecureRequestsAlone;
if (upgrade_insecure_requests_set && url_.Protocol() == "ws" &&
!network::IsUrlPotentiallyTrustworthy(GURL(url_))) {
UseCounter::Count(
execution_context,
WebFeature::kUpgradeInsecureRequestsUpgradedRequestWebsocket);
url_.SetProtocol("wss");
if (url_.Port() == 80)
url_.SetPort(443);
}
if (!url_.IsValid()) {
state_ = kClosed;
exception_state.ThrowDOMException(DOMExceptionCode::kSyntaxError,
"The URL '" + url + "' is invalid.");
return ConnectResult::kException;
}
if (!url_.ProtocolIs("ws") && !url_.ProtocolIs("wss")) {
state_ = kClosed;
exception_state.ThrowDOMException(
DOMExceptionCode::kSyntaxError,
"The URL's scheme must be either 'http', 'https', 'ws', or 'wss'. '" +
url_.Protocol() + "' is not allowed.");
return ConnectResult::kException;
}
if (url_.HasFragmentIdentifier()) {
state_ = kClosed;
exception_state.ThrowDOMException(
DOMExceptionCode::kSyntaxError,
"The URL contains a fragment identifier ('" +
url_.FragmentIdentifier() +
"'). Fragment identifiers are not allowed in WebSocket URLs.");
return ConnectResult::kException;
}
if (!execution_context->GetContentSecurityPolicyForCurrentWorld()
->AllowConnectToSource(url_, url_, RedirectStatus::kNoRedirect)) {
state_ = kClosed;
return ConnectResult::kAsyncError;
}
// Fail if not all elements in |protocols| are valid.
for (const String& protocol : protocols) {
if (!IsValidSubprotocolString(protocol)) {
state_ = kClosed;
exception_state.ThrowDOMException(DOMExceptionCode::kSyntaxError,
"The subprotocol '" +
EncodeSubprotocolString(protocol) +
"' is invalid.");
return ConnectResult::kException;
}
}
// Fail if there're duplicated elements in |protocols|.
HashSet<String> visited;
for (const String& protocol : protocols) {
if (!visited.insert(protocol).is_new_entry) {
state_ = kClosed;
exception_state.ThrowDOMException(DOMExceptionCode::kSyntaxError,
"The subprotocol '" +
EncodeSubprotocolString(protocol) +
"' is duplicated.");
return ConnectResult::kException;
}
}
String protocol_string;
if (!protocols.empty())
protocol_string = JoinStrings(protocols, kWebSocketSubprotocolSeparator);
if (!channel->Connect(url_, protocol_string)) {
state_ = kClosed;
exception_state.ThrowSecurityError(
"An insecure WebSocket connection may not be initiated from a page "
"loaded over HTTPS.");
channel->Disconnect();
return ConnectResult::kException;
}
return ConnectResult::kSuccess;
}
void WebSocketCommon::CloseInternal(std::optional<uint16_t> code,
const String& reason,
WebSocketChannel* channel,
ExceptionState& exception_state) {
if (code) {
DVLOG(1) << "WebSocket " << this << " close() code=" << code.value()
<< " reason=" << reason;
} else {
DVLOG(1) << "WebSocket " << this << " close() without code and reason";
}
const std::optional<uint16_t> maybe_code =
ValidateCloseCodeAndReason(code, reason, exception_state);
const int valid_code = maybe_code
? static_cast<int>(maybe_code.value())
: WebSocketChannel::kCloseEventCodeNotSpecified;
if (exception_state.HadException()) {
return;
}
if (state_ == kClosing || state_ == kClosed)
return;
if (state_ == kConnecting) {
state_ = kClosing;
channel->Fail(
"WebSocket is closed before the connection is established.",
mojom::ConsoleMessageLevel::kWarning,
std::make_unique<SourceLocation>(String(), String(), 0, 0, nullptr));
return;
}
state_ = kClosing;
if (channel)
channel->Close(valid_code, reason);
}
inline bool WebSocketCommon::IsValidSubprotocolCharacter(UChar character) {
const UChar kMinimumProtocolCharacter = '!'; // U+0021.
const UChar kMaximumProtocolCharacter = '~'; // U+007E.
// Set to true if character does not matches "separators" ABNF defined in
// RFC2616. SP and HT are excluded since the range check excludes them.
bool is_not_separator =
character != '"' && character != '(' && character != ')' &&
character != ',' && character != '/' &&
!(character >= ':' &&
character <=
'@') // U+003A - U+0040 (':', ';', '<', '=', '>', '?', '@').
&& !(character >= '[' &&
character <= ']') // U+005B - U+005D ('[', '\\', ']').
&& character != '{' && character != '}';
return character >= kMinimumProtocolCharacter &&
character <= kMaximumProtocolCharacter && is_not_separator;
}
bool WebSocketCommon::IsValidSubprotocolString(const String& protocol) {
if (protocol.empty())
return false;
for (wtf_size_t i = 0; i < protocol.length(); ++i) {
if (!IsValidSubprotocolCharacter(protocol[i]))
return false;
}
return true;
}
String WebSocketCommon::EncodeSubprotocolString(const String& protocol) {
StringBuilder builder;
for (wtf_size_t i = 0; i < protocol.length(); i++) {
if (protocol[i] < 0x20 || protocol[i] > 0x7E)
builder.AppendFormat("\\u%04X", protocol[i]);
else if (protocol[i] == 0x5c)
builder.Append("\\\\");
else
builder.Append(protocol[i]);
}
return builder.ToString();
}
String WebSocketCommon::JoinStrings(const Vector<String>& strings,
const char* separator) {
StringBuilder builder;
for (wtf_size_t i = 0; i < strings.size(); ++i) {
if (i)
builder.Append(separator);
builder.Append(strings[i]);
}
return builder.ToString();
}
std::optional<uint16_t> WebSocketCommon::ValidateCloseCodeAndReason(
std::optional<uint16_t> code,
const String& reason,
ExceptionState& exception_state) {
if (code) {
const uint16_t close_code = code.value();
if (!(close_code == WebSocketChannel::kCloseEventCodeNormalClosure ||
(WebSocketChannel::kCloseEventCodeMinimumUserDefined <= close_code &&
close_code <=
WebSocketChannel::kCloseEventCodeMaximumUserDefined))) {
exception_state.ThrowDOMException(
DOMExceptionCode::kInvalidAccessError,
"The close code must be either 1000, or between 3000 and 4999. " +
String::Number(close_code) + " is neither.");
return code;
}
} else if (!reason.empty()) {
code = WebSocketChannel::kCloseEventCodeNormalClosure;
}
// Bindings specify USVString, so unpaired surrogates are already replaced
// with U+FFFD.
StringUTF8Adaptor utf8(reason);
if (utf8.size() > kMaxReasonSizeInBytes) {
exception_state.ThrowDOMException(
DOMExceptionCode::kSyntaxError,
"The close reason must not be greater than " +
String::Number(kMaxReasonSizeInBytes) + " UTF-8 bytes.");
return code;
}
return code;
}
} // namespace blink
|