File: http_chunked_decoder_unittest.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (466 lines) | stat: -rw-r--r-- 12,178 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
// Copyright 2006-2008 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/http/http_chunked_decoder.h"

#include <memory>
#include <string>
#include <string_view>
#include <vector>

#include "base/containers/span.h"
#include "base/format_macros.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/string_view_util.h"
#include "base/strings/stringprintf.h"
#include "net/base/net_errors.h"
#include "net/test/gtest_util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

using net::test::IsError;
using net::test::IsOk;

namespace net {

namespace {

typedef testing::Test HttpChunkedDecoderTest;

void RunTest(base::span<const std::string_view> inputs,
             const char* expected_output,
             bool expected_eof,
             int bytes_after_eof) {
  HttpChunkedDecoder decoder;
  EXPECT_FALSE(decoder.reached_eof());

  std::string result;

  for (const auto input : inputs) {
    // FilterBuf() modifies the input, so copy to a vector, which can be written
    // to.
    std::vector<uint8_t> copy(input.begin(), input.end());
    int n = decoder.FilterBuf(copy);
    EXPECT_GE(n, 0);
    if (n > 0) {
      copy.resize(n);
      result.append(copy.begin(), copy.end());
    }
  }

  EXPECT_EQ(expected_output, result);
  EXPECT_EQ(expected_eof, decoder.reached_eof());
  EXPECT_EQ(bytes_after_eof, decoder.bytes_after_eof());
}

// Feed the inputs to the decoder, until it returns an error.
void RunTestUntilFailure(base::span<const std::string_view> inputs,
                         size_t fail_index) {
  HttpChunkedDecoder decoder;
  EXPECT_FALSE(decoder.reached_eof());

  for (size_t i = 0; i < inputs.size(); ++i) {
    // FilterBuf() modifies the input, so copy to a vector, which can be written
    // to.
    std::vector<uint8_t> copy(inputs[i].begin(), inputs[i].end());
    int n = decoder.FilterBuf(copy);
    if (n < 0) {
      EXPECT_THAT(n, IsError(ERR_INVALID_CHUNKED_ENCODING));
      EXPECT_EQ(fail_index, i);
      return;
    }
  }
  FAIL();  // We should have failed on the |fail_index| iteration of the loop.
}

TEST(HttpChunkedDecoderTest, Basic) {
  const std::vector<std::string_view> inputs = {
      "B\r\nhello hello\r\n0\r\n\r\n"};
  RunTest(inputs, "hello hello", true, 0);
}

TEST(HttpChunkedDecoderTest, OneChunk) {
  const std::vector<std::string_view> inputs = {"5\r\nhello\r\n"};
  RunTest(inputs, "hello", false, 0);
}

TEST(HttpChunkedDecoderTest, Typical) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r\nhello\r\n",
      "1\r\n \r\n",
      "5\r\nworld\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTest(inputs, "hello world", true, 0);
}

TEST(HttpChunkedDecoderTest, Incremental) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5",
      "\r",
      "\n",
      "hello",
      "\r",
      "\n",
      "0",
      "\r",
      "\n",
      "\r",
      "\n"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 0);
}

// Same as above, but group carriage returns with previous input.
TEST(HttpChunkedDecoderTest, Incremental2) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r",
      "\n",
      "hello\r",
      "\n",
      "0\r",
      "\n\r",
      "\n"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 0);
}

TEST(HttpChunkedDecoderTest, LF_InsteadOf_CRLF) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\nhello\n",
      "1\n \n",
      "5\nworld\n",
      "0\n\n"
  };
  // clang-format on

  RunTest(inputs, "hello world", true, 0);
}

TEST(HttpChunkedDecoderTest, Extensions) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5;x=0\r\nhello\r\n",
      "0;y=\"2 \"\r\n\r\n"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 0);
}

TEST(HttpChunkedDecoderTest, Trailers) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r\nhello\r\n",
      "0\r\n",
      "Foo: 1\r\n",
      "Bar: 2\r\n",
      "\r\n"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 0);
}

TEST(HttpChunkedDecoderTest, TrailersUnfinished) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r\nhello\r\n",
      "0\r\n",
      "Foo: 1\r\n"
  };
  // clang-format on

  RunTest(inputs, "hello", false, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_TooBig) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      // This chunked body is not terminated.
      // However we will fail decoding because the chunk-size
      // number is larger than we can handle.
      "48469410265455838241\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_0X) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "0x5\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

// Note that this test covers behavior contrary to RFC 7230.
TEST(HttpChunkedDecoderTest, ChunkSize_TrailingSpace) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5      \r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingTab) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\t\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingFormFeed) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\f\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingVerticalTab) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\v\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_TrailingNonHexDigit) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5H\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_LeadingSpace) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      " 5\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidLeadingSeparator) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
       "\r\n5\r\nhello\r\n",
       "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_NoSeparator) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r\nhello",
      "1\r\n \r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 1);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_Negative) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "8\r\n12345678\r\n-5\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidChunkSize_Plus) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "+5\r\nhello\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, InvalidConsecutiveCRLFs) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r\nhello\r\n",
      "\r\n\r\n\r\n\r\n",
      "0\r\n\r\n"
  };
  // clang-format on

  RunTestUntilFailure(inputs, 1);
}

TEST(HttpChunkedDecoderTest, ReallyBigChunks) {
  // Number of bytes sent through the chunked decoder per loop iteration. To
  // minimize runtime, should be the square root of the chunk lengths, below.
  const size_t kWrittenBytesPerIteration = 0x10000;

  // Length of chunks to test. Must be multiples of kWrittenBytesPerIteration.
  int64_t kChunkLengths[] = {
      // Overflows when cast to a signed int32.
      0x0c0000000,
      // Overflows when cast to an unsigned int32.
      0x100000000,
  };

  for (int64_t chunk_length : kChunkLengths) {
    HttpChunkedDecoder decoder;
    EXPECT_FALSE(decoder.reached_eof());

    // Feed just the header to the decode.
    std::string chunk_header =
        base::StringPrintf("%" PRIx64 "\r\n", chunk_length);
    std::vector<char> data(chunk_header.begin(), chunk_header.end());
    EXPECT_EQ(OK, decoder.FilterBuf(base::as_writable_byte_span(data)));
    EXPECT_FALSE(decoder.reached_eof());

    // Set |data| to be kWrittenBytesPerIteration long, and have a repeating
    // pattern.
    data.clear();
    data.reserve(kWrittenBytesPerIteration);
    for (size_t i = 0; i < kWrittenBytesPerIteration; i++) {
      data.push_back(static_cast<char>(i));
    }

    // Repeatedly feed the data to the chunked decoder. Since the data doesn't
    // include any chunk lengths, the decode will never have to move the data,
    // and should run fairly quickly.
    for (int64_t total_written = 0; total_written < chunk_length;
         total_written += kWrittenBytesPerIteration) {
      EXPECT_EQ(kWrittenBytesPerIteration,
                base::checked_cast<size_t>(
                    decoder.FilterBuf(base::as_writable_byte_span(data).first(
                        kWrittenBytesPerIteration))));
      EXPECT_FALSE(decoder.reached_eof());
    }

    // Chunk terminator and the final chunk.
    char final_chunk[] = "\r\n0\r\n\r\n";
    EXPECT_EQ(OK, decoder.FilterBuf(base::as_writable_byte_span(final_chunk)));
    EXPECT_TRUE(decoder.reached_eof());

    // Since |data| never included any chunk headers, it should not have been
    // modified.
    for (size_t i = 0; i < kWrittenBytesPerIteration; i++) {
      EXPECT_EQ(static_cast<char>(i), data[i]);
    }
  }
}

TEST(HttpChunkedDecoderTest, ExcessiveChunkLen) {
  // Smallest number that can't be represented as a signed int64.
  const std::vector<std::string_view> inputs = {
      "8000000000000000\r\nhello\r\n"};
  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, ExcessiveChunkLen2) {
  // Smallest number that can't be represented as an unsigned int64.
  const std::vector<std::string_view> inputs = {
      "10000000000000000\r\nhello\r\n"};
  RunTestUntilFailure(inputs, 0);
}

TEST(HttpChunkedDecoderTest, BasicExtraData) {
  const std::vector<std::string_view> inputs = {
      "5\r\nhello\r\n0\r\n\r\nextra bytes"};
  RunTest(inputs, "hello", true, 11);
}

TEST(HttpChunkedDecoderTest, IncrementalExtraData) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5",
      "\r",
      "\n",
      "hello",
      "\r",
      "\n",
      "0",
      "\r",
      "\n",
      "\r",
      "\nextra bytes"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 11);
}

TEST(HttpChunkedDecoderTest, MultipleExtraDataBlocks) {
  // clang-format off
  const std::vector<std::string_view> inputs = {
      "5\r\nhello\r\n0\r\n\r\nextra",
      " bytes"
  };
  // clang-format on

  RunTest(inputs, "hello", true, 11);
}

// Test when the line with the chunk length is too long.
TEST(HttpChunkedDecoderTest, LongChunkLengthLine) {
  const int kBigChunkLength = HttpChunkedDecoder::kMaxLineBufLen;
  std::vector<char> big_chunk(kBigChunkLength, '0');
  const std::vector<std::string_view> inputs = {base::as_string_view(big_chunk),
                                                "5"};
  RunTestUntilFailure(inputs, 1);
}

// Test when the extension portion of the line with the chunk length is too
// long.
TEST(HttpChunkedDecoderTest, LongLengthLengthLine) {
  const int kBigChunkLength = HttpChunkedDecoder::kMaxLineBufLen;
  std::vector<char> big_chunk(kBigChunkLength, '0');
  const std::vector<std::string_view> inputs = {
      "5;", base::as_string_view(big_chunk)};
  RunTestUntilFailure(inputs, 1);
}

}  // namespace

}  // namespace net