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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// HttpLog.h should generally be included first
#include "HttpLog.h"
#include "Http3WebTransportSession.h"
#include "Http3WebTransportStream.h"
#include "Http3Session.h"
#include "Http3Stream.h"
#include "nsHttpRequestHead.h"
#include "nsHttpTransaction.h"
#include "nsIClassOfService.h"
#include "nsISocketTransport.h"
#include "nsSocketTransportService2.h"
#include "nsIOService.h"
#include "nsHttpHandler.h"
namespace mozilla::net {
//-----------------------------------------------------------------------------
// Http3TunnelStreamBase
//-----------------------------------------------------------------------------
Http3TunnelStreamBase::Http3TunnelStreamBase(nsAHttpTransaction* trans,
Http3SessionBase* aHttp3Session)
: Http3StreamBase(trans, aHttp3Session) {}
bool Http3TunnelStreamBase::ConsumeHeaders(const char* buf, uint32_t avail,
uint32_t* countUsed) {
LOG3(("Http3TunnelStreamBase::ConsumeHeaders %p avail=%u.", this, avail));
mFlatHttpRequestHeaders.Append(buf, avail);
// We can use the simple double crlf because firefox is the
// only client we are parsing
int32_t endHeader = mFlatHttpRequestHeaders.Find("\r\n\r\n");
if (endHeader == kNotFound) {
// We don't have all the headers yet
LOG3(
("Http3TunnelStreamBase::ConsumeHeaders %p "
"Need more header bytes. Len = %zu",
this, mFlatHttpRequestHeaders.Length()));
*countUsed = avail;
return false;
}
uint32_t oldLen = mFlatHttpRequestHeaders.Length();
mFlatHttpRequestHeaders.SetLength(endHeader + 2);
*countUsed = avail - (oldLen - endHeader) + 4;
return true;
}
nsresult Http3TunnelStreamBase::TryActivating() {
LOG(("Http3TunnelStreamBase::TryActivating [this=%p]", this));
nsHttpRequestHead* head = mTransaction->RequestHead();
nsAutoCString host;
nsresult rv = head->GetHeader(nsHttp::Host, host);
if (NS_FAILED(rv)) {
MOZ_ASSERT(false);
return rv;
}
nsAutoCString path;
head->Path(path);
return mSession->TryActivating(""_ns, ""_ns, host, path,
mFlatHttpRequestHeaders, &mStreamId, this);
}
nsresult Http3TunnelStreamBase::ReadSegments() {
LOG(("Http3TunnelStreamBase::ReadSegments %p mSendState=%d mRecvState=%d",
this, mSendState, mRecvState));
if (mSendState == PROCESSING_DATAGRAM) {
return OnProcessDatagram();
}
if ((mRecvState == RECV_DONE) || (mRecvState == ACTIVE) ||
(mRecvState == CLOSE_PENDING)) {
// Don't transmit any request frames if the peer cannot respond or respone
// is already done.
LOG3(
("Http3TunnelStreamBase %p ReadSegments request stream aborted due to"
" response side closure\n",
this));
return NS_ERROR_ABORT;
}
nsresult rv = NS_OK;
uint32_t transactionBytes;
bool again = true;
do {
transactionBytes = 0;
rv = mSocketOutCondition = NS_OK;
LOG(("Http3TunnelStreamBase::ReadSegments state=%d [this=%p]", mSendState,
this));
switch (mSendState) {
case PREPARING_HEADERS: {
rv = mTransaction->ReadSegmentsAgain(
this, nsIOService::gDefaultSegmentSize, &transactionBytes, &again);
} break;
case WAITING_TO_ACTIVATE: {
// A transaction that had already generated its headers before it was
// queued at the session level (due to concurrency concerns) may not
// call onReadSegment off the ReadSegments() stack above.
LOG3(
("Http3TunnelStreamBase %p ReadSegments forcing OnReadSegment "
"call\n",
this));
uint32_t wasted = 0;
nsresult rv2 = OnReadSegment("", 0, &wasted);
LOG3((" OnReadSegment returned 0x%08" PRIx32,
static_cast<uint32_t>(rv2)));
} break;
default:
transactionBytes = 0;
rv = NS_OK;
break;
}
LOG(("Http3TunnelStreamBase::ReadSegments rv=0x%" PRIx32
" read=%u sock-cond=%" PRIx32 " again=%d [this=%p]",
static_cast<uint32_t>(rv), transactionBytes,
static_cast<uint32_t>(mSocketOutCondition), again, this));
// XXX some streams return NS_BASE_STREAM_CLOSED to indicate EOF.
if (rv == NS_BASE_STREAM_CLOSED && !mTransaction->IsDone()) {
rv = NS_OK;
transactionBytes = 0;
}
if (NS_FAILED(rv)) {
// if the transaction didn't want to write any more data, then
// wait for the transaction to call ResumeSend.
if (rv == NS_BASE_STREAM_WOULD_BLOCK) {
rv = NS_OK;
}
again = false;
} else if (NS_FAILED(mSocketOutCondition)) {
if (mSocketOutCondition != NS_BASE_STREAM_WOULD_BLOCK) {
rv = mSocketOutCondition;
}
again = false;
} else if (!transactionBytes) {
mTransaction->OnTransportStatus(nullptr, NS_NET_STATUS_WAITING_FOR, 0);
rv = NS_OK;
again = false;
}
// write more to the socket until error or end-of-request...
} while (again && gHttpHandler->Active());
return rv;
}
nsresult Http3TunnelStreamBase::WriteSegments() {
LOG(("Http3TunnelStreamBase::WriteSegments [this=%p]", this));
nsresult rv = NS_OK;
uint32_t countWrittenSingle = 0;
bool again = true;
if (mRecvState == CLOSE_PENDING) {
OnClosePending();
mRecvState = RECV_DONE;
// This will closed the steam because the stream is Done().
return NS_OK;
}
do {
mSocketInCondition = NS_OK;
countWrittenSingle = 0;
rv = mTransaction->WriteSegmentsAgain(
this, nsIOService::gDefaultSegmentSize, &countWrittenSingle, &again);
LOG(("Http3TunnelStreamBase::WriteSegments rv=0x%" PRIx32
" countWrittenSingle=%" PRIu32 " socketin=%" PRIx32 " [this=%p]",
static_cast<uint32_t>(rv), countWrittenSingle,
static_cast<uint32_t>(mSocketInCondition), this));
if (mTransaction->IsDone()) {
// An HTTP transaction used for setting up a WebTransport session will
// receive only response headers and afterward, it will be marked as
// done. At this point, the session negotiation has finished and the
// WebTransport session transfers into the ACTIVE state.
mRecvState = ACTIVE;
}
if (NS_FAILED(rv)) {
// if the transaction didn't want to take any more data, then
// wait for the transaction to call ResumeRecv.
if (rv == NS_BASE_STREAM_WOULD_BLOCK) {
rv = NS_OK;
}
again = false;
} else if (NS_FAILED(mSocketInCondition)) {
if (mSocketInCondition != NS_BASE_STREAM_WOULD_BLOCK) {
rv = mSocketInCondition;
}
again = false;
} else if (mRecvState == ACTIVE) {
// again = false;
again = OnActivated();
}
// read more from the socket until error...
} while (again && gHttpHandler->Active());
return rv;
}
void Http3TunnelStreamBase::SetResponseHeaders(
nsTArray<uint8_t>& aResponseHeaders, bool fin, bool interim) {
MOZ_ASSERT(mRecvState == BEFORE_HEADERS ||
mRecvState == READING_INTERIM_HEADERS);
mFlatResponseHeaders.AppendElements(aResponseHeaders);
mRecvState = (interim) ? READING_INTERIM_HEADERS : READING_HEADERS;
}
nsresult Http3TunnelStreamBase::OnWriteSegment(char* buf, uint32_t count,
uint32_t* countWritten) {
LOG(("Http3TunnelStreamBase::OnWriteSegment [this=%p, state=%d", this,
mRecvState));
nsresult rv = NS_OK;
switch (mRecvState) {
case BEFORE_HEADERS: {
*countWritten = 0;
rv = NS_BASE_STREAM_WOULD_BLOCK;
} break;
case READING_HEADERS:
case READING_INTERIM_HEADERS: {
// SetResponseHeaders should have been previously called.
MOZ_ASSERT(!mFlatResponseHeaders.IsEmpty(), "Headers empty!");
*countWritten = (mFlatResponseHeaders.Length() > count)
? count
: mFlatResponseHeaders.Length();
memcpy(buf, mFlatResponseHeaders.Elements(), *countWritten);
mFlatResponseHeaders.RemoveElementsAt(0, *countWritten);
if (mFlatResponseHeaders.Length() == 0) {
if (mRecvState == READING_INTERIM_HEADERS) {
// neqo makes sure that fin cannot be received before the final
// headers are received.
mRecvState = BEFORE_HEADERS;
} else {
mRecvState = ACTIVE;
}
}
if (*countWritten == 0) {
rv = NS_BASE_STREAM_WOULD_BLOCK;
} else {
mTransaction->OnTransportStatus(nullptr, NS_NET_STATUS_RECEIVING_FROM,
0);
}
} break;
case ACTIVE:
case CLOSE_PENDING:
case RECV_DONE:
rv = NS_ERROR_UNEXPECTED;
}
// Remember the error received from lower layers. A stream pipe may overwrite
// it.
// If rv == NS_OK this will reset mSocketInCondition.
mSocketInCondition = rv;
return rv;
}
nsresult Http3TunnelStreamBase::OnReadSegment(const char* buf, uint32_t count,
uint32_t* countRead) {
LOG(("Http3TunnelStreamBase::OnReadSegment count=%u state=%d [this=%p]",
count, mSendState, this));
nsresult rv = NS_OK;
switch (mSendState) {
case PREPARING_HEADERS: {
if (!ConsumeHeaders(buf, count, countRead)) {
break;
}
mSendState = WAITING_TO_ACTIVATE;
}
[[fallthrough]];
case WAITING_TO_ACTIVATE:
rv = TryActivating();
if (rv == NS_BASE_STREAM_WOULD_BLOCK) {
LOG3(
("Http3TunnelStreamBase::OnReadSegment %p cannot activate now. "
"queued.\n",
this));
break;
}
if (NS_FAILED(rv)) {
LOG3(
("Http3TunnelStreamBase::OnReadSegment %p cannot activate "
"error=0x%" PRIx32 ".",
this, static_cast<uint32_t>(rv)));
break;
}
// Successfully activated.
mTransaction->OnTransportStatus(nullptr, NS_NET_STATUS_SENDING_TO, 0);
mSendState = PROCESSING_DATAGRAM;
break;
default:
MOZ_ASSERT(false, "We are done sending this request!");
rv = NS_ERROR_UNEXPECTED;
break;
}
mSocketOutCondition = rv;
return mSocketOutCondition;
}
void Http3TunnelStreamBase::TransactionIsDone(nsresult aResult) {
mTransaction->Close(aResult);
mTransaction = nullptr;
}
//-----------------------------------------------------------------------------
// Http3WebTransportSession
//-----------------------------------------------------------------------------
Http3WebTransportSession::Http3WebTransportSession(nsAHttpTransaction* trans,
Http3Session* aHttp3Session)
: Http3TunnelStreamBase(trans, aHttp3Session) {
LOG(("Http3WebTransportSession ctor %p", this));
}
Http3WebTransportSession::~Http3WebTransportSession() = default;
uint64_t Http3WebTransportSession::GetStreamId() const {
return Http3StreamBase::StreamId();
}
void Http3WebTransportSession::Close(nsresult aResult) {
LOG(("Http3WebTransportSession::Close %p", this));
if (mListener) {
mListener->OnSessionClosed(NS_SUCCEEDED(aResult), 0, ""_ns);
mListener = nullptr;
}
if (mTransaction) {
mTransaction->Close(aResult);
mTransaction = nullptr;
}
mRecvState = RECV_DONE;
mSendState = SEND_DONE;
if (mSession) {
mSession->CloseWebTransportConn();
mSession = nullptr;
}
}
void Http3WebTransportSession::OnClosePending() {
mSession->CloseWebTransport(mStreamId, mStatus, mReason);
}
void Http3WebTransportSession::OnSessionClosed(bool aCleanly, uint32_t aStatus,
const nsACString& aReason) {
if (mTransaction) {
mTransaction->Close(NS_BASE_STREAM_CLOSED);
mTransaction = nullptr;
}
if (mListener) {
mListener->OnSessionClosed(aCleanly, aStatus, aReason);
mListener = nullptr;
}
mRecvState = RECV_DONE;
mSendState = SEND_DONE;
mSession->CloseWebTransportConn();
}
void Http3WebTransportSession::CloseSession(uint32_t aStatus,
const nsACString& aReason) {
if ((mRecvState != CLOSE_PENDING) && (mRecvState != RECV_DONE)) {
mStatus = aStatus;
mReason = aReason;
mSession->ConnectSlowConsumer(this);
mRecvState = CLOSE_PENDING;
mSendState = SEND_DONE;
}
mListener = nullptr;
}
void Http3WebTransportSession::CreateOutgoingBidirectionalStream(
std::function<void(Result<RefPtr<WebTransportStreamBase>, nsresult>&&)>&&
aCallback) {
return CreateStreamInternal(true, std::move(aCallback));
}
void Http3WebTransportSession::CreateOutgoingUnidirectionalStream(
std::function<void(Result<RefPtr<WebTransportStreamBase>, nsresult>&&)>&&
aCallback) {
return CreateStreamInternal(false, std::move(aCallback));
}
void Http3WebTransportSession::CreateStreamInternal(
bool aBidi,
std::function<void(Result<RefPtr<WebTransportStreamBase>, nsresult>&&)>&&
aCallback) {
LOG(("Http3WebTransportSession::CreateStreamInternal this=%p aBidi=%d", this,
aBidi));
if (mRecvState != ACTIVE) {
aCallback(Err(NS_ERROR_NOT_AVAILABLE));
return;
}
RefPtr<Http3WebTransportStream> stream =
aBidi ? new Http3WebTransportStream(mSession, mStreamId,
WebTransportStreamType::BiDi,
std::move(aCallback))
: new Http3WebTransportStream(mSession, mStreamId,
WebTransportStreamType::UniDi,
std::move(aCallback));
mSession->StreamHasDataToWrite(stream);
// Put the newly created stream in to |mStreams| to keep it alive.
mStreams.AppendElement(std::move(stream));
}
// This is called by Http3Session::TryActivatingWebTransportStream. When called,
// this means a WebTransport stream is successfully activated and the stream
// will be managed by Http3Session.
void Http3WebTransportSession::RemoveWebTransportStream(
Http3WebTransportStream* aStream) {
LOG(
("Http3WebTransportSession::RemoveWebTransportStream "
"this=%p aStream=%p",
this, aStream));
DebugOnly<bool> existed = mStreams.RemoveElement(aStream);
MOZ_ASSERT(existed);
}
already_AddRefed<Http3WebTransportStream>
Http3WebTransportSession::OnIncomingWebTransportStream(
WebTransportStreamType aType, uint64_t aId) {
LOG(
("Http3WebTransportSession::OnIncomingWebTransportStream "
"this=%p",
this));
if (mRecvState != ACTIVE) {
return nullptr;
}
MOZ_ASSERT(!mTransaction);
RefPtr<Http3WebTransportStream> stream =
new Http3WebTransportStream(mSession, mStreamId, aType, aId);
if (NS_FAILED(stream->InitInputPipe())) {
return nullptr;
}
if (aType == WebTransportStreamType::BiDi) {
if (NS_FAILED(stream->InitOutputPipe())) {
return nullptr;
}
}
if (!mListener) {
return nullptr;
}
if (nsCOMPtr<WebTransportSessionEventListenerInternal> listener =
do_QueryInterface(mListener)) {
listener->OnIncomingStreamAvailableInternal(stream);
}
return stream.forget();
}
void Http3WebTransportSession::SendDatagram(nsTArray<uint8_t>&& aData,
uint64_t aTrackingId) {
MOZ_ASSERT(OnSocketThread(), "not on socket thread");
LOG(("Http3WebTransportSession::SendDatagram this=%p", this));
if (mSendState != PROCESSING_DATAGRAM) {
return;
}
mSession->SendDatagram(this, aData, aTrackingId);
mSession->StreamHasDataToWrite(this);
}
void Http3WebTransportSession::OnDatagramReceived(nsTArray<uint8_t>&& aData) {
MOZ_ASSERT(OnSocketThread(), "not on socket thread");
LOG(("Http3WebTransportSession::OnDatagramReceived this=%p", this));
if (mRecvState != ACTIVE || !mListener) {
return;
}
if (nsCOMPtr<WebTransportSessionEventListenerInternal> listener =
do_QueryInterface(mListener)) {
listener->OnDatagramReceivedInternal(std::move(aData));
}
}
void Http3WebTransportSession::GetMaxDatagramSize() {
MOZ_ASSERT(OnSocketThread(), "not on socket thread");
if (mRecvState != ACTIVE || !mListener) {
return;
}
uint64_t size = mSession->MaxDatagramSize(mStreamId);
mListener->OnMaxDatagramSize(size);
}
void Http3WebTransportSession::OnOutgoingDatagramOutCome(
uint64_t aId, WebTransportSessionEventListener::DatagramOutcome aOutCome) {
MOZ_ASSERT(OnSocketThread(), "not on socket thread");
LOG(("Http3WebTransportSession::OnOutgoingDatagramOutCome this=%p id=%" PRIx64
", outCome=%d mRecvState=%d",
this, aId, static_cast<uint32_t>(aOutCome), mRecvState));
if (mRecvState != ACTIVE || !mListener || !aId) {
return;
}
mListener->OnOutgoingDatagramOutCome(aId, aOutCome);
}
void Http3WebTransportSession::OnStreamStopSending(uint64_t aId,
nsresult aError) {
LOG(("OnStreamStopSending id:%" PRId64, aId));
if (!mListener) {
return;
}
mListener->OnStopSending(aId, aError);
}
void Http3WebTransportSession::OnStreamReset(uint64_t aId, nsresult aError) {
LOG(("OnStreamReset id:%" PRId64, aId));
if (!mListener) {
return;
}
mListener->OnResetReceived(aId, aError);
}
} // namespace mozilla::net
|