This source file includes following definitions.
- OnStreamFrames
- OnRstStream
- OnGoAway
- OnWindowUpdateFrames
- OnBlockedFrames
- OnCanWrite
- OnSuccessfulVersionNegotiation
- OnConnectionClosed
- OnWriteBlocked
- HasPendingWrites
- HasPendingHandshake
- has_pending_handshake_
- OnStreamFrames
- OnStreamHeaders
- OnStreamHeadersPriority
- OnStreamHeadersComplete
- OnRstStream
- OnGoAway
- OnConnectionClosed
- OnWindowUpdateFrames
- OnBlockedFrames
- OnCanWrite
- HasPendingWrites
- HasPendingHandshake
- WritevData
- WriteHeaders
- SendRstStream
- SendGoAway
- CloseStream
- CloseStreamInner
- IsEncryptionEstablished
- IsCryptoHandshakeConfirmed
- OnConfigNegotiated
- OnCryptoHandshakeEvent
- OnCryptoHandshakeMessageSent
- OnCryptoHandshakeMessageReceived
- config
- ActivateStream
- GetNextStreamId
- GetStream
- GetDataStream
- GetIncomingDataStream
- IsClosedStream
- GetNumOpenStreams
- MarkWriteBlocked
- HasDataToWrite
- GetSSLInfo
- PostProcessAfterData
#include "net/quic/quic_session.h"
#include "base/stl_util.h"
#include "net/quic/crypto/proof_verifier.h"
#include "net/quic/quic_connection.h"
#include "net/quic/quic_headers_stream.h"
#include "net/ssl/ssl_info.h"
using base::StringPiece;
using base::hash_map;
using base::hash_set;
using std::make_pair;
using std::vector;
namespace net {
#define ENDPOINT (is_server() ? "Server: " : " Client: ")
class VisitorShim : public QuicConnectionVisitorInterface {
public:
explicit VisitorShim(QuicSession* session) : session_(session) {}
virtual bool OnStreamFrames(const vector<QuicStreamFrame>& frames) OVERRIDE {
bool accepted = session_->OnStreamFrames(frames);
session_->PostProcessAfterData();
return accepted;
}
virtual void OnRstStream(const QuicRstStreamFrame& frame) OVERRIDE {
session_->OnRstStream(frame);
session_->PostProcessAfterData();
}
virtual void OnGoAway(const QuicGoAwayFrame& frame) OVERRIDE {
session_->OnGoAway(frame);
session_->PostProcessAfterData();
}
virtual void OnWindowUpdateFrames(const vector<QuicWindowUpdateFrame>& frames)
OVERRIDE {
session_->OnWindowUpdateFrames(frames);
session_->PostProcessAfterData();
}
virtual void OnBlockedFrames(const vector<QuicBlockedFrame>& frames)
OVERRIDE {
session_->OnBlockedFrames(frames);
session_->PostProcessAfterData();
}
virtual void OnCanWrite() OVERRIDE {
session_->OnCanWrite();
session_->PostProcessAfterData();
}
virtual void OnSuccessfulVersionNegotiation(
const QuicVersion& version) OVERRIDE {
session_->OnSuccessfulVersionNegotiation(version);
}
virtual void OnConnectionClosed(
QuicErrorCode error, bool from_peer) OVERRIDE {
session_->OnConnectionClosed(error, from_peer);
}
virtual void OnWriteBlocked() OVERRIDE {
session_->OnWriteBlocked();
}
virtual bool HasPendingWrites() const OVERRIDE {
return session_->HasPendingWrites();
}
virtual bool HasPendingHandshake() const OVERRIDE {
return session_->HasPendingHandshake();
}
private:
QuicSession* session_;
};
QuicSession::QuicSession(QuicConnection* connection,
const QuicConfig& config)
: connection_(connection),
visitor_shim_(new VisitorShim(this)),
config_(config),
max_open_streams_(config_.max_streams_per_connection()),
next_stream_id_(is_server() ? 2 : 3),
largest_peer_created_stream_id_(0),
error_(QUIC_NO_ERROR),
goaway_received_(false),
goaway_sent_(false),
has_pending_handshake_(false) {
connection_->set_visitor(visitor_shim_.get());
connection_->SetFromConfig(config_);
if (connection_->connected()) {
connection_->SetOverallConnectionTimeout(
config_.max_time_before_crypto_handshake());
}
headers_stream_.reset(new QuicHeadersStream(this));
if (!is_server()) {
DCHECK_EQ(kHeadersStreamId, next_stream_id_);
next_stream_id_ += 2;
}
}
QuicSession::~QuicSession() {
STLDeleteElements(&closed_streams_);
STLDeleteValues(&stream_map_);
}
bool QuicSession::OnStreamFrames(const vector<QuicStreamFrame>& frames) {
for (size_t i = 0; i < frames.size(); ++i) {
if (IsClosedStream(frames[i].stream_id)) {
continue;
}
ReliableQuicStream* stream = GetStream(frames[i].stream_id);
if (stream == NULL) return false;
if (!stream->WillAcceptStreamFrame(frames[i])) return false;
}
for (size_t i = 0; i < frames.size(); ++i) {
QuicStreamId stream_id = frames[i].stream_id;
ReliableQuicStream* stream = GetStream(stream_id);
if (!stream) {
continue;
}
stream->OnStreamFrame(frames[i]);
}
return true;
}
void QuicSession::OnStreamHeaders(QuicStreamId stream_id,
StringPiece headers_data) {
QuicDataStream* stream = GetDataStream(stream_id);
if (!stream) {
return;
}
stream->OnStreamHeaders(headers_data);
}
void QuicSession::OnStreamHeadersPriority(QuicStreamId stream_id,
QuicPriority priority) {
QuicDataStream* stream = GetDataStream(stream_id);
if (!stream) {
return;
}
stream->OnStreamHeadersPriority(priority);
}
void QuicSession::OnStreamHeadersComplete(QuicStreamId stream_id,
bool fin,
size_t frame_len) {
QuicDataStream* stream = GetDataStream(stream_id);
if (!stream) {
return;
}
stream->OnStreamHeadersComplete(fin, frame_len);
}
void QuicSession::OnRstStream(const QuicRstStreamFrame& frame) {
if (frame.stream_id == kCryptoStreamId) {
connection()->SendConnectionCloseWithDetails(
QUIC_INVALID_STREAM_ID,
"Attempt to reset the crypto stream");
return;
}
if (frame.stream_id == kHeadersStreamId) {
connection()->SendConnectionCloseWithDetails(
QUIC_INVALID_STREAM_ID,
"Attempt to reset the headers stream");
return;
}
QuicDataStream* stream = GetDataStream(frame.stream_id);
if (!stream) {
return;
}
stream->OnStreamReset(frame);
}
void QuicSession::OnGoAway(const QuicGoAwayFrame& frame) {
DCHECK(frame.last_good_stream_id < next_stream_id_);
goaway_received_ = true;
}
void QuicSession::OnConnectionClosed(QuicErrorCode error, bool from_peer) {
DCHECK(!connection_->connected());
if (error_ == QUIC_NO_ERROR) {
error_ = error;
}
while (!stream_map_.empty()) {
DataStreamMap::iterator it = stream_map_.begin();
QuicStreamId id = it->first;
it->second->OnConnectionClosed(error, from_peer);
if (stream_map_.find(id) != stream_map_.end()) {
LOG(DFATAL) << ENDPOINT
<< "Stream failed to close under OnConnectionClosed";
CloseStream(id);
}
}
}
void QuicSession::OnWindowUpdateFrames(
const vector<QuicWindowUpdateFrame>& frames) {
for (size_t i = 0; i < frames.size(); ++i) {
QuicStreamId stream_id = frames[i].stream_id;
if (stream_id == 0) {
DVLOG(1) << ENDPOINT
<< "Received connection level flow control window update with "
"byte offset: " << frames[i].byte_offset;
continue;
}
QuicDataStream* stream = GetDataStream(stream_id);
if (stream) {
stream->OnWindowUpdateFrame(frames[i]);
}
}
}
void QuicSession::OnBlockedFrames(const vector<QuicBlockedFrame>& frames) {
for (size_t i = 0; i < frames.size(); ++i) {
DVLOG(1) << ENDPOINT << "Received BLOCKED frame with stream id: "
<< frames[i].stream_id;
}
}
void QuicSession::OnCanWrite() {
size_t num_writes = write_blocked_streams_.NumBlockedStreams();
for (size_t i = 0; i < num_writes; ++i) {
if (!write_blocked_streams_.HasWriteBlockedStreams()) {
LOG(DFATAL) << "WriteBlockedStream is missing";
connection_->CloseConnection(QUIC_INTERNAL_ERROR, false);
return;
}
if (!connection_->CanWriteStreamData()) {
return;
}
QuicStreamId stream_id = write_blocked_streams_.PopFront();
if (stream_id == kCryptoStreamId) {
has_pending_handshake_ = false;
}
ReliableQuicStream* stream = GetStream(stream_id);
if (stream != NULL && !stream->IsFlowControlBlocked()) {
stream->OnCanWrite();
}
}
}
bool QuicSession::HasPendingWrites() const {
return write_blocked_streams_.HasWriteBlockedStreams();
}
bool QuicSession::HasPendingHandshake() const {
return has_pending_handshake_;
}
QuicConsumedData QuicSession::WritevData(
QuicStreamId id,
const IOVector& data,
QuicStreamOffset offset,
bool fin,
QuicAckNotifier::DelegateInterface* ack_notifier_delegate) {
return connection_->SendStreamData(id, data, offset, fin,
ack_notifier_delegate);
}
size_t QuicSession::WriteHeaders(
QuicStreamId id,
const SpdyHeaderBlock& headers,
bool fin,
QuicAckNotifier::DelegateInterface* ack_notifier_delegate) {
return headers_stream_->WriteHeaders(id, headers, fin, ack_notifier_delegate);
}
void QuicSession::SendRstStream(QuicStreamId id,
QuicRstStreamErrorCode error,
QuicStreamOffset bytes_written) {
connection_->SendRstStream(id, error, bytes_written);
CloseStreamInner(id, true);
}
void QuicSession::SendGoAway(QuicErrorCode error_code, const string& reason) {
if (goaway_sent_) {
return;
}
goaway_sent_ = true;
connection_->SendGoAway(error_code, largest_peer_created_stream_id_, reason);
}
void QuicSession::CloseStream(QuicStreamId stream_id) {
CloseStreamInner(stream_id, false);
}
void QuicSession::CloseStreamInner(QuicStreamId stream_id,
bool locally_reset) {
DVLOG(1) << ENDPOINT << "Closing stream " << stream_id;
DataStreamMap::iterator it = stream_map_.find(stream_id);
if (it == stream_map_.end()) {
DVLOG(1) << ENDPOINT << "Stream is already closed: " << stream_id;
return;
}
QuicDataStream* stream = it->second;
if (locally_reset) {
stream->set_rst_sent(true);
}
closed_streams_.push_back(it->second);
stream_map_.erase(it);
stream->OnClose();
}
bool QuicSession::IsEncryptionEstablished() {
return GetCryptoStream()->encryption_established();
}
bool QuicSession::IsCryptoHandshakeConfirmed() {
return GetCryptoStream()->handshake_confirmed();
}
void QuicSession::OnConfigNegotiated() {
connection_->SetFromConfig(config_);
if (connection()->version() >= QUIC_VERSION_17) {
uint32 new_flow_control_send_window =
config_.peer_initial_flow_control_window_bytes();
if (new_flow_control_send_window < kDefaultFlowControlSendWindow) {
LOG(DFATAL)
<< "Peer sent us an invalid flow control send window: "
<< new_flow_control_send_window
<< ", below default: " << kDefaultFlowControlSendWindow;
connection_->SendConnectionClose(QUIC_FLOW_CONTROL_ERROR);
return;
}
DataStreamMap::iterator it = stream_map_.begin();
while (it != stream_map_.end()) {
it->second->UpdateFlowControlSendLimit(new_flow_control_send_window);
it++;
}
}
}
void QuicSession::OnCryptoHandshakeEvent(CryptoHandshakeEvent event) {
switch (event) {
case ENCRYPTION_FIRST_ESTABLISHED:
break;
case ENCRYPTION_REESTABLISHED:
connection_->RetransmitUnackedPackets(INITIAL_ENCRYPTION_ONLY);
break;
case HANDSHAKE_CONFIRMED:
LOG_IF(DFATAL, !config_.negotiated()) << ENDPOINT
<< "Handshake confirmed without parameter negotiation.";
connection_->SetOverallConnectionTimeout(QuicTime::Delta::Infinite());
max_open_streams_ = config_.max_streams_per_connection();
break;
default:
LOG(ERROR) << ENDPOINT << "Got unknown handshake event: " << event;
}
}
void QuicSession::OnCryptoHandshakeMessageSent(
const CryptoHandshakeMessage& message) {
}
void QuicSession::OnCryptoHandshakeMessageReceived(
const CryptoHandshakeMessage& message) {
}
QuicConfig* QuicSession::config() {
return &config_;
}
void QuicSession::ActivateStream(QuicDataStream* stream) {
DVLOG(1) << ENDPOINT << "num_streams: " << stream_map_.size()
<< ". activating " << stream->id();
DCHECK_EQ(stream_map_.count(stream->id()), 0u);
stream_map_[stream->id()] = stream;
}
QuicStreamId QuicSession::GetNextStreamId() {
QuicStreamId id = next_stream_id_;
next_stream_id_ += 2;
return id;
}
ReliableQuicStream* QuicSession::GetStream(const QuicStreamId stream_id) {
if (stream_id == kCryptoStreamId) {
return GetCryptoStream();
}
if (stream_id == kHeadersStreamId) {
return headers_stream_.get();
}
return GetDataStream(stream_id);
}
QuicDataStream* QuicSession::GetDataStream(const QuicStreamId stream_id) {
if (stream_id == kCryptoStreamId) {
DLOG(FATAL) << "Attempt to call GetDataStream with the crypto stream id";
return NULL;
}
if (stream_id == kHeadersStreamId) {
DLOG(FATAL) << "Attempt to call GetDataStream with the headers stream id";
return NULL;
}
DataStreamMap::iterator it = stream_map_.find(stream_id);
if (it != stream_map_.end()) {
return it->second;
}
if (IsClosedStream(stream_id)) {
return NULL;
}
if (stream_id % 2 == next_stream_id_ % 2) {
if (connection()->connected()) {
connection()->SendConnectionClose(QUIC_PACKET_FOR_NONEXISTENT_STREAM);
}
return NULL;
}
return GetIncomingDataStream(stream_id);
}
QuicDataStream* QuicSession::GetIncomingDataStream(QuicStreamId stream_id) {
if (IsClosedStream(stream_id)) {
return NULL;
}
implicitly_created_streams_.erase(stream_id);
if (stream_id > largest_peer_created_stream_id_) {
if (stream_id - largest_peer_created_stream_id_ > kMaxStreamIdDelta) {
if (connection()->connected()) {
LOG(ERROR) << "Trying to get stream: " << stream_id
<< ", largest peer created stream: "
<< largest_peer_created_stream_id_
<< ", max delta: " << kMaxStreamIdDelta;
connection()->SendConnectionClose(QUIC_INVALID_STREAM_ID);
}
return NULL;
}
if (largest_peer_created_stream_id_ == 0) {
if (is_server()) {
largest_peer_created_stream_id_= 3;
} else {
largest_peer_created_stream_id_= 1;
}
}
for (QuicStreamId id = largest_peer_created_stream_id_ + 2;
id < stream_id;
id += 2) {
implicitly_created_streams_.insert(id);
}
largest_peer_created_stream_id_ = stream_id;
}
QuicDataStream* stream = CreateIncomingDataStream(stream_id);
if (stream == NULL) {
return NULL;
}
ActivateStream(stream);
return stream;
}
bool QuicSession::IsClosedStream(QuicStreamId id) {
DCHECK_NE(0u, id);
if (id == kCryptoStreamId) {
return false;
}
if (id == kHeadersStreamId) {
return false;
}
if (ContainsKey(stream_map_, id)) {
return false;
}
if (id % 2 == next_stream_id_ % 2) {
return id < next_stream_id_;
}
return id <= largest_peer_created_stream_id_ &&
implicitly_created_streams_.count(id) == 0;
}
size_t QuicSession::GetNumOpenStreams() const {
return stream_map_.size() + implicitly_created_streams_.size();
}
void QuicSession::MarkWriteBlocked(QuicStreamId id, QuicPriority priority) {
#ifndef NDEBUG
ReliableQuicStream* stream = GetStream(id);
if (stream != NULL) {
if (stream->IsFlowControlBlocked()) {
LOG(DFATAL) << "Stream " << id << " is flow control blocked.";
}
LOG_IF(DFATAL, priority != stream->EffectivePriority())
<< "Priorities do not match. Got: " << priority
<< " Expected: " << stream->EffectivePriority();
} else {
LOG(DFATAL) << "Marking unknown stream " << id << " blocked.";
}
#endif
if (id == kCryptoStreamId) {
DCHECK(!has_pending_handshake_);
has_pending_handshake_ = true;
priority = kHighestPriority;
}
write_blocked_streams_.PushBack(id, priority);
}
bool QuicSession::HasDataToWrite() const {
return write_blocked_streams_.HasWriteBlockedStreams() ||
connection_->HasQueuedData();
}
bool QuicSession::GetSSLInfo(SSLInfo* ssl_info) const {
NOTIMPLEMENTED();
return false;
}
void QuicSession::PostProcessAfterData() {
STLDeleteElements(&closed_streams_);
closed_streams_.clear();
}
}