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
base / containers / checked_iterators_unittest.cc [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/containers/checked_iterators.h"
#include <algorithm>
#include <iterator>
#include "base/check_op.h"
#include "base/debug/alias.h"
#include "base/ranges/algorithm.h"
#include "base/test/gtest_util.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
TEST(CheckedContiguousIterator, SatisfiesContiguousIteratorConcept) {
static_assert(std::contiguous_iterator<CheckedContiguousIterator<int>>);
}
template <class T, size_t N>
constexpr CheckedContiguousConstIterator<T> MakeConstIter(T (&arr)[N],
size_t cur) {
// We allow cur == N as that makes a pointer at one-past-the-end which is
// considered part of the same allocation.
CHECK_LE(cur, N);
return
// SAFETY: `arr` has 1 element, `arr + 1` is considered a pointer into the
// same allocation, as it's one past the end.
UNSAFE_BUFFERS(
CheckedContiguousConstIterator<T>(arr, arr + cur, arr + N));
}
template <class T, size_t N>
constexpr CheckedContiguousIterator<T> MakeIter(T (&arr)[N], size_t cur) {
// We allow cur == N as that makes a pointer at one-past-the-end which is
// considered part of the same allocation.
CHECK_LE(cur, N);
return
// SAFETY: `arr` has 1 element, `arr + 1` is considered a pointer into the
// same allocation, as it's one past the end.
UNSAFE_BUFFERS(CheckedContiguousIterator<T>(arr, arr + cur, arr + N));
}
// Checks that constexpr CheckedContiguousConstIterators can be compared at
// compile time.
TEST(CheckedContiguousIterator, StaticComparisonOperators) {
static constexpr int arr[] = {0};
constexpr CheckedContiguousConstIterator<int> begin = MakeConstIter(arr, 0u);
constexpr CheckedContiguousConstIterator<int> end = MakeConstIter(arr, 1u);
static_assert(begin == begin);
static_assert(end == end);
static_assert(begin != end);
static_assert(end != begin);
static_assert(begin < end);
static_assert(begin <= begin);
static_assert(begin <= end);
static_assert(end <= end);
static_assert(end > begin);
static_assert(end >= end);
static_assert(end >= begin);
static_assert(begin >= begin);
}
// Checks that comparison between iterators and const iterators works in both
// directions.
TEST(CheckedContiguousIterator, ConvertingComparisonOperators) {
static int arr[] = {0};
CheckedContiguousIterator<int> begin = MakeIter(arr, 0u);
CheckedContiguousConstIterator<int> cbegin = MakeConstIter(arr, 0u);
CheckedContiguousIterator<int> end = MakeIter(arr, 1u);
CheckedContiguousConstIterator<int> cend = MakeConstIter(arr, 1u);
EXPECT_EQ(begin, cbegin);
EXPECT_EQ(cbegin, begin);
EXPECT_EQ(end, cend);
EXPECT_EQ(cend, end);
EXPECT_NE(begin, cend);
EXPECT_NE(cbegin, end);
EXPECT_NE(end, cbegin);
EXPECT_NE(cend, begin);
EXPECT_LT(begin, cend);
EXPECT_LT(cbegin, end);
EXPECT_LE(begin, cbegin);
EXPECT_LE(cbegin, begin);
EXPECT_LE(begin, cend);
EXPECT_LE(cbegin, end);
EXPECT_LE(end, cend);
EXPECT_LE(cend, end);
EXPECT_GT(end, cbegin);
EXPECT_GT(cend, begin);
EXPECT_GE(end, cend);
EXPECT_GE(cend, end);
EXPECT_GE(end, cbegin);
EXPECT_GE(cend, begin);
EXPECT_GE(begin, cbegin);
EXPECT_GE(cbegin, begin);
}
TEST(CheckedContiguousIteratorDeathTest, OutOfBounds) {
static int arr[] = {0, 1, 2};
CheckedContiguousIterator<int> it = MakeIter(arr, 1u);
EXPECT_CHECK_DEATH(base::debug::Alias(&it[-2]));
EXPECT_EQ(it[-1], 0);
EXPECT_EQ(it[0], 1);
EXPECT_EQ(it[1], 2);
EXPECT_CHECK_DEATH(base::debug::Alias(&it[3]));
it += 2; // At [3], in bounds (at end).
it -= 3; // At [0], in bounds.
it += 1; // Back to [1], in bounds.
EXPECT_CHECK_DEATH({
it -= 2;
base::debug::Alias(&it);
});
EXPECT_CHECK_DEATH({
it += 3;
base::debug::Alias(&it);
});
EXPECT_CHECK_DEATH({
auto o = it - 2;
base::debug::Alias(&o);
});
EXPECT_CHECK_DEATH({
auto o = it + 3;
base::debug::Alias(&o);
});
it++; // At [2], in bounds.
++it; // At [3], in bounds (at end).
EXPECT_CHECK_DEATH({
++it;
base::debug::Alias(&it);
});
EXPECT_CHECK_DEATH({
it++;
base::debug::Alias(&it);
});
it -= 3; // At [0], in bounds.
EXPECT_CHECK_DEATH({
--it;
base::debug::Alias(&it);
});
EXPECT_CHECK_DEATH({
it--;
base::debug::Alias(&it);
});
}
} // namespace base
namespace {
// Helper template that wraps an iterator and disables its dereference and
// increment operations.
template <typename Iterator>
struct DisableDerefAndIncr : Iterator {
using Iterator::Iterator;
// NOLINTNEXTLINE(google-explicit-constructor)
constexpr DisableDerefAndIncr(const Iterator& iter) : Iterator(iter) {}
void operator*() = delete;
void operator++() = delete;
void operator++(int) = delete;
};
} // namespace
// Inherit `pointer_traits` specialization from the base class.
template <typename Iter>
struct std::pointer_traits<DisableDerefAndIncr<Iter>>
: ::std::pointer_traits<Iter> {};
namespace base {
// Tests that using std::copy with CheckedContiguousIterator<int> results in an
// optimized code-path that does not invoke the iterator's dereference and
// increment operations, as expected in libc++. This fails to compile if
// std::copy is not optimized.
// NOTE: This test relies on implementation details of the STL and thus might
// break in the future during a libc++ roll. If this does happen, please reach
// out to memory-safety-dev@chromium.org to reevaluate whether this test will
// still be needed.
#if defined(_LIBCPP_VERSION)
TEST(CheckedContiguousIterator, OptimizedCopy) {
using Iter = DisableDerefAndIncr<CheckedContiguousIterator<int>>;
int arr_in[5] = {1, 2, 3, 4, 5};
int arr_out[5];
Iter in_begin = MakeIter(arr_in, 0u);
Iter in_end = MakeIter(arr_in, 5u);
Iter out_begin = MakeIter(arr_out, 0u);
Iter out_end = std::copy(in_begin, in_end, out_begin);
EXPECT_EQ(out_end, out_begin + (in_end - in_begin));
EXPECT_TRUE(ranges::equal(arr_in, arr_out));
}
#endif // defined(_LIBCPP_VERSION)
} // namespace base