This source file includes following definitions.
- array_size
- array3_size
- __ab_c_size
1
2 #ifndef __LINUX_OVERFLOW_H
3 #define __LINUX_OVERFLOW_H
4
5 #include <linux/compiler.h>
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 #define is_signed_type(type) (((type)(-1)) < (type)1)
35 #define __type_half_max(type) ((type)1 << (8*sizeof(type) - 1 - is_signed_type(type)))
36 #define type_max(T) ((T)((__type_half_max(T) - 1) + __type_half_max(T)))
37 #define type_min(T) ((T)((T)-type_max(T)-(T)1))
38
39
40
41
42
43 #define is_non_negative(a) ((a) > 0 || (a) == 0)
44 #define is_negative(a) (!(is_non_negative(a)))
45
46 #ifdef COMPILER_HAS_GENERIC_BUILTIN_OVERFLOW
47
48
49
50
51
52
53
54
55 #define check_add_overflow(a, b, d) ({ \
56 typeof(a) __a = (a); \
57 typeof(b) __b = (b); \
58 typeof(d) __d = (d); \
59 (void) (&__a == &__b); \
60 (void) (&__a == __d); \
61 __builtin_add_overflow(__a, __b, __d); \
62 })
63
64 #define check_sub_overflow(a, b, d) ({ \
65 typeof(a) __a = (a); \
66 typeof(b) __b = (b); \
67 typeof(d) __d = (d); \
68 (void) (&__a == &__b); \
69 (void) (&__a == __d); \
70 __builtin_sub_overflow(__a, __b, __d); \
71 })
72
73 #define check_mul_overflow(a, b, d) ({ \
74 typeof(a) __a = (a); \
75 typeof(b) __b = (b); \
76 typeof(d) __d = (d); \
77 (void) (&__a == &__b); \
78 (void) (&__a == __d); \
79 __builtin_mul_overflow(__a, __b, __d); \
80 })
81
82 #else
83
84
85
86 #define __unsigned_add_overflow(a, b, d) ({ \
87 typeof(a) __a = (a); \
88 typeof(b) __b = (b); \
89 typeof(d) __d = (d); \
90 (void) (&__a == &__b); \
91 (void) (&__a == __d); \
92 *__d = __a + __b; \
93 *__d < __a; \
94 })
95 #define __unsigned_sub_overflow(a, b, d) ({ \
96 typeof(a) __a = (a); \
97 typeof(b) __b = (b); \
98 typeof(d) __d = (d); \
99 (void) (&__a == &__b); \
100 (void) (&__a == __d); \
101 *__d = __a - __b; \
102 __a < __b; \
103 })
104
105
106
107 #define __unsigned_mul_overflow(a, b, d) ({ \
108 typeof(a) __a = (a); \
109 typeof(b) __b = (b); \
110 typeof(d) __d = (d); \
111 (void) (&__a == &__b); \
112 (void) (&__a == __d); \
113 *__d = __a * __b; \
114 __builtin_constant_p(__b) ? \
115 __b > 0 && __a > type_max(typeof(__a)) / __b : \
116 __a > 0 && __b > type_max(typeof(__b)) / __a; \
117 })
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135 #define __signed_add_overflow(a, b, d) ({ \
136 typeof(a) __a = (a); \
137 typeof(b) __b = (b); \
138 typeof(d) __d = (d); \
139 (void) (&__a == &__b); \
140 (void) (&__a == __d); \
141 *__d = (u64)__a + (u64)__b; \
142 (((~(__a ^ __b)) & (*__d ^ __a)) \
143 & type_min(typeof(__a))) != 0; \
144 })
145
146
147
148
149
150
151 #define __signed_sub_overflow(a, b, d) ({ \
152 typeof(a) __a = (a); \
153 typeof(b) __b = (b); \
154 typeof(d) __d = (d); \
155 (void) (&__a == &__b); \
156 (void) (&__a == __d); \
157 *__d = (u64)__a - (u64)__b; \
158 ((((__a ^ __b)) & (*__d ^ __a)) \
159 & type_min(typeof(__a))) != 0; \
160 })
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178 #define __signed_mul_overflow(a, b, d) ({ \
179 typeof(a) __a = (a); \
180 typeof(b) __b = (b); \
181 typeof(d) __d = (d); \
182 typeof(a) __tmax = type_max(typeof(a)); \
183 typeof(a) __tmin = type_min(typeof(a)); \
184 (void) (&__a == &__b); \
185 (void) (&__a == __d); \
186 *__d = (u64)__a * (u64)__b; \
187 (__b > 0 && (__a > __tmax/__b || __a < __tmin/__b)) || \
188 (__b < (typeof(__b))-1 && (__a > __tmin/__b || __a < __tmax/__b)) || \
189 (__b == (typeof(__b))-1 && __a == __tmin); \
190 })
191
192
193 #define check_add_overflow(a, b, d) \
194 __builtin_choose_expr(is_signed_type(typeof(a)), \
195 __signed_add_overflow(a, b, d), \
196 __unsigned_add_overflow(a, b, d))
197
198 #define check_sub_overflow(a, b, d) \
199 __builtin_choose_expr(is_signed_type(typeof(a)), \
200 __signed_sub_overflow(a, b, d), \
201 __unsigned_sub_overflow(a, b, d))
202
203 #define check_mul_overflow(a, b, d) \
204 __builtin_choose_expr(is_signed_type(typeof(a)), \
205 __signed_mul_overflow(a, b, d), \
206 __unsigned_mul_overflow(a, b, d))
207
208
209 #endif
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230 #define check_shl_overflow(a, s, d) ({ \
231 typeof(a) _a = a; \
232 typeof(s) _s = s; \
233 typeof(d) _d = d; \
234 u64 _a_full = _a; \
235 unsigned int _to_shift = \
236 is_non_negative(_s) && _s < 8 * sizeof(*d) ? _s : 0; \
237 *_d = (_a_full << _to_shift); \
238 (_to_shift != _s || is_negative(*_d) || is_negative(_a) || \
239 (*_d >> _to_shift) != _a); \
240 })
241
242
243
244
245
246
247
248
249
250
251
252
253 static inline __must_check size_t array_size(size_t a, size_t b)
254 {
255 size_t bytes;
256
257 if (check_mul_overflow(a, b, &bytes))
258 return SIZE_MAX;
259
260 return bytes;
261 }
262
263
264
265
266
267
268
269
270
271
272
273
274
275 static inline __must_check size_t array3_size(size_t a, size_t b, size_t c)
276 {
277 size_t bytes;
278
279 if (check_mul_overflow(a, b, &bytes))
280 return SIZE_MAX;
281 if (check_mul_overflow(bytes, c, &bytes))
282 return SIZE_MAX;
283
284 return bytes;
285 }
286
287
288
289
290
291 static inline __must_check size_t __ab_c_size(size_t a, size_t b, size_t c)
292 {
293 size_t bytes;
294
295 if (check_mul_overflow(a, b, &bytes))
296 return SIZE_MAX;
297 if (check_add_overflow(bytes, c, &bytes))
298 return SIZE_MAX;
299
300 return bytes;
301 }
302
303
304
305
306
307
308
309
310
311
312
313
314 #define struct_size(p, member, n) \
315 __ab_c_size(n, \
316 sizeof(*(p)->member) + __must_be_array((p)->member),\
317 sizeof(*(p)))
318
319 #endif