QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2018 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "net/third_party/quiche/src/quic/core/qpack/qpack_decoder.h" |
| 6 | |
| 7 | #include <algorithm> |
| 8 | |
vasilvv | 0fb4443 | 2019-03-13 22:47:36 -0700 | [diff] [blame] | 9 | #include "net/third_party/quiche/src/quic/platform/api/quic_logging.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 10 | #include "net/third_party/quiche/src/quic/platform/api/quic_test.h" |
bnc | e42f7ad | 2019-10-25 17:46:31 -0700 | [diff] [blame] | 11 | #include "net/third_party/quiche/src/quic/test_tools/qpack/qpack_decoder_test_utils.h" |
| 12 | #include "net/third_party/quiche/src/quic/test_tools/qpack/qpack_test_utils.h" |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h" |
| 14 | #include "net/third_party/quiche/src/common/platform/api/quiche_text_utils.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 15 | #include "net/third_party/quiche/src/spdy/core/spdy_header_block.h" |
| 16 | |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 17 | using ::testing::_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 18 | using ::testing::Eq; |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 19 | using ::testing::Invoke; |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 20 | using ::testing::Mock; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 21 | using ::testing::Sequence; |
| 22 | using ::testing::StrictMock; |
| 23 | using ::testing::Values; |
| 24 | |
| 25 | namespace quic { |
| 26 | namespace test { |
| 27 | namespace { |
| 28 | |
| 29 | // Header Acknowledgement decoder stream instruction with stream_id = 1. |
| 30 | const char* const kHeaderAcknowledgement = "\x81"; |
| 31 | |
bnc | 57b5f62 | 2019-08-21 14:07:44 -0700 | [diff] [blame] | 32 | const uint64_t kMaximumDynamicTableCapacity = 1024; |
| 33 | const uint64_t kMaximumBlockedStreams = 1; |
bnc | 4c664c5 | 2019-08-04 18:14:12 -0700 | [diff] [blame] | 34 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 35 | class QpackDecoderTest : public QuicTestWithParam<FragmentMode> { |
| 36 | protected: |
| 37 | QpackDecoderTest() |
bnc | 57b5f62 | 2019-08-21 14:07:44 -0700 | [diff] [blame] | 38 | : qpack_decoder_(kMaximumDynamicTableCapacity, |
| 39 | kMaximumBlockedStreams, |
| 40 | &encoder_stream_error_delegate_), |
renjietang | 8a2df8f | 2019-08-07 10:43:52 -0700 | [diff] [blame] | 41 | fragment_mode_(GetParam()) { |
| 42 | qpack_decoder_.set_qpack_stream_sender_delegate( |
| 43 | &decoder_stream_sender_delegate_); |
| 44 | } |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 45 | |
| 46 | ~QpackDecoderTest() override = default; |
| 47 | |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 48 | void SetUp() override { |
| 49 | // Destroy QpackProgressiveDecoder on error to test that it does not crash. |
| 50 | // See https://crbug.com/1025209. |
| 51 | ON_CALL(handler_, OnDecodingErrorDetected(_)) |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 52 | .WillByDefault( |
| 53 | Invoke([this](quiche::QuicheStringPiece /* error_message */) { |
| 54 | progressive_decoder_.reset(); |
| 55 | })); |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 56 | } |
| 57 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 58 | void DecodeEncoderStreamData(quiche::QuicheStringPiece data) { |
bnc | 7d9e2a7 | 2019-08-09 08:20:10 -0700 | [diff] [blame] | 59 | qpack_decoder_.encoder_stream_receiver()->Decode(data); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 60 | } |
| 61 | |
bnc | 57b5f62 | 2019-08-21 14:07:44 -0700 | [diff] [blame] | 62 | std::unique_ptr<QpackProgressiveDecoder> CreateProgressiveDecoder( |
| 63 | QuicStreamId stream_id) { |
| 64 | return qpack_decoder_.CreateProgressiveDecoder(stream_id, &handler_); |
| 65 | } |
| 66 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 67 | // Set up |progressive_decoder_|. |
| 68 | void StartDecoding() { |
bnc | 57b5f62 | 2019-08-21 14:07:44 -0700 | [diff] [blame] | 69 | progressive_decoder_ = CreateProgressiveDecoder(/* stream_id = */ 1); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | // Pass header block data to QpackProgressiveDecoder::Decode() |
| 73 | // in fragments dictated by |fragment_mode_|. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 74 | void DecodeData(quiche::QuicheStringPiece data) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 75 | auto fragment_size_generator = |
| 76 | FragmentModeToFragmentSizeGenerator(fragment_mode_); |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 77 | while (progressive_decoder_ && !data.empty()) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 78 | size_t fragment_size = std::min(fragment_size_generator(), data.size()); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 79 | progressive_decoder_->Decode(data.substr(0, fragment_size)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 80 | data = data.substr(fragment_size); |
| 81 | } |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | // Signal end of header block to QpackProgressiveDecoder. |
| 85 | void EndDecoding() { |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 86 | if (progressive_decoder_) { |
| 87 | progressive_decoder_->EndHeaderBlock(); |
| 88 | } |
| 89 | // If no error was detected, |*progressive_decoder_| is kept alive so that |
| 90 | // it can handle callbacks later in case of blocked decoding. |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | // Decode an entire header block. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 94 | void DecodeHeaderBlock(quiche::QuicheStringPiece data) { |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 95 | StartDecoding(); |
| 96 | DecodeData(data); |
| 97 | EndDecoding(); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | StrictMock<MockEncoderStreamErrorDelegate> encoder_stream_error_delegate_; |
renjietang | c2aa5cb | 2019-06-20 12:22:53 -0700 | [diff] [blame] | 101 | StrictMock<MockQpackStreamSenderDelegate> decoder_stream_sender_delegate_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 102 | StrictMock<MockHeadersHandler> handler_; |
| 103 | |
| 104 | private: |
| 105 | QpackDecoder qpack_decoder_; |
| 106 | const FragmentMode fragment_mode_; |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 107 | std::unique_ptr<QpackProgressiveDecoder> progressive_decoder_; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 108 | }; |
| 109 | |
QUICHE team | 1bfe0d7 | 2019-09-23 04:50:47 -0700 | [diff] [blame] | 110 | INSTANTIATE_TEST_SUITE_P(All, |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 111 | QpackDecoderTest, |
| 112 | Values(FragmentMode::kSingleChunk, |
| 113 | FragmentMode::kOctetByOctet)); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 114 | |
| 115 | TEST_P(QpackDecoderTest, NoPrefix) { |
| 116 | EXPECT_CALL(handler_, |
| 117 | OnDecodingErrorDetected(Eq("Incomplete header data prefix."))); |
| 118 | |
| 119 | // Header Data Prefix is at least two bytes long. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 120 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("00")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 121 | } |
| 122 | |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 123 | // Regression test for https://1025209: QpackProgressiveDecoder must not crash |
| 124 | // in Decode() if it is destroyed by handler_.OnDecodingErrorDetected(). |
| 125 | TEST_P(QpackDecoderTest, InvalidPrefix) { |
| 126 | StartDecoding(); |
| 127 | |
| 128 | EXPECT_CALL(handler_, |
| 129 | OnDecodingErrorDetected(Eq("Encoded integer too large."))); |
| 130 | |
| 131 | // Encoded Required Insert Count in Header Data Prefix is too large. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 132 | DecodeData( |
| 133 | quiche::QuicheTextUtils::HexDecode("ffffffffffffffffffffffffffff")); |
bnc | fb4f4fc | 2019-11-18 17:14:56 -0800 | [diff] [blame] | 134 | } |
| 135 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 136 | TEST_P(QpackDecoderTest, EmptyHeaderBlock) { |
| 137 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 138 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 139 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("0000")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | TEST_P(QpackDecoderTest, LiteralEntryEmptyName) { |
| 143 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(""), Eq("foo"))); |
| 144 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 145 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 146 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("00002003666f6f")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | TEST_P(QpackDecoderTest, LiteralEntryEmptyValue) { |
| 150 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq(""))); |
| 151 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 152 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 153 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("000023666f6f00")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | TEST_P(QpackDecoderTest, LiteralEntryEmptyNameAndValue) { |
| 157 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(""), Eq(""))); |
| 158 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 159 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 160 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("00002000")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | TEST_P(QpackDecoderTest, SimpleLiteralEntry) { |
| 164 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 165 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 166 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 167 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("000023666f6f03626172")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | TEST_P(QpackDecoderTest, MultipleLiteralEntries) { |
| 171 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 172 | std::string str(127, 'a'); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 173 | EXPECT_CALL(handler_, |
| 174 | OnHeaderDecoded(Eq("foobaar"), quiche::QuicheStringPiece(str))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 175 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 176 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 177 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 178 | "0000" // prefix |
| 179 | "23666f6f03626172" // foo: bar |
| 180 | "2700666f6f62616172" // 7 octet long header name, the smallest number |
| 181 | // that does not fit on a 3-bit prefix. |
| 182 | "7f0061616161616161" // 127 octet long header value, the smallest number |
| 183 | "616161616161616161" // that does not fit on a 7-bit prefix. |
| 184 | "6161616161616161616161616161616161616161616161616161616161616161616161" |
| 185 | "6161616161616161616161616161616161616161616161616161616161616161616161" |
| 186 | "6161616161616161616161616161616161616161616161616161616161616161616161" |
| 187 | "616161616161")); |
| 188 | } |
| 189 | |
| 190 | // Name Length value is too large for varint decoder to decode. |
| 191 | TEST_P(QpackDecoderTest, NameLenTooLargeForVarintDecoder) { |
| 192 | EXPECT_CALL(handler_, |
| 193 | OnDecodingErrorDetected(Eq("Encoded integer too large."))); |
| 194 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 195 | DecodeHeaderBlock( |
| 196 | quiche::QuicheTextUtils::HexDecode("000027ffffffffffffffffffff")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | // Name Length value can be decoded by varint decoder but exceeds 1 MB limit. |
| 200 | TEST_P(QpackDecoderTest, NameLenExceedsLimit) { |
| 201 | EXPECT_CALL(handler_, |
| 202 | OnDecodingErrorDetected(Eq("String literal too long."))); |
| 203 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 204 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("000027ffff7f")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | // Value Length value is too large for varint decoder to decode. |
| 208 | TEST_P(QpackDecoderTest, ValueLenTooLargeForVarintDecoder) { |
| 209 | EXPECT_CALL(handler_, |
| 210 | OnDecodingErrorDetected(Eq("Encoded integer too large."))); |
| 211 | |
| 212 | DecodeHeaderBlock( |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 213 | quiche::QuicheTextUtils::HexDecode("000023666f6f7fffffffffffffffffffff")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | // Value Length value can be decoded by varint decoder but exceeds 1 MB limit. |
| 217 | TEST_P(QpackDecoderTest, ValueLenExceedsLimit) { |
| 218 | EXPECT_CALL(handler_, |
| 219 | OnDecodingErrorDetected(Eq("String literal too long."))); |
| 220 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 221 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("000023666f6f7fffff7f")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | TEST_P(QpackDecoderTest, IncompleteHeaderBlock) { |
| 225 | EXPECT_CALL(handler_, |
| 226 | OnDecodingErrorDetected(Eq("Incomplete header block."))); |
| 227 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 228 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("00002366")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | TEST_P(QpackDecoderTest, HuffmanSimple) { |
| 232 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("custom-key"), Eq("custom-value"))); |
| 233 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 234 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 235 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
| 236 | "00002f0125a849e95ba97d7f8925a849e95bb8e8b4bf")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | TEST_P(QpackDecoderTest, AlternatingHuffmanNonHuffman) { |
| 240 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("custom-key"), Eq("custom-value"))) |
| 241 | .Times(4); |
| 242 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 243 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 244 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 245 | "0000" // Prefix. |
| 246 | "2f0125a849e95ba97d7f" // Huffman-encoded name. |
| 247 | "8925a849e95bb8e8b4bf" // Huffman-encoded value. |
| 248 | "2703637573746f6d2d6b6579" // Non-Huffman encoded name. |
| 249 | "0c637573746f6d2d76616c7565" // Non-Huffman encoded value. |
| 250 | "2f0125a849e95ba97d7f" // Huffman-encoded name. |
| 251 | "0c637573746f6d2d76616c7565" // Non-Huffman encoded value. |
| 252 | "2703637573746f6d2d6b6579" // Non-Huffman encoded name. |
| 253 | "8925a849e95bb8e8b4bf")); // Huffman-encoded value. |
| 254 | } |
| 255 | |
| 256 | TEST_P(QpackDecoderTest, HuffmanNameDoesNotHaveEOSPrefix) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 257 | EXPECT_CALL(handler_, OnDecodingErrorDetected(quiche::QuicheStringPiece( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 258 | "Error in Huffman-encoded string."))); |
| 259 | |
| 260 | // 'y' ends in 0b0 on the most significant bit of the last byte. |
| 261 | // The remaining 7 bits must be a prefix of EOS, which is all 1s. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 262 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
| 263 | "00002f0125a849e95ba97d7e8925a849e95bb8e8b4bf")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | TEST_P(QpackDecoderTest, HuffmanValueDoesNotHaveEOSPrefix) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 267 | EXPECT_CALL(handler_, OnDecodingErrorDetected(quiche::QuicheStringPiece( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 268 | "Error in Huffman-encoded string."))); |
| 269 | |
| 270 | // 'e' ends in 0b101, taking up the 3 most significant bits of the last byte. |
| 271 | // The remaining 5 bits must be a prefix of EOS, which is all 1s. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 272 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
| 273 | "00002f0125a849e95ba97d7f8925a849e95bb8e8b4be")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | TEST_P(QpackDecoderTest, HuffmanNameEOSPrefixTooLong) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 277 | EXPECT_CALL(handler_, OnDecodingErrorDetected(quiche::QuicheStringPiece( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 278 | "Error in Huffman-encoded string."))); |
| 279 | |
| 280 | // The trailing EOS prefix must be at most 7 bits long. Appending one octet |
| 281 | // with value 0xff is invalid, even though 0b111111111111111 (15 bits) is a |
| 282 | // prefix of EOS. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 283 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 284 | "00002f0225a849e95ba97d7fff8925a849e95bb8e8b4bf")); |
| 285 | } |
| 286 | |
| 287 | TEST_P(QpackDecoderTest, HuffmanValueEOSPrefixTooLong) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 288 | EXPECT_CALL(handler_, OnDecodingErrorDetected(quiche::QuicheStringPiece( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 289 | "Error in Huffman-encoded string."))); |
| 290 | |
| 291 | // The trailing EOS prefix must be at most 7 bits long. Appending one octet |
| 292 | // with value 0xff is invalid, even though 0b1111111111111 (13 bits) is a |
| 293 | // prefix of EOS. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 294 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 295 | "00002f0125a849e95ba97d7f8a25a849e95bb8e8b4bfff")); |
| 296 | } |
| 297 | |
| 298 | TEST_P(QpackDecoderTest, StaticTable) { |
| 299 | // A header name that has multiple entries with different values. |
| 300 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("GET"))); |
| 301 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("POST"))); |
| 302 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("TRACE"))); |
| 303 | |
| 304 | // A header name that has a single entry with non-empty value. |
| 305 | EXPECT_CALL(handler_, |
| 306 | OnHeaderDecoded(Eq("accept-encoding"), Eq("gzip, deflate, br"))); |
| 307 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("accept-encoding"), Eq("compress"))); |
| 308 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("accept-encoding"), Eq(""))); |
| 309 | |
| 310 | // A header name that has a single entry with empty value. |
| 311 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("location"), Eq(""))); |
| 312 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("location"), Eq("foo"))); |
| 313 | |
| 314 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 315 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 316 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 317 | "0000d1dfccd45f108621e9aec2a11f5c8294e75f000554524143455f1000")); |
| 318 | } |
| 319 | |
| 320 | TEST_P(QpackDecoderTest, TooHighStaticTableIndex) { |
| 321 | // This is the last entry in the static table with index 98. |
| 322 | EXPECT_CALL(handler_, |
| 323 | OnHeaderDecoded(Eq("x-frame-options"), Eq("sameorigin"))); |
| 324 | |
| 325 | // Addressing entry 99 should trigger an error. |
| 326 | EXPECT_CALL(handler_, |
| 327 | OnDecodingErrorDetected(Eq("Static table entry not found."))); |
| 328 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 329 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("0000ff23ff24")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | TEST_P(QpackDecoderTest, DynamicTable) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 333 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode( |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 334 | "3fe107" // Set dynamic table capacity to 1024. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 335 | "6294e703626172" // Add literal entry with name "foo" and value "bar". |
| 336 | "80035a5a5a" // Add entry with name of dynamic table entry index 0 |
| 337 | // (relative index) and value "ZZZ". |
| 338 | "cf8294e7" // Add entry with name of static table entry index 15 |
| 339 | // and value "foo". |
| 340 | "01")); // Duplicate entry with relative index 1. |
| 341 | |
| 342 | // Now there are four entries in the dynamic table. |
| 343 | // Entry 0: "foo", "bar" |
| 344 | // Entry 1: "foo", "ZZZ" |
| 345 | // Entry 2: ":method", "foo" |
| 346 | // Entry 3: "foo", "ZZZ" |
| 347 | |
| 348 | // Use a Sequence to test that mock methods are called in order. |
| 349 | Sequence s; |
| 350 | |
| 351 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))).InSequence(s); |
| 352 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("ZZZ"))).InSequence(s); |
| 353 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("foo"))) |
| 354 | .InSequence(s); |
| 355 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("ZZZ"))).InSequence(s); |
| 356 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("ZZ"))).InSequence(s); |
| 357 | EXPECT_CALL(decoder_stream_sender_delegate_, |
renjietang | c2aa5cb | 2019-06-20 12:22:53 -0700 | [diff] [blame] | 358 | WriteStreamData(Eq(kHeaderAcknowledgement))) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 359 | .InSequence(s); |
| 360 | EXPECT_CALL(handler_, OnDecodingCompleted()).InSequence(s); |
| 361 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 362 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 363 | "0500" // Required Insert Count 4 and Delta Base 0. |
| 364 | // Base is 4 + 0 = 4. |
| 365 | "83" // Dynamic table entry with relative index 3, absolute index 0. |
| 366 | "82" // Dynamic table entry with relative index 2, absolute index 1. |
| 367 | "81" // Dynamic table entry with relative index 1, absolute index 2. |
| 368 | "80" // Dynamic table entry with relative index 0, absolute index 3. |
| 369 | "41025a5a")); // Name of entry 1 (relative index) from dynamic table, |
| 370 | // with value "ZZ". |
| 371 | |
| 372 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))).InSequence(s); |
| 373 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("ZZZ"))).InSequence(s); |
| 374 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("foo"))) |
| 375 | .InSequence(s); |
| 376 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("ZZZ"))).InSequence(s); |
| 377 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("ZZ"))).InSequence(s); |
| 378 | EXPECT_CALL(decoder_stream_sender_delegate_, |
renjietang | c2aa5cb | 2019-06-20 12:22:53 -0700 | [diff] [blame] | 379 | WriteStreamData(Eq(kHeaderAcknowledgement))) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 380 | .InSequence(s); |
| 381 | EXPECT_CALL(handler_, OnDecodingCompleted()).InSequence(s); |
| 382 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 383 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 384 | "0502" // Required Insert Count 4 and Delta Base 2. |
| 385 | // Base is 4 + 2 = 6. |
| 386 | "85" // Dynamic table entry with relative index 5, absolute index 0. |
| 387 | "84" // Dynamic table entry with relative index 4, absolute index 1. |
| 388 | "83" // Dynamic table entry with relative index 3, absolute index 2. |
| 389 | "82" // Dynamic table entry with relative index 2, absolute index 3. |
| 390 | "43025a5a")); // Name of entry 3 (relative index) from dynamic table, |
| 391 | // with value "ZZ". |
| 392 | |
| 393 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))).InSequence(s); |
| 394 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("ZZZ"))).InSequence(s); |
| 395 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("foo"))) |
| 396 | .InSequence(s); |
| 397 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("ZZZ"))).InSequence(s); |
| 398 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("ZZ"))).InSequence(s); |
| 399 | EXPECT_CALL(decoder_stream_sender_delegate_, |
renjietang | c2aa5cb | 2019-06-20 12:22:53 -0700 | [diff] [blame] | 400 | WriteStreamData(Eq(kHeaderAcknowledgement))) |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 401 | .InSequence(s); |
| 402 | EXPECT_CALL(handler_, OnDecodingCompleted()).InSequence(s); |
| 403 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 404 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 405 | "0582" // Required Insert Count 4 and Delta Base 2 with sign bit set. |
| 406 | // Base is 4 - 2 - 1 = 1. |
| 407 | "80" // Dynamic table entry with relative index 0, absolute index 0. |
| 408 | "10" // Dynamic table entry with post-base index 0, absolute index 1. |
| 409 | "11" // Dynamic table entry with post-base index 1, absolute index 2. |
| 410 | "12" // Dynamic table entry with post-base index 2, absolute index 3. |
| 411 | "01025a5a")); // Name of entry 1 (post-base index) from dynamic table, |
| 412 | // with value "ZZ". |
| 413 | } |
| 414 | |
| 415 | TEST_P(QpackDecoderTest, DecreasingDynamicTableCapacityEvictsEntries) { |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 416 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 417 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 418 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 419 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 420 | |
| 421 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 422 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
| 423 | EXPECT_CALL(decoder_stream_sender_delegate_, |
renjietang | c2aa5cb | 2019-06-20 12:22:53 -0700 | [diff] [blame] | 424 | WriteStreamData(Eq(kHeaderAcknowledgement))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 425 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 426 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 427 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 428 | // Base is 1 + 0 = 1. |
| 429 | "80")); // Dynamic table entry with relative index 0, absolute index 0. |
| 430 | |
| 431 | // Change dynamic table capacity to 32 bytes, smaller than the entry. |
| 432 | // This must cause the entry to be evicted. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 433 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3f01")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 434 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 435 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 436 | Eq("Dynamic table entry already evicted."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 437 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 438 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 439 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 440 | // Base is 1 + 0 = 1. |
| 441 | "80")); // Dynamic table entry with relative index 0, absolute index 0. |
| 442 | } |
| 443 | |
| 444 | TEST_P(QpackDecoderTest, EncoderStreamErrorEntryTooLarge) { |
| 445 | EXPECT_CALL(encoder_stream_error_delegate_, |
| 446 | OnEncoderStreamError(Eq("Error inserting literal entry."))); |
| 447 | |
| 448 | // Set dynamic table capacity to 34. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 449 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3f03")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 450 | // Add literal entry with name "foo" and value "bar", size is 32 + 3 + 3 = 38. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 451 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | TEST_P(QpackDecoderTest, EncoderStreamErrorInvalidStaticTableEntry) { |
| 455 | EXPECT_CALL(encoder_stream_error_delegate_, |
| 456 | OnEncoderStreamError(Eq("Invalid static table entry."))); |
| 457 | |
| 458 | // Address invalid static table entry index 99. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 459 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("ff2400")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | TEST_P(QpackDecoderTest, EncoderStreamErrorInvalidDynamicTableEntry) { |
| 463 | EXPECT_CALL(encoder_stream_error_delegate_, |
bnc | ae04c65 | 2019-08-14 13:15:14 -0700 | [diff] [blame] | 464 | OnEncoderStreamError(Eq("Invalid relative index."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 465 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 466 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode( |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 467 | "3fe107" // Set dynamic table capacity to 1024. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 468 | "6294e703626172" // Add literal entry with name "foo" and value "bar". |
| 469 | "8100")); // Address dynamic table entry with relative index 1. Such |
| 470 | // entry does not exist. The most recently added and only |
| 471 | // dynamic table entry has relative index 0. |
| 472 | } |
| 473 | |
| 474 | TEST_P(QpackDecoderTest, EncoderStreamErrorDuplicateInvalidEntry) { |
| 475 | EXPECT_CALL(encoder_stream_error_delegate_, |
bnc | ae04c65 | 2019-08-14 13:15:14 -0700 | [diff] [blame] | 476 | OnEncoderStreamError(Eq("Invalid relative index."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 477 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 478 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode( |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 479 | "3fe107" // Set dynamic table capacity to 1024. |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 480 | "6294e703626172" // Add literal entry with name "foo" and value "bar". |
| 481 | "01")); // Duplicate dynamic table entry with relative index 1. Such |
| 482 | // entry does not exist. The most recently added and only |
| 483 | // dynamic table entry has relative index 0. |
| 484 | } |
| 485 | |
| 486 | TEST_P(QpackDecoderTest, EncoderStreamErrorTooLargeInteger) { |
| 487 | EXPECT_CALL(encoder_stream_error_delegate_, |
| 488 | OnEncoderStreamError(Eq("Encoded integer too large."))); |
| 489 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 490 | DecodeEncoderStreamData( |
| 491 | quiche::QuicheTextUtils::HexDecode("3fffffffffffffffffffff")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | TEST_P(QpackDecoderTest, InvalidDynamicEntryWhenBaseIsZero) { |
| 495 | EXPECT_CALL(handler_, OnDecodingErrorDetected(Eq("Invalid relative index."))); |
| 496 | |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 497 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 498 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 499 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 500 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 501 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 502 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 503 | "0280" // Required Insert Count is 1. Base 1 - 1 - 0 = 0 is explicitly |
| 504 | // permitted by the spec. |
| 505 | "80")); // However, addressing entry with relative index 0 would point to |
| 506 | // absolute index -1, which is invalid. |
| 507 | } |
| 508 | |
| 509 | TEST_P(QpackDecoderTest, InvalidNegativeBase) { |
| 510 | EXPECT_CALL(handler_, OnDecodingErrorDetected(Eq("Error calculating Base."))); |
| 511 | |
| 512 | // Required Insert Count 1, Delta Base 1 with sign bit set, Base would |
| 513 | // be 1 - 1 - 1 = -1, but it is not allowed to be negative. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 514 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("0281")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | TEST_P(QpackDecoderTest, InvalidDynamicEntryByRelativeIndex) { |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 518 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 519 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 520 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 521 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 522 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 523 | EXPECT_CALL(handler_, OnDecodingErrorDetected(Eq("Invalid relative index."))); |
| 524 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 525 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 526 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 527 | // Base is 1 + 0 = 1. |
| 528 | "81")); // Indexed Header Field instruction addressing relative index 1. |
| 529 | // This is absolute index -1, which is invalid. |
| 530 | |
| 531 | EXPECT_CALL(handler_, OnDecodingErrorDetected(Eq("Invalid relative index."))); |
| 532 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 533 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 534 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 535 | // Base is 1 + 0 = 1. |
| 536 | "4100")); // Literal Header Field with Name Reference instruction |
| 537 | // addressing relative index 1. This is absolute index -1, |
| 538 | // which is invalid. |
| 539 | } |
| 540 | |
| 541 | TEST_P(QpackDecoderTest, EvictedDynamicTableEntry) { |
| 542 | // Update dynamic table capacity to 128. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 543 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3f61")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 544 | |
| 545 | // Add literal entry with name "foo" and value "bar", size 32 + 3 + 3 = 38. |
| 546 | // This fits in the table three times. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 547 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 548 | // Duplicate entry four times. This evicts the first two instances. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 549 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("00000000")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 550 | |
| 551 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 552 | Eq("Dynamic table entry already evicted."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 553 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 554 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 555 | "0500" // Required Insert Count 4 and Delta Base 0. |
| 556 | // Base is 4 + 0 = 4. |
| 557 | "82")); // Indexed Header Field instruction addressing relative index 2. |
| 558 | // This is absolute index 1. Such entry does not exist. |
| 559 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 560 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 561 | Eq("Dynamic table entry already evicted."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 562 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 563 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 564 | "0500" // Required Insert Count 4 and Delta Base 0. |
| 565 | // Base is 4 + 0 = 4. |
| 566 | "4200")); // Literal Header Field with Name Reference instruction |
| 567 | // addressing relative index 2. This is absolute index 1. Such |
| 568 | // entry does not exist. |
| 569 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 570 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 571 | Eq("Dynamic table entry already evicted."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 572 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 573 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 574 | "0380" // Required Insert Count 2 and Delta Base 0 with sign bit set. |
| 575 | // Base is 2 - 0 - 1 = 1 |
| 576 | "10")); // Indexed Header Field instruction addressing dynamic table |
| 577 | // entry with post-base index 0, absolute index 1. Such entry |
| 578 | // does not exist. |
| 579 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 580 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 581 | Eq("Dynamic table entry already evicted."))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 582 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 583 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 584 | "0380" // Required Insert Count 2 and Delta Base 0 with sign bit set. |
| 585 | // Base is 2 - 0 - 1 = 1 |
| 586 | "0000")); // Literal Header Field With Name Reference instruction |
| 587 | // addressing dynamic table entry with post-base index 0, |
| 588 | // absolute index 1. Such entry does not exist. |
| 589 | } |
| 590 | |
| 591 | TEST_P(QpackDecoderTest, TableCapacityMustNotExceedMaximum) { |
| 592 | EXPECT_CALL( |
| 593 | encoder_stream_error_delegate_, |
| 594 | OnEncoderStreamError(Eq("Error updating dynamic table capacity."))); |
| 595 | |
| 596 | // Try to update dynamic table capacity to 2048, which exceeds the maximum. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 597 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe10f")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 598 | } |
| 599 | |
bnc | 4c664c5 | 2019-08-04 18:14:12 -0700 | [diff] [blame] | 600 | TEST_P(QpackDecoderTest, SetDynamicTableCapacity) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 601 | // Update dynamic table capacity to 128, which does not exceed the maximum. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 602 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3f61")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | TEST_P(QpackDecoderTest, InvalidEncodedRequiredInsertCount) { |
| 606 | // Maximum dynamic table capacity is 1024. |
| 607 | // MaxEntries is 1024 / 32 = 32. |
| 608 | // Required Insert Count is decoded modulo 2 * MaxEntries, that is, modulo 64. |
| 609 | // A value of 1 cannot be encoded as 65 even though it has the same remainder. |
| 610 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 611 | Eq("Error decoding Required Insert Count."))); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 612 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("4100")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 613 | } |
| 614 | |
bnc | 32e69f8 | 2019-06-14 06:38:36 -0700 | [diff] [blame] | 615 | // Regression test for https://crbug.com/970218: Decoder must stop processing |
| 616 | // after a Header Block Prefix with an invalid Encoded Required Insert Count. |
| 617 | TEST_P(QpackDecoderTest, DataAfterInvalidEncodedRequiredInsertCount) { |
| 618 | EXPECT_CALL(handler_, OnDecodingErrorDetected( |
| 619 | Eq("Error decoding Required Insert Count."))); |
| 620 | // Header Block Prefix followed by some extra data. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 621 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode("410000")); |
bnc | 32e69f8 | 2019-06-14 06:38:36 -0700 | [diff] [blame] | 622 | } |
| 623 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 624 | TEST_P(QpackDecoderTest, WrappedRequiredInsertCount) { |
| 625 | // Maximum dynamic table capacity is 1024. |
| 626 | // MaxEntries is 1024 / 32 = 32. |
| 627 | |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 628 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 629 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 630 | // Add literal entry with name "foo" and a 600 byte long value. This will fit |
| 631 | // in the dynamic table once but not twice. |
| 632 | DecodeEncoderStreamData( |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 633 | quiche::QuicheTextUtils::HexDecode("6294e7" // Name "foo". |
| 634 | "7fd903")); // Value length 600. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 635 | std::string header_value(600, 'Z'); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 636 | DecodeEncoderStreamData(header_value); |
| 637 | |
| 638 | // Duplicate most recent entry 200 times. |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 639 | DecodeEncoderStreamData(std::string(200, '\x00')); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 640 | |
| 641 | // Now there is only one entry in the dynamic table, with absolute index 200. |
| 642 | |
| 643 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq(header_value))); |
| 644 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
| 645 | EXPECT_CALL(decoder_stream_sender_delegate_, |
renjietang | c2aa5cb | 2019-06-20 12:22:53 -0700 | [diff] [blame] | 646 | WriteStreamData(Eq(kHeaderAcknowledgement))); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 647 | |
| 648 | // Send header block with Required Insert Count = 201. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 649 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 650 | "0a00" // Encoded Required Insert Count 10, Required Insert Count 201, |
| 651 | // Delta Base 0, Base 201. |
| 652 | "80")); // Emit dynamic table entry with relative index 0. |
| 653 | } |
| 654 | |
| 655 | TEST_P(QpackDecoderTest, NonZeroRequiredInsertCountButNoDynamicEntries) { |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 656 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 657 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 658 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 659 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 660 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 661 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("GET"))); |
| 662 | EXPECT_CALL(handler_, |
| 663 | OnDecodingErrorDetected(Eq("Required Insert Count too large."))); |
| 664 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 665 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 666 | "0200" // Required Insert Count is 1. |
| 667 | "d1")); // But the only instruction references the static table. |
| 668 | } |
| 669 | |
| 670 | TEST_P(QpackDecoderTest, AddressEntryNotAllowedByRequiredInsertCount) { |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 671 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 672 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 673 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 674 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 675 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 676 | EXPECT_CALL( |
| 677 | handler_, |
| 678 | OnDecodingErrorDetected( |
| 679 | Eq("Absolute Index must be smaller than Required Insert Count."))); |
| 680 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 681 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 682 | "0201" // Required Insert Count 1 and Delta Base 1. |
| 683 | // Base is 1 + 1 = 2. |
| 684 | "80")); // Indexed Header Field instruction addressing dynamic table |
| 685 | // entry with relative index 0, absolute index 1. This is not |
| 686 | // allowed by Required Insert Count. |
| 687 | |
| 688 | EXPECT_CALL( |
| 689 | handler_, |
| 690 | OnDecodingErrorDetected( |
| 691 | Eq("Absolute Index must be smaller than Required Insert Count."))); |
| 692 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 693 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 694 | "0201" // Required Insert Count 1 and Delta Base 1. |
| 695 | // Base is 1 + 1 = 2. |
| 696 | "4000")); // Literal Header Field with Name Reference instruction |
| 697 | // addressing dynamic table entry with relative index 0, |
| 698 | // absolute index 1. This is not allowed by Required Index |
| 699 | // Count. |
| 700 | |
| 701 | EXPECT_CALL( |
| 702 | handler_, |
| 703 | OnDecodingErrorDetected( |
| 704 | Eq("Absolute Index must be smaller than Required Insert Count."))); |
| 705 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 706 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 707 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 708 | // Base is 1 + 0 = 1. |
| 709 | "10")); // Indexed Header Field with Post-Base Index instruction |
| 710 | // addressing dynamic table entry with post-base index 0, |
| 711 | // absolute index 1. This is not allowed by Required Insert |
| 712 | // Count. |
| 713 | |
| 714 | EXPECT_CALL( |
| 715 | handler_, |
| 716 | OnDecodingErrorDetected( |
| 717 | Eq("Absolute Index must be smaller than Required Insert Count."))); |
| 718 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 719 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 720 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 721 | // Base is 1 + 0 = 1. |
| 722 | "0000")); // Literal Header Field with Post-Base Name Reference |
| 723 | // instruction addressing dynamic table entry with post-base |
| 724 | // index 0, absolute index 1. This is not allowed by Required |
| 725 | // Index Count. |
| 726 | } |
| 727 | |
| 728 | TEST_P(QpackDecoderTest, PromisedRequiredInsertCountLargerThanActual) { |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 729 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 730 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 731 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 732 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 733 | // Duplicate entry twice so that decoding of header blocks with Required |
| 734 | // Insert Count not exceeding 3 is not blocked. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 735 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("00")); |
| 736 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("00")); |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 737 | |
| 738 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 739 | EXPECT_CALL(handler_, |
| 740 | OnDecodingErrorDetected(Eq("Required Insert Count too large."))); |
| 741 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 742 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 743 | "0300" // Required Insert Count 2 and Delta Base 0. |
| 744 | // Base is 2 + 0 = 2. |
| 745 | "81")); // Indexed Header Field instruction addressing dynamic table |
| 746 | // entry with relative index 1, absolute index 0. Header block |
| 747 | // requires insert count of 1, even though Required Insert Count |
| 748 | // is 2. |
| 749 | |
| 750 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq(""))); |
| 751 | EXPECT_CALL(handler_, |
| 752 | OnDecodingErrorDetected(Eq("Required Insert Count too large."))); |
| 753 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 754 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 755 | "0300" // Required Insert Count 2 and Delta Base 0. |
| 756 | // Base is 2 + 0 = 2. |
| 757 | "4100")); // Literal Header Field with Name Reference instruction |
| 758 | // addressing dynamic table entry with relative index 1, |
| 759 | // absolute index 0. Header block requires insert count of 1, |
| 760 | // even though Required Insert Count is 2. |
| 761 | |
| 762 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 763 | EXPECT_CALL(handler_, |
| 764 | OnDecodingErrorDetected(Eq("Required Insert Count too large."))); |
| 765 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 766 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 767 | "0481" // Required Insert Count 3 and Delta Base 1 with sign bit set. |
| 768 | // Base is 3 - 1 - 1 = 1. |
| 769 | "10")); // Indexed Header Field with Post-Base Index instruction |
| 770 | // addressing dynamic table entry with post-base index 0, |
| 771 | // absolute index 1. Header block requires insert count of 2, |
| 772 | // even though Required Insert Count is 3. |
| 773 | |
| 774 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq(""))); |
| 775 | EXPECT_CALL(handler_, |
| 776 | OnDecodingErrorDetected(Eq("Required Insert Count too large."))); |
| 777 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 778 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 779 | "0481" // Required Insert Count 3 and Delta Base 1 with sign bit set. |
| 780 | // Base is 3 - 1 - 1 = 1. |
| 781 | "0000")); // Literal Header Field with Post-Base Name Reference |
| 782 | // instruction addressing dynamic table entry with post-base |
| 783 | // index 0, absolute index 1. Header block requires insert |
| 784 | // count of 2, even though Required Insert Count is 3. |
| 785 | } |
| 786 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 787 | TEST_P(QpackDecoderTest, BlockedDecoding) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 788 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 789 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 790 | // Base is 1 + 0 = 1. |
| 791 | "80")); // Indexed Header Field instruction addressing dynamic table |
| 792 | // entry with relative index 0, absolute index 0. |
| 793 | |
| 794 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 795 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
| 796 | EXPECT_CALL(decoder_stream_sender_delegate_, |
| 797 | WriteStreamData(Eq(kHeaderAcknowledgement))); |
| 798 | |
bnc | 40e9a7b | 2019-08-30 05:27:08 -0700 | [diff] [blame] | 799 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 800 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 801 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 802 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | TEST_P(QpackDecoderTest, BlockedDecodingUnblockedBeforeEndOfHeaderBlock) { |
| 806 | StartDecoding(); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 807 | DecodeData(quiche::QuicheTextUtils::HexDecode( |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 808 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 809 | // Base is 1 + 0 = 1. |
| 810 | "80" // Indexed Header Field instruction addressing dynamic table |
| 811 | // entry with relative index 0, absolute index 0. |
| 812 | "d1")); // Static table entry with index 17. |
| 813 | |
bnc | 232ff9b | 2019-11-13 18:38:22 -0800 | [diff] [blame] | 814 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 815 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
bnc | 232ff9b | 2019-11-13 18:38:22 -0800 | [diff] [blame] | 816 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 817 | // Add literal entry with name "foo" and value "bar". Decoding is now |
| 818 | // unblocked because dynamic table Insert Count reached the Required Insert |
| 819 | // Count of the header block. |handler_| methods are called immediately for |
| 820 | // the already consumed part of the header block. |
| 821 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 822 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":method"), Eq("GET"))); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 823 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 824 | Mock::VerifyAndClearExpectations(&handler_); |
| 825 | |
| 826 | // Rest of header block is processed by QpackProgressiveDecoder |
| 827 | // in the unblocked state. |
| 828 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 829 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq(":scheme"), Eq("https"))); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 830 | DecodeData(quiche::QuicheTextUtils::HexDecode( |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 831 | "80" // Indexed Header Field instruction addressing dynamic table |
| 832 | // entry with relative index 0, absolute index 0. |
| 833 | "d7")); // Static table entry with index 23. |
| 834 | Mock::VerifyAndClearExpectations(&handler_); |
| 835 | |
| 836 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
| 837 | EXPECT_CALL(decoder_stream_sender_delegate_, |
| 838 | WriteStreamData(Eq(kHeaderAcknowledgement))); |
| 839 | EndDecoding(); |
| 840 | } |
| 841 | |
bnc | 232ff9b | 2019-11-13 18:38:22 -0800 | [diff] [blame] | 842 | // Regression test for https://crbug.com/1024263. |
| 843 | TEST_P(QpackDecoderTest, |
| 844 | BlockedDecodingUnblockedAndErrorBeforeEndOfHeaderBlock) { |
| 845 | StartDecoding(); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 846 | DecodeData(quiche::QuicheTextUtils::HexDecode( |
bnc | 232ff9b | 2019-11-13 18:38:22 -0800 | [diff] [blame] | 847 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 848 | // Base is 1 + 0 = 1. |
| 849 | "80" // Indexed Header Field instruction addressing dynamic table |
| 850 | // entry with relative index 0, absolute index 0. |
| 851 | "81")); // Relative index 1 is equal to Base, therefore invalid. |
| 852 | |
| 853 | // Set dynamic table capacity to 1024. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 854 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3fe107")); |
bnc | 232ff9b | 2019-11-13 18:38:22 -0800 | [diff] [blame] | 855 | |
| 856 | // Add literal entry with name "foo" and value "bar". Decoding is now |
| 857 | // unblocked because dynamic table Insert Count reached the Required Insert |
| 858 | // Count of the header block. |handler_| methods are called immediately for |
| 859 | // the already consumed part of the header block. |
| 860 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 861 | EXPECT_CALL(handler_, OnDecodingErrorDetected(Eq("Invalid relative index."))); |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 862 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 232ff9b | 2019-11-13 18:38:22 -0800 | [diff] [blame] | 863 | } |
| 864 | |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 865 | // Make sure that Required Insert Count is compared to Insert Count, |
| 866 | // not size of dynamic table. |
| 867 | TEST_P(QpackDecoderTest, BlockedDecodingAndEvictedEntries) { |
| 868 | // Update dynamic table capacity to 128. |
| 869 | // At most three non-empty entries fit in the dynamic table. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 870 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("3f61")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 871 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 872 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 873 | "0700" // Required Insert Count 6 and Delta Base 0. |
| 874 | // Base is 6 + 0 = 6. |
| 875 | "80")); // Indexed Header Field instruction addressing dynamic table |
| 876 | // entry with relative index 0, absolute index 5. |
| 877 | |
| 878 | // Add literal entry with name "foo" and value "bar". |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 879 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e703626172")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 880 | |
| 881 | // Duplicate entry four times. This evicts the first two instances. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 882 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("00000000")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 883 | |
| 884 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("baz"))); |
| 885 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
| 886 | EXPECT_CALL(decoder_stream_sender_delegate_, |
| 887 | WriteStreamData(Eq(kHeaderAcknowledgement))); |
| 888 | |
| 889 | // Add literal entry with name "foo" and value "bar". |
| 890 | // Insert Count is now 6, reaching Required Insert Count of the header block. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 891 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode("6294e70362617a")); |
bnc | 098ff61 | 2019-07-09 03:24:37 -0700 | [diff] [blame] | 892 | } |
| 893 | |
bnc | 57b5f62 | 2019-08-21 14:07:44 -0700 | [diff] [blame] | 894 | TEST_P(QpackDecoderTest, TooManyBlockedStreams) { |
| 895 | // Required Insert Count 1 and Delta Base 0. |
| 896 | // Without any dynamic table entries received, decoding is blocked. |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 897 | std::string data = quiche::QuicheTextUtils::HexDecode("0200"); |
bnc | 57b5f62 | 2019-08-21 14:07:44 -0700 | [diff] [blame] | 898 | |
| 899 | auto progressive_decoder1 = CreateProgressiveDecoder(/* stream_id = */ 1); |
| 900 | progressive_decoder1->Decode(data); |
| 901 | |
| 902 | EXPECT_CALL(handler_, OnDecodingErrorDetected(Eq( |
| 903 | "Limit on number of blocked streams exceeded."))); |
| 904 | |
| 905 | auto progressive_decoder2 = CreateProgressiveDecoder(/* stream_id = */ 2); |
| 906 | progressive_decoder2->Decode(data); |
| 907 | } |
| 908 | |
bnc | 45af751 | 2019-10-08 06:59:58 -0700 | [diff] [blame] | 909 | TEST_P(QpackDecoderTest, InsertCountIncrement) { |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 910 | DecodeEncoderStreamData(quiche::QuicheTextUtils::HexDecode( |
bnc | 45af751 | 2019-10-08 06:59:58 -0700 | [diff] [blame] | 911 | "3fe107" // Set dynamic table capacity to 1024. |
| 912 | "6294e703626172" // Add literal entry with name "foo" and value "bar". |
| 913 | "00")); // Duplicate entry. |
| 914 | |
| 915 | EXPECT_CALL(handler_, OnHeaderDecoded(Eq("foo"), Eq("bar"))); |
| 916 | EXPECT_CALL(handler_, OnDecodingCompleted()); |
bnc | 45af751 | 2019-10-08 06:59:58 -0700 | [diff] [blame] | 917 | |
| 918 | // Decoder received two insertions, but Header Acknowledgement only increases |
| 919 | // Known Insert Count to one. Decoder should send an Insert Count Increment |
| 920 | // instruction with increment of one to update Known Insert Count to two. |
| 921 | EXPECT_CALL(decoder_stream_sender_delegate_, |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 922 | WriteStreamData(Eq(quiche::QuicheTextUtils::HexDecode( |
bnc | 6b1fc8a | 2019-10-11 17:17:14 -0700 | [diff] [blame] | 923 | "81" // Header Acknowledgement on stream 1 |
| 924 | "01")))); // Insert Count Increment with increment of one |
bnc | 45af751 | 2019-10-08 06:59:58 -0700 | [diff] [blame] | 925 | |
QUICHE team | 11f55d4 | 2019-12-11 10:36:09 -0800 | [diff] [blame] | 926 | DecodeHeaderBlock(quiche::QuicheTextUtils::HexDecode( |
bnc | 45af751 | 2019-10-08 06:59:58 -0700 | [diff] [blame] | 927 | "0200" // Required Insert Count 1 and Delta Base 0. |
| 928 | // Base is 1 + 0 = 1. |
| 929 | "80")); // Dynamic table entry with relative index 0, absolute index 0. |
| 930 | } |
| 931 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 932 | } // namespace |
| 933 | } // namespace test |
| 934 | } // namespace quic |