Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/test/fuzzed_data_provider.h" | 5 #include "base/test/fuzzed_data_provider.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 return ConsumeBytes(remaining_data_.length()); | 27 return ConsumeBytes(remaining_data_.length()); |
| 28 } | 28 } |
| 29 | 29 |
| 30 uint32_t FuzzedDataProvider::ConsumeUint32InRange(uint32_t min, uint32_t max) { | 30 uint32_t FuzzedDataProvider::ConsumeUint32InRange(uint32_t min, uint32_t max) { |
| 31 CHECK_LE(min, max); | 31 CHECK_LE(min, max); |
| 32 | 32 |
| 33 uint32_t range = max - min; | 33 uint32_t range = max - min; |
| 34 uint32_t offset = 0; | 34 uint32_t offset = 0; |
| 35 uint32_t result = 0; | 35 uint32_t result = 0; |
| 36 | 36 |
| 37 while ((range >> offset) > 0 && !remaining_data_.empty()) { | 37 while (offset < 32 && (range >> offset) > 0 && !remaining_data_.empty()) { |
| 38 // Pull bytes off the end of the seed data. Experimentally, this seems to | 38 // Pull bytes off the end of the seed data. Experimentally, this seems to |
|
hal.canary
2016/08/23 15:49:04
does this effect anything else?
Lei Zhang
2016/08/23 18:05:50
Hmm?
| |
| 39 // allow the fuzzer to more easily explore the input space. This makes | 39 // allow the fuzzer to more easily explore the input space. This makes |
| 40 // sense, since it works by modifying inputs that caused new code to run, | 40 // sense, since it works by modifying inputs that caused new code to run, |
| 41 // and this data is often used to encode length of data read by | 41 // and this data is often used to encode length of data read by |
| 42 // ConsumeBytes. Separating out read lengths makes it easier modify the | 42 // ConsumeBytes. Separating out read lengths makes it easier modify the |
| 43 // contents of the data that is actually read. | 43 // contents of the data that is actually read. |
| 44 uint8_t next_byte = remaining_data_.back(); | 44 uint8_t next_byte = remaining_data_.back(); |
| 45 remaining_data_.remove_suffix(1); | 45 remaining_data_.remove_suffix(1); |
| 46 result = (result << 8) | next_byte; | 46 result = (result << 8) | next_byte; |
| 47 offset += 8; | 47 offset += 8; |
| 48 } | 48 } |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 67 | 67 |
| 68 uint8_t FuzzedDataProvider::ConsumeUint8() { | 68 uint8_t FuzzedDataProvider::ConsumeUint8() { |
| 69 return ConsumeUint32InRange(0, 0xFF); | 69 return ConsumeUint32InRange(0, 0xFF); |
| 70 } | 70 } |
| 71 | 71 |
| 72 uint16_t FuzzedDataProvider::ConsumeUint16() { | 72 uint16_t FuzzedDataProvider::ConsumeUint16() { |
| 73 return ConsumeUint32InRange(0, 0xFFFF); | 73 return ConsumeUint32InRange(0, 0xFFFF); |
| 74 } | 74 } |
| 75 | 75 |
| 76 } // namespace base | 76 } // namespace base |
| OLD | NEW |