1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-08-09 20:42:44 +03:00
Files
mvfst/quic/state/QuicStreamManager.cpp
Luca Niccolini 03d1efac7d Revert D14757064: [quic] Fix peek callback
Differential Revision:
D14757064

Original commit changeset: bb1e43762f54

fbshipit-source-id: 9855ea175179b9652e0ec9e0a649769a60268600
2019-05-16 18:36:52 -07:00

433 lines
15 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
#include "quic/state/QuicStreamManager.h"
#include <quic/state/QuicStreamUtilities.h>
namespace quic {
/**
* Updates the head of line blocked time for the stream. This should be called
* on new data received or even data being read from the stream.
* There are 2 cases when you can become head of line blocked:
* 1. You're not previously holb. You receive new data which cannot be read.
* 2. You are not head of line blocked. You read data from the stream, but you
* discover a hole.
*
* You can become not head of line blocked if the following conditions happen:
* 1. You were head of line blocked, and you receive something that allows you
* to read from the stream.
* 2. You were head of line blocked, but you receive a reset from the peer.
*/
static void updateHolBlockedTime(QuicStreamState& stream) {
// No data has arrived, or the current stream offset matches
// the stream offset that has been read so far. Stream is not HOL-blocked
// (although may be blocked on missing data).
// If there is no more data to read, or if the current read offset
// matches the read offset in the front queue, a potential HOL block
// becomes unblocked.
if (stream.readBuffer.empty() ||
(stream.currentReadOffset == stream.readBuffer.front().offset)) {
// If we were previously HOL blocked, we're not any more.
// Update the total HOLB time and reset the latch.
if (stream.lastHolbTime) {
stream.totalHolbTime +=
std::chrono::duration_cast<std::chrono::microseconds>(
Clock::now() - *stream.lastHolbTime);
stream.lastHolbTime = folly::none;
}
return;
}
// No HOL unblocking event has occured. If we are already HOL bloked,
// we remain HOL blocked.
if (stream.lastHolbTime) {
return;
}
// If we were previously not HOL blocked, we are now.
stream.lastHolbTime = Clock::now();
stream.holbCount++;
}
static bool isStreamUnopened(
StreamId streamId,
StreamId nextAcceptableStreamId) {
return streamId >= nextAcceptableStreamId;
}
// If a stream is un-opened, this automatically creates all lower streams.
// Returns false if the stream is closed or already opened.
static LocalErrorCode openStreamIfNotClosed(
StreamId streamId,
std::deque<StreamId>& openStreams,
StreamId& nextAcceptableStreamId,
StreamId maxStreamId) {
if (streamId < nextAcceptableStreamId) {
return LocalErrorCode::CREATING_EXISTING_STREAM;
}
if (streamId >= maxStreamId) {
return LocalErrorCode::STREAM_LIMIT_EXCEEDED;
}
// Since this is a deque just insert at the back and sort after. The swapping
// has lower constant time operations than inserting into the proper sorted
// positions.
// TODO We can do better than this. We probably don't want a deque.
StreamId start = nextAcceptableStreamId;
while (start <= streamId) {
openStreams.push_back(start);
start += detail::kStreamIncrement;
}
std::sort(openStreams.begin(), openStreams.end());
if (streamId >= nextAcceptableStreamId) {
nextAcceptableStreamId = streamId + detail::kStreamIncrement;
}
return LocalErrorCode::NO_ERROR;
}
QuicStreamState* QuicStreamManager::findStream(StreamId streamId) {
auto lookup = streams_.find(streamId);
if (lookup == streams_.end()) {
return nullptr;
} else {
return &lookup->second;
}
}
void QuicStreamManager::setMaxLocalBidirectionalStreams(
uint64_t maxStreams,
bool force) {
if (maxStreams > kMaxMaxStreams) {
throw QuicTransportException(
"Attempt to set maxStreams beyond the max allowed.",
TransportErrorCode::STREAM_LIMIT_ERROR);
}
StreamId maxStreamId =
maxStreams * detail::kStreamIncrement + initialBidirectionalStreamId_;
if (force || maxStreamId > maxLocalBidirectionalStreamId_) {
maxLocalBidirectionalStreamId_ = maxStreamId;
}
}
void QuicStreamManager::setMaxLocalUnidirectionalStreams(
uint64_t maxStreams,
bool force) {
if (maxStreams > kMaxMaxStreams) {
throw QuicTransportException(
"Attempt to set maxStreams beyond the max allowed.",
TransportErrorCode::STREAM_LIMIT_ERROR);
}
StreamId maxStreamId =
maxStreams * detail::kStreamIncrement + initialUnidirectionalStreamId_;
if (force || maxStreamId > maxLocalUnidirectionalStreamId_) {
maxLocalUnidirectionalStreamId_ = maxStreamId;
}
}
// We create local streams lazily. If a local stream was created
// but not allocated yet, this will allocate a stream.
// This will return nullptr if a stream is closed or un-opened.
QuicStreamState* FOLLY_NULLABLE
QuicStreamManager::getOrCreateOpenedLocalStream(StreamId streamId) {
auto streamIdx =
std::find(openLocalStreams_.begin(), openLocalStreams_.end(), streamId);
if (streamIdx != openLocalStreams_.end()) {
// Open a lazily created stream.
auto it = streams_.emplace(
std::piecewise_construct,
std::forward_as_tuple(streamId),
std::forward_as_tuple(streamId, conn_));
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
return &it.first->second;
}
return nullptr;
}
QuicStreamState* QuicStreamManager::getStream(StreamId streamId) {
if (isRemoteStream(nodeType_, streamId)) {
auto stream = getOrCreatePeerStream(streamId);
updateAppLimitedState();
return stream;
}
auto it = streams_.find(streamId);
if (it != streams_.end()) {
return &it->second;
}
auto stream = getOrCreateOpenedLocalStream(streamId);
auto nextAcceptableStreamId = isUnidirectionalStream(streamId)
? nextAcceptableLocalUnidirectionalStreamId_
: nextAcceptableLocalBidirectionalStreamId_;
if (!stream && isStreamUnopened(streamId, nextAcceptableStreamId)) {
throw QuicTransportException(
"Trying to get unopened local stream",
TransportErrorCode::STREAM_STATE_ERROR);
}
updateAppLimitedState();
return stream;
}
folly::Expected<QuicStreamState*, LocalErrorCode>
QuicStreamManager::createNextBidirectionalStream() {
auto stream = createStream(nextBidirectionalStreamId_);
nextBidirectionalStreamId_ += detail::kStreamIncrement;
return stream;
}
folly::Expected<QuicStreamState*, LocalErrorCode>
QuicStreamManager::createNextUnidirectionalStream() {
auto stream = createStream(nextUnidirectionalStreamId_);
nextUnidirectionalStreamId_ += detail::kStreamIncrement;
return stream;
}
QuicStreamState* FOLLY_NULLABLE
QuicStreamManager::getOrCreatePeerStream(StreamId streamId) {
// This function maintains 4 invariants:
// 1. Streams below nextAcceptableStreamId are streams that have been
// seen before. Everything above can be opened.
// 2. Streams that have been seen before, always have an entry in
// openPeerStreams. If a stream below nextAcceptableStreamId does not
// have an entry in openPeerStreams, then it is closed.
// 3. openPeerStreams is ordered by streamId.
// 4. If streamId n is open all streams < n will be seen.
// It also tries to create the entire state for a stream in a lazy manner.
// Validate the stream id is correct
if (nodeType_ == QuicNodeType::Client && isClientStream(streamId)) {
throw QuicTransportException(
"Attempted getting client peer stream on client",
TransportErrorCode::STREAM_STATE_ERROR);
} else if (nodeType_ == QuicNodeType::Server && isServerStream(streamId)) {
throw QuicTransportException(
"Attempted getting server peer stream on server",
TransportErrorCode::STREAM_STATE_ERROR);
} else if (!isClientStream(streamId) && !isServerStream(streamId)) {
throw QuicTransportException(
"Invalid stream", TransportErrorCode::STREAM_STATE_ERROR);
}
auto peerStream = streams_.find(streamId);
if (peerStream != streams_.end()) {
return &peerStream->second;
}
auto streamIdx =
std::find(openPeerStreams_.begin(), openPeerStreams_.end(), streamId);
if (streamIdx != openPeerStreams_.end()) {
// Stream was already open, create the state for it lazily.
auto it = streams_.emplace(
std::piecewise_construct,
std::forward_as_tuple(streamId),
std::forward_as_tuple(streamId, conn_));
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
return &it.first->second;
}
auto previousPeerStreams = openPeerStreams_;
auto& nextAcceptableStreamId = isUnidirectionalStream(streamId)
? nextAcceptablePeerUnidirectionalStreamId_
: nextAcceptablePeerBidirectionalStreamId_;
auto maxStreamId = isUnidirectionalStream(streamId)
? maxRemoteUnidirectionalStreamId_
: maxRemoteBidirectionalStreamId_;
auto openedResult = openStreamIfNotClosed(
streamId, openPeerStreams_, nextAcceptableStreamId, maxStreamId);
if (openedResult == LocalErrorCode::CREATING_EXISTING_STREAM) {
// Stream could be closed here.
return nullptr;
} else if (openedResult == LocalErrorCode::STREAM_LIMIT_EXCEEDED) {
throw QuicTransportException(
"Exceeded stream limit.", TransportErrorCode::STREAM_LIMIT_ERROR);
}
// Copy over the new streams.
std::set_difference(
openPeerStreams_.begin(),
openPeerStreams_.end(),
std::make_move_iterator(previousPeerStreams.begin()),
std::make_move_iterator(previousPeerStreams.end()),
std::back_inserter(newPeerStreams_));
auto it = streams_.emplace(
std::piecewise_construct,
std::forward_as_tuple(streamId),
std::forward_as_tuple(streamId, conn_));
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
return &it.first->second;
}
folly::Expected<QuicStreamState*, LocalErrorCode>
QuicStreamManager::createStream(StreamId streamId) {
if (nodeType_ == QuicNodeType::Client && !isClientStream(streamId)) {
throw QuicTransportException(
"Attempted creating non-client stream on client",
TransportErrorCode::STREAM_STATE_ERROR);
} else if (nodeType_ == QuicNodeType::Server && !isServerStream(streamId)) {
throw QuicTransportException(
"Attempted creating non-server stream on server",
TransportErrorCode::STREAM_STATE_ERROR);
}
if (streams_.count(streamId) > 0) {
throw QuicTransportException(
"Creating an active stream", TransportErrorCode::STREAM_STATE_ERROR);
}
auto existingStream = getOrCreateOpenedLocalStream(streamId);
if (existingStream) {
return existingStream;
}
auto& nextAcceptableStreamId = isUnidirectionalStream(streamId)
? nextAcceptableLocalUnidirectionalStreamId_
: nextAcceptableLocalBidirectionalStreamId_;
auto maxStreamId = isUnidirectionalStream(streamId)
? maxLocalUnidirectionalStreamId_
: maxLocalBidirectionalStreamId_;
auto openedResult = openStreamIfNotClosed(
streamId, openLocalStreams_, nextAcceptableStreamId, maxStreamId);
if (openedResult != LocalErrorCode::NO_ERROR) {
return folly::makeUnexpected(openedResult);
}
auto it = streams_.emplace(
std::piecewise_construct,
std::forward_as_tuple(streamId),
std::forward_as_tuple(streamId, conn_));
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
updateAppLimitedState();
return &it.first->second;
}
void QuicStreamManager::removeClosedStream(StreamId streamId) {
auto it = streams_.find(streamId);
if (it == streams_.end()) {
VLOG(10) << "Trying to remove already closed stream=" << streamId;
return;
}
VLOG(10) << "Removing closed stream=" << streamId;
bool inTerminalStates = it->second.inTerminalStates();
DCHECK(inTerminalStates);
readableStreams_.erase(streamId);
peekableStreams_.erase(streamId);
writableStreams_.erase(streamId);
blockedStreams_.erase(streamId);
deliverableStreams_.erase(streamId);
windowUpdates_.erase(streamId);
auto itr = std::find(lossStreams_.begin(), lossStreams_.end(), streamId);
if (itr != lossStreams_.end()) {
lossStreams_.erase(itr);
}
auto stopItr = stopSendingStreams_.find(streamId);
if (stopItr != stopSendingStreams_.end()) {
stopSendingStreams_.erase(stopItr);
}
if (it->second.isControl) {
DCHECK_GT(numControlStreams_, 0);
numControlStreams_--;
}
streams_.erase(it);
QUIC_STATS(conn_.infoCallback, onQuicStreamClosed);
auto streamItr =
std::find(openPeerStreams_.begin(), openPeerStreams_.end(), streamId);
if (streamItr != openPeerStreams_.end()) {
openPeerStreams_.erase(streamItr);
} else {
streamItr =
std::find(openLocalStreams_.begin(), openLocalStreams_.end(), streamId);
if (streamItr != openLocalStreams_.end()) {
openLocalStreams_.erase(streamItr);
}
}
updateAppLimitedState();
}
void QuicStreamManager::updateLossStreams(QuicStreamState& stream) {
auto it = std::find(lossStreams_.begin(), lossStreams_.end(), stream.id);
if (!stream.lossBuffer.empty()) {
if (it == lossStreams_.end()) {
lossStreams_.push_back(stream.id);
}
} else if (it != lossStreams_.end()) {
lossStreams_.erase(it);
}
}
void QuicStreamManager::updateReadableStreams(QuicStreamState& stream) {
updateHolBlockedTime(stream);
auto itr = readableStreams_.find(stream.id);
if (!stream.hasReadableData() && !stream.streamReadError.hasValue()) {
if (itr != readableStreams_.end()) {
VLOG(10) << __func__ << " remove stream=" << stream.id << " "
<< stream.conn;
readableStreams_.erase(itr);
}
return;
}
if (itr == readableStreams_.end()) {
VLOG(10) << __func__ << " add stream=" << stream.id << " " << stream.conn;
readableStreams_.insert(stream.id);
} else {
VLOG(10) << __func__ << " exists stream=" << stream.id << " "
<< stream.conn;
}
}
void QuicStreamManager::updateWritableStreams(QuicStreamState& stream) {
if (stream.hasWritableData() && !stream.streamWriteError.hasValue()) {
stream.conn.streamManager->addWritable(stream.id);
} else {
stream.conn.streamManager->removeWritable(stream.id);
}
}
void QuicStreamManager::updatePeekableStreams(QuicStreamState& stream) {
auto itr = peekableStreams_.find(stream.id);
if (!stream.hasPeekableData() || stream.streamReadError.hasValue()) {
if (itr != peekableStreams_.end()) {
VLOG(10) << __func__ << " remove stream=" << stream.id << " "
<< stream.conn;
peekableStreams_.erase(itr);
}
return;
}
if (itr == peekableStreams_.end()) {
VLOG(10) << __func__ << " add stream=" << stream.id << " " << stream.conn;
peekableStreams_.insert(stream.id);
} else {
VLOG(10) << __func__ << " exists stream=" << stream.id << " "
<< stream.conn;
}
}
void QuicStreamManager::updateAppLimitedState() {
bool currentNonCtrlStreams = hasNonCtrlStreams();
if (isAppLimited_ && !currentNonCtrlStreams) {
// We were app limited, and we continue to be app limited.
return;
} else if (!isAppLimited_ && currentNonCtrlStreams) {
// We were not app limited, and we continue to be not app limited.
return;
}
isAppLimited_ = !currentNonCtrlStreams;
if (conn_.congestionController) {
conn_.congestionController->setAppLimited(isAppLimited_, Clock::now());
}
}
void QuicStreamManager::setStreamAsControl(QuicStreamState& stream) {
if (!stream.isControl) {
stream.isControl = true;
numControlStreams_++;
}
updateAppLimitedState();
}
bool QuicStreamManager::isAppLimited() const {
return isAppLimited_;
}
} // namespace quic