Branch data Line data Source code
1 : : /* Pass to detect and issue warnings for invalid accesses, including
2 : : invalid or mismatched allocation/deallocation calls.
3 : :
4 : : Copyright (C) 2020-2024 Free Software Foundation, Inc.
5 : : Contributed by Martin Sebor <msebor@redhat.com>.
6 : :
7 : : This file is part of GCC.
8 : :
9 : : GCC is free software; you can redistribute it and/or modify it under
10 : : the terms of the GNU General Public License as published by the Free
11 : : Software Foundation; either version 3, or (at your option) any later
12 : : version.
13 : :
14 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 : : for more details.
18 : :
19 : : You should have received a copy of the GNU General Public License
20 : : along with GCC; see the file COPYING3. If not see
21 : : <http://www.gnu.org/licenses/>. */
22 : :
23 : : #define INCLUDE_STRING
24 : : #include "config.h"
25 : : #include "system.h"
26 : : #include "coretypes.h"
27 : : #include "backend.h"
28 : : #include "tree.h"
29 : : #include "gimple.h"
30 : : #include "tree-pass.h"
31 : : #include "builtins.h"
32 : : #include "diagnostic.h"
33 : : #include "ssa.h"
34 : : #include "gimple-pretty-print.h"
35 : : #include "gimple-ssa-warn-access.h"
36 : : #include "gimple-ssa-warn-restrict.h"
37 : : #include "diagnostic-core.h"
38 : : #include "fold-const.h"
39 : : #include "gimple-iterator.h"
40 : : #include "gimple-fold.h"
41 : : #include "langhooks.h"
42 : : #include "memmodel.h"
43 : : #include "target.h"
44 : : #include "tree-dfa.h"
45 : : #include "tree-ssa.h"
46 : : #include "tree-cfg.h"
47 : : #include "tree-object-size.h"
48 : : #include "tree-ssa-strlen.h"
49 : : #include "calls.h"
50 : : #include "cfganal.h"
51 : : #include "intl.h"
52 : : #include "gimple-range.h"
53 : : #include "stringpool.h"
54 : : #include "attribs.h"
55 : : #include "demangle.h"
56 : : #include "attr-fnspec.h"
57 : : #include "pointer-query.h"
58 : : #include "pretty-print-markup.h"
59 : : #include "gcc-urlifier.h"
60 : :
61 : : /* Return true if tree node X has an associated location. */
62 : :
63 : : static inline location_t
64 : 109 : has_location (const_tree x)
65 : : {
66 : 109 : if (DECL_P (x))
67 : 84 : return DECL_SOURCE_LOCATION (x) != UNKNOWN_LOCATION;
68 : :
69 : 25 : if (EXPR_P (x))
70 : 0 : return EXPR_HAS_LOCATION (x);
71 : :
72 : : return false;
73 : : }
74 : :
75 : : /* Return the associated location of STMT. */
76 : :
77 : : static inline location_t
78 : 2181966 : get_location (const gimple *stmt)
79 : : {
80 : 1927348 : return gimple_location (stmt);
81 : : }
82 : :
83 : : /* Return the associated location of tree node X. */
84 : :
85 : : static inline location_t
86 : 2033 : get_location (tree x)
87 : : {
88 : 2033 : if (DECL_P (x))
89 : 973 : return DECL_SOURCE_LOCATION (x);
90 : :
91 : 1060 : if (EXPR_P (x))
92 : 1060 : return EXPR_LOCATION (x);
93 : :
94 : : return UNKNOWN_LOCATION;
95 : : }
96 : :
97 : : /* Overload of the nascent tree function for GIMPLE STMT. */
98 : :
99 : : static inline tree
100 : 1216971 : get_callee_fndecl (const gimple *stmt)
101 : : {
102 : 632 : return gimple_call_fndecl (stmt);
103 : : }
104 : :
105 : : static inline unsigned
106 : 32645054 : call_nargs (const gimple *stmt)
107 : : {
108 : 2234541 : return gimple_call_num_args (stmt);
109 : : }
110 : :
111 : : static inline unsigned
112 : 356 : call_nargs (const_tree expr)
113 : : {
114 : 356 : return call_expr_nargs (expr);
115 : : }
116 : :
117 : :
118 : : static inline tree
119 : 12808859 : call_arg (const gimple *stmt, unsigned argno)
120 : : {
121 : 1343355 : return gimple_call_arg (stmt, argno);
122 : : }
123 : :
124 : : static inline tree
125 : 302 : call_arg (tree expr, unsigned argno)
126 : : {
127 : 302 : return CALL_EXPR_ARG (expr, argno);
128 : : }
129 : :
130 : : /* For a call EXPR at LOC to a function FNAME that expects a string
131 : : in the argument ARG, issue a diagnostic due to it being a called
132 : : with an argument that is a character array with no terminating
133 : : NUL. SIZE is the EXACT size of the array, and BNDRNG the number
134 : : of characters in which the NUL is expected. Either EXPR or FNAME
135 : : may be null but noth both. SIZE may be null when BNDRNG is null. */
136 : :
137 : : template <class GimpleOrTree>
138 : : static void
139 : 8030 : warn_string_no_nul (location_t loc, GimpleOrTree expr, const char *fname,
140 : : tree arg, tree decl, tree size, bool exact,
141 : : const wide_int bndrng[2] /* = NULL */)
142 : : {
143 : 8030 : const opt_code opt = OPT_Wstringop_overread;
144 : 1399 : if ((expr && warning_suppressed_p (expr, opt))
145 : 8843 : || warning_suppressed_p (arg, opt))
146 : 1139 : return;
147 : :
148 : 6891 : loc = expansion_point_location_if_in_system_header (loc);
149 : : bool warned;
150 : :
151 : : /* Format the bound range as a string to keep the number of messages
152 : : from exploding. */
153 : : char bndstr[80];
154 : 6891 : *bndstr = 0;
155 : 6891 : if (bndrng)
156 : : {
157 : 144 : if (bndrng[0] == bndrng[1])
158 : 132 : sprintf (bndstr, "%llu", (unsigned long long) bndrng[0].to_uhwi ());
159 : : else
160 : 12 : sprintf (bndstr, "[%llu, %llu]",
161 : 12 : (unsigned long long) bndrng[0].to_uhwi (),
162 : 12 : (unsigned long long) bndrng[1].to_uhwi ());
163 : : }
164 : :
165 : 6891 : auto_diagnostic_group d;
166 : :
167 : 6891 : const tree maxobjsize = max_object_size ();
168 : 6891 : const wide_int maxsiz = wi::to_wide (maxobjsize);
169 : 6891 : if (expr)
170 : : {
171 : 774 : tree func = get_callee_fndecl (expr);
172 : 774 : if (bndrng)
173 : : {
174 : 144 : if (wi::ltu_p (maxsiz, bndrng[0]))
175 : 0 : warned = warning_at (loc, opt,
176 : : "%qD specified bound %s exceeds "
177 : : "maximum object size %E",
178 : : func, bndstr, maxobjsize);
179 : : else
180 : : {
181 : 144 : bool maybe = wi::to_wide (size) == bndrng[0];
182 : 191 : warned = warning_at (loc, opt,
183 : : exact
184 : : ? G_("%qD specified bound %s exceeds "
185 : : "the size %E of unterminated array")
186 : : : (maybe
187 : 47 : ? G_("%qD specified bound %s may "
188 : : "exceed the size of at most %E "
189 : : "of unterminated array")
190 : : : G_("%qD specified bound %s exceeds "
191 : : "the size of at most %E "
192 : : "of unterminated array")),
193 : : func, bndstr, size);
194 : : }
195 : : }
196 : : else
197 : 630 : warned = warning_at (loc, opt,
198 : : "%qD argument missing terminating nul",
199 : : func);
200 : : }
201 : : else
202 : : {
203 : 6117 : if (bndrng)
204 : : {
205 : 0 : if (wi::ltu_p (maxsiz, bndrng[0]))
206 : 0 : warned = warning_at (loc, opt,
207 : : "%qs specified bound %s exceeds "
208 : : "maximum object size %E",
209 : : fname, bndstr, maxobjsize);
210 : : else
211 : : {
212 : 0 : bool maybe = wi::to_wide (size) == bndrng[0];
213 : 0 : warned = warning_at (loc, opt,
214 : : exact
215 : : ? G_("%qs specified bound %s exceeds "
216 : : "the size %E of unterminated array")
217 : : : (maybe
218 : 0 : ? G_("%qs specified bound %s may "
219 : : "exceed the size of at most %E "
220 : : "of unterminated array")
221 : : : G_("%qs specified bound %s exceeds "
222 : : "the size of at most %E "
223 : : "of unterminated array")),
224 : : fname, bndstr, size);
225 : : }
226 : : }
227 : : else
228 : 6117 : warned = warning_at (loc, opt,
229 : : "%qs argument missing terminating nul",
230 : : fname);
231 : : }
232 : :
233 : 6891 : if (warned)
234 : : {
235 : 521 : inform (get_location (decl),
236 : : "referenced argument declared here");
237 : 521 : suppress_warning (arg, opt);
238 : 521 : if (expr)
239 : 441 : suppress_warning (expr, opt);
240 : : }
241 : 6891 : }
242 : :
243 : : void
244 : 828 : warn_string_no_nul (location_t loc, gimple *stmt, const char *fname,
245 : : tree arg, tree decl, tree size /* = NULL_TREE */,
246 : : bool exact /* = false */,
247 : : const wide_int bndrng[2] /* = NULL */)
248 : : {
249 : 828 : return warn_string_no_nul<gimple *> (loc, stmt, fname,
250 : 828 : arg, decl, size, exact, bndrng);
251 : : }
252 : :
253 : : void
254 : 7173 : warn_string_no_nul (location_t loc, tree expr, const char *fname,
255 : : tree arg, tree decl, tree size /* = NULL_TREE */,
256 : : bool exact /* = false */,
257 : : const wide_int bndrng[2] /* = NULL */)
258 : : {
259 : 7173 : return warn_string_no_nul<tree> (loc, expr, fname,
260 : 7173 : arg, decl, size, exact, bndrng);
261 : : }
262 : :
263 : : /* If EXP refers to an unterminated constant character array return
264 : : the declaration of the object of which the array is a member or
265 : : element and if SIZE is not null, set *SIZE to the size of
266 : : the unterminated array and set *EXACT if the size is exact or
267 : : clear it otherwise. Otherwise return null. */
268 : :
269 : : tree
270 : 696547 : unterminated_array (tree exp, tree *size /* = NULL */, bool *exact /* = NULL */)
271 : : {
272 : : /* C_STRLEN will return NULL and set DECL in the info
273 : : structure if EXP references a unterminated array. */
274 : 696547 : c_strlen_data lendata = { };
275 : 696547 : tree len = c_strlen (exp, 1, &lendata);
276 : 696547 : if (len || !lendata.minlen || !lendata.decl)
277 : : return NULL_TREE;
278 : :
279 : 1860 : if (!size)
280 : : return lendata.decl;
281 : :
282 : 1860 : len = lendata.minlen;
283 : 1860 : if (lendata.off)
284 : : {
285 : : /* Constant offsets are already accounted for in LENDATA.MINLEN,
286 : : but not in a SSA_NAME + CST expression. */
287 : 1860 : if (TREE_CODE (lendata.off) == INTEGER_CST)
288 : 1464 : *exact = true;
289 : 396 : else if (TREE_CODE (lendata.off) == PLUS_EXPR
290 : 396 : && TREE_CODE (TREE_OPERAND (lendata.off, 1)) == INTEGER_CST)
291 : : {
292 : : /* Subtract the offset from the size of the array. */
293 : 121 : *exact = false;
294 : 121 : tree temp = TREE_OPERAND (lendata.off, 1);
295 : 121 : temp = fold_convert (ssizetype, temp);
296 : 121 : len = fold_build2 (MINUS_EXPR, ssizetype, len, temp);
297 : : }
298 : : else
299 : 275 : *exact = false;
300 : : }
301 : : else
302 : 0 : *exact = true;
303 : :
304 : 1860 : *size = len;
305 : 1860 : return lendata.decl;
306 : : }
307 : :
308 : : /* For a call EXPR (which may be null) that expects a string argument
309 : : SRC as an argument, returns false if SRC is a character array with
310 : : no terminating NUL. When nonnull, BOUND is the number of characters
311 : : in which to expect the terminating NUL. When EXPR is nonnull also
312 : : issues a warning. */
313 : :
314 : : template <class GimpleOrTree>
315 : : static bool
316 : 689447 : check_nul_terminated_array (GimpleOrTree expr, tree src, tree bound)
317 : : {
318 : : /* The constant size of the array SRC points to. The actual size
319 : : may be less of EXACT is true, but not more. */
320 : : tree size;
321 : : /* True if SRC involves a non-constant offset into the array. */
322 : : bool exact;
323 : : /* The unterminated constant array SRC points to. */
324 : 689447 : tree nonstr = unterminated_array (src, &size, &exact);
325 : 689447 : if (!nonstr)
326 : : return true;
327 : :
328 : : /* NONSTR refers to the non-nul terminated constant array and SIZE
329 : : is the constant size of the array in bytes. EXACT is true when
330 : : SIZE is exact. */
331 : :
332 : 5115 : wide_int bndrng[2];
333 : 1023 : if (bound)
334 : : {
335 : 357 : int_range_max r (TREE_TYPE (bound));
336 : :
337 : 714 : get_range_query (cfun)->range_of_expr (r, bound);
338 : :
339 : 357 : if (r.undefined_p () || r.varying_p ())
340 : : return true;
341 : :
342 : 356 : bndrng[0] = r.lower_bound ();
343 : 356 : bndrng[1] = r.upper_bound ();
344 : :
345 : 356 : if (exact)
346 : : {
347 : 206 : if (wi::leu_p (bndrng[0], wi::to_wide (size)))
348 : : return true;
349 : : }
350 : 150 : else if (wi::lt_p (bndrng[0], wi::to_wide (size), UNSIGNED))
351 : : return true;
352 : 357 : }
353 : :
354 : 813 : if (expr)
355 : 1077 : warn_string_no_nul (get_location (expr), expr, NULL, src, nonstr,
356 : : size, exact, bound ? bndrng : NULL);
357 : :
358 : : return false;
359 : 3069 : }
360 : :
361 : : bool
362 : 397521 : check_nul_terminated_array (gimple *stmt, tree src, tree bound /* = NULL_TREE */)
363 : : {
364 : 397521 : return check_nul_terminated_array<gimple *>(stmt, src, bound);
365 : : }
366 : :
367 : : bool
368 : 280406 : check_nul_terminated_array (tree expr, tree src, tree bound /* = NULL_TREE */)
369 : : {
370 : 280406 : return check_nul_terminated_array<tree>(expr, src, bound);
371 : : }
372 : :
373 : : /* Warn about passing a non-string array/pointer to a built-in function
374 : : that expects a nul-terminated string argument. Returns true if
375 : : a warning has been issued.*/
376 : :
377 : : template <class GimpleOrTree>
378 : : static bool
379 : 7024403 : maybe_warn_nonstring_arg (tree fndecl, GimpleOrTree exp)
380 : : {
381 : 7024403 : if (!fndecl || !fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
382 : : return false;
383 : :
384 : 2246134 : if (!warn_stringop_overread
385 : 2246134 : || warning_suppressed_p (exp, OPT_Wstringop_overread))
386 : 11237 : return false;
387 : :
388 : : /* Avoid clearly invalid calls (more checking done below). */
389 : 2234897 : unsigned nargs = call_nargs (exp);
390 : 2234897 : if (!nargs)
391 : : return false;
392 : :
393 : : /* The bound argument to a bounded string function like strncpy. */
394 : 1927011 : tree bound = NULL_TREE;
395 : :
396 : : /* The longest known or possible string argument to one of the comparison
397 : : functions. If the length is less than the bound it is used instead.
398 : : Since the length is only used for warning and not for code generation
399 : : disable strict mode in the calls to get_range_strlen below. */
400 : 1927011 : tree maxlen = NULL_TREE;
401 : :
402 : : /* It's safe to call "bounded" string functions with a non-string
403 : : argument since the functions provide an explicit bound for this
404 : : purpose. The exception is strncat where the bound may refer to
405 : : either the destination or the source. */
406 : 1927011 : int fncode = DECL_FUNCTION_CODE (fndecl);
407 : 1927011 : switch (fncode)
408 : : {
409 : : case BUILT_IN_STRCMP:
410 : : case BUILT_IN_STRNCMP:
411 : : case BUILT_IN_STRNCASECMP:
412 : : {
413 : : /* For these, if one argument refers to one or more of a set
414 : : of string constants or arrays of known size, determine
415 : : the range of their known or possible lengths and use it
416 : : conservatively as the bound for the unbounded function,
417 : : and to adjust the range of the bound of the bounded ones. */
418 : 390584 : for (unsigned argno = 0;
419 : 780694 : argno < MIN (nargs, 2)
420 : 780694 : && !(maxlen && TREE_CODE (maxlen) == INTEGER_CST); argno++)
421 : : {
422 : 390584 : tree arg = call_arg (exp, argno);
423 : 390584 : if (!get_attr_nonstring_decl (arg))
424 : : {
425 : 390092 : c_strlen_data lendata = { };
426 : : /* Set MAXBOUND to an arbitrary non-null non-integer
427 : : node as a request to have it set to the length of
428 : : the longest string in a PHI. */
429 : 390092 : lendata.maxbound = arg;
430 : 390092 : get_range_strlen (arg, &lendata, /* eltsize = */ 1);
431 : 390092 : maxlen = lendata.maxbound;
432 : : }
433 : : }
434 : : }
435 : : /* Fall through. */
436 : :
437 : : case BUILT_IN_STRNCAT:
438 : : case BUILT_IN_STPNCPY:
439 : : case BUILT_IN_STRNCPY:
440 : 394997 : if (nargs > 2)
441 : 9742 : bound = call_arg (exp, 2);
442 : : break;
443 : :
444 : 543 : case BUILT_IN_STRNDUP:
445 : 543 : if (nargs < 2)
446 : : return false;
447 : 543 : bound = call_arg (exp, 1);
448 : 543 : break;
449 : :
450 : 1396 : case BUILT_IN_STRNLEN:
451 : : {
452 : 1396 : tree arg = call_arg (exp, 0);
453 : 1396 : if (!get_attr_nonstring_decl (arg))
454 : : {
455 : 1294 : c_strlen_data lendata = { };
456 : : /* Set MAXBOUND to an arbitrary non-null non-integer
457 : : node as a request to have it set to the length of
458 : : the longest string in a PHI. */
459 : 1294 : lendata.maxbound = arg;
460 : 1294 : get_range_strlen (arg, &lendata, /* eltsize = */ 1);
461 : 1294 : maxlen = lendata.maxbound;
462 : : }
463 : 1396 : if (nargs > 1)
464 : 1395 : bound = call_arg (exp, 1);
465 : : break;
466 : : }
467 : :
468 : : default:
469 : : break;
470 : : }
471 : :
472 : : /* Determine the range of the bound argument (if specified). */
473 : 1927011 : tree bndrng[2] = { NULL_TREE, NULL_TREE };
474 : 1927011 : if (bound)
475 : : {
476 : 11680 : STRIP_NOPS (bound);
477 : 11680 : get_size_range (bound, bndrng);
478 : : }
479 : :
480 : 1927011 : location_t loc = get_location (exp);
481 : :
482 : 1927011 : if (bndrng[0])
483 : : {
484 : : /* Diagnose excessive bound prior to the adjustment below and
485 : : regardless of attribute nonstring. */
486 : 11660 : tree maxobjsize = max_object_size ();
487 : 11660 : if (tree_int_cst_lt (maxobjsize, bndrng[0]))
488 : : {
489 : 131 : bool warned = false;
490 : 131 : if (tree_int_cst_equal (bndrng[0], bndrng[1]))
491 : 114 : warned = warning_at (loc, OPT_Wstringop_overread,
492 : : "%qD specified bound %E "
493 : : "exceeds maximum object size %E",
494 : : fndecl, bndrng[0], maxobjsize);
495 : : else
496 : 17 : warned = warning_at (loc, OPT_Wstringop_overread,
497 : : "%qD specified bound [%E, %E] "
498 : : "exceeds maximum object size %E",
499 : : fndecl, bndrng[0], bndrng[1],
500 : : maxobjsize);
501 : 131 : if (warned)
502 : 45 : suppress_warning (exp, OPT_Wstringop_overread);
503 : :
504 : 131 : return warned;
505 : : }
506 : : }
507 : :
508 : 1926880 : if (maxlen && !integer_all_onesp (maxlen))
509 : : {
510 : : /* Add one for the nul. */
511 : 6451 : maxlen = const_binop (PLUS_EXPR, TREE_TYPE (maxlen), maxlen,
512 : : size_one_node);
513 : :
514 : 6451 : if (!bndrng[0])
515 : : {
516 : : /* Conservatively use the upper bound of the lengths for
517 : : both the lower and the upper bound of the operation. */
518 : 4581 : bndrng[0] = maxlen;
519 : 4581 : bndrng[1] = maxlen;
520 : 4581 : bound = void_type_node;
521 : : }
522 : 1870 : else if (maxlen)
523 : : {
524 : : /* Replace the bound on the operation with the upper bound
525 : : of the length of the string if the latter is smaller. */
526 : 1861 : if (tree_int_cst_lt (maxlen, bndrng[0]))
527 : 188 : bndrng[0] = maxlen;
528 : 1673 : else if (tree_int_cst_lt (maxlen, bndrng[1]))
529 : 383 : bndrng[1] = maxlen;
530 : : }
531 : : }
532 : :
533 : 1926880 : bool any_arg_warned = false;
534 : : /* Iterate over the built-in function's formal arguments and check
535 : : each const char* against the actual argument. If the actual
536 : : argument is declared attribute non-string issue a warning unless
537 : : the argument's maximum length is bounded. */
538 : : function_args_iterator it;
539 : 1926880 : function_args_iter_init (&it, TREE_TYPE (fndecl));
540 : :
541 : 6238403 : for (unsigned argno = 0; ; ++argno, function_args_iter_next (&it))
542 : : {
543 : : /* Avoid iterating past the declared argument in a call
544 : : to function declared without a prototype. */
545 : 6236865 : if (argno >= nargs)
546 : : break;
547 : :
548 : 4450049 : tree argtype = function_args_iter_cond (&it);
549 : 4450049 : if (!argtype)
550 : : break;
551 : :
552 : 4309985 : if (TREE_CODE (argtype) != POINTER_TYPE)
553 : 4308447 : continue;
554 : :
555 : 2657849 : argtype = TREE_TYPE (argtype);
556 : :
557 : 4351280 : if (TREE_CODE (argtype) != INTEGER_TYPE
558 : 2657849 : || !TYPE_READONLY (argtype))
559 : 1693431 : continue;
560 : :
561 : 964418 : argtype = TYPE_MAIN_VARIANT (argtype);
562 : 964418 : if (argtype != char_type_node)
563 : 11589 : continue;
564 : :
565 : 952829 : tree callarg = call_arg (exp, argno);
566 : 952829 : if (TREE_CODE (callarg) == ADDR_EXPR)
567 : 519792 : callarg = TREE_OPERAND (callarg, 0);
568 : :
569 : : /* See if the destination is declared with attribute "nonstring". */
570 : 952829 : tree decl = get_attr_nonstring_decl (callarg);
571 : 952829 : if (!decl)
572 : 951291 : continue;
573 : :
574 : : /* The maximum number of array elements accessed. */
575 : 1538 : offset_int wibnd = 0;
576 : :
577 : 1538 : if (argno && fncode == BUILT_IN_STRNCAT)
578 : : {
579 : : /* See if the bound in strncat is derived from the length
580 : : of the strlen of the destination (as it's expected to be).
581 : : If so, reset BOUND and FNCODE to trigger a warning. */
582 : 244 : tree dstarg = call_arg (exp, 0);
583 : 244 : if (is_strlen_related_p (dstarg, bound))
584 : : {
585 : : /* The bound applies to the destination, not to the source,
586 : : so reset these to trigger a warning without mentioning
587 : : the bound. */
588 : : bound = NULL;
589 : : fncode = 0;
590 : : }
591 : 240 : else if (bndrng[1])
592 : : /* Use the upper bound of the range for strncat. */
593 : 240 : wibnd = wi::to_offset (bndrng[1]);
594 : : }
595 : 1294 : else if (bndrng[0])
596 : : /* Use the lower bound of the range for functions other than
597 : : strncat. */
598 : 1058 : wibnd = wi::to_offset (bndrng[0]);
599 : :
600 : : /* Determine the size of the argument array if it is one. */
601 : 1538 : offset_int asize = wibnd;
602 : 1538 : bool known_size = false;
603 : 1538 : tree type = TREE_TYPE (decl);
604 : :
605 : : /* Determine the array size. For arrays of unknown bound and
606 : : pointers reset BOUND to trigger the appropriate warning. */
607 : 1538 : if (TREE_CODE (type) == ARRAY_TYPE)
608 : : {
609 : 1298 : if (tree arrbnd = TYPE_DOMAIN (type))
610 : : {
611 : 1236 : if ((arrbnd = TYPE_MAX_VALUE (arrbnd))
612 : 1236 : && TREE_CODE (arrbnd) == INTEGER_CST)
613 : : {
614 : 1234 : asize = wi::to_offset (arrbnd) + 1;
615 : 1234 : known_size = true;
616 : : }
617 : : }
618 : 62 : else if (bound == void_type_node)
619 : 1538 : bound = NULL_TREE;
620 : : }
621 : 240 : else if (bound == void_type_node)
622 : 1538 : bound = NULL_TREE;
623 : :
624 : : /* In a call to strncat with a bound in a range whose lower but
625 : : not upper bound is less than the array size, reset ASIZE to
626 : : be the same as the bound and the other variable to trigger
627 : : the appropriate warning below. */
628 : : if (fncode == BUILT_IN_STRNCAT
629 : 240 : && bndrng[0] != bndrng[1]
630 : 1618 : && wi::ltu_p (wi::to_offset (bndrng[0]), asize)
631 : 1634 : && (!known_size
632 : 92 : || wi::ltu_p (asize, wibnd)))
633 : : {
634 : 16 : asize = wibnd;
635 : 16 : bound = NULL_TREE;
636 : 16 : fncode = 0;
637 : : }
638 : :
639 : 1538 : bool warned = false;
640 : :
641 : 1538 : auto_diagnostic_group d;
642 : 1538 : if (wi::ltu_p (asize, wibnd))
643 : : {
644 : 193 : if (bndrng[0] == bndrng[1])
645 : 160 : warned = warning_at (loc, OPT_Wstringop_overread,
646 : : "%qD argument %i declared attribute "
647 : : "%<nonstring%> is smaller than the specified "
648 : : "bound %wu",
649 : : fndecl, argno + 1, wibnd.to_uhwi ());
650 : 33 : else if (wi::ltu_p (asize, wi::to_offset (bndrng[0])))
651 : 25 : warned = warning_at (loc, OPT_Wstringop_overread,
652 : : "%qD argument %i declared attribute "
653 : : "%<nonstring%> is smaller than "
654 : : "the specified bound [%E, %E]",
655 : : fndecl, argno + 1, bndrng[0], bndrng[1]);
656 : : else
657 : 8 : warned = warning_at (loc, OPT_Wstringop_overread,
658 : : "%qD argument %i declared attribute "
659 : : "%<nonstring%> may be smaller than "
660 : : "the specified bound [%E, %E]",
661 : : fndecl, argno + 1, bndrng[0], bndrng[1]);
662 : : }
663 : 1345 : else if (fncode == BUILT_IN_STRNCAT)
664 : : ; /* Avoid warning for calls to strncat() when the bound
665 : : is equal to the size of the non-string argument. */
666 : 1141 : else if (!bound)
667 : 276 : warned = warning_at (loc, OPT_Wstringop_overread,
668 : : "%qD argument %i declared attribute %<nonstring%>",
669 : : fndecl, argno + 1);
670 : :
671 : 469 : if (warned)
672 : : {
673 : 469 : inform (DECL_SOURCE_LOCATION (decl),
674 : : "argument %qD declared here", decl);
675 : 469 : any_arg_warned = true;
676 : : }
677 : : }
678 : :
679 : 1926880 : if (any_arg_warned)
680 : 469 : suppress_warning (exp, OPT_Wstringop_overread);
681 : :
682 : : return any_arg_warned;
683 : : }
684 : :
685 : : bool
686 : 511056 : maybe_warn_nonstring_arg (tree fndecl, gimple *stmt)
687 : : {
688 : 511056 : return maybe_warn_nonstring_arg<gimple *>(fndecl, stmt);
689 : : }
690 : :
691 : :
692 : : bool
693 : 356 : maybe_warn_nonstring_arg (tree fndecl, tree expr)
694 : : {
695 : 356 : return maybe_warn_nonstring_arg<tree>(fndecl, expr);
696 : : }
697 : :
698 : : /* Issue a warning OPT for a bounded call EXP with a bound in RANGE
699 : : accessing an object with SIZE. */
700 : :
701 : : template <class GimpleOrTree>
702 : : static bool
703 : 438 : maybe_warn_for_bound (opt_code opt, location_t loc, GimpleOrTree exp, tree func,
704 : : tree bndrng[2], tree size, const access_data *pad)
705 : : {
706 : 438 : if (!bndrng[0] || warning_suppressed_p (exp, opt))
707 : 82 : return false;
708 : :
709 : 356 : tree maxobjsize = max_object_size ();
710 : :
711 : 356 : bool warned = false;
712 : :
713 : 356 : if (opt == OPT_Wstringop_overread)
714 : : {
715 : 162 : bool maybe = pad && pad->src.phi ();
716 : : if (maybe)
717 : : {
718 : : /* Issue a "maybe" warning only if the PHI refers to objects
719 : : at least one of which has more space remaining than the bound.
720 : : Otherwise, if the bound is greater, use the definitive form. */
721 : 2 : offset_int remmax = pad->src.size_remaining ();
722 : 2 : if (remmax < wi::to_offset (bndrng[0]))
723 : 2 : maybe = false;
724 : : }
725 : :
726 : 162 : auto_diagnostic_group d;
727 : 162 : if (tree_int_cst_lt (maxobjsize, bndrng[0]))
728 : : {
729 : 75 : if (bndrng[0] == bndrng[1])
730 : 73 : warned = (func
731 : 146 : ? warning_at (loc, opt,
732 : : (maybe
733 : : ? G_("%qD specified bound %E may "
734 : : "exceed maximum object size %E")
735 : : : G_("%qD specified bound %E "
736 : : "exceeds maximum object size %E")),
737 : : func, bndrng[0], maxobjsize)
738 : 73 : : warning_at (loc, opt,
739 : : (maybe
740 : : ? G_("specified bound %E may "
741 : : "exceed maximum object size %E")
742 : : : G_("specified bound %E "
743 : : "exceeds maximum object size %E")),
744 : : bndrng[0], maxobjsize));
745 : : else
746 : 2 : warned = (func
747 : 4 : ? warning_at (loc, opt,
748 : : (maybe
749 : : ? G_("%qD specified bound [%E, %E] may "
750 : : "exceed maximum object size %E")
751 : : : G_("%qD specified bound [%E, %E] "
752 : : "exceeds maximum object size %E")),
753 : : func,
754 : : bndrng[0], bndrng[1], maxobjsize)
755 : 2 : : warning_at (loc, opt,
756 : : (maybe
757 : : ? G_("specified bound [%E, %E] may "
758 : : "exceed maximum object size %E")
759 : : : G_("specified bound [%E, %E] "
760 : : "exceeds maximum object size %E")),
761 : : bndrng[0], bndrng[1], maxobjsize));
762 : : }
763 : 87 : else if (!size || tree_int_cst_le (bndrng[0], size))
764 : 4 : return false;
765 : 83 : else if (tree_int_cst_equal (bndrng[0], bndrng[1]))
766 : 73 : warned = (func
767 : 146 : ? warning_at (loc, opt,
768 : : (maybe
769 : : ? G_("%qD specified bound %E may exceed "
770 : : "source size %E")
771 : : : G_("%qD specified bound %E exceeds "
772 : : "source size %E")),
773 : : func, bndrng[0], size)
774 : 73 : : warning_at (loc, opt,
775 : : (maybe
776 : : ? G_("specified bound %E may exceed "
777 : : "source size %E")
778 : : : G_("specified bound %E exceeds "
779 : : "source size %E")),
780 : : bndrng[0], size));
781 : : else
782 : 10 : warned = (func
783 : 20 : ? warning_at (loc, opt,
784 : : (maybe
785 : : ? G_("%qD specified bound [%E, %E] may "
786 : : "exceed source size %E")
787 : : : G_("%qD specified bound [%E, %E] exceeds "
788 : : "source size %E")),
789 : : func, bndrng[0], bndrng[1], size)
790 : 10 : : warning_at (loc, opt,
791 : : (maybe
792 : : ? G_("specified bound [%E, %E] may exceed "
793 : : "source size %E")
794 : : : G_("specified bound [%E, %E] exceeds "
795 : : "source size %E")),
796 : : bndrng[0], bndrng[1], size));
797 : 158 : if (warned)
798 : : {
799 : 77 : if (pad && pad->src.ref
800 : 150 : && has_location (pad->src.ref))
801 : 49 : inform (get_location (pad->src.ref),
802 : : "source object allocated here");
803 : 78 : suppress_warning (exp, opt);
804 : : }
805 : :
806 : 158 : return warned;
807 : 162 : }
808 : :
809 : 194 : bool maybe = pad && pad->dst.phi ();
810 : : if (maybe)
811 : : {
812 : : /* Issue a "maybe" warning only if the PHI refers to objects
813 : : at least one of which has more space remaining than the bound.
814 : : Otherwise, if the bound is greater, use the definitive form. */
815 : 5 : offset_int remmax = pad->dst.size_remaining ();
816 : 5 : if (remmax < wi::to_offset (bndrng[0]))
817 : 5 : maybe = false;
818 : : }
819 : 194 : if (tree_int_cst_lt (maxobjsize, bndrng[0]))
820 : : {
821 : 91 : if (bndrng[0] == bndrng[1])
822 : 79 : warned = (func
823 : 158 : ? warning_at (loc, opt,
824 : : (maybe
825 : : ? G_("%qD specified size %E may "
826 : : "exceed maximum object size %E")
827 : : : G_("%qD specified size %E "
828 : : "exceeds maximum object size %E")),
829 : : func, bndrng[0], maxobjsize)
830 : 79 : : warning_at (loc, opt,
831 : : (maybe
832 : : ? G_("specified size %E may exceed "
833 : : "maximum object size %E")
834 : : : G_("specified size %E exceeds "
835 : : "maximum object size %E")),
836 : : bndrng[0], maxobjsize));
837 : : else
838 : 12 : warned = (func
839 : 24 : ? warning_at (loc, opt,
840 : : (maybe
841 : : ? G_("%qD specified size between %E and %E "
842 : : "may exceed maximum object size %E")
843 : : : G_("%qD specified size between %E and %E "
844 : : "exceeds maximum object size %E")),
845 : : func, bndrng[0], bndrng[1], maxobjsize)
846 : 12 : : warning_at (loc, opt,
847 : : (maybe
848 : : ? G_("specified size between %E and %E "
849 : : "may exceed maximum object size %E")
850 : : : G_("specified size between %E and %E "
851 : : "exceeds maximum object size %E")),
852 : : bndrng[0], bndrng[1], maxobjsize));
853 : : }
854 : 103 : else if (!size || tree_int_cst_le (bndrng[0], size))
855 : 0 : return false;
856 : 103 : else if (tree_int_cst_equal (bndrng[0], bndrng[1]))
857 : 98 : warned = (func
858 : 196 : ? warning_at (loc, opt,
859 : : (maybe
860 : : ? G_("%qD specified bound %E may exceed "
861 : : "destination size %E")
862 : : : G_("%qD specified bound %E exceeds "
863 : : "destination size %E")),
864 : : func, bndrng[0], size)
865 : 98 : : warning_at (loc, opt,
866 : : (maybe
867 : : ? G_("specified bound %E may exceed "
868 : : "destination size %E")
869 : : : G_("specified bound %E exceeds "
870 : : "destination size %E")),
871 : : bndrng[0], size));
872 : : else
873 : 5 : warned = (func
874 : 10 : ? warning_at (loc, opt,
875 : : (maybe
876 : : ? G_("%qD specified bound [%E, %E] may exceed "
877 : : "destination size %E")
878 : : : G_("%qD specified bound [%E, %E] exceeds "
879 : : "destination size %E")),
880 : : func, bndrng[0], bndrng[1], size)
881 : 5 : : warning_at (loc, opt,
882 : : (maybe
883 : : ? G_("specified bound [%E, %E] exceeds "
884 : : "destination size %E")
885 : : : G_("specified bound [%E, %E] exceeds "
886 : : "destination size %E")),
887 : : bndrng[0], bndrng[1], size));
888 : :
889 : 194 : if (warned)
890 : : {
891 : 40 : if (pad && pad->dst.ref
892 : 81 : && has_location (pad->dst.ref))
893 : 35 : inform (get_location (pad->dst.ref),
894 : : "destination object allocated here");
895 : 44 : suppress_warning (exp, opt);
896 : : }
897 : :
898 : : return warned;
899 : : }
900 : :
901 : : bool
902 : 259 : maybe_warn_for_bound (opt_code opt, location_t loc, gimple *stmt, tree func,
903 : : tree bndrng[2], tree size,
904 : : const access_data *pad /* = NULL */)
905 : : {
906 : 259 : return maybe_warn_for_bound<gimple *> (opt, loc, stmt, func, bndrng, size,
907 : 259 : pad);
908 : : }
909 : :
910 : : bool
911 : 73 : maybe_warn_for_bound (opt_code opt, location_t loc, tree expr, tree func,
912 : : tree bndrng[2], tree size,
913 : : const access_data *pad /* = NULL */)
914 : : {
915 : 73 : return maybe_warn_for_bound<tree> (opt, loc, expr, func, bndrng, size, pad);
916 : : }
917 : :
918 : : /* For an expression EXP issue an access warning controlled by option OPT
919 : : with access to a region SIZE bytes in size in the RANGE of sizes.
920 : : WRITE is true for a write access, READ for a read access, neither for
921 : : call that may or may not perform an access but for which the range
922 : : is expected to valid.
923 : : Returns true when a warning has been issued. */
924 : :
925 : : template <class GimpleOrTree>
926 : : static bool
927 : 1880 : warn_for_access (location_t loc, tree func, GimpleOrTree exp, int opt,
928 : : tree range[2], tree size, bool write, bool read, bool maybe)
929 : : {
930 : 1880 : bool warned = false;
931 : :
932 : 1880 : if (write && read)
933 : : {
934 : 138 : if (tree_int_cst_equal (range[0], range[1]))
935 : 138 : warned = (func
936 : 264 : ? warning_n (loc, opt, tree_to_uhwi (range[0]),
937 : : (maybe
938 : : ? G_("%qD may access %E byte in a region "
939 : : "of size %E")
940 : : : G_("%qD accessing %E byte in a region "
941 : : "of size %E")),
942 : : (maybe
943 : : ? G_ ("%qD may access %E bytes in a region "
944 : : "of size %E")
945 : : : G_ ("%qD accessing %E bytes in a region "
946 : : "of size %E")),
947 : : func, range[0], size)
948 : 150 : : warning_n (loc, opt, tree_to_uhwi (range[0]),
949 : : (maybe
950 : : ? G_("may access %E byte in a region "
951 : : "of size %E")
952 : : : G_("accessing %E byte in a region "
953 : : "of size %E")),
954 : : (maybe
955 : : ? G_("may access %E bytes in a region "
956 : : "of size %E")
957 : : : G_("accessing %E bytes in a region "
958 : : "of size %E")),
959 : : range[0], size));
960 : 0 : else if (tree_int_cst_sign_bit (range[1]))
961 : : {
962 : : /* Avoid printing the upper bound if it's invalid. */
963 : 0 : warned = (func
964 : 0 : ? warning_at (loc, opt,
965 : : (maybe
966 : : ? G_("%qD may access %E or more bytes "
967 : : "in a region of size %E")
968 : : : G_("%qD accessing %E or more bytes "
969 : : "in a region of size %E")),
970 : : func, range[0], size)
971 : 0 : : warning_at (loc, opt,
972 : : (maybe
973 : : ? G_("may access %E or more bytes "
974 : : "in a region of size %E")
975 : : : G_("accessing %E or more bytes "
976 : : "in a region of size %E")),
977 : : range[0], size));
978 : : }
979 : : else
980 : 0 : warned = (func
981 : 0 : ? warning_at (loc, opt,
982 : : (maybe
983 : : ? G_("%qD may access between %E and %E "
984 : : "bytes in a region of size %E")
985 : : : G_("%qD accessing between %E and %E "
986 : : "bytes in a region of size %E")),
987 : : func, range[0], range[1], size)
988 : 0 : : warning_at (loc, opt,
989 : : (maybe
990 : : ? G_("may access between %E and %E bytes "
991 : : "in a region of size %E")
992 : : : G_("accessing between %E and %E bytes "
993 : : "in a region of size %E")),
994 : : range[0], range[1], size));
995 : 138 : return warned;
996 : : }
997 : :
998 : 1742 : if (write)
999 : : {
1000 : 1166 : if (tree_int_cst_equal (range[0], range[1]))
1001 : 1053 : warned = (func
1002 : 2104 : ? warning_n (loc, opt, tree_to_uhwi (range[0]),
1003 : : (maybe
1004 : : ? G_("%qD may write %E byte into a region "
1005 : : "of size %E")
1006 : : : G_("%qD writing %E byte into a region "
1007 : : "of size %E overflows the destination")),
1008 : : (maybe
1009 : : ? G_("%qD may write %E bytes into a region "
1010 : : "of size %E")
1011 : : : G_("%qD writing %E bytes into a region "
1012 : : "of size %E overflows the destination")),
1013 : : func, range[0], size)
1014 : 1055 : : warning_n (loc, opt, tree_to_uhwi (range[0]),
1015 : : (maybe
1016 : : ? G_("may write %E byte into a region "
1017 : : "of size %E")
1018 : : : G_("writing %E byte into a region "
1019 : : "of size %E overflows the destination")),
1020 : : (maybe
1021 : : ? G_("may write %E bytes into a region "
1022 : : "of size %E")
1023 : : : G_("writing %E bytes into a region "
1024 : : "of size %E overflows the destination")),
1025 : : range[0], size));
1026 : 113 : else if (tree_int_cst_sign_bit (range[1]))
1027 : : {
1028 : : /* Avoid printing the upper bound if it's invalid. */
1029 : 51 : warned = (func
1030 : 102 : ? warning_at (loc, opt,
1031 : : (maybe
1032 : : ? G_("%qD may write %E or more bytes "
1033 : : "into a region of size %E")
1034 : : : G_("%qD writing %E or more bytes "
1035 : : "into a region of size %E overflows "
1036 : : "the destination")),
1037 : : func, range[0], size)
1038 : 51 : : warning_at (loc, opt,
1039 : : (maybe
1040 : : ? G_("may write %E or more bytes into "
1041 : : "a region of size %E")
1042 : : : G_("writing %E or more bytes into "
1043 : : "a region of size %E overflows "
1044 : : "the destination")),
1045 : : range[0], size));
1046 : : }
1047 : : else
1048 : 62 : warned = (func
1049 : 124 : ? warning_at (loc, opt,
1050 : : (maybe
1051 : : ? G_("%qD may write between %E and %E bytes "
1052 : : "into a region of size %E")
1053 : : : G_("%qD writing between %E and %E bytes "
1054 : : "into a region of size %E overflows "
1055 : : "the destination")),
1056 : : func, range[0], range[1], size)
1057 : 62 : : warning_at (loc, opt,
1058 : : (maybe
1059 : : ? G_("may write between %E and %E bytes "
1060 : : "into a region of size %E")
1061 : : : G_("writing between %E and %E bytes "
1062 : : "into a region of size %E overflows "
1063 : : "the destination")),
1064 : : range[0], range[1], size));
1065 : 1166 : return warned;
1066 : : }
1067 : :
1068 : 576 : if (read)
1069 : : {
1070 : 573 : if (tree_int_cst_equal (range[0], range[1]))
1071 : 246 : warned = (func
1072 : 490 : ? warning_n (loc, OPT_Wstringop_overread,
1073 : : tree_to_uhwi (range[0]),
1074 : : (maybe
1075 : : ? G_("%qD may read %E byte from a region "
1076 : : "of size %E")
1077 : : : G_("%qD reading %E byte from a region "
1078 : : "of size %E")),
1079 : : (maybe
1080 : : ? G_("%qD may read %E bytes from a region "
1081 : : "of size %E")
1082 : : : G_("%qD reading %E bytes from a region "
1083 : : "of size %E")),
1084 : : func, range[0], size)
1085 : 248 : : warning_n (loc, OPT_Wstringop_overread,
1086 : : tree_to_uhwi (range[0]),
1087 : : (maybe
1088 : : ? G_("may read %E byte from a region "
1089 : : "of size %E")
1090 : : : G_("reading %E byte from a region "
1091 : : "of size %E")),
1092 : : (maybe
1093 : : ? G_("may read %E bytes from a region "
1094 : : "of size %E")
1095 : : : G_("reading %E bytes from a region "
1096 : : "of size %E")),
1097 : : range[0], size));
1098 : 327 : else if (tree_int_cst_sign_bit (range[1]))
1099 : : {
1100 : : /* Avoid printing the upper bound if it's invalid. */
1101 : 304 : warned = (func
1102 : 608 : ? warning_at (loc, OPT_Wstringop_overread,
1103 : : (maybe
1104 : : ? G_("%qD may read %E or more bytes "
1105 : : "from a region of size %E")
1106 : : : G_("%qD reading %E or more bytes "
1107 : : "from a region of size %E")),
1108 : : func, range[0], size)
1109 : 304 : : warning_at (loc, OPT_Wstringop_overread,
1110 : : (maybe
1111 : : ? G_("may read %E or more bytes "
1112 : : "from a region of size %E")
1113 : : : G_("reading %E or more bytes "
1114 : : "from a region of size %E")),
1115 : : range[0], size));
1116 : : }
1117 : : else
1118 : 23 : warned = (func
1119 : 46 : ? warning_at (loc, OPT_Wstringop_overread,
1120 : : (maybe
1121 : : ? G_("%qD may read between %E and %E bytes "
1122 : : "from a region of size %E")
1123 : : : G_("%qD reading between %E and %E bytes "
1124 : : "from a region of size %E")),
1125 : : func, range[0], range[1], size)
1126 : 23 : : warning_at (loc, opt,
1127 : : (maybe
1128 : : ? G_("may read between %E and %E bytes "
1129 : : "from a region of size %E")
1130 : : : G_("reading between %E and %E bytes "
1131 : : "from a region of size %E")),
1132 : : range[0], range[1], size));
1133 : :
1134 : 573 : if (warned)
1135 : 399 : suppress_warning (exp, OPT_Wstringop_overread);
1136 : :
1137 : 573 : return warned;
1138 : : }
1139 : :
1140 : 3 : if (tree_int_cst_equal (range[0], range[1])
1141 : 3 : || tree_int_cst_sign_bit (range[1]))
1142 : 3 : warned = (func
1143 : 3 : ? warning_n (loc, OPT_Wstringop_overread,
1144 : : tree_to_uhwi (range[0]),
1145 : : "%qD expecting %E byte in a region of size %E",
1146 : : "%qD expecting %E bytes in a region of size %E",
1147 : : func, range[0], size)
1148 : 3 : : warning_n (loc, OPT_Wstringop_overread,
1149 : : tree_to_uhwi (range[0]),
1150 : : "expecting %E byte in a region of size %E",
1151 : : "expecting %E bytes in a region of size %E",
1152 : : range[0], size));
1153 : 0 : else if (tree_int_cst_sign_bit (range[1]))
1154 : : {
1155 : : /* Avoid printing the upper bound if it's invalid. */
1156 : 0 : warned = (func
1157 : 0 : ? warning_at (loc, OPT_Wstringop_overread,
1158 : : "%qD expecting %E or more bytes in a region "
1159 : : "of size %E",
1160 : : func, range[0], size)
1161 : 0 : : warning_at (loc, OPT_Wstringop_overread,
1162 : : "expecting %E or more bytes in a region "
1163 : : "of size %E",
1164 : : range[0], size));
1165 : : }
1166 : : else
1167 : 0 : warned = (func
1168 : 0 : ? warning_at (loc, OPT_Wstringop_overread,
1169 : : "%qD expecting between %E and %E bytes in "
1170 : : "a region of size %E",
1171 : : func, range[0], range[1], size)
1172 : 0 : : warning_at (loc, OPT_Wstringop_overread,
1173 : : "expecting between %E and %E bytes in "
1174 : : "a region of size %E",
1175 : : range[0], range[1], size));
1176 : :
1177 : 3 : if (warned)
1178 : 3 : suppress_warning (exp, OPT_Wstringop_overread);
1179 : :
1180 : : return warned;
1181 : : }
1182 : :
1183 : : static bool
1184 : 1439 : warn_for_access (location_t loc, tree func, gimple *stmt, int opt,
1185 : : tree range[2], tree size, bool write, bool read, bool maybe)
1186 : : {
1187 : 0 : return warn_for_access<gimple *>(loc, func, stmt, opt, range, size,
1188 : 0 : write, read, maybe);
1189 : : }
1190 : :
1191 : : static bool
1192 : 269 : warn_for_access (location_t loc, tree func, tree expr, int opt,
1193 : : tree range[2], tree size, bool write, bool read, bool maybe)
1194 : : {
1195 : 0 : return warn_for_access<tree>(loc, func, expr, opt, range, size,
1196 : 0 : write, read, maybe);
1197 : : }
1198 : :
1199 : : /* Helper to set RANGE to the range of BOUND if it's nonnull, bounded
1200 : : by BNDRNG if nonnull and valid. */
1201 : :
1202 : : static void
1203 : 1503763 : get_size_range (range_query *query, tree bound, gimple *stmt, tree range[2],
1204 : : int flags, const offset_int bndrng[2])
1205 : : {
1206 : 1503763 : if (bound)
1207 : 645650 : get_size_range (query, bound, stmt, range, flags);
1208 : :
1209 : 1503763 : if (!bndrng || (bndrng[0] == 0 && bndrng[1] == HOST_WIDE_INT_M1U))
1210 : 988524 : return;
1211 : :
1212 : 515239 : if (range[0] && TREE_CODE (range[0]) == INTEGER_CST)
1213 : : {
1214 : 515203 : offset_int r[] =
1215 : 515203 : { wi::to_offset (range[0]), wi::to_offset (range[1]) };
1216 : 515203 : if (r[0] < bndrng[0])
1217 : 0 : range[0] = wide_int_to_tree (sizetype, bndrng[0]);
1218 : 515203 : if (bndrng[1] < r[1])
1219 : 19 : range[1] = wide_int_to_tree (sizetype, bndrng[1]);
1220 : 515203 : }
1221 : : else
1222 : : {
1223 : 36 : range[0] = wide_int_to_tree (sizetype, bndrng[0]);
1224 : 36 : range[1] = wide_int_to_tree (sizetype, bndrng[1]);
1225 : : }
1226 : : }
1227 : :
1228 : : /* Try to verify that the sizes and lengths of the arguments to a string
1229 : : manipulation function given by EXP are within valid bounds and that
1230 : : the operation does not lead to buffer overflow or read past the end.
1231 : : Arguments other than EXP may be null. When non-null, the arguments
1232 : : have the following meaning:
1233 : : DST is the destination of a copy call or NULL otherwise.
1234 : : SRC is the source of a copy call or NULL otherwise.
1235 : : DSTWRITE is the number of bytes written into the destination obtained
1236 : : from the user-supplied size argument to the function (such as in
1237 : : memcpy(DST, SRCs, DSTWRITE) or strncpy(DST, DRC, DSTWRITE).
1238 : : MAXREAD is the user-supplied bound on the length of the source sequence
1239 : : (such as in strncat(d, s, N). It specifies the upper limit on the number
1240 : : of bytes to write. If NULL, it's taken to be the same as DSTWRITE.
1241 : : SRCSTR is the source string (such as in strcpy(DST, SRC)) when the
1242 : : expression EXP is a string function call (as opposed to a memory call
1243 : : like memcpy). As an exception, SRCSTR can also be an integer denoting
1244 : : the precomputed size of the source string or object (for functions like
1245 : : memcpy).
1246 : : DSTSIZE is the size of the destination object.
1247 : :
1248 : : When DSTWRITE is null LEN is checked to verify that it doesn't exceed
1249 : : SIZE_MAX.
1250 : :
1251 : : WRITE is true for write accesses, READ is true for reads. Both are
1252 : : false for simple size checks in calls to functions that neither read
1253 : : from nor write to the region.
1254 : :
1255 : : When nonnull, PAD points to a more detailed description of the access.
1256 : :
1257 : : If the call is successfully verified as safe return true, otherwise
1258 : : return false. */
1259 : :
1260 : : template <class GimpleOrTree>
1261 : : static bool
1262 : 816262 : check_access (GimpleOrTree exp, tree dstwrite,
1263 : : tree maxread, tree srcstr, tree dstsize,
1264 : : access_mode mode, const access_data *pad,
1265 : : range_query *rvals)
1266 : : {
1267 : : /* The size of the largest object is half the address space, or
1268 : : PTRDIFF_MAX. (This is way too permissive.) */
1269 : 816262 : tree maxobjsize = max_object_size ();
1270 : :
1271 : : /* Either an approximate/minimum the length of the source string for
1272 : : string functions or the size of the source object for raw memory
1273 : : functions. */
1274 : 816262 : tree slen = NULL_TREE;
1275 : :
1276 : : /* The range of the access in bytes; first set to the write access
1277 : : for functions that write and then read for those that also (or
1278 : : just) read. */
1279 : 816262 : tree range[2] = { NULL_TREE, NULL_TREE };
1280 : :
1281 : : /* Set to true when the exact number of bytes written by a string
1282 : : function like strcpy is not known and the only thing that is
1283 : : known is that it must be at least one (for the terminating nul). */
1284 : 816262 : bool at_least_one = false;
1285 : 816262 : if (srcstr)
1286 : : {
1287 : : /* SRCSTR is normally a pointer to string but as a special case
1288 : : it can be an integer denoting the length of a string. */
1289 : 496893 : if (POINTER_TYPE_P (TREE_TYPE (srcstr)))
1290 : : {
1291 : 404018 : if (!check_nul_terminated_array (exp, srcstr, maxread))
1292 : : /* Return if the array is not nul-terminated and a warning
1293 : : has been issued. */
1294 : 559 : return false;
1295 : :
1296 : : /* Try to determine the range of lengths the source string
1297 : : refers to. If it can be determined and is less than
1298 : : the upper bound given by MAXREAD add one to it for
1299 : : the terminating nul. Otherwise, set it to one for
1300 : : the same reason, or to MAXREAD as appropriate. */
1301 : 403459 : c_strlen_data lendata = { };
1302 : 403459 : get_range_strlen (srcstr, &lendata, /* eltsize = */ 1);
1303 : 403459 : range[0] = lendata.minlen;
1304 : 403459 : range[1] = lendata.maxbound ? lendata.maxbound : lendata.maxlen;
1305 : 403459 : if (range[0]
1306 : 403459 : && TREE_CODE (range[0]) == INTEGER_CST
1307 : 403454 : && TREE_CODE (range[1]) == INTEGER_CST
1308 : 403454 : && (!maxread || TREE_CODE (maxread) == INTEGER_CST))
1309 : : {
1310 : 106253 : if (maxread && tree_int_cst_le (maxread, range[0]))
1311 : 485 : range[0] = range[1] = maxread;
1312 : : else
1313 : 393326 : range[0] = fold_build2 (PLUS_EXPR, size_type_node,
1314 : : range[0], size_one_node);
1315 : :
1316 : 393811 : if (maxread && tree_int_cst_le (maxread, range[1]))
1317 : 84429 : range[1] = maxread;
1318 : 309382 : else if (!integer_all_onesp (range[1]))
1319 : 163402 : range[1] = fold_build2 (PLUS_EXPR, size_type_node,
1320 : : range[1], size_one_node);
1321 : :
1322 : 393811 : slen = range[0];
1323 : : }
1324 : : else
1325 : : {
1326 : 9648 : at_least_one = true;
1327 : 9648 : slen = size_one_node;
1328 : : }
1329 : : }
1330 : : else
1331 : : slen = srcstr;
1332 : : }
1333 : :
1334 : 815703 : if (!dstwrite && !maxread)
1335 : : {
1336 : : /* When the only available piece of data is the object size
1337 : : there is nothing to do. */
1338 : 287813 : if (!slen)
1339 : : return true;
1340 : :
1341 : : /* Otherwise, when the length of the source sequence is known
1342 : : (as with strlen), set DSTWRITE to it. */
1343 : 287395 : if (!range[0])
1344 : 79 : dstwrite = slen;
1345 : : }
1346 : :
1347 : 815285 : if (!dstsize)
1348 : 398776 : dstsize = maxobjsize;
1349 : :
1350 : : /* Set RANGE to that of DSTWRITE if non-null, bounded by PAD->DST_BNDRNG
1351 : : if valid. */
1352 : 815285 : gimple *stmt = pad ? pad->stmt : nullptr;
1353 : 2443396 : get_size_range (rvals, dstwrite, stmt, range,
1354 : : /* If the destination has known zero size prefer a zero
1355 : : size range to avoid false positives if that's a
1356 : : possibility. */
1357 : 815285 : integer_zerop (dstsize) ? SR_ALLOW_ZERO : 0,
1358 : : pad ? pad->dst_bndrng : NULL);
1359 : :
1360 : 815285 : tree func = get_callee_fndecl (exp);
1361 : : /* Read vs write access by built-ins can be determined from the const
1362 : : qualifiers on the pointer argument. In the absence of attribute
1363 : : access, non-const qualified pointer arguments to user-defined
1364 : : functions are assumed to both read and write the objects. */
1365 : 815285 : const bool builtin = func ? fndecl_built_in_p (func) : false;
1366 : :
1367 : : /* First check the number of bytes to be written against the maximum
1368 : : object size. */
1369 : 815285 : if (range[0]
1370 : 814309 : && TREE_CODE (range[0]) == INTEGER_CST
1371 : 1629590 : && tree_int_cst_lt (maxobjsize, range[0]))
1372 : : {
1373 : 128 : location_t loc = get_location (exp);
1374 : 128 : maybe_warn_for_bound (OPT_Wstringop_overflow_, loc, exp, func, range,
1375 : : NULL_TREE, pad);
1376 : 128 : return false;
1377 : : }
1378 : :
1379 : : /* The number of bytes to write is "exact" if DSTWRITE is non-null,
1380 : : constant, and in range of unsigned HOST_WIDE_INT. */
1381 : 815157 : bool exactwrite = dstwrite && tree_fits_uhwi_p (dstwrite);
1382 : :
1383 : : /* Next check the number of bytes to be written against the destination
1384 : : object size. */
1385 : 815157 : if (range[0] || !exactwrite || integer_all_onesp (dstwrite))
1386 : : {
1387 : 815157 : if (range[0]
1388 : 814181 : && TREE_CODE (range[0]) == INTEGER_CST
1389 : 1629334 : && ((tree_fits_uhwi_p (dstsize)
1390 : 813867 : && tree_int_cst_lt (dstsize, range[0]))
1391 : 812577 : || (dstwrite
1392 : 411585 : && tree_fits_uhwi_p (dstwrite)
1393 : 344617 : && tree_int_cst_lt (dstwrite, range[0]))))
1394 : : {
1395 : 1600 : const opt_code opt = OPT_Wstringop_overflow_;
1396 : 1600 : if (warning_suppressed_p (exp, opt)
1397 : 1600 : || (pad && pad->dst.ref
1398 : 897 : && warning_suppressed_p (pad->dst.ref, opt)))
1399 : 285 : return false;
1400 : :
1401 : 1315 : auto_diagnostic_group d;
1402 : 1315 : location_t loc = get_location (exp);
1403 : 1315 : bool warned = false;
1404 : 1315 : if (dstwrite == slen && at_least_one)
1405 : : {
1406 : : /* This is a call to strcpy with a destination of 0 size
1407 : : and a source of unknown length. The call will write
1408 : : at least one byte past the end of the destination. */
1409 : 0 : warned = (func
1410 : 0 : ? warning_at (loc, opt,
1411 : : "%qD writing %E or more bytes into "
1412 : : "a region of size %E overflows "
1413 : : "the destination",
1414 : : func, range[0], dstsize)
1415 : 0 : : warning_at (loc, opt,
1416 : : "writing %E or more bytes into "
1417 : : "a region of size %E overflows "
1418 : : "the destination",
1419 : : range[0], dstsize));
1420 : : }
1421 : : else
1422 : : {
1423 : 1315 : const bool read
1424 : 1315 : = mode == access_read_only || mode == access_read_write;
1425 : 1315 : const bool write
1426 : 1315 : = mode == access_write_only || mode == access_read_write;
1427 : 1315 : const bool maybe = pad && pad->dst.parmarray;
1428 : 1315 : warned = warn_for_access (loc, func, exp,
1429 : : OPT_Wstringop_overflow_,
1430 : : range, dstsize,
1431 : 1315 : write, read && !builtin, maybe);
1432 : : }
1433 : :
1434 : 1315 : if (warned)
1435 : : {
1436 : 913 : suppress_warning (exp, OPT_Wstringop_overflow_);
1437 : 913 : if (pad)
1438 : 830 : pad->dst.inform_access (pad->mode);
1439 : : }
1440 : :
1441 : : /* Return error when an overflow has been detected. */
1442 : : return false;
1443 : 1315 : }
1444 : : }
1445 : :
1446 : : /* Check the maximum length of the source sequence against the size
1447 : : of the destination object if known, or against the maximum size
1448 : : of an object. */
1449 : 813557 : if (maxread)
1450 : : {
1451 : : /* Set RANGE to that of MAXREAD, bounded by PAD->SRC_BNDRNG if
1452 : : PAD is nonnull and BNDRNG is valid. */
1453 : 116770 : get_size_range (rvals, maxread, stmt, range, 0,
1454 : : pad ? pad->src_bndrng : NULL);
1455 : :
1456 : 116770 : location_t loc = get_location (exp);
1457 : 116770 : tree size = dstsize;
1458 : 116770 : if (pad && pad->mode == access_read_only)
1459 : 113707 : size = wide_int_to_tree (sizetype, pad->src.size_remaining ());
1460 : :
1461 : 116770 : if (range[0] && maxread && tree_fits_uhwi_p (size))
1462 : : {
1463 : 116726 : if (tree_int_cst_lt (maxobjsize, range[0]))
1464 : : {
1465 : 87 : maybe_warn_for_bound (OPT_Wstringop_overread, loc, exp, func,
1466 : : range, size, pad);
1467 : 87 : return false;
1468 : : }
1469 : :
1470 : 116639 : if (size != maxobjsize && tree_int_cst_lt (size, range[0]))
1471 : : {
1472 : 404 : opt_code opt = (dstwrite || mode != access_read_only
1473 : 202 : ? OPT_Wstringop_overflow_
1474 : : : OPT_Wstringop_overread);
1475 : 202 : maybe_warn_for_bound (opt, loc, exp, func, range, size, pad);
1476 : 202 : return false;
1477 : : }
1478 : : }
1479 : :
1480 : 116481 : maybe_warn_nonstring_arg (func, exp);
1481 : : }
1482 : :
1483 : : /* Check for reading past the end of SRC. */
1484 : 1626536 : bool overread = (slen
1485 : 813268 : && slen == srcstr
1486 : 92272 : && dstwrite
1487 : 91629 : && range[0]
1488 : 91629 : && TREE_CODE (slen) == INTEGER_CST
1489 : 904897 : && tree_int_cst_lt (slen, range[0]));
1490 : : /* If none is determined try to get a better answer based on the details
1491 : : in PAD. */
1492 : 813268 : if (!overread
1493 : 813268 : && pad
1494 : 811431 : && pad->src.sizrng[1] >= 0
1495 : 579520 : && pad->src.offrng[0] >= 0
1496 : 1624699 : && (pad->src.offrng[1] < 0
1497 : 569382 : || pad->src.offrng[0] <= pad->src.offrng[1]))
1498 : : {
1499 : : /* Set RANGE to that of MAXREAD, bounded by PAD->SRC_BNDRNG if
1500 : : PAD is nonnull and BNDRNG is valid. */
1501 : 569382 : get_size_range (rvals, maxread, stmt, range, 0,
1502 : : pad ? pad->src_bndrng : NULL);
1503 : : /* Set OVERREAD for reads starting just past the end of an object. */
1504 : 569382 : overread = pad->src.sizrng[1] - pad->src.offrng[0] < pad->src_bndrng[0];
1505 : 569382 : range[0] = wide_int_to_tree (sizetype, pad->src_bndrng[0]);
1506 : 569382 : slen = size_zero_node;
1507 : : }
1508 : :
1509 : 813268 : if (overread)
1510 : : {
1511 : 660 : const opt_code opt = OPT_Wstringop_overread;
1512 : 660 : if (warning_suppressed_p (exp, opt)
1513 : 593 : || (srcstr && warning_suppressed_p (srcstr, opt))
1514 : 1225 : || (pad && pad->src.ref
1515 : 565 : && warning_suppressed_p (pad->src.ref, opt)))
1516 : 95 : return false;
1517 : :
1518 : 565 : location_t loc = get_location (exp);
1519 : 565 : const bool read
1520 : 565 : = mode == access_read_only || mode == access_read_write;
1521 : 565 : const bool maybe = pad && pad->dst.parmarray;
1522 : 565 : auto_diagnostic_group d;
1523 : 565 : if (warn_for_access (loc, func, exp, opt, range, slen, false, read,
1524 : : maybe))
1525 : : {
1526 : 391 : suppress_warning (exp, opt);
1527 : 391 : if (pad)
1528 : 391 : pad->src.inform_access (access_read_only);
1529 : : }
1530 : : return false;
1531 : 565 : }
1532 : :
1533 : : return true;
1534 : : }
1535 : :
1536 : : static bool
1537 : 807892 : check_access (gimple *stmt, tree dstwrite,
1538 : : tree maxread, tree srcstr, tree dstsize,
1539 : : access_mode mode, const access_data *pad,
1540 : : range_query *rvals)
1541 : : {
1542 : 0 : return check_access<gimple *> (stmt, dstwrite, maxread, srcstr, dstsize,
1543 : 0 : mode, pad, rvals);
1544 : : }
1545 : :
1546 : : bool
1547 : 1974 : check_access (tree expr, tree dstwrite,
1548 : : tree maxread, tree srcstr, tree dstsize,
1549 : : access_mode mode, const access_data *pad /* = NULL */)
1550 : : {
1551 : 1974 : return check_access<tree> (expr, dstwrite, maxread, srcstr, dstsize,
1552 : 1974 : mode, pad, nullptr);
1553 : : }
1554 : :
1555 : : /* Return true if STMT is a call to an allocation function. Unless
1556 : : ALL_ALLOC is set, consider only functions that return dynamically
1557 : : allocated objects. Otherwise return true even for all forms of
1558 : : alloca (including VLA). */
1559 : :
1560 : : static bool
1561 : 39099 : fndecl_alloc_p (tree fndecl, bool all_alloc)
1562 : : {
1563 : 39099 : if (!fndecl)
1564 : : return false;
1565 : :
1566 : : /* A call to operator new isn't recognized as one to a built-in. */
1567 : 39076 : if (DECL_IS_OPERATOR_NEW_P (fndecl))
1568 : : return true;
1569 : :
1570 : 31721 : if (fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
1571 : : {
1572 : 27610 : switch (DECL_FUNCTION_CODE (fndecl))
1573 : : {
1574 : : case BUILT_IN_ALLOCA:
1575 : : case BUILT_IN_ALLOCA_WITH_ALIGN:
1576 : : return all_alloc;
1577 : : case BUILT_IN_ALIGNED_ALLOC:
1578 : : case BUILT_IN_CALLOC:
1579 : : case BUILT_IN_GOMP_ALLOC:
1580 : : case BUILT_IN_GOMP_REALLOC:
1581 : : case BUILT_IN_MALLOC:
1582 : : case BUILT_IN_REALLOC:
1583 : : case BUILT_IN_STRDUP:
1584 : : case BUILT_IN_STRNDUP:
1585 : : return true;
1586 : : default:
1587 : : break;
1588 : : }
1589 : : }
1590 : :
1591 : : /* A function is considered an allocation function if it's declared
1592 : : with attribute malloc with an argument naming its associated
1593 : : deallocation function. */
1594 : 4111 : tree attrs = DECL_ATTRIBUTES (fndecl);
1595 : 4111 : if (!attrs)
1596 : : return false;
1597 : :
1598 : 103 : for (tree allocs = attrs;
1599 : 1672 : (allocs = lookup_attribute ("malloc", allocs));
1600 : 103 : allocs = TREE_CHAIN (allocs))
1601 : : {
1602 : 841 : tree args = TREE_VALUE (allocs);
1603 : 841 : if (!args)
1604 : 103 : continue;
1605 : :
1606 : 738 : if (TREE_VALUE (args))
1607 : : return true;
1608 : : }
1609 : :
1610 : : return false;
1611 : : }
1612 : :
1613 : : /* Return true if STMT is a call to an allocation function. A wrapper
1614 : : around fndecl_alloc_p. */
1615 : :
1616 : : static bool
1617 : 39099 : gimple_call_alloc_p (gimple *stmt, bool all_alloc = false)
1618 : : {
1619 : 39099 : return fndecl_alloc_p (gimple_call_fndecl (stmt), all_alloc);
1620 : : }
1621 : :
1622 : : /* Return true if DELC doesn't refer to an operator delete that's
1623 : : suitable to call with a pointer returned from the operator new
1624 : : described by NEWC. */
1625 : :
1626 : : static bool
1627 : 1348 : new_delete_mismatch_p (const demangle_component &newc,
1628 : : const demangle_component &delc)
1629 : : {
1630 : 2067 : if (newc.type != delc.type)
1631 : : return true;
1632 : :
1633 : 2036 : switch (newc.type)
1634 : : {
1635 : 549 : case DEMANGLE_COMPONENT_NAME:
1636 : 549 : {
1637 : 549 : int len = newc.u.s_name.len;
1638 : 549 : const char *news = newc.u.s_name.s;
1639 : 549 : const char *dels = delc.u.s_name.s;
1640 : 549 : if (len != delc.u.s_name.len || memcmp (news, dels, len))
1641 : : return true;
1642 : :
1643 : 534 : if (news[len] == 'n')
1644 : : {
1645 : 185 : if (news[len + 1] == 'a')
1646 : 66 : return dels[len] != 'd' || dels[len + 1] != 'a';
1647 : 131 : if (news[len + 1] == 'w')
1648 : 137 : return dels[len] != 'd' || dels[len + 1] != 'l';
1649 : : }
1650 : : return false;
1651 : : }
1652 : :
1653 : : case DEMANGLE_COMPONENT_OPERATOR:
1654 : : /* Operator mismatches are handled above. */
1655 : : return false;
1656 : :
1657 : 0 : case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
1658 : 0 : if (newc.u.s_extended_operator.args != delc.u.s_extended_operator.args)
1659 : : return true;
1660 : 0 : return new_delete_mismatch_p (*newc.u.s_extended_operator.name,
1661 : 0 : *delc.u.s_extended_operator.name);
1662 : :
1663 : 0 : case DEMANGLE_COMPONENT_FIXED_TYPE:
1664 : 0 : if (newc.u.s_fixed.accum != delc.u.s_fixed.accum
1665 : 0 : || newc.u.s_fixed.sat != delc.u.s_fixed.sat)
1666 : : return true;
1667 : 0 : return new_delete_mismatch_p (*newc.u.s_fixed.length,
1668 : 0 : *delc.u.s_fixed.length);
1669 : :
1670 : 0 : case DEMANGLE_COMPONENT_CTOR:
1671 : 0 : if (newc.u.s_ctor.kind != delc.u.s_ctor.kind)
1672 : : return true;
1673 : 0 : return new_delete_mismatch_p (*newc.u.s_ctor.name,
1674 : 0 : *delc.u.s_ctor.name);
1675 : :
1676 : 0 : case DEMANGLE_COMPONENT_DTOR:
1677 : 0 : if (newc.u.s_dtor.kind != delc.u.s_dtor.kind)
1678 : : return true;
1679 : 0 : return new_delete_mismatch_p (*newc.u.s_dtor.name,
1680 : 0 : *delc.u.s_dtor.name);
1681 : :
1682 : 201 : case DEMANGLE_COMPONENT_BUILTIN_TYPE:
1683 : 201 : {
1684 : : /* The demangler API provides no better way to compare built-in
1685 : : types except to by comparing their demangled names. */
1686 : 201 : size_t nsz, dsz;
1687 : 201 : demangle_component *pnc = const_cast<demangle_component *>(&newc);
1688 : 201 : demangle_component *pdc = const_cast<demangle_component *>(&delc);
1689 : 201 : char *nts = cplus_demangle_print (0, pnc, 16, &nsz);
1690 : 201 : char *dts = cplus_demangle_print (0, pdc, 16, &dsz);
1691 : 201 : if (!nts != !dts)
1692 : : return true;
1693 : 201 : bool mismatch = strcmp (nts, dts);
1694 : 201 : free (nts);
1695 : 201 : free (dts);
1696 : 201 : return mismatch;
1697 : : }
1698 : :
1699 : 0 : case DEMANGLE_COMPONENT_SUB_STD:
1700 : 0 : if (newc.u.s_string.len != delc.u.s_string.len)
1701 : : return true;
1702 : 0 : return memcmp (newc.u.s_string.string, delc.u.s_string.string,
1703 : 0 : newc.u.s_string.len);
1704 : :
1705 : 3 : case DEMANGLE_COMPONENT_FUNCTION_PARAM:
1706 : 3 : case DEMANGLE_COMPONENT_TEMPLATE_PARAM:
1707 : 3 : case DEMANGLE_COMPONENT_UNNAMED_TYPE:
1708 : 3 : return newc.u.s_number.number != delc.u.s_number.number;
1709 : :
1710 : 0 : case DEMANGLE_COMPONENT_CHARACTER:
1711 : 0 : return newc.u.s_character.character != delc.u.s_character.character;
1712 : :
1713 : 0 : case DEMANGLE_COMPONENT_DEFAULT_ARG:
1714 : 0 : case DEMANGLE_COMPONENT_LAMBDA:
1715 : 0 : if (newc.u.s_unary_num.num != delc.u.s_unary_num.num)
1716 : : return true;
1717 : 0 : return new_delete_mismatch_p (*newc.u.s_unary_num.sub,
1718 : 0 : *delc.u.s_unary_num.sub);
1719 : 1002 : default:
1720 : 1002 : break;
1721 : : }
1722 : :
1723 : 1002 : if (!newc.u.s_binary.left != !delc.u.s_binary.left)
1724 : : return true;
1725 : :
1726 : 1002 : if (!newc.u.s_binary.left)
1727 : : return false;
1728 : :
1729 : 991 : if (new_delete_mismatch_p (*newc.u.s_binary.left, *delc.u.s_binary.left)
1730 : 991 : || !newc.u.s_binary.right != !delc.u.s_binary.right)
1731 : : return true;
1732 : :
1733 : 892 : if (newc.u.s_binary.right)
1734 : : return new_delete_mismatch_p (*newc.u.s_binary.right,
1735 : : *delc.u.s_binary.right);
1736 : : return false;
1737 : : }
1738 : :
1739 : : /* Return true if DELETE_DECL is an operator delete that's not suitable
1740 : : to call with a pointer returned from NEW_DECL. */
1741 : :
1742 : : static bool
1743 : 7333 : new_delete_mismatch_p (tree new_decl, tree delete_decl)
1744 : : {
1745 : 7333 : tree new_name = DECL_ASSEMBLER_NAME (new_decl);
1746 : 7333 : tree delete_name = DECL_ASSEMBLER_NAME (delete_decl);
1747 : :
1748 : : /* valid_new_delete_pair_p() returns a conservative result (currently
1749 : : it only handles global operators). A true result is reliable but
1750 : : a false result doesn't necessarily mean the operators don't match
1751 : : unless CERTAIN is set. */
1752 : 7333 : bool certain;
1753 : 7333 : if (valid_new_delete_pair_p (new_name, delete_name, &certain))
1754 : : return false;
1755 : : /* CERTAIN is set when the negative result is certain. */
1756 : 406 : if (certain)
1757 : : return true;
1758 : :
1759 : : /* For anything not handled by valid_new_delete_pair_p() such as member
1760 : : operators compare the individual demangled components of the mangled
1761 : : name. */
1762 : 360 : const char *new_str = IDENTIFIER_POINTER (new_name);
1763 : 360 : const char *del_str = IDENTIFIER_POINTER (delete_name);
1764 : :
1765 : 360 : void *np = NULL, *dp = NULL;
1766 : 360 : demangle_component *ndc = cplus_demangle_v3_components (new_str, 0, &np);
1767 : 360 : demangle_component *ddc = cplus_demangle_v3_components (del_str, 0, &dp);
1768 : 360 : bool mismatch = ndc && ddc && new_delete_mismatch_p (*ndc, *ddc);
1769 : 360 : free (np);
1770 : 360 : free (dp);
1771 : 360 : return mismatch;
1772 : : }
1773 : :
1774 : : /* ALLOC_DECL and DEALLOC_DECL are pair of allocation and deallocation
1775 : : functions. Return true if the latter is suitable to deallocate objects
1776 : : allocated by calls to the former. */
1777 : :
1778 : : static bool
1779 : 38133 : matching_alloc_calls_p (tree alloc_decl, tree dealloc_decl)
1780 : : {
1781 : : /* Set to alloc_kind_t::builtin if ALLOC_DECL is associated with
1782 : : a built-in deallocator. */
1783 : 38133 : enum class alloc_kind_t { none, builtin, user }
1784 : 38133 : alloc_dealloc_kind = alloc_kind_t::none;
1785 : :
1786 : 38133 : if (DECL_IS_OPERATOR_NEW_P (alloc_decl))
1787 : : {
1788 : 7355 : if (DECL_IS_OPERATOR_DELETE_P (dealloc_decl))
1789 : : /* Return true iff both functions are of the same array or
1790 : : singleton form and false otherwise. */
1791 : 7333 : return !new_delete_mismatch_p (alloc_decl, dealloc_decl);
1792 : :
1793 : : /* Return false for deallocation functions that are known not
1794 : : to match. */
1795 : 22 : if (fndecl_built_in_p (dealloc_decl, BUILT_IN_FREE, BUILT_IN_REALLOC))
1796 : : return false;
1797 : : /* Otherwise proceed below to check the deallocation function's
1798 : : "*dealloc" attributes to look for one that mentions this operator
1799 : : new. */
1800 : : }
1801 : 30778 : else if (fndecl_built_in_p (alloc_decl, BUILT_IN_NORMAL))
1802 : : {
1803 : 30028 : switch (DECL_FUNCTION_CODE (alloc_decl))
1804 : : {
1805 : : case BUILT_IN_ALLOCA:
1806 : : case BUILT_IN_ALLOCA_WITH_ALIGN:
1807 : : return false;
1808 : :
1809 : 1192 : case BUILT_IN_GOMP_ALLOC:
1810 : 1192 : case BUILT_IN_GOMP_REALLOC:
1811 : 1192 : if (DECL_IS_OPERATOR_DELETE_P (dealloc_decl))
1812 : : return false;
1813 : :
1814 : 1192 : if (fndecl_built_in_p (dealloc_decl, BUILT_IN_GOMP_FREE,
1815 : : BUILT_IN_GOMP_REALLOC))
1816 : : return true;
1817 : :
1818 : : alloc_dealloc_kind = alloc_kind_t::builtin;
1819 : : break;
1820 : :
1821 : 28836 : case BUILT_IN_ALIGNED_ALLOC:
1822 : 28836 : case BUILT_IN_CALLOC:
1823 : 28836 : case BUILT_IN_MALLOC:
1824 : 28836 : case BUILT_IN_REALLOC:
1825 : 28836 : case BUILT_IN_STRDUP:
1826 : 28836 : case BUILT_IN_STRNDUP:
1827 : 28836 : if (DECL_IS_OPERATOR_DELETE_P (dealloc_decl))
1828 : : return false;
1829 : :
1830 : 28763 : if (fndecl_built_in_p (dealloc_decl, BUILT_IN_FREE,
1831 : : BUILT_IN_REALLOC))
1832 : : return true;
1833 : :
1834 : : alloc_dealloc_kind = alloc_kind_t::builtin;
1835 : : break;
1836 : :
1837 : : default:
1838 : : break;
1839 : : }
1840 : : }
1841 : :
1842 : : /* Set if DEALLOC_DECL both allocates and deallocates. */
1843 : 790 : alloc_kind_t realloc_kind = alloc_kind_t::none;
1844 : :
1845 : 790 : if (fndecl_built_in_p (dealloc_decl, BUILT_IN_NORMAL))
1846 : : {
1847 : 128 : built_in_function dealloc_code = DECL_FUNCTION_CODE (dealloc_decl);
1848 : 128 : if (dealloc_code == BUILT_IN_REALLOC
1849 : 128 : || dealloc_code == BUILT_IN_GOMP_REALLOC)
1850 : 27 : realloc_kind = alloc_kind_t::builtin;
1851 : :
1852 : 128 : for (tree amats = DECL_ATTRIBUTES (alloc_decl);
1853 : 223 : (amats = lookup_attribute ("malloc", amats));
1854 : 95 : amats = TREE_CHAIN (amats))
1855 : : {
1856 : 161 : tree args = TREE_VALUE (amats);
1857 : 161 : if (!args)
1858 : 0 : continue;
1859 : :
1860 : 161 : tree fndecl = TREE_VALUE (args);
1861 : 161 : if (!fndecl || !DECL_P (fndecl))
1862 : 0 : continue;
1863 : :
1864 : 161 : if (fndecl_built_in_p (fndecl, BUILT_IN_NORMAL)
1865 : 161 : && dealloc_code == DECL_FUNCTION_CODE (fndecl))
1866 : : return true;
1867 : : }
1868 : : }
1869 : :
1870 : 724 : const bool alloc_builtin = fndecl_built_in_p (alloc_decl, BUILT_IN_NORMAL);
1871 : 724 : alloc_kind_t realloc_dealloc_kind = alloc_kind_t::none;
1872 : :
1873 : : /* If DEALLOC_DECL has an internal "*dealloc" attribute scan the list
1874 : : of its associated allocation functions for ALLOC_DECL.
1875 : : If the corresponding ALLOC_DECL is found they're a matching pair,
1876 : : otherwise they're not.
1877 : : With DDATS set to the Deallocator's *Dealloc ATtributes... */
1878 : 724 : for (tree ddats = DECL_ATTRIBUTES (dealloc_decl);
1879 : 2486 : (ddats = lookup_attribute ("*dealloc", ddats));
1880 : 1762 : ddats = TREE_CHAIN (ddats))
1881 : : {
1882 : 2318 : tree args = TREE_VALUE (ddats);
1883 : 2318 : if (!args)
1884 : 0 : continue;
1885 : :
1886 : 2318 : tree alloc = TREE_VALUE (args);
1887 : 2318 : if (!alloc)
1888 : 0 : continue;
1889 : :
1890 : 2318 : if (alloc == DECL_NAME (dealloc_decl))
1891 : 44 : realloc_kind = alloc_kind_t::user;
1892 : :
1893 : 2318 : if (DECL_P (alloc))
1894 : : {
1895 : 0 : gcc_checking_assert (fndecl_built_in_p (alloc, BUILT_IN_NORMAL));
1896 : :
1897 : 0 : switch (DECL_FUNCTION_CODE (alloc))
1898 : : {
1899 : 0 : case BUILT_IN_ALIGNED_ALLOC:
1900 : 0 : case BUILT_IN_CALLOC:
1901 : 0 : case BUILT_IN_GOMP_ALLOC:
1902 : 0 : case BUILT_IN_GOMP_REALLOC:
1903 : 0 : case BUILT_IN_MALLOC:
1904 : 0 : case BUILT_IN_REALLOC:
1905 : 0 : case BUILT_IN_STRDUP:
1906 : 0 : case BUILT_IN_STRNDUP:
1907 : 0 : realloc_dealloc_kind = alloc_kind_t::builtin;
1908 : 0 : break;
1909 : : default:
1910 : : break;
1911 : : }
1912 : :
1913 : 0 : if (!alloc_builtin)
1914 : 0 : continue;
1915 : :
1916 : 0 : if (DECL_FUNCTION_CODE (alloc) != DECL_FUNCTION_CODE (alloc_decl))
1917 : 0 : continue;
1918 : :
1919 : : return true;
1920 : : }
1921 : :
1922 : 2318 : if (alloc == DECL_NAME (alloc_decl))
1923 : : return true;
1924 : : }
1925 : :
1926 : 168 : if (realloc_kind == alloc_kind_t::none)
1927 : : return false;
1928 : :
1929 : 110 : hash_set<tree> common_deallocs;
1930 : : /* Special handling for deallocators. Iterate over both the allocator's
1931 : : and the reallocator's associated deallocator functions looking for
1932 : : the first one in common. If one is found, the de/reallocator is
1933 : : a match for the allocator even though the latter isn't directly
1934 : : associated with the former. This simplifies declarations in system
1935 : : headers.
1936 : : With AMATS set to the Allocator's Malloc ATtributes,
1937 : : and RMATS set to Reallocator's Malloc ATtributes... */
1938 : 55 : for (tree amats = DECL_ATTRIBUTES (alloc_decl);
1939 : 115 : (amats = lookup_attribute ("malloc", amats));
1940 : 60 : amats = amats ? TREE_CHAIN (amats) : NULL_TREE)
1941 : 68 : if (tree args = amats ? TREE_VALUE (amats) : NULL_TREE)
1942 : 58 : if (tree adealloc = TREE_VALUE (args))
1943 : : {
1944 : 58 : if (DECL_P (adealloc)
1945 : 58 : && fndecl_built_in_p (adealloc, BUILT_IN_NORMAL))
1946 : : {
1947 : 12 : built_in_function fncode = DECL_FUNCTION_CODE (adealloc);
1948 : 12 : if (fncode == BUILT_IN_FREE || fncode == BUILT_IN_REALLOC)
1949 : : {
1950 : 12 : if (realloc_kind == alloc_kind_t::builtin)
1951 : 8 : return true;
1952 : : alloc_dealloc_kind = alloc_kind_t::builtin;
1953 : : }
1954 : 4 : continue;
1955 : 4 : }
1956 : :
1957 : 46 : common_deallocs.add (adealloc);
1958 : : }
1959 : 47 : for (tree rmats = DECL_ATTRIBUTES (dealloc_decl);
1960 : 83 : (rmats = lookup_attribute ("malloc", rmats));
1961 : 36 : rmats = rmats ? TREE_CHAIN (rmats) : NULL_TREE)
1962 : 56 : if (tree args = rmats ? TREE_VALUE (rmats) : NULL_TREE)
1963 : 56 : if (tree ddealloc = TREE_VALUE (args))
1964 : : {
1965 : 56 : if (DECL_P (ddealloc)
1966 : 56 : && fndecl_built_in_p (ddealloc, BUILT_IN_NORMAL))
1967 : : {
1968 : 16 : built_in_function fncode = DECL_FUNCTION_CODE (ddealloc);
1969 : 16 : if (fncode == BUILT_IN_FREE || fncode == BUILT_IN_REALLOC)
1970 : : {
1971 : 16 : if (alloc_dealloc_kind == alloc_kind_t::builtin)
1972 : 20 : return true;
1973 : : realloc_dealloc_kind = alloc_kind_t::builtin;
1974 : : }
1975 : 1 : continue;
1976 : 1 : }
1977 : :
1978 : 40 : if (common_deallocs.contains (ddealloc))
1979 : : return true;
1980 : : }
1981 : :
1982 : : /* Succeed only if ALLOC_DECL and the reallocator DEALLOC_DECL share
1983 : : a built-in deallocator. */
1984 : 27 : return (alloc_dealloc_kind == alloc_kind_t::builtin
1985 : 27 : && realloc_dealloc_kind == alloc_kind_t::builtin);
1986 : : }
1987 : :
1988 : : /* Return true if DEALLOC_DECL is a function suitable to deallocate
1989 : : objects allocated by the ALLOC call. */
1990 : :
1991 : : static bool
1992 : 38133 : matching_alloc_calls_p (gimple *alloc, tree dealloc_decl)
1993 : : {
1994 : 38133 : tree alloc_decl = gimple_call_fndecl (alloc);
1995 : 38133 : if (!alloc_decl)
1996 : : return true;
1997 : :
1998 : 38133 : return matching_alloc_calls_p (alloc_decl, dealloc_decl);
1999 : : }
2000 : :
2001 : : /* Diagnose a call EXP to deallocate a pointer referenced by AREF if it
2002 : : includes a nonzero offset. Such a pointer cannot refer to the beginning
2003 : : of an allocated object. A negative offset may refer to it only if
2004 : : the target pointer is unknown. */
2005 : :
2006 : : static bool
2007 : 136788 : warn_dealloc_offset (location_t loc, gimple *call, const access_ref &aref)
2008 : : {
2009 : 136788 : if (aref.deref || aref.offrng[0] <= 0 || aref.offrng[1] <= 0)
2010 : 136713 : return false;
2011 : :
2012 : 75 : tree dealloc_decl = gimple_call_fndecl (call);
2013 : 75 : if (!dealloc_decl)
2014 : : return false;
2015 : :
2016 : 75 : if (DECL_IS_OPERATOR_DELETE_P (dealloc_decl)
2017 : 75 : && !DECL_IS_REPLACEABLE_OPERATOR (dealloc_decl))
2018 : : {
2019 : : /* A call to a user-defined operator delete with a pointer plus offset
2020 : : may be valid if it's returned from an unknown function (i.e., one
2021 : : that's not operator new). */
2022 : 6 : if (TREE_CODE (aref.ref) == SSA_NAME)
2023 : : {
2024 : 6 : gimple *def_stmt = SSA_NAME_DEF_STMT (aref.ref);
2025 : 6 : if (is_gimple_call (def_stmt))
2026 : : {
2027 : 6 : tree alloc_decl = gimple_call_fndecl (def_stmt);
2028 : 9 : if (!alloc_decl || !DECL_IS_OPERATOR_NEW_P (alloc_decl))
2029 : : return false;
2030 : : }
2031 : : }
2032 : : }
2033 : :
2034 : 69 : char offstr[80];
2035 : 69 : offstr[0] = '\0';
2036 : 69 : if (wi::fits_shwi_p (aref.offrng[0]))
2037 : : {
2038 : 69 : if (aref.offrng[0] == aref.offrng[1]
2039 : 69 : || !wi::fits_shwi_p (aref.offrng[1]))
2040 : 55 : sprintf (offstr, " %lli",
2041 : 55 : (long long)aref.offrng[0].to_shwi ());
2042 : : else
2043 : 14 : sprintf (offstr, " [%lli, %lli]",
2044 : 14 : (long long)aref.offrng[0].to_shwi (),
2045 : 14 : (long long)aref.offrng[1].to_shwi ());
2046 : : }
2047 : :
2048 : 69 : auto_diagnostic_group d;
2049 : 69 : if (!warning_at (loc, OPT_Wfree_nonheap_object,
2050 : : "%qD called on pointer %qE with nonzero offset%s",
2051 : 69 : dealloc_decl, aref.ref, offstr))
2052 : : return false;
2053 : :
2054 : 69 : if (DECL_P (aref.ref))
2055 : 8 : inform (get_location (aref.ref), "declared here");
2056 : 61 : else if (TREE_CODE (aref.ref) == SSA_NAME)
2057 : : {
2058 : 59 : gimple *def_stmt = SSA_NAME_DEF_STMT (aref.ref);
2059 : 59 : if (is_gimple_call (def_stmt))
2060 : : {
2061 : 53 : location_t def_loc = get_location (def_stmt);
2062 : 53 : tree alloc_decl = gimple_call_fndecl (def_stmt);
2063 : 53 : if (alloc_decl)
2064 : 53 : inform (def_loc,
2065 : : "returned from %qD", alloc_decl);
2066 : 0 : else if (tree alloc_fntype = gimple_call_fntype (def_stmt))
2067 : 0 : inform (def_loc,
2068 : : "returned from %qT", alloc_fntype);
2069 : : else
2070 : 0 : inform (def_loc, "obtained here");
2071 : : }
2072 : : }
2073 : :
2074 : : return true;
2075 : 69 : }
2076 : :
2077 : : namespace {
2078 : :
2079 : : const pass_data pass_data_waccess = {
2080 : : GIMPLE_PASS,
2081 : : "waccess",
2082 : : OPTGROUP_NONE,
2083 : : TV_WARN_ACCESS, /* timer variable */
2084 : : PROP_cfg, /* properties_required */
2085 : : 0, /* properties_provided */
2086 : : 0, /* properties_destroyed */
2087 : : 0, /* properties_start */
2088 : : 0, /* properties_finish */
2089 : : };
2090 : :
2091 : : /* Pass to detect invalid accesses. */
2092 : : class pass_waccess : public gimple_opt_pass
2093 : : {
2094 : : public:
2095 : : pass_waccess (gcc::context *);
2096 : :
2097 : : ~pass_waccess ();
2098 : :
2099 : : opt_pass *clone () final override;
2100 : :
2101 : : bool gate (function *) final override;
2102 : :
2103 : : void set_pass_param (unsigned, bool) final override;
2104 : :
2105 : : unsigned int execute (function *) final override;
2106 : :
2107 : : private:
2108 : : /* Not copyable or assignable. */
2109 : : pass_waccess (pass_waccess &) = delete;
2110 : : void operator= (pass_waccess &) = delete;
2111 : :
2112 : : /* Check a call to an atomic built-in function. */
2113 : : bool check_atomic_builtin (gcall *);
2114 : :
2115 : : /* Check a call to a built-in function. */
2116 : : bool check_builtin (gcall *);
2117 : :
2118 : : /* Check a call to an ordinary function for invalid accesses. */
2119 : : bool check_call_access (gcall *);
2120 : :
2121 : : /* Check a non-call statement. */
2122 : : void check_stmt (gimple *);
2123 : :
2124 : : /* Check statements in a basic block. */
2125 : : void check_block (basic_block);
2126 : :
2127 : : /* Check a call to a function. */
2128 : : void check_call (gcall *);
2129 : :
2130 : : /* Check a call to the named built-in function. */
2131 : : void check_alloca (gcall *);
2132 : : void check_alloc_size_call (gcall *);
2133 : : void check_strcat (gcall *);
2134 : : void check_strncat (gcall *);
2135 : : void check_stxcpy (gcall *);
2136 : : void check_stxncpy (gcall *);
2137 : : void check_strncmp (gcall *);
2138 : : void check_memop_access (gimple *, tree, tree, tree);
2139 : : void check_read_access (gimple *, tree, tree = NULL_TREE, int = 1);
2140 : :
2141 : : void maybe_check_dealloc_call (gcall *);
2142 : : void maybe_check_access_sizes (rdwr_map *, tree, tree, gimple *);
2143 : : bool maybe_warn_memmodel (gimple *, tree, tree, const unsigned char *);
2144 : : void check_atomic_memmodel (gimple *, tree, tree, const unsigned char *);
2145 : :
2146 : : /* Check for uses of indeterminate pointers. */
2147 : : void check_pointer_uses (gimple *, tree, tree = NULL_TREE, bool = false);
2148 : :
2149 : : /* Return the argument that a call returns. */
2150 : : tree gimple_call_return_arg (gcall *);
2151 : :
2152 : : /* Check a call for uses of a dangling pointer arguments. */
2153 : : void check_call_dangling (gcall *);
2154 : :
2155 : : /* Check uses of a dangling pointer or those derived from it. */
2156 : : void check_dangling_uses (tree, tree, bool = false, bool = false);
2157 : : void check_dangling_uses ();
2158 : : void check_dangling_stores ();
2159 : : bool check_dangling_stores (basic_block, hash_set<tree> &);
2160 : :
2161 : : void warn_invalid_pointer (tree, gimple *, gimple *, tree, bool, bool = false);
2162 : :
2163 : : /* Return true if use follows an invalidating statement. */
2164 : : bool use_after_inval_p (gimple *, gimple *, bool = false);
2165 : :
2166 : : /* A pointer_query object to store information about pointers and
2167 : : their targets in. */
2168 : : pointer_query m_ptr_qry;
2169 : : /* Mapping from DECLs and their clobber statements in the function. */
2170 : : hash_map<tree, gimple *> m_clobbers;
2171 : : /* A bit is set for each basic block whose statements have been assigned
2172 : : valid UIDs. */
2173 : : bitmap m_bb_uids_set;
2174 : : /* The current function. */
2175 : : function *m_func;
2176 : : /* True to run checks for uses of dangling pointers. */
2177 : : bool m_check_dangling_p;
2178 : : /* True to run checks early on in the optimization pipeline. */
2179 : : bool m_early_checks_p;
2180 : : };
2181 : :
2182 : : /* Construct the pass. */
2183 : :
2184 : 840342 : pass_waccess::pass_waccess (gcc::context *ctxt)
2185 : : : gimple_opt_pass (pass_data_waccess, ctxt),
2186 : 840342 : m_ptr_qry (NULL),
2187 : 840342 : m_clobbers (),
2188 : 840342 : m_bb_uids_set (),
2189 : 840342 : m_func (),
2190 : 840342 : m_check_dangling_p (),
2191 : 840342 : m_early_checks_p ()
2192 : : {
2193 : 840342 : }
2194 : :
2195 : : /* Return a copy of the pass with RUN_NUMBER one greater than THIS. */
2196 : :
2197 : : opt_pass*
2198 : 560228 : pass_waccess::clone ()
2199 : : {
2200 : 560228 : return new pass_waccess (m_ctxt);
2201 : : }
2202 : :
2203 : : /* Release pointer_query cache. */
2204 : :
2205 : 1514796 : pass_waccess::~pass_waccess ()
2206 : : {
2207 : 757398 : m_ptr_qry.flush_cache ();
2208 : 1514796 : }
2209 : :
2210 : : void
2211 : 840342 : pass_waccess::set_pass_param (unsigned int n, bool early)
2212 : : {
2213 : 840342 : gcc_assert (n == 0);
2214 : :
2215 : 840342 : m_early_checks_p = early;
2216 : 840342 : }
2217 : :
2218 : : /* Return true when any checks performed by the pass are enabled. */
2219 : :
2220 : : bool
2221 : 5075841 : pass_waccess::gate (function *)
2222 : : {
2223 : 5075841 : return (warn_free_nonheap_object
2224 : : || warn_mismatched_alloc
2225 : 5075841 : || warn_mismatched_new_delete);
2226 : : }
2227 : :
2228 : : /* Initialize ALLOC_OBJECT_SIZE_LIMIT based on the -Walloc-size-larger-than=
2229 : : setting if the option is specified, or to the maximum object size if it
2230 : : is not. Return the initialized value. */
2231 : :
2232 : : static tree
2233 : 47168 : alloc_max_size (void)
2234 : : {
2235 : 47168 : HOST_WIDE_INT limit = warn_alloc_size_limit;
2236 : 47168 : if (limit == HOST_WIDE_INT_MAX)
2237 : 46772 : limit = tree_to_shwi (TYPE_MAX_VALUE (ptrdiff_type_node));
2238 : :
2239 : 47168 : return build_int_cst (size_type_node, limit);
2240 : : }
2241 : :
2242 : : /* Diagnose a call EXP to function FN decorated with attribute alloc_size
2243 : : whose argument numbers given by IDX with values given by ARGS exceed
2244 : : the maximum object size or cause an unsigned overflow (wrapping) when
2245 : : multiplied. FN is null when EXP is a call via a function pointer.
2246 : : When ARGS[0] is null the function does nothing. ARGS[1] may be null
2247 : : for functions like malloc, and non-null for those like calloc that
2248 : : are decorated with a two-argument attribute alloc_size. */
2249 : :
2250 : : void
2251 : 47168 : maybe_warn_alloc_args_overflow (gimple *stmt, const tree args[2],
2252 : : const int idx[2])
2253 : : {
2254 : : /* The range each of the (up to) two arguments is known to be in. */
2255 : 47168 : tree argrange[2][2] = { { NULL_TREE, NULL_TREE }, { NULL_TREE, NULL_TREE } };
2256 : :
2257 : : /* Maximum object size set by -Walloc-size-larger-than= or SIZE_MAX / 2. */
2258 : 47168 : tree maxobjsize = alloc_max_size ();
2259 : :
2260 : 47168 : location_t loc = get_location (stmt);
2261 : :
2262 : 47168 : tree fn = gimple_call_fndecl (stmt);
2263 : 47168 : tree fntype = fn ? TREE_TYPE (fn) : gimple_call_fntype (stmt);
2264 : 47168 : bool warned = false;
2265 : :
2266 : : /* Validate each argument individually. */
2267 : 95518 : for (unsigned i = 0; i != 2 && args[i]; ++i)
2268 : : {
2269 : 48350 : if (TREE_CODE (args[i]) == INTEGER_CST)
2270 : : {
2271 : 30786 : argrange[i][0] = args[i];
2272 : 30786 : argrange[i][1] = args[i];
2273 : :
2274 : 30786 : if (tree_int_cst_lt (args[i], integer_zero_node))
2275 : : {
2276 : 24 : warned = warning_at (loc, OPT_Walloc_size_larger_than_,
2277 : : "argument %i value %qE is negative",
2278 : 24 : idx[i] + 1, args[i]);
2279 : : }
2280 : 30762 : else if (integer_zerop (args[i]))
2281 : : {
2282 : : /* Avoid issuing -Walloc-zero for allocation functions other
2283 : : than __builtin_alloca that are declared with attribute
2284 : : returns_nonnull because there's no portability risk. This
2285 : : avoids warning for such calls to libiberty's xmalloc and
2286 : : friends.
2287 : : Also avoid issuing the warning for calls to function named
2288 : : "alloca". */
2289 : 936 : if (fn && fndecl_built_in_p (fn, BUILT_IN_ALLOCA)
2290 : 958 : ? IDENTIFIER_LENGTH (DECL_NAME (fn)) != 6
2291 : 479 : : !lookup_attribute ("returns_nonnull",
2292 : 479 : TYPE_ATTRIBUTES (fntype)))
2293 : 472 : warned = warning_at (loc, OPT_Walloc_zero,
2294 : : "argument %i value is zero",
2295 : 472 : idx[i] + 1);
2296 : : }
2297 : 30283 : else if (tree_int_cst_lt (maxobjsize, args[i]))
2298 : : {
2299 : : /* G++ emits calls to ::operator new[](SIZE_MAX) in C++98
2300 : : mode and with -fno-exceptions as a way to indicate array
2301 : : size overflow. There's no good way to detect C++98 here
2302 : : so avoid diagnosing these calls for all C++ modes. */
2303 : 112 : if (i == 0
2304 : 95 : && fn
2305 : 79 : && !args[1]
2306 : 73 : && lang_GNU_CXX ()
2307 : 17 : && DECL_IS_OPERATOR_NEW_P (fn)
2308 : 112 : && integer_all_onesp (args[i]))
2309 : 17 : continue;
2310 : :
2311 : 78 : warned = warning_at (loc, OPT_Walloc_size_larger_than_,
2312 : : "argument %i value %qE exceeds "
2313 : : "maximum object size %E",
2314 : 78 : idx[i] + 1, args[i], maxobjsize);
2315 : : }
2316 : : }
2317 : 17564 : else if (TREE_CODE (args[i]) == SSA_NAME
2318 : 17564 : && get_size_range (args[i], argrange[i]))
2319 : : {
2320 : : /* Verify that the argument's range is not negative (including
2321 : : upper bound of zero). */
2322 : 17551 : if (tree_int_cst_lt (argrange[i][0], integer_zero_node)
2323 : 17551 : && tree_int_cst_le (argrange[i][1], integer_zero_node))
2324 : : {
2325 : 31 : warned = warning_at (loc, OPT_Walloc_size_larger_than_,
2326 : : "argument %i range [%E, %E] is negative",
2327 : 31 : idx[i] + 1,
2328 : : argrange[i][0], argrange[i][1]);
2329 : : }
2330 : 17520 : else if (tree_int_cst_lt (maxobjsize, argrange[i][0]))
2331 : : {
2332 : 31 : warned = warning_at (loc, OPT_Walloc_size_larger_than_,
2333 : : "argument %i range [%E, %E] exceeds "
2334 : : "maximum object size %E",
2335 : 31 : idx[i] + 1,
2336 : : argrange[i][0], argrange[i][1],
2337 : : maxobjsize);
2338 : : }
2339 : : }
2340 : : }
2341 : :
2342 : 47168 : if (!argrange[0][0])
2343 : 10 : return;
2344 : :
2345 : : /* For a two-argument alloc_size, validate the product of the two
2346 : : arguments if both of their values or ranges are known. */
2347 : 46937 : if (!warned && tree_fits_uhwi_p (argrange[0][0])
2348 : 46882 : && argrange[1][0] && tree_fits_uhwi_p (argrange[1][0])
2349 : 1082 : && !integer_onep (argrange[0][0])
2350 : 47929 : && !integer_onep (argrange[1][0]))
2351 : : {
2352 : : /* Check for overflow in the product of a function decorated with
2353 : : attribute alloc_size (X, Y). */
2354 : 395 : unsigned szprec = TYPE_PRECISION (size_type_node);
2355 : 395 : wide_int x = wi::to_wide (argrange[0][0], szprec);
2356 : 395 : wide_int y = wi::to_wide (argrange[1][0], szprec);
2357 : :
2358 : 395 : wi::overflow_type vflow;
2359 : 395 : wide_int prod = wi::umul (x, y, &vflow);
2360 : :
2361 : 395 : if (vflow)
2362 : 2 : warned = warning_at (loc, OPT_Walloc_size_larger_than_,
2363 : : "product %<%E * %E%> of arguments %i and %i "
2364 : : "exceeds %<SIZE_MAX%>",
2365 : : argrange[0][0], argrange[1][0],
2366 : 2 : idx[0] + 1, idx[1] + 1);
2367 : 393 : else if (wi::ltu_p (wi::to_wide (maxobjsize, szprec), prod))
2368 : 14 : warned = warning_at (loc, OPT_Walloc_size_larger_than_,
2369 : : "product %<%E * %E%> of arguments %i and %i "
2370 : : "exceeds maximum object size %E",
2371 : : argrange[0][0], argrange[1][0],
2372 : 14 : idx[0] + 1, idx[1] + 1,
2373 : : maxobjsize);
2374 : :
2375 : 395 : if (warned)
2376 : : {
2377 : : /* Print the full range of each of the two arguments to make
2378 : : it clear when it is, in fact, in a range and not constant. */
2379 : 16 : if (argrange[0][0] != argrange [0][1])
2380 : 1 : inform (loc, "argument %i in the range [%E, %E]",
2381 : 1 : idx[0] + 1, argrange[0][0], argrange[0][1]);
2382 : 16 : if (argrange[1][0] != argrange [1][1])
2383 : 1 : inform (loc, "argument %i in the range [%E, %E]",
2384 : 1 : idx[1] + 1, argrange[1][0], argrange[1][1]);
2385 : : }
2386 : 395 : }
2387 : :
2388 : 47158 : if (warned && fn)
2389 : : {
2390 : 212 : location_t fnloc = DECL_SOURCE_LOCATION (fn);
2391 : :
2392 : 212 : if (DECL_IS_UNDECLARED_BUILTIN (fn))
2393 : 64 : inform (loc,
2394 : : "in a call to built-in allocation function %qD", fn);
2395 : : else
2396 : 148 : inform (fnloc,
2397 : : "in a call to allocation function %qD declared here", fn);
2398 : : }
2399 : : }
2400 : :
2401 : : /* Check a call to an alloca function for an excessive size. */
2402 : :
2403 : : void
2404 : 40977 : pass_waccess::check_alloca (gcall *stmt)
2405 : : {
2406 : 40977 : if (m_early_checks_p)
2407 : : return;
2408 : :
2409 : 14375 : if ((warn_vla_limit >= HOST_WIDE_INT_MAX
2410 : 14348 : && warn_alloc_size_limit < warn_vla_limit)
2411 : 14365 : || (warn_alloca_limit >= HOST_WIDE_INT_MAX
2412 : 14302 : && warn_alloc_size_limit < warn_alloca_limit))
2413 : : {
2414 : : /* -Walloca-larger-than and -Wvla-larger-than settings of less
2415 : : than HWI_MAX override the more general -Walloc-size-larger-than
2416 : : so unless either of the former options is smaller than the last
2417 : : one (which would imply that the call was already checked), check
2418 : : the alloca arguments for overflow. */
2419 : 10 : const tree alloc_args[] = { call_arg (stmt, 0), NULL_TREE };
2420 : 10 : const int idx[] = { 0, -1 };
2421 : 10 : maybe_warn_alloc_args_overflow (stmt, alloc_args, idx);
2422 : : }
2423 : : }
2424 : :
2425 : : /* Check a call to an allocation function for an excessive size. */
2426 : :
2427 : : void
2428 : 3973430 : pass_waccess::check_alloc_size_call (gcall *stmt)
2429 : : {
2430 : 3973430 : if (m_early_checks_p)
2431 : 3926272 : return;
2432 : :
2433 : 1296882 : if (gimple_call_num_args (stmt) < 1)
2434 : : /* Avoid invalid calls to functions without a prototype. */
2435 : : return;
2436 : :
2437 : 1064925 : tree fndecl = gimple_call_fndecl (stmt);
2438 : 1064925 : if (fndecl && gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
2439 : : {
2440 : : /* Alloca is handled separately. */
2441 : 528952 : switch (DECL_FUNCTION_CODE (fndecl))
2442 : : {
2443 : : case BUILT_IN_ALLOCA:
2444 : : case BUILT_IN_ALLOCA_WITH_ALIGN:
2445 : : case BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX:
2446 : : return;
2447 : : default:
2448 : : break;
2449 : : }
2450 : : }
2451 : :
2452 : 1055711 : tree fntype = gimple_call_fntype (stmt);
2453 : 1055711 : tree fntypeattrs = TYPE_ATTRIBUTES (fntype);
2454 : :
2455 : 1055711 : tree alloc_size = lookup_attribute ("alloc_size", fntypeattrs);
2456 : 1055711 : if (!alloc_size)
2457 : : return;
2458 : :
2459 : : /* Extract attribute alloc_size from the type of the called expression
2460 : : (which could be a function or a function pointer) and if set, store
2461 : : the indices of the corresponding arguments in ALLOC_IDX, and then
2462 : : the actual argument(s) at those indices in ALLOC_ARGS. */
2463 : 47163 : int idx[2] = { -1, -1 };
2464 : 47163 : tree alloc_args[] = { NULL_TREE, NULL_TREE };
2465 : 47163 : unsigned nargs = gimple_call_num_args (stmt);
2466 : :
2467 : 47163 : tree args = TREE_VALUE (alloc_size);
2468 : 47163 : idx[0] = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1;
2469 : : /* Avoid invalid calls to functions without a prototype. */
2470 : 47163 : if ((unsigned) idx[0] >= nargs)
2471 : : return;
2472 : 47158 : alloc_args[0] = call_arg (stmt, idx[0]);
2473 : 47158 : if (TREE_CHAIN (args))
2474 : : {
2475 : 1182 : idx[1] = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1;
2476 : 1182 : if ((unsigned) idx[1] >= nargs)
2477 : : return;
2478 : 1182 : alloc_args[1] = call_arg (stmt, idx[1]);
2479 : : }
2480 : :
2481 : 47158 : maybe_warn_alloc_args_overflow (stmt, alloc_args, idx);
2482 : : }
2483 : :
2484 : : /* Check a call STMT to strcat() for overflow and warn if it does. */
2485 : :
2486 : : void
2487 : 2430 : pass_waccess::check_strcat (gcall *stmt)
2488 : : {
2489 : 2430 : if (m_early_checks_p)
2490 : 1694 : return;
2491 : :
2492 : 736 : if (!warn_stringop_overflow && !warn_stringop_overread)
2493 : : return;
2494 : :
2495 : 736 : tree dest = call_arg (stmt, 0);
2496 : 736 : tree src = call_arg (stmt, 1);
2497 : :
2498 : : /* There is no way here to determine the length of the string in
2499 : : the destination to which the SRC string is being appended so
2500 : : just diagnose cases when the source string is longer than
2501 : : the destination object. */
2502 : 736 : access_data data (m_ptr_qry.rvals, stmt, access_read_write, NULL_TREE,
2503 : 736 : true, NULL_TREE, true);
2504 : 736 : const int ost = warn_stringop_overflow ? warn_stringop_overflow - 1 : 1;
2505 : 736 : compute_objsize (src, stmt, ost, &data.src, &m_ptr_qry);
2506 : 736 : tree destsize = compute_objsize (dest, stmt, ost, &data.dst, &m_ptr_qry);
2507 : :
2508 : 736 : check_access (stmt, /*dstwrite=*/NULL_TREE, /*maxread=*/NULL_TREE,
2509 : : src, destsize, data.mode, &data, m_ptr_qry.rvals);
2510 : : }
2511 : :
2512 : : /* Check a call STMT to strcat() for overflow and warn if it does. */
2513 : :
2514 : : void
2515 : 1886 : pass_waccess::check_strncat (gcall *stmt)
2516 : : {
2517 : 1886 : if (m_early_checks_p)
2518 : 1270 : return;
2519 : :
2520 : 654 : if (!warn_stringop_overflow && !warn_stringop_overread)
2521 : : return;
2522 : :
2523 : 635 : tree dest = call_arg (stmt, 0);
2524 : 635 : tree src = call_arg (stmt, 1);
2525 : : /* The upper bound on the number of bytes to write. */
2526 : 635 : tree maxread = call_arg (stmt, 2);
2527 : :
2528 : : /* Detect unterminated source (only). */
2529 : 635 : if (!check_nul_terminated_array (stmt, src, maxread))
2530 : : return;
2531 : :
2532 : : /* The length of the source sequence. */
2533 : 629 : tree slen = c_strlen (src, 1);
2534 : :
2535 : : /* Try to determine the range of lengths that the source expression
2536 : : refers to. Since the lengths are only used for warning and not
2537 : : for code generation disable strict mode below. */
2538 : 629 : tree maxlen = slen;
2539 : 629 : if (!maxlen)
2540 : : {
2541 : 522 : c_strlen_data lendata = { };
2542 : 522 : get_range_strlen (src, &lendata, /* eltsize = */ 1);
2543 : 522 : maxlen = lendata.maxbound;
2544 : : }
2545 : :
2546 : 629 : access_data data (m_ptr_qry.rvals, stmt, access_read_write);
2547 : : /* Try to verify that the destination is big enough for the shortest
2548 : : string. First try to determine the size of the destination object
2549 : : into which the source is being copied. */
2550 : 629 : const int ost = warn_stringop_overflow - 1;
2551 : 629 : tree destsize = compute_objsize (dest, stmt, ost, &data.dst, &m_ptr_qry);
2552 : :
2553 : : /* Add one for the terminating nul. */
2554 : 629 : tree srclen = (maxlen
2555 : 629 : ? fold_build2 (PLUS_EXPR, size_type_node, maxlen,
2556 : : size_one_node)
2557 : 629 : : NULL_TREE);
2558 : :
2559 : : /* The strncat function copies at most MAXREAD bytes and always appends
2560 : : the terminating nul so the specified upper bound should never be equal
2561 : : to (or greater than) the size of the destination. */
2562 : 236 : if (tree_fits_uhwi_p (maxread) && tree_fits_uhwi_p (destsize)
2563 : 865 : && tree_int_cst_equal (destsize, maxread))
2564 : : {
2565 : 13 : location_t loc = get_location (stmt);
2566 : 13 : warning_at (loc, OPT_Wstringop_overflow_,
2567 : : "%qD specified bound %E equals destination size",
2568 : : get_callee_fndecl (stmt), maxread);
2569 : :
2570 : 13 : return;
2571 : : }
2572 : :
2573 : 616 : if (!srclen
2574 : 616 : || (maxread && tree_fits_uhwi_p (maxread)
2575 : 157 : && tree_fits_uhwi_p (srclen)
2576 : 157 : && tree_int_cst_lt (maxread, srclen)))
2577 : : srclen = maxread;
2578 : :
2579 : 616 : check_access (stmt, /*dstwrite=*/NULL_TREE, maxread, srclen,
2580 : : destsize, data.mode, &data, m_ptr_qry.rvals);
2581 : : }
2582 : :
2583 : : /* Check a call STMT to stpcpy() or strcpy() for overflow and warn
2584 : : if it does. */
2585 : :
2586 : : void
2587 : 10438 : pass_waccess::check_stxcpy (gcall *stmt)
2588 : : {
2589 : 10438 : if (m_early_checks_p)
2590 : 7396 : return;
2591 : :
2592 : 3184 : tree dst = call_arg (stmt, 0);
2593 : 3184 : tree src = call_arg (stmt, 1);
2594 : :
2595 : 3184 : tree size;
2596 : 3184 : bool exact;
2597 : 3184 : if (tree nonstr = unterminated_array (src, &size, &exact))
2598 : : {
2599 : : /* NONSTR refers to the non-nul terminated constant array. */
2600 : 142 : warn_string_no_nul (get_location (stmt), stmt, NULL, src, nonstr,
2601 : : size, exact);
2602 : 142 : return;
2603 : : }
2604 : :
2605 : 3042 : if (warn_stringop_overflow)
2606 : : {
2607 : 2837 : access_data data (m_ptr_qry.rvals, stmt, access_read_write, NULL_TREE,
2608 : 2837 : true, NULL_TREE, true);
2609 : 2837 : const int ost = warn_stringop_overflow ? warn_stringop_overflow - 1 : 1;
2610 : 2837 : compute_objsize (src, stmt, ost, &data.src, &m_ptr_qry);
2611 : 2837 : tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry);
2612 : 2837 : check_access (stmt, /*dstwrite=*/ NULL_TREE,
2613 : : /*maxread=*/ NULL_TREE, /*srcstr=*/ src,
2614 : : dstsize, data.mode, &data, m_ptr_qry.rvals);
2615 : : }
2616 : :
2617 : : /* Check to see if the argument was declared attribute nonstring
2618 : : and if so, issue a warning since at this point it's not known
2619 : : to be nul-terminated. */
2620 : 3042 : tree fndecl = get_callee_fndecl (stmt);
2621 : 3042 : maybe_warn_nonstring_arg (fndecl, stmt);
2622 : : }
2623 : :
2624 : : /* Check a call STMT to stpncpy() or strncpy() for overflow and warn
2625 : : if it does. */
2626 : :
2627 : : void
2628 : 7506 : pass_waccess::check_stxncpy (gcall *stmt)
2629 : : {
2630 : 7506 : if (m_early_checks_p || !warn_stringop_overflow)
2631 : 5299 : return;
2632 : :
2633 : 2207 : tree dst = call_arg (stmt, 0);
2634 : 2207 : tree src = call_arg (stmt, 1);
2635 : : /* The number of bytes to write (not the maximum). */
2636 : 2207 : tree len = call_arg (stmt, 2);
2637 : :
2638 : 2207 : access_data data (m_ptr_qry.rvals, stmt, access_read_write, len, true, len,
2639 : 2207 : true);
2640 : 2207 : const int ost = warn_stringop_overflow ? warn_stringop_overflow - 1 : 1;
2641 : 2207 : compute_objsize (src, stmt, ost, &data.src, &m_ptr_qry);
2642 : 2207 : tree dstsize = compute_objsize (dst, stmt, ost, &data.dst, &m_ptr_qry);
2643 : :
2644 : 2207 : check_access (stmt, /*dstwrite=*/len, /*maxread=*/len, src, dstsize,
2645 : : data.mode, &data, m_ptr_qry.rvals);
2646 : : }
2647 : :
2648 : : /* Check a call STMT to stpncpy() or strncpy() for overflow and warn
2649 : : if it does. */
2650 : :
2651 : : void
2652 : 7603 : pass_waccess::check_strncmp (gcall *stmt)
2653 : : {
2654 : 7603 : if (m_early_checks_p || !warn_stringop_overread)
2655 : 5678 : return;
2656 : :
2657 : 2554 : tree arg1 = call_arg (stmt, 0);
2658 : 2554 : tree arg2 = call_arg (stmt, 1);
2659 : 2554 : tree bound = call_arg (stmt, 2);
2660 : :
2661 : : /* First check each argument separately, considering the bound. */
2662 : 2554 : if (!check_nul_terminated_array (stmt, arg1, bound)
2663 : 2554 : || !check_nul_terminated_array (stmt, arg2, bound))
2664 : 6 : return;
2665 : :
2666 : : /* A strncmp read from each argument is constrained not just by
2667 : : the bound but also by the length of the shorter string. Specifying
2668 : : a bound that's larger than the size of either array makes no sense
2669 : : and is likely a bug. When the length of neither of the two strings
2670 : : is known but the sizes of both of the arrays they are stored in is,
2671 : : issue a warning if the bound is larger than the size of
2672 : : the larger of the two arrays. */
2673 : :
2674 : 2548 : c_strlen_data lendata1{ }, lendata2{ };
2675 : 2548 : tree len1 = c_strlen (arg1, 1, &lendata1);
2676 : 2548 : tree len2 = c_strlen (arg2, 1, &lendata2);
2677 : :
2678 : 2548 : if (len1 && TREE_CODE (len1) != INTEGER_CST)
2679 : 2331 : len1 = NULL_TREE;
2680 : 2548 : if (len2 && TREE_CODE (len2) != INTEGER_CST)
2681 : 1380 : len2 = NULL_TREE;
2682 : :
2683 : 2548 : if (len1 && len2)
2684 : : /* If the length of both arguments was computed they must both be
2685 : : nul-terminated and no further checking is necessary regardless
2686 : : of the bound. */
2687 : : return;
2688 : :
2689 : : /* Check to see if the argument was declared with attribute nonstring
2690 : : and if so, issue a warning since at this point it's not known to be
2691 : : nul-terminated. */
2692 : 2431 : if (maybe_warn_nonstring_arg (get_callee_fndecl (stmt), stmt))
2693 : : return;
2694 : :
2695 : 2326 : access_data adata1 (m_ptr_qry.rvals, stmt, access_read_only, NULL_TREE, false,
2696 : 2326 : bound, true);
2697 : 2326 : access_data adata2 (m_ptr_qry.rvals, stmt, access_read_only, NULL_TREE, false,
2698 : 2326 : bound, true);
2699 : :
2700 : : /* Determine the range of the bound first and bail if it fails; it's
2701 : : cheaper than computing the size of the objects. */
2702 : 2326 : tree bndrng[2] = { NULL_TREE, NULL_TREE };
2703 : 2326 : get_size_range (m_ptr_qry.rvals, bound, stmt, bndrng, 0, adata1.src_bndrng);
2704 : 2326 : if (!bndrng[0] || integer_zerop (bndrng[0]))
2705 : 401 : return;
2706 : :
2707 : 1925 : if (len1 && tree_int_cst_lt (len1, bndrng[0]))
2708 : 12 : bndrng[0] = len1;
2709 : 1925 : if (len2 && tree_int_cst_lt (len2, bndrng[0]))
2710 : 38 : bndrng[0] = len2;
2711 : :
2712 : : /* compute_objsize almost never fails (and ultimately should never
2713 : : fail). Don't bother to handle the rare case when it does. */
2714 : 1925 : if (!compute_objsize (arg1, stmt, 1, &adata1.src, &m_ptr_qry)
2715 : 1925 : || !compute_objsize (arg2, stmt, 1, &adata2.src, &m_ptr_qry))
2716 : 0 : return;
2717 : :
2718 : : /* Compute the size of the remaining space in each array after
2719 : : subtracting any offset into it. */
2720 : 1925 : offset_int rem1 = adata1.src.size_remaining ();
2721 : 1925 : offset_int rem2 = adata2.src.size_remaining ();
2722 : :
2723 : : /* Cap REM1 and REM2 at the other if the other's argument is known
2724 : : to be an unterminated array, either because there's no space
2725 : : left in it after adding its offset or because it's constant and
2726 : : has no nul. */
2727 : 3847 : if (rem1 == 0 || (rem1 < rem2 && lendata1.decl))
2728 : 5 : rem2 = rem1;
2729 : 3839 : else if (rem2 == 0 || (rem2 < rem1 && lendata2.decl))
2730 : 3 : rem1 = rem2;
2731 : :
2732 : : /* Point PAD at the array to reference in the note if a warning
2733 : : is issued. */
2734 : 1925 : access_data *pad = len1 ? &adata2 : &adata1;
2735 : 1925 : offset_int maxrem = wi::max (rem1, rem2, UNSIGNED);
2736 : 1923 : if (lendata1.decl || lendata2.decl
2737 : 3846 : || maxrem < wi::to_offset (bndrng[0]))
2738 : : {
2739 : : /* Warn when either argument isn't nul-terminated or the maximum
2740 : : remaining space in the two arrays is less than the bound. */
2741 : 21 : tree func = get_callee_fndecl (stmt);
2742 : 21 : location_t loc = gimple_location (stmt);
2743 : 42 : maybe_warn_for_bound (OPT_Wstringop_overread, loc, stmt, func,
2744 : 42 : bndrng, wide_int_to_tree (sizetype, maxrem),
2745 : : pad);
2746 : : }
2747 : : }
2748 : :
2749 : : /* Determine and check the sizes of the source and the destination
2750 : : of calls to __builtin_{bzero,memcpy,mempcpy,memset} calls. STMT is
2751 : : the call statement, DEST is the destination argument, SRC is the source
2752 : : argument or null, and SIZE is the number of bytes being accessed. Use
2753 : : Object Size type-0 regardless of the OPT_Wstringop_overflow_ setting.
2754 : : Return true on success (no overflow or invalid sizes), false otherwise. */
2755 : :
2756 : : void
2757 : 813026 : pass_waccess::check_memop_access (gimple *stmt, tree dest, tree src, tree size)
2758 : : {
2759 : 813026 : if (m_early_checks_p)
2760 : 491858 : return;
2761 : :
2762 : : /* For functions like memset and memcpy that operate on raw memory
2763 : : try to determine the size of the largest source and destination
2764 : : object using type-0 Object Size regardless of the object size
2765 : : type specified by the option. */
2766 : 321168 : access_data data (m_ptr_qry.rvals, stmt, access_read_write);
2767 : 321168 : tree srcsize
2768 : 321168 : = src ? compute_objsize (src, stmt, 0, &data.src, &m_ptr_qry) : NULL_TREE;
2769 : 321168 : tree dstsize = compute_objsize (dest, stmt, 0, &data.dst, &m_ptr_qry);
2770 : :
2771 : 321168 : check_access (stmt, size, /*maxread=*/NULL_TREE, srcsize, dstsize,
2772 : : data.mode, &data, m_ptr_qry.rvals);
2773 : : }
2774 : :
2775 : : /* A convenience wrapper for check_access to check access by a read-only
2776 : : function like puts or strcmp. */
2777 : :
2778 : : void
2779 : 1395201 : pass_waccess::check_read_access (gimple *stmt, tree src,
2780 : : tree bound /* = NULL_TREE */,
2781 : : int ost /* = 1 */)
2782 : : {
2783 : 1395201 : if (m_early_checks_p || !warn_stringop_overread)
2784 : 997680 : return;
2785 : :
2786 : 397521 : if (bound && !useless_type_conversion_p (size_type_node, TREE_TYPE (bound)))
2787 : 0 : bound = fold_convert (size_type_node, bound);
2788 : :
2789 : 397521 : tree fndecl = get_callee_fndecl (stmt);
2790 : 397521 : maybe_warn_nonstring_arg (fndecl, stmt);
2791 : :
2792 : 397521 : access_data data (m_ptr_qry.rvals, stmt, access_read_only, NULL_TREE,
2793 : 397521 : false, bound, true);
2794 : 397521 : compute_objsize (src, stmt, ost, &data.src, &m_ptr_qry);
2795 : 397521 : check_access (stmt, /*dstwrite=*/ NULL_TREE, /*maxread=*/ bound,
2796 : : /*srcstr=*/ src, /*dstsize=*/ NULL_TREE, data.mode,
2797 : : &data, m_ptr_qry.rvals);
2798 : : }
2799 : :
2800 : : /* Return true if memory model ORD is constant in the context of STMT and
2801 : : set *CSTVAL to the constant value. Otherwise return false. Warn for
2802 : : invalid ORD. */
2803 : :
2804 : : bool
2805 : 348145 : memmodel_to_uhwi (tree ord, gimple *stmt, unsigned HOST_WIDE_INT *cstval)
2806 : : {
2807 : 348145 : unsigned HOST_WIDE_INT val;
2808 : :
2809 : 348145 : if (TREE_CODE (ord) == INTEGER_CST)
2810 : : {
2811 : 344938 : if (!tree_fits_uhwi_p (ord))
2812 : : return false;
2813 : 344930 : val = tree_to_uhwi (ord);
2814 : : }
2815 : : else
2816 : : {
2817 : : /* Use the range query to determine constant values in the absence
2818 : : of constant propagation (such as at -O0). */
2819 : 3207 : int_range_max rng (TREE_TYPE (ord));
2820 : 6414 : if (!get_range_query (cfun)->range_of_expr (rng, ord, stmt)
2821 : 3207 : || !rng.singleton_p (&ord))
2822 : 2752 : return false;
2823 : :
2824 : 455 : wide_int lob = rng.lower_bound ();
2825 : 455 : if (!wi::fits_uhwi_p (lob))
2826 : 0 : return false;
2827 : :
2828 : 455 : val = lob.to_shwi ();
2829 : 3207 : }
2830 : :
2831 : 345385 : if (targetm.memmodel_check)
2832 : : /* This might warn for an invalid VAL but return a conservatively
2833 : : valid result. */
2834 : 345385 : val = targetm.memmodel_check (val);
2835 : 0 : else if (val & ~MEMMODEL_MASK)
2836 : : {
2837 : 0 : tree fndecl = gimple_call_fndecl (stmt);
2838 : 0 : location_t loc = gimple_location (stmt);
2839 : 0 : loc = expansion_point_location_if_in_system_header (loc);
2840 : :
2841 : 0 : warning_at (loc, OPT_Winvalid_memory_model,
2842 : : "unknown architecture specifier in memory model "
2843 : : "%wi for %qD", val, fndecl);
2844 : 0 : return false;
2845 : : }
2846 : :
2847 : 345385 : *cstval = val;
2848 : :
2849 : 345385 : return true;
2850 : : }
2851 : :
2852 : : /* Valid memory model for each set of atomic built-in functions. */
2853 : :
2854 : : struct memmodel_pair
2855 : : {
2856 : : memmodel modval;
2857 : : const char* modname;
2858 : :
2859 : : #define MEMMODEL_PAIR(val, str) \
2860 : : { MEMMODEL_ ## val, "memory_order_" str }
2861 : : };
2862 : :
2863 : : /* Valid memory models in the order of increasing strength. */
2864 : :
2865 : : static const memmodel_pair memory_models[] =
2866 : : { MEMMODEL_PAIR (RELAXED, "relaxed"),
2867 : : MEMMODEL_PAIR (SEQ_CST, "seq_cst"),
2868 : : MEMMODEL_PAIR (ACQUIRE, "acquire"),
2869 : : MEMMODEL_PAIR (CONSUME, "consume"),
2870 : : MEMMODEL_PAIR (RELEASE, "release"),
2871 : : MEMMODEL_PAIR (ACQ_REL, "acq_rel")
2872 : : };
2873 : :
2874 : : /* Return the name of the memory model VAL. */
2875 : :
2876 : : static const char*
2877 : 230 : memmodel_name (unsigned HOST_WIDE_INT val)
2878 : : {
2879 : 230 : val = memmodel_base (val);
2880 : :
2881 : 988 : for (unsigned i = 0; i != ARRAY_SIZE (memory_models); ++i)
2882 : : {
2883 : 971 : if (val == memory_models[i].modval)
2884 : 213 : return memory_models[i].modname;
2885 : : }
2886 : : return NULL;
2887 : : }
2888 : :
2889 : : /* Indices of valid MEMORY_MODELS above for corresponding atomic operations. */
2890 : : static const unsigned char load_models[] = { 0, 1, 2, 3, UCHAR_MAX };
2891 : : static const unsigned char store_models[] = { 0, 1, 4, UCHAR_MAX };
2892 : : static const unsigned char xchg_models[] = { 0, 1, 3, 4, 5, UCHAR_MAX };
2893 : : static const unsigned char flag_clr_models[] = { 0, 1, 4, UCHAR_MAX };
2894 : : static const unsigned char all_models[] = { 0, 1, 2, 3, 4, 5, UCHAR_MAX };
2895 : :
2896 : : /* Check the success memory model argument ORD_SUCS to the call STMT to
2897 : : an atomic function and warn if it's invalid. If nonnull, also check
2898 : : the failure memory model ORD_FAIL and warn if it's invalid. Return
2899 : : true if a warning has been issued. */
2900 : :
2901 : : bool
2902 : 320925 : pass_waccess::maybe_warn_memmodel (gimple *stmt, tree ord_sucs,
2903 : : tree ord_fail, const unsigned char *valid)
2904 : : {
2905 : 320925 : unsigned HOST_WIDE_INT sucs, fail = 0;
2906 : 320925 : if (!memmodel_to_uhwi (ord_sucs, stmt, &sucs)
2907 : 320925 : || (ord_fail && !memmodel_to_uhwi (ord_fail, stmt, &fail)))
2908 : 2760 : return false;
2909 : :
2910 : 318165 : bool is_valid = false;
2911 : 318165 : if (valid)
2912 : 688853 : for (unsigned i = 0; valid[i] != UCHAR_MAX; ++i)
2913 : : {
2914 : 688771 : memmodel model = memory_models[valid[i]].modval;
2915 : 688771 : if (memmodel_base (sucs) == model)
2916 : : {
2917 : : is_valid = true;
2918 : : break;
2919 : : }
2920 : : }
2921 : : else
2922 : : is_valid = true;
2923 : :
2924 : 318165 : tree fndecl = gimple_call_fndecl (stmt);
2925 : 318165 : location_t loc = gimple_location (stmt);
2926 : 318165 : loc = expansion_point_location_if_in_system_header (loc);
2927 : :
2928 : 318165 : if (!is_valid)
2929 : : {
2930 : 82 : bool warned = false;
2931 : 82 : auto_diagnostic_group d;
2932 : 82 : if (const char *modname = memmodel_name (sucs))
2933 : 65 : warned = warning_at (loc, OPT_Winvalid_memory_model,
2934 : : "invalid memory model %qs for %qD",
2935 : : modname, fndecl);
2936 : : else
2937 : 17 : warned = warning_at (loc, OPT_Winvalid_memory_model,
2938 : : "invalid memory model %wi for %qD",
2939 : : sucs, fndecl);
2940 : :
2941 : 82 : if (!warned)
2942 : : return false;
2943 : :
2944 : : /* Print a note with the valid memory models. */
2945 : 82 : auto_vec<const char *> strings;
2946 : 401 : for (unsigned i = 0; valid[i] != UCHAR_MAX; ++i)
2947 : : {
2948 : 319 : const char *modname = memory_models[valid[i]].modname;
2949 : 319 : strings.safe_push (modname);
2950 : : }
2951 : 82 : pp_markup::comma_separated_quoted_strings e (strings);
2952 : 82 : inform (loc, "valid models are %e", &e);
2953 : 82 : return true;
2954 : 82 : }
2955 : :
2956 : 318083 : if (!ord_fail)
2957 : : return false;
2958 : :
2959 : 27208 : if (fail == MEMMODEL_RELEASE || fail == MEMMODEL_ACQ_REL)
2960 : 60 : if (const char *failname = memmodel_name (fail))
2961 : : {
2962 : : /* If both memory model arguments are valid but their combination
2963 : : is not, use their names in the warning. */
2964 : 60 : auto_diagnostic_group d;
2965 : 60 : if (!warning_at (loc, OPT_Winvalid_memory_model,
2966 : : "invalid failure memory model %qs for %qD",
2967 : : failname, fndecl))
2968 : : return false;
2969 : :
2970 : 60 : inform (loc,
2971 : : "valid failure models are %qs, %qs, %qs, %qs",
2972 : : "memory_order_relaxed", "memory_order_seq_cst",
2973 : : "memory_order_acquire", "memory_order_consume");
2974 : 60 : return true;
2975 : 60 : }
2976 : :
2977 : 27148 : if (memmodel_base (fail) <= memmodel_base (sucs))
2978 : : return false;
2979 : :
2980 : 44 : if (const char *sucsname = memmodel_name (sucs))
2981 : 44 : if (const char *failname = memmodel_name (fail))
2982 : : {
2983 : : /* If both memory model arguments are valid but their combination
2984 : : is not, use their names in the warning. */
2985 : 44 : auto_diagnostic_group d;
2986 : 44 : if (!warning_at (loc, OPT_Winvalid_memory_model,
2987 : : "failure memory model %qs cannot be stronger "
2988 : : "than success memory model %qs for %qD",
2989 : : failname, sucsname, fndecl))
2990 : : return false;
2991 : :
2992 : : /* Print a note with the valid failure memory models which are
2993 : : those with a value less than or equal to the success mode. */
2994 : 44 : auto_vec<const char *> strings;
2995 : 88 : for (unsigned i = 0;
2996 : 88 : memory_models[i].modval <= memmodel_base (sucs); ++i)
2997 : : {
2998 : 44 : const char *modname = memory_models[valid[i]].modname;
2999 : 44 : strings.safe_push (modname);
3000 : : }
3001 : 44 : pp_markup::comma_separated_quoted_strings e (strings);
3002 : :
3003 : 44 : inform (loc, "valid models are %e", &e);
3004 : 44 : return true;
3005 : 44 : }
3006 : :
3007 : : /* If either memory model argument value is invalid use the numerical
3008 : : value of both in the message. */
3009 : 0 : return warning_at (loc, OPT_Winvalid_memory_model,
3010 : : "failure memory model %wi cannot be stronger "
3011 : : "than success memory model %wi for %qD",
3012 : : fail, sucs, fndecl);
3013 : : }
3014 : :
3015 : : /* Wrapper for the above. */
3016 : :
3017 : : void
3018 : 320986 : pass_waccess::check_atomic_memmodel (gimple *stmt, tree ord_sucs,
3019 : : tree ord_fail, const unsigned char *valid)
3020 : : {
3021 : 320986 : if (warning_suppressed_p (stmt, OPT_Winvalid_memory_model))
3022 : : return;
3023 : :
3024 : 320925 : if (!maybe_warn_memmodel (stmt, ord_sucs, ord_fail, valid))
3025 : : return;
3026 : :
3027 : 186 : suppress_warning (stmt, OPT_Winvalid_memory_model);
3028 : : }
3029 : :
3030 : : /* Check a call STMT to an atomic or sync built-in. */
3031 : :
3032 : : bool
3033 : 3463330 : pass_waccess::check_atomic_builtin (gcall *stmt)
3034 : : {
3035 : 3463330 : tree callee = gimple_call_fndecl (stmt);
3036 : 3463330 : if (!callee)
3037 : : return false;
3038 : :
3039 : : /* The size in bytes of the access by the function, and the number
3040 : : of the second argument to check (if any). */
3041 : 3463330 : unsigned bytes = 0, arg2 = UINT_MAX;
3042 : 3463330 : unsigned sucs_arg = UINT_MAX, fail_arg = UINT_MAX;
3043 : : /* Points to the array of indices of valid memory models. */
3044 : 3463330 : const unsigned char *pvalid_models = NULL;
3045 : :
3046 : 3463330 : switch (DECL_FUNCTION_CODE (callee))
3047 : : {
3048 : : #define BUILTIN_ACCESS_SIZE_FNSPEC(N) \
3049 : : BUILT_IN_SYNC_FETCH_AND_ADD_ ## N: \
3050 : : case BUILT_IN_SYNC_FETCH_AND_SUB_ ## N: \
3051 : : case BUILT_IN_SYNC_FETCH_AND_OR_ ## N: \
3052 : : case BUILT_IN_SYNC_FETCH_AND_AND_ ## N: \
3053 : : case BUILT_IN_SYNC_FETCH_AND_XOR_ ## N: \
3054 : : case BUILT_IN_SYNC_FETCH_AND_NAND_ ## N: \
3055 : : case BUILT_IN_SYNC_ADD_AND_FETCH_ ## N: \
3056 : : case BUILT_IN_SYNC_SUB_AND_FETCH_ ## N: \
3057 : : case BUILT_IN_SYNC_OR_AND_FETCH_ ## N: \
3058 : : case BUILT_IN_SYNC_AND_AND_FETCH_ ## N: \
3059 : : case BUILT_IN_SYNC_XOR_AND_FETCH_ ## N: \
3060 : : case BUILT_IN_SYNC_NAND_AND_FETCH_ ## N: \
3061 : : case BUILT_IN_SYNC_LOCK_TEST_AND_SET_ ## N: \
3062 : : case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_ ## N: \
3063 : : case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_ ## N: \
3064 : : case BUILT_IN_SYNC_LOCK_RELEASE_ ## N: \
3065 : : bytes = N; \
3066 : : break; \
3067 : : case BUILT_IN_ATOMIC_LOAD_ ## N: \
3068 : : pvalid_models = load_models; \
3069 : : sucs_arg = 1; \
3070 : : /* FALLTHROUGH */ \
3071 : : case BUILT_IN_ATOMIC_STORE_ ## N: \
3072 : : if (!pvalid_models) \
3073 : : pvalid_models = store_models; \
3074 : : /* FALLTHROUGH */ \
3075 : : case BUILT_IN_ATOMIC_ADD_FETCH_ ## N: \
3076 : : case BUILT_IN_ATOMIC_SUB_FETCH_ ## N: \
3077 : : case BUILT_IN_ATOMIC_AND_FETCH_ ## N: \
3078 : : case BUILT_IN_ATOMIC_NAND_FETCH_ ## N: \
3079 : : case BUILT_IN_ATOMIC_XOR_FETCH_ ## N: \
3080 : : case BUILT_IN_ATOMIC_OR_FETCH_ ## N: \
3081 : : case BUILT_IN_ATOMIC_FETCH_ADD_ ## N: \
3082 : : case BUILT_IN_ATOMIC_FETCH_SUB_ ## N: \
3083 : : case BUILT_IN_ATOMIC_FETCH_AND_ ## N: \
3084 : : case BUILT_IN_ATOMIC_FETCH_NAND_ ## N: \
3085 : : case BUILT_IN_ATOMIC_FETCH_OR_ ## N: \
3086 : : case BUILT_IN_ATOMIC_FETCH_XOR_ ## N: \
3087 : : bytes = N; \
3088 : : if (sucs_arg == UINT_MAX) \
3089 : : sucs_arg = 2; \
3090 : : if (!pvalid_models) \
3091 : : pvalid_models = all_models; \
3092 : : break; \
3093 : : case BUILT_IN_ATOMIC_EXCHANGE_ ## N: \
3094 : : bytes = N; \
3095 : : sucs_arg = 3; \
3096 : : pvalid_models = xchg_models; \
3097 : : break; \
3098 : : case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_ ## N: \
3099 : : bytes = N; \
3100 : : sucs_arg = 4; \
3101 : : fail_arg = 5; \
3102 : : pvalid_models = all_models; \
3103 : : arg2 = 1
3104 : :
3105 : 90498 : case BUILTIN_ACCESS_SIZE_FNSPEC (1);
3106 : 5631 : break;
3107 : 23852 : case BUILTIN_ACCESS_SIZE_FNSPEC (2);
3108 : 1900 : break;
3109 : 123337 : case BUILTIN_ACCESS_SIZE_FNSPEC (4);
3110 : 6800 : break;
3111 : 97262 : case BUILTIN_ACCESS_SIZE_FNSPEC (8);
3112 : 8660 : break;
3113 : 21363 : case BUILTIN_ACCESS_SIZE_FNSPEC (16);
3114 : 4701 : break;
3115 : :
3116 : 158 : case BUILT_IN_ATOMIC_CLEAR:
3117 : 158 : sucs_arg = 1;
3118 : 158 : pvalid_models = flag_clr_models;
3119 : 158 : break;
3120 : :
3121 : : default:
3122 : : return false;
3123 : : }
3124 : :
3125 : 341757 : unsigned nargs = gimple_call_num_args (stmt);
3126 : 341757 : if (sucs_arg < nargs)
3127 : : {
3128 : 320986 : tree ord_sucs = gimple_call_arg (stmt, sucs_arg);
3129 : 320986 : tree ord_fail = NULL_TREE;
3130 : 320986 : if (fail_arg < nargs)
3131 : 27692 : ord_fail = gimple_call_arg (stmt, fail_arg);
3132 : 320986 : check_atomic_memmodel (stmt, ord_sucs, ord_fail, pvalid_models);
3133 : : }
3134 : :
3135 : 341757 : if (!bytes)
3136 : : return true;
3137 : :
3138 : 341599 : tree size = build_int_cstu (sizetype, bytes);
3139 : 341599 : tree dst = gimple_call_arg (stmt, 0);
3140 : 341599 : check_memop_access (stmt, dst, NULL_TREE, size);
3141 : :
3142 : 341599 : if (arg2 != UINT_MAX)
3143 : : {
3144 : 27692 : tree dst = gimple_call_arg (stmt, arg2);
3145 : 27692 : check_memop_access (stmt, dst, NULL_TREE, size);
3146 : : }
3147 : :
3148 : : return true;
3149 : : }
3150 : :
3151 : : /* Check call STMT to a built-in function for invalid accesses. Return
3152 : : true if a call has been handled. */
3153 : :
3154 : : bool
3155 : 4883133 : pass_waccess::check_builtin (gcall *stmt)
3156 : : {
3157 : 4883133 : tree callee = gimple_call_fndecl (stmt);
3158 : 4883133 : if (!callee)
3159 : : return false;
3160 : :
3161 : 4883133 : switch (DECL_FUNCTION_CODE (callee))
3162 : : {
3163 : 40977 : case BUILT_IN_ALLOCA:
3164 : 40977 : case BUILT_IN_ALLOCA_WITH_ALIGN:
3165 : 40977 : case BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX:
3166 : 40977 : check_alloca (stmt);
3167 : 40977 : return true;
3168 : :
3169 : 73 : case BUILT_IN_EXECL:
3170 : 73 : case BUILT_IN_EXECLE:
3171 : 73 : case BUILT_IN_EXECLP:
3172 : 73 : case BUILT_IN_EXECV:
3173 : 73 : case BUILT_IN_EXECVE:
3174 : 73 : case BUILT_IN_EXECVP:
3175 : 73 : check_read_access (stmt, call_arg (stmt, 0));
3176 : 73 : return true;
3177 : :
3178 : 168831 : case BUILT_IN_FREE:
3179 : 168831 : case BUILT_IN_REALLOC:
3180 : 168831 : if (!m_early_checks_p)
3181 : : {
3182 : 59584 : tree arg = call_arg (stmt, 0);
3183 : 59584 : if (TREE_CODE (arg) == SSA_NAME)
3184 : 59500 : check_pointer_uses (stmt, arg);
3185 : : }
3186 : : return true;
3187 : :
3188 : 15073 : case BUILT_IN_GETTEXT:
3189 : 15073 : case BUILT_IN_PUTS:
3190 : 15073 : case BUILT_IN_PUTS_UNLOCKED:
3191 : 15073 : case BUILT_IN_STRDUP:
3192 : 15073 : check_read_access (stmt, call_arg (stmt, 0));
3193 : 15073 : return true;
3194 : :
3195 : 48681 : case BUILT_IN_INDEX:
3196 : 48681 : case BUILT_IN_RINDEX:
3197 : 48681 : case BUILT_IN_STRCHR:
3198 : 48681 : case BUILT_IN_STRRCHR:
3199 : 48681 : case BUILT_IN_STRLEN:
3200 : 48681 : check_read_access (stmt, call_arg (stmt, 0));
3201 : 48681 : return true;
3202 : :
3203 : 4305 : case BUILT_IN_FPUTS:
3204 : 4305 : case BUILT_IN_FPUTS_UNLOCKED:
3205 : 4305 : check_read_access (stmt, call_arg (stmt, 0));
3206 : 4305 : return true;
3207 : :
3208 : 3206 : case BUILT_IN_STRNDUP:
3209 : 3206 : case BUILT_IN_STRNLEN:
3210 : 3206 : {
3211 : 3206 : tree str = call_arg (stmt, 0);
3212 : 3206 : tree len = call_arg (stmt, 1);
3213 : 3206 : check_read_access (stmt, str, len);
3214 : 3206 : return true;
3215 : : }
3216 : :
3217 : 2430 : case BUILT_IN_STRCAT:
3218 : 2430 : check_strcat (stmt);
3219 : 2430 : return true;
3220 : :
3221 : 1886 : case BUILT_IN_STRNCAT:
3222 : 1886 : check_strncat (stmt);
3223 : 1886 : return true;
3224 : :
3225 : 10438 : case BUILT_IN_STPCPY:
3226 : 10438 : case BUILT_IN_STRCPY:
3227 : 10438 : check_stxcpy (stmt);
3228 : 10438 : return true;
3229 : :
3230 : 7506 : case BUILT_IN_STPNCPY:
3231 : 7506 : case BUILT_IN_STRNCPY:
3232 : 7506 : check_stxncpy (stmt);
3233 : 7506 : return true;
3234 : :
3235 : 386997 : case BUILT_IN_STRCASECMP:
3236 : 386997 : case BUILT_IN_STRCMP:
3237 : 386997 : case BUILT_IN_STRPBRK:
3238 : 386997 : case BUILT_IN_STRSPN:
3239 : 386997 : case BUILT_IN_STRCSPN:
3240 : 386997 : case BUILT_IN_STRSTR:
3241 : 386997 : check_read_access (stmt, call_arg (stmt, 0));
3242 : 386997 : check_read_access (stmt, call_arg (stmt, 1));
3243 : 386997 : return true;
3244 : :
3245 : 7603 : case BUILT_IN_STRNCASECMP:
3246 : 7603 : case BUILT_IN_STRNCMP:
3247 : 7603 : check_strncmp (stmt);
3248 : 7603 : return true;
3249 : :
3250 : 271807 : case BUILT_IN_MEMCMP:
3251 : 271807 : {
3252 : 271807 : tree a1 = call_arg (stmt, 0);
3253 : 271807 : tree a2 = call_arg (stmt, 1);
3254 : 271807 : tree len = call_arg (stmt, 2);
3255 : 271807 : check_read_access (stmt, a1, len, 0);
3256 : 271807 : check_read_access (stmt, a2, len, 0);
3257 : 271807 : return true;
3258 : : }
3259 : :
3260 : 242579 : case BUILT_IN_MEMCPY:
3261 : 242579 : case BUILT_IN_MEMPCPY:
3262 : 242579 : case BUILT_IN_MEMMOVE:
3263 : 242579 : {
3264 : 242579 : tree dst = call_arg (stmt, 0);
3265 : 242579 : tree src = call_arg (stmt, 1);
3266 : 242579 : tree len = call_arg (stmt, 2);
3267 : 242579 : check_memop_access (stmt, dst, src, len);
3268 : 242579 : return true;
3269 : : }
3270 : :
3271 : 6255 : case BUILT_IN_MEMCHR:
3272 : 6255 : {
3273 : 6255 : tree src = call_arg (stmt, 0);
3274 : 6255 : tree len = call_arg (stmt, 2);
3275 : 6255 : check_read_access (stmt, src, len, 0);
3276 : 6255 : return true;
3277 : : }
3278 : :
3279 : 201156 : case BUILT_IN_MEMSET:
3280 : 201156 : {
3281 : 201156 : tree dst = call_arg (stmt, 0);
3282 : 201156 : tree len = call_arg (stmt, 2);
3283 : 201156 : check_memop_access (stmt, dst, NULL_TREE, len);
3284 : 201156 : return true;
3285 : : }
3286 : :
3287 : 3463330 : default:
3288 : 3463330 : if (check_atomic_builtin (stmt))
3289 : : return true;
3290 : : break;
3291 : : }
3292 : :
3293 : : return false;
3294 : : }
3295 : :
3296 : : /* Returns the type of the argument ARGNO to function with type FNTYPE
3297 : : or null when the type cannot be determined or no such argument exists. */
3298 : :
3299 : : static tree
3300 : 89238 : fntype_argno_type (tree fntype, unsigned argno)
3301 : : {
3302 : 89238 : if (!prototype_p (fntype))
3303 : : return NULL_TREE;
3304 : :
3305 : 89234 : tree argtype;
3306 : 89234 : function_args_iterator it;
3307 : 175684 : FOREACH_FUNCTION_ARGS (fntype, argtype, it)
3308 : 175684 : if (argno-- == 0)
3309 : : return argtype;
3310 : :
3311 : : return NULL_TREE;
3312 : : }
3313 : :
3314 : : /* Helper to append the "human readable" attribute access specification
3315 : : described by ACCESS to the array ATTRSTR with size STRSIZE. Used in
3316 : : diagnostics. */
3317 : :
3318 : : static inline void
3319 : 280 : append_attrname (const std::pair<int, attr_access> &access,
3320 : : char *attrstr, size_t strsize)
3321 : : {
3322 : 280 : if (access.second.internal_p)
3323 : : return;
3324 : :
3325 : 262 : tree str = access.second.to_external_string ();
3326 : 262 : gcc_assert (strsize >= (size_t) TREE_STRING_LENGTH (str));
3327 : 262 : strcpy (attrstr, TREE_STRING_POINTER (str));
3328 : : }
3329 : :
3330 : : /* Iterate over attribute access read-only, read-write, and write-only
3331 : : arguments and diagnose past-the-end accesses and related problems
3332 : : in the function call EXP. */
3333 : :
3334 : : void
3335 : 3973430 : pass_waccess::maybe_check_access_sizes (rdwr_map *rwm, tree fndecl, tree fntype,
3336 : : gimple *stmt)
3337 : : {
3338 : 3973430 : if (warning_suppressed_p (stmt, OPT_Wnonnull)
3339 : 3973430 : || warning_suppressed_p (stmt, OPT_Wstringop_overflow_))
3340 : 14361 : return;
3341 : :
3342 : 3959073 : auto_diagnostic_group adg;
3343 : :
3344 : : /* Set if a warning has been issued for any argument (used to decide
3345 : : whether to emit an informational note at the end). */
3346 : 3959073 : opt_code opt_warned = no_warning;
3347 : :
3348 : : /* A string describing the attributes that the warnings issued by this
3349 : : function apply to. Used to print one informational note per function
3350 : : call, rather than one per warning. That reduces clutter. */
3351 : 3959073 : char attrstr[80];
3352 : 3959073 : attrstr[0] = 0;
3353 : :
3354 : 4141707 : for (rdwr_map::iterator it = rwm->begin (); it != rwm->end (); ++it)
3355 : : {
3356 : 91321 : std::pair<int, attr_access> access = *it;
3357 : :
3358 : : /* Get the function call arguments corresponding to the attribute's
3359 : : positional arguments. When both arguments have been specified
3360 : : there will be two entries in *RWM, one for each. They are
3361 : : cross-referenced by their respective argument numbers in
3362 : : ACCESS.PTRARG and ACCESS.SIZARG. */
3363 : 91321 : const int ptridx = access.second.ptrarg;
3364 : 91321 : const int sizidx = access.second.sizarg;
3365 : :
3366 : 91321 : gcc_assert (ptridx != -1);
3367 : 91321 : gcc_assert (access.first == ptridx || access.first == sizidx);
3368 : :
3369 : : /* The pointer is set to null for the entry corresponding to
3370 : : the size argument. Skip it. It's handled when the entry
3371 : : corresponding to the pointer argument comes up. */
3372 : 91321 : if (!access.second.ptr)
3373 : 2114 : continue;
3374 : :
3375 : 89238 : tree ptrtype = fntype_argno_type (fntype, ptridx);
3376 : 89238 : if (!ptrtype)
3377 : : /* A function with a prototype was redeclared without one and
3378 : : the prototype has been lost. See pr102759. Avoid dealing
3379 : : with this pathological case. */
3380 : 4 : return;
3381 : :
3382 : 89234 : tree argtype = TREE_TYPE (ptrtype);
3383 : :
3384 : : /* The size of the access by the call in elements. */
3385 : 89234 : tree access_nelts;
3386 : 89234 : if (sizidx == -1)
3387 : : {
3388 : : /* If only the pointer attribute operand was specified and
3389 : : not size, set SIZE to the greater of MINSIZE or size of
3390 : : one element of the pointed to type to detect smaller
3391 : : objects (null pointers are diagnosed in this case only
3392 : : if the pointer is also declared with attribute nonnull. */
3393 : 87151 : if (access.second.minsize
3394 : 87151 : && access.second.minsize != HOST_WIDE_INT_M1U)
3395 : 73866 : access_nelts = build_int_cstu (sizetype, access.second.minsize);
3396 : 13285 : else if (VOID_TYPE_P (argtype) && access.second.mode == access_none)
3397 : : /* Treat access mode none on a void* argument as expecting
3398 : : as little as zero bytes. */
3399 : 364 : access_nelts = size_zero_node;
3400 : : else
3401 : 12921 : access_nelts = size_one_node;
3402 : : }
3403 : : else
3404 : 2083 : access_nelts = rwm->get (sizidx)->size;
3405 : :
3406 : : /* If access_nelts is e.g. a PARM_DECL with larger precision than
3407 : : sizetype, such as __int128 or _BitInt(34123) parameters,
3408 : : cast it to sizetype. */
3409 : 89234 : if (access_nelts
3410 : 89234 : && INTEGRAL_TYPE_P (TREE_TYPE (access_nelts))
3411 : 178468 : && (TYPE_PRECISION (TREE_TYPE (access_nelts))
3412 : 89234 : > TYPE_PRECISION (sizetype)))
3413 : 2 : access_nelts = fold_convert (sizetype, access_nelts);
3414 : :
3415 : : /* Format the value or range to avoid an explosion of messages. */
3416 : 89234 : char sizstr[80];
3417 : 89234 : tree sizrng[2] = { size_zero_node, build_all_ones_cst (sizetype) };
3418 : 89234 : if (get_size_range (m_ptr_qry.rvals, access_nelts, stmt, sizrng, 1))
3419 : : {
3420 : 89234 : char *s0 = print_generic_expr_to_str (sizrng[0]);
3421 : 89234 : if (tree_int_cst_equal (sizrng[0], sizrng[1]))
3422 : : {
3423 : 88653 : gcc_checking_assert (strlen (s0) < sizeof sizstr);
3424 : 88653 : strcpy (sizstr, s0);
3425 : : }
3426 : : else
3427 : : {
3428 : 581 : char *s1 = print_generic_expr_to_str (sizrng[1]);
3429 : 581 : gcc_checking_assert (strlen (s0) + strlen (s1)
3430 : : < sizeof sizstr - 4);
3431 : 581 : sprintf (sizstr, "[%.37s, %.37s]", s0, s1);
3432 : 581 : free (s1);
3433 : : }
3434 : 89234 : free (s0);
3435 : : }
3436 : : else
3437 : 0 : *sizstr = '\0';
3438 : :
3439 : : /* Set if a warning has been issued for the current argument. */
3440 : 89234 : opt_code arg_warned = no_warning;
3441 : 89234 : location_t loc = get_location (stmt);
3442 : 89234 : tree ptr = access.second.ptr;
3443 : 89234 : if (*sizstr
3444 : 89234 : && tree_int_cst_sgn (sizrng[0]) < 0
3445 : 89429 : && tree_int_cst_sgn (sizrng[1]) < 0)
3446 : : {
3447 : : /* Warn about negative sizes. */
3448 : 67 : if (access.second.internal_p)
3449 : : {
3450 : 18 : const std::string argtypestr
3451 : 18 : = access.second.array_as_string (ptrtype);
3452 : :
3453 : 18 : if (warning_at (loc, OPT_Wstringop_overflow_,
3454 : : "bound argument %i value %s is "
3455 : : "negative for a variable length array "
3456 : : "argument %i of type %s",
3457 : : sizidx + 1, sizstr,
3458 : : ptridx + 1, argtypestr.c_str ()))
3459 : 18 : arg_warned = OPT_Wstringop_overflow_;
3460 : 18 : }
3461 : 49 : else if (warning_at (loc, OPT_Wstringop_overflow_,
3462 : : "argument %i value %s is negative",
3463 : : sizidx + 1, sizstr))
3464 : : arg_warned = OPT_Wstringop_overflow_;
3465 : :
3466 : 18 : if (arg_warned != no_warning)
3467 : : {
3468 : 23 : append_attrname (access, attrstr, sizeof attrstr);
3469 : : /* Remember a warning has been issued and avoid warning
3470 : : again below for the same attribute. */
3471 : 23 : opt_warned = arg_warned;
3472 : 23 : continue;
3473 : : }
3474 : : }
3475 : :
3476 : : /* The size of the access by the call in bytes. */
3477 : 89211 : tree access_size = NULL_TREE;
3478 : 89211 : if (tree_int_cst_sgn (sizrng[0]) >= 0)
3479 : : {
3480 : 89039 : if (COMPLETE_TYPE_P (argtype))
3481 : : {
3482 : : /* Multiply ACCESS_SIZE by the size of the type the pointer
3483 : : argument points to. If it's incomplete the size is used
3484 : : as is. */
3485 : 85347 : if (tree argsize = TYPE_SIZE_UNIT (argtype))
3486 : 85347 : if (TREE_CODE (argsize) == INTEGER_CST)
3487 : : {
3488 : 85056 : const int prec = TYPE_PRECISION (sizetype);
3489 : 85056 : wide_int minsize = wi::to_wide (sizrng[0], prec);
3490 : 85056 : minsize *= wi::to_wide (argsize, prec);
3491 : 85056 : access_size = wide_int_to_tree (sizetype, minsize);
3492 : 85056 : }
3493 : : }
3494 : : else
3495 : : access_size = access_nelts;
3496 : : }
3497 : :
3498 : 89211 : if (integer_zerop (ptr))
3499 : : {
3500 : 1939 : if (!access.second.internal_p
3501 : 1939 : && sizidx >= 0 && tree_int_cst_sgn (sizrng[0]) > 0)
3502 : : {
3503 : : /* Warn about null pointers with positive sizes. This is
3504 : : different from also declaring the pointer argument with
3505 : : attribute nonnull when the function accepts null pointers
3506 : : only when the corresponding size is zero. */
3507 : 27 : if (warning_at (loc, OPT_Wnonnull,
3508 : : "argument %i is null but "
3509 : : "the corresponding size argument "
3510 : : "%i value is %s",
3511 : : ptridx + 1, sizidx + 1, sizstr))
3512 : 8 : arg_warned = OPT_Wnonnull;
3513 : : }
3514 : :
3515 : 16 : if (arg_warned != no_warning)
3516 : : {
3517 : 8 : append_attrname (access, attrstr, sizeof attrstr);
3518 : : /* Remember a warning has been issued and avoid warning
3519 : : again below for the same attribute. */
3520 : 8 : opt_warned = OPT_Wnonnull;
3521 : 8 : continue;
3522 : : }
3523 : : }
3524 : :
3525 : 89203 : access_data data (m_ptr_qry.rvals, stmt, access.second.mode,
3526 : 89203 : NULL_TREE, false, NULL_TREE, false);
3527 : 178406 : access_ref* const pobj = (access.second.mode == access_write_only
3528 : 89203 : ? &data.dst : &data.src);
3529 : 89203 : tree objsize = compute_objsize (ptr, stmt, 1, pobj, &m_ptr_qry);
3530 : :
3531 : : /* The size of the destination or source object. */
3532 : 89203 : tree dstsize = NULL_TREE, srcsize = NULL_TREE;
3533 : 89203 : if (access.second.mode == access_read_only
3534 : : || access.second.mode == access_none)
3535 : : {
3536 : : /* For a read-only argument there is no destination. For
3537 : : no access, set the source as well and differentiate via
3538 : : the access flag below. */
3539 : 1794 : srcsize = objsize;
3540 : 1794 : if (access.second.mode == access_read_only
3541 : : || access.second.mode == access_none)
3542 : : {
3543 : : /* For a read-only attribute there is no destination so
3544 : : clear OBJSIZE. This emits "reading N bytes" kind of
3545 : : diagnostics instead of the "writing N bytes" kind,
3546 : : unless MODE is none. */
3547 : 1794 : objsize = NULL_TREE;
3548 : : }
3549 : : }
3550 : : else
3551 : : dstsize = objsize;
3552 : :
3553 : : /* Clear the no-warning bit in case it was set by check_access
3554 : : in a prior iteration so that accesses via different arguments
3555 : : are diagnosed. */
3556 : 89203 : suppress_warning (stmt, OPT_Wstringop_overflow_, false);
3557 : 89203 : access_mode mode = data.mode;
3558 : 89203 : if (mode == access_deferred)
3559 : 85696 : mode = TYPE_READONLY (argtype) ? access_read_only : access_read_write;
3560 : 89203 : check_access (stmt, access_size, /*maxread=*/ NULL_TREE, srcsize,
3561 : : dstsize, mode, &data, m_ptr_qry.rvals);
3562 : :
3563 : 89203 : if (warning_suppressed_p (stmt, OPT_Wstringop_overflow_))
3564 : : opt_warned = OPT_Wstringop_overflow_;
3565 : 88996 : if (opt_warned != no_warning)
3566 : : {
3567 : 322 : if (access.second.internal_p)
3568 : : {
3569 : 146 : unsigned HOST_WIDE_INT nelts =
3570 : 73 : access_nelts ? access.second.minsize : HOST_WIDE_INT_M1U;
3571 : 73 : tree arrtype = build_printable_array_type (argtype, nelts);
3572 : 73 : inform (loc, "referencing argument %u of type %qT",
3573 : : ptridx + 1, arrtype);
3574 : : }
3575 : : else
3576 : : /* If check_access issued a warning above, append the relevant
3577 : : attribute to the string. */
3578 : 249 : append_attrname (access, attrstr, sizeof attrstr);
3579 : : }
3580 : : }
3581 : :
3582 : 3959069 : if (*attrstr)
3583 : : {
3584 : 145 : if (fndecl)
3585 : 129 : inform (get_location (fndecl),
3586 : : "in a call to function %qD declared with attribute %qs",
3587 : : fndecl, attrstr);
3588 : : else
3589 : 16 : inform (get_location (stmt),
3590 : : "in a call with type %qT and attribute %qs",
3591 : : fntype, attrstr);
3592 : : }
3593 : 3958924 : else if (opt_warned != no_warning)
3594 : : {
3595 : 91 : if (fndecl)
3596 : 91 : inform (get_location (fndecl),
3597 : : "in a call to function %qD", fndecl);
3598 : : else
3599 : 0 : inform (get_location (stmt),
3600 : : "in a call with type %qT", fntype);
3601 : : }
3602 : :
3603 : : /* Set the bit in case it was cleared and not set above. */
3604 : 236 : if (opt_warned != no_warning)
3605 : 236 : suppress_warning (stmt, opt_warned);
3606 : 3959073 : }
3607 : :
3608 : : /* Check call STMT to an ordinary (non-built-in) function for invalid
3609 : : accesses. Return true if a call has been handled. */
3610 : :
3611 : : bool
3612 : 21372139 : pass_waccess::check_call_access (gcall *stmt)
3613 : : {
3614 : 21372139 : tree fntype = gimple_call_fntype (stmt);
3615 : 20751254 : if (!fntype)
3616 : : return false;
3617 : :
3618 : 20751254 : tree fntypeattrs = TYPE_ATTRIBUTES (fntype);
3619 : 20751254 : if (!fntypeattrs)
3620 : : return false;
3621 : :
3622 : : /* Map of attribute access specifications for function arguments. */
3623 : 3973430 : rdwr_map rdwr_idx;
3624 : 3973430 : init_attr_rdwr_indices (&rdwr_idx, fntypeattrs);
3625 : :
3626 : 3973430 : unsigned nargs = call_nargs (stmt);
3627 : 12052940 : for (unsigned i = 0; i != nargs; ++i)
3628 : : {
3629 : 8079510 : tree arg = call_arg (stmt, i);
3630 : :
3631 : : /* Save the actual argument that corresponds to the access attribute
3632 : : operand for later processing. */
3633 : 8079510 : if (attr_access *access = rdwr_idx.get (i))
3634 : : {
3635 : 92149 : if (POINTER_TYPE_P (TREE_TYPE (arg)))
3636 : : {
3637 : 89969 : access->ptr = arg;
3638 : : /* A nonnull ACCESS->SIZE contains VLA bounds. */
3639 : : }
3640 : : else
3641 : : {
3642 : 2180 : access->size = arg;
3643 : 2180 : gcc_assert (access->ptr == NULL_TREE);
3644 : : }
3645 : : }
3646 : : }
3647 : :
3648 : : /* Check attribute access arguments. */
3649 : 3973430 : tree fndecl = gimple_call_fndecl (stmt);
3650 : 3973430 : maybe_check_access_sizes (&rdwr_idx, fndecl, fntype, stmt);
3651 : :
3652 : 3973430 : check_alloc_size_call (stmt);
3653 : 3973430 : return true;
3654 : 3973430 : }
3655 : :
3656 : : /* Check arguments in a call STMT for attribute nonstring. */
3657 : :
3658 : : static void
3659 : 6504894 : check_nonstring_args (gcall *stmt)
3660 : : {
3661 : 6504894 : tree fndecl = gimple_call_fndecl (stmt);
3662 : :
3663 : : /* Detect passing non-string arguments to functions expecting
3664 : : nul-terminated strings. */
3665 : 6504894 : maybe_warn_nonstring_arg (fndecl, stmt);
3666 : 6504894 : }
3667 : :
3668 : : /* Issue a warning if a deallocation function such as free, realloc,
3669 : : or C++ operator delete is called with an argument not returned by
3670 : : a matching allocation function such as malloc or the corresponding
3671 : : form of C++ operator new. */
3672 : :
3673 : : void
3674 : 6504894 : pass_waccess::maybe_check_dealloc_call (gcall *call)
3675 : : {
3676 : 6504894 : tree fndecl = gimple_call_fndecl (call);
3677 : 6504894 : if (!fndecl)
3678 : 6329949 : return;
3679 : :
3680 : 6141721 : unsigned argno = fndecl_dealloc_argno (fndecl);
3681 : 6141721 : if ((unsigned) call_nargs (call) <= argno)
3682 : : return;
3683 : :
3684 : 175600 : tree ptr = gimple_call_arg (call, argno);
3685 : 175600 : if (integer_zerop (ptr))
3686 : : return;
3687 : :
3688 : 175508 : access_ref aref;
3689 : 175508 : if (!compute_objsize (ptr, call, 0, &aref, &m_ptr_qry))
3690 : : return;
3691 : :
3692 : 175508 : tree ref = aref.ref;
3693 : 175508 : if (integer_zerop (ref))
3694 : : return;
3695 : :
3696 : 175407 : tree dealloc_decl = fndecl;
3697 : 175407 : location_t loc = gimple_location (call);
3698 : :
3699 : 175407 : if (DECL_P (ref) || EXPR_P (ref))
3700 : : {
3701 : : /* Diagnose freeing a declared object. */
3702 : 98157 : if (aref.ref_declared ())
3703 : : {
3704 : 152 : auto_diagnostic_group d;
3705 : 152 : if (warning_at (loc, OPT_Wfree_nonheap_object,
3706 : : "%qD called on unallocated object %qD",
3707 : : dealloc_decl, ref))
3708 : : {
3709 : 140 : inform (get_location (ref), "declared here");
3710 : 140 : return;
3711 : : }
3712 : 152 : }
3713 : :
3714 : : /* Diagnose freeing a pointer that includes a positive offset.
3715 : : Such a pointer cannot refer to the beginning of an allocated
3716 : : object. A negative offset may refer to it. */
3717 : 98017 : if (aref.sizrng[0] != aref.sizrng[1]
3718 : 98017 : && warn_dealloc_offset (loc, call, aref))
3719 : : return;
3720 : : }
3721 : 77250 : else if (CONSTANT_CLASS_P (ref))
3722 : : {
3723 : 38 : auto_diagnostic_group d;
3724 : 38 : if (warning_at (loc, OPT_Wfree_nonheap_object,
3725 : : "%qD called on a pointer to an unallocated "
3726 : : "object %qE", dealloc_decl, ref))
3727 : : {
3728 : 38 : if (TREE_CODE (ptr) == SSA_NAME)
3729 : : {
3730 : 12 : gimple *def_stmt = SSA_NAME_DEF_STMT (ptr);
3731 : 12 : if (is_gimple_assign (def_stmt))
3732 : : {
3733 : 12 : location_t loc = gimple_location (def_stmt);
3734 : 12 : inform (loc, "assigned here");
3735 : : }
3736 : : }
3737 : 38 : return;
3738 : : }
3739 : 38 : }
3740 : 77212 : else if (TREE_CODE (ref) == SSA_NAME)
3741 : : {
3742 : : /* Also warn if the pointer argument refers to the result
3743 : : of an allocation call like alloca or VLA. */
3744 : 77212 : gimple *def_stmt = SSA_NAME_DEF_STMT (ref);
3745 : 77212 : if (!def_stmt)
3746 : : return;
3747 : :
3748 : 77212 : if (is_gimple_call (def_stmt))
3749 : : {
3750 : 39099 : bool warned = false;
3751 : 39099 : if (gimple_call_alloc_p (def_stmt))
3752 : : {
3753 : 35683 : if (matching_alloc_calls_p (def_stmt, dealloc_decl))
3754 : : {
3755 : 35369 : if (warn_dealloc_offset (loc, call, aref))
3756 : : return;
3757 : : }
3758 : : else
3759 : : {
3760 : 314 : tree alloc_decl = gimple_call_fndecl (def_stmt);
3761 : 314 : const opt_code opt =
3762 : 314 : (DECL_IS_OPERATOR_NEW_P (alloc_decl)
3763 : 170 : || DECL_IS_OPERATOR_DELETE_P (dealloc_decl)
3764 : 314 : ? OPT_Wmismatched_new_delete
3765 : 314 : : OPT_Wmismatched_dealloc);
3766 : 314 : warned = warning_at (loc, opt,
3767 : : "%qD called on pointer returned "
3768 : : "from a mismatched allocation "
3769 : : "function", dealloc_decl);
3770 : : }
3771 : : }
3772 : 3416 : else if (gimple_call_builtin_p (def_stmt, BUILT_IN_ALLOCA)
3773 : 3416 : || gimple_call_builtin_p (def_stmt,
3774 : : BUILT_IN_ALLOCA_WITH_ALIGN))
3775 : 20 : warned = warning_at (loc, OPT_Wfree_nonheap_object,
3776 : : "%qD called on pointer to "
3777 : : "an unallocated object",
3778 : : dealloc_decl);
3779 : 3396 : else if (warn_dealloc_offset (loc, call, aref))
3780 : : return;
3781 : :
3782 : 334 : if (warned)
3783 : : {
3784 : 215 : tree fndecl = gimple_call_fndecl (def_stmt);
3785 : 215 : inform (gimple_location (def_stmt),
3786 : : "returned from %qD", fndecl);
3787 : 215 : return;
3788 : : }
3789 : : }
3790 : 38113 : else if (gimple_nop_p (def_stmt))
3791 : : {
3792 : 13193 : ref = SSA_NAME_VAR (ref);
3793 : : /* Diagnose freeing a pointer that includes a positive offset. */
3794 : 13193 : if (TREE_CODE (ref) == PARM_DECL
3795 : 13174 : && !aref.deref
3796 : 13174 : && aref.sizrng[0] != aref.sizrng[1]
3797 : 13193 : && aref.offrng[0] > 0 && aref.offrng[1] > 0
3798 : 13199 : && warn_dealloc_offset (loc, call, aref))
3799 : 6 : return;
3800 : : }
3801 : : }
3802 : : }
3803 : :
3804 : : /* Return true if either USE_STMT's basic block (that of a pointer's use)
3805 : : is dominated by INVAL_STMT's (that of a pointer's invalidating statement,
3806 : : which is either a clobber or a deallocation call), or if they're in
3807 : : the same block, USE_STMT follows INVAL_STMT. */
3808 : :
3809 : : bool
3810 : 4958176 : pass_waccess::use_after_inval_p (gimple *inval_stmt, gimple *use_stmt,
3811 : : bool last_block /* = false */)
3812 : : {
3813 : 4958176 : tree clobvar =
3814 : 4958176 : gimple_clobber_p (inval_stmt) ? gimple_assign_lhs (inval_stmt) : NULL_TREE;
3815 : :
3816 : 4958176 : basic_block inval_bb = gimple_bb (inval_stmt);
3817 : 4958176 : basic_block use_bb = gimple_bb (use_stmt);
3818 : :
3819 : 4958176 : if (!inval_bb || !use_bb)
3820 : : return false;
3821 : :
3822 : 4957755 : if (inval_bb != use_bb)
3823 : : {
3824 : 4330947 : if (dominated_by_p (CDI_DOMINATORS, use_bb, inval_bb))
3825 : : return true;
3826 : :
3827 : 4329657 : if (!clobvar || !last_block)
3828 : : return false;
3829 : :
3830 : : /* Proceed only when looking for uses of dangling pointers. */
3831 : 3099475 : auto gsi = gsi_for_stmt (use_stmt);
3832 : :
3833 : : /* A use statement in the last basic block in a function or one that
3834 : : falls through to it is after any other prior clobber of the used
3835 : : variable unless it's followed by a clobber of the same variable. */
3836 : 3099475 : basic_block bb = use_bb;
3837 : 3099475 : while (bb != inval_bb
3838 : 3751029 : && single_succ_p (bb)
3839 : 5238536 : && !(single_succ_edge (bb)->flags
3840 : 1206592 : & (EDGE_EH | EDGE_ABNORMAL | EDGE_DFS_BACK)))
3841 : : {
3842 : 10292124 : for (; !gsi_end_p (gsi); gsi_next_nondebug (&gsi))
3843 : : {
3844 : 9359655 : gimple *stmt = gsi_stmt (gsi);
3845 : 9359655 : if (gimple_clobber_p (stmt))
3846 : : {
3847 : 390060 : if (clobvar == gimple_assign_lhs (stmt))
3848 : : /* The use is followed by a clobber. */
3849 : : return false;
3850 : : }
3851 : : }
3852 : :
3853 : 932469 : bb = single_succ (bb);
3854 : 1864938 : gsi = gsi_start_bb (bb);
3855 : : }
3856 : :
3857 : : /* The use is one of a dangling pointer if a clobber of the variable
3858 : : [the pointer points to] has not been found before the function exit
3859 : : point. */
3860 : 3083985 : return bb == EXIT_BLOCK_PTR_FOR_FN (cfun);
3861 : : }
3862 : :
3863 : 626808 : if (bitmap_set_bit (m_bb_uids_set, inval_bb->index))
3864 : : /* The first time this basic block is visited assign increasing ids
3865 : : to consecutive statements in it. Use the ids to determine which
3866 : : precedes which. This avoids the linear traversal on subsequent
3867 : : visits to the same block. */
3868 : 313630 : renumber_gimple_stmt_uids_in_block (m_func, inval_bb);
3869 : :
3870 : 626808 : return gimple_uid (inval_stmt) < gimple_uid (use_stmt);
3871 : : }
3872 : :
3873 : : /* Issue a warning for the USE_STMT of pointer or reference REF rendered
3874 : : invalid by INVAL_STMT. REF may be null when it's been optimized away.
3875 : : When nonnull, INVAL_STMT is the deallocation function that rendered
3876 : : the pointer or reference dangling. Otherwise, VAR is the auto variable
3877 : : (including an unnamed temporary such as a compound literal) whose
3878 : : lifetime's rended it dangling. MAYBE is true to issue the "maybe"
3879 : : kind of warning. EQUALITY is true when the pointer is used in
3880 : : an equality expression. */
3881 : :
3882 : : void
3883 : 18174 : pass_waccess::warn_invalid_pointer (tree ref, gimple *use_stmt,
3884 : : gimple *inval_stmt, tree var,
3885 : : bool maybe, bool equality /* = false */)
3886 : : {
3887 : : /* Avoid printing the unhelpful "<unknown>" in the diagnostics. */
3888 : 18174 : if (ref && TREE_CODE (ref) == SSA_NAME)
3889 : : {
3890 : 18146 : tree var = SSA_NAME_VAR (ref);
3891 : 17913 : if (!var)
3892 : : ref = NULL_TREE;
3893 : : /* Don't warn for cases like when a cdtor returns 'this' on ARM. */
3894 : 17913 : else if (warning_suppressed_p (var, OPT_Wuse_after_free))
3895 : : return;
3896 : 17910 : else if (DECL_ARTIFICIAL (var))
3897 : 270 : ref = NULL_TREE;
3898 : : }
3899 : :
3900 : 18171 : location_t use_loc = gimple_location (use_stmt);
3901 : 18171 : if (use_loc == UNKNOWN_LOCATION)
3902 : : {
3903 : 0 : use_loc = m_func->function_end_locus;
3904 : 0 : if (!ref)
3905 : : /* Avoid issuing a warning with no context other than
3906 : : the function. That would make it difficult to debug
3907 : : in any but very simple cases. */
3908 : : return;
3909 : : }
3910 : :
3911 : 18171 : if (is_gimple_call (inval_stmt))
3912 : : {
3913 : 17975 : if (!m_early_checks_p
3914 : 6465 : || (equality && warn_use_after_free < 3)
3915 : 5885 : || (maybe && warn_use_after_free < 2)
3916 : 23680 : || warning_suppressed_p (use_stmt, OPT_Wuse_after_free))
3917 : 12327 : return;
3918 : :
3919 : 5648 : const tree inval_decl = gimple_call_fndecl (inval_stmt);
3920 : :
3921 : 5648 : auto_diagnostic_group d;
3922 : 11150 : if ((ref && warning_at (use_loc, OPT_Wuse_after_free,
3923 : : (maybe
3924 : : ? G_("pointer %qE may be used after %qD")
3925 : : : G_("pointer %qE used after %qD")),
3926 : : ref, inval_decl))
3927 : 10940 : || (!ref && warning_at (use_loc, OPT_Wuse_after_free,
3928 : : (maybe
3929 : : ? G_("pointer may be used after %qD")
3930 : : : G_("pointer used after %qD")),
3931 : : inval_decl)))
3932 : : {
3933 : 359 : location_t loc = gimple_location (inval_stmt);
3934 : 359 : inform (loc, "call to %qD here", inval_decl);
3935 : 359 : suppress_warning (use_stmt, OPT_Wuse_after_free);
3936 : : }
3937 : 5648 : return;
3938 : 5648 : }
3939 : :
3940 : 196 : if (equality
3941 : 190 : || (maybe && warn_dangling_pointer < 2)
3942 : 381 : || warning_suppressed_p (use_stmt, OPT_Wdangling_pointer_))
3943 : 70 : return;
3944 : :
3945 : 126 : if (DECL_NAME (var))
3946 : : {
3947 : 111 : auto_diagnostic_group d;
3948 : 111 : if ((ref
3949 : 174 : && warning_at (use_loc, OPT_Wdangling_pointer_,
3950 : : (maybe
3951 : : ? G_("dangling pointer %qE to %qD may be used")
3952 : : : G_("using dangling pointer %qE to %qD")),
3953 : : ref, var))
3954 : 111 : || (!ref
3955 : 22 : && warning_at (use_loc, OPT_Wdangling_pointer_,
3956 : : (maybe
3957 : : ? G_("dangling pointer to %qD may be used")
3958 : : : G_("using a dangling pointer to %qD")),
3959 : : var)))
3960 : 98 : inform (DECL_SOURCE_LOCATION (var),
3961 : : "%qD declared here", var);
3962 : 111 : suppress_warning (use_stmt, OPT_Wdangling_pointer_);
3963 : 111 : return;
3964 : 111 : }
3965 : :
3966 : 15 : if ((ref
3967 : 14 : && warning_at (use_loc, OPT_Wdangling_pointer_,
3968 : : (maybe
3969 : : ? G_("dangling pointer %qE to an unnamed temporary "
3970 : : "may be used")
3971 : : : G_("using dangling pointer %qE to an unnamed "
3972 : : "temporary")),
3973 : : ref))
3974 : 15 : || (!ref
3975 : 14 : && warning_at (use_loc, OPT_Wdangling_pointer_,
3976 : : (maybe
3977 : : ? G_("dangling pointer to an unnamed temporary "
3978 : : "may be used")
3979 : : : G_("using a dangling pointer to an unnamed "
3980 : : "temporary")))))
3981 : : {
3982 : 14 : inform (DECL_SOURCE_LOCATION (var),
3983 : : "unnamed temporary defined here");
3984 : 14 : suppress_warning (use_stmt, OPT_Wdangling_pointer_);
3985 : : }
3986 : : }
3987 : :
3988 : : /* If STMT is a call to either the standard realloc or to a user-defined
3989 : : reallocation function returns its LHS and set *PTR to the reallocated
3990 : : pointer. Otherwise return null. */
3991 : :
3992 : : static tree
3993 : 648657 : get_realloc_lhs (gimple *stmt, tree *ptr)
3994 : : {
3995 : 648657 : if (gimple_call_builtin_p (stmt, BUILT_IN_REALLOC))
3996 : : {
3997 : 20756 : *ptr = gimple_call_arg (stmt, 0);
3998 : 20756 : return gimple_call_lhs (stmt);
3999 : : }
4000 : :
4001 : 1100459 : gcall *call = dyn_cast<gcall *>(stmt);
4002 : 472698 : if (!call)
4003 : : return NULL_TREE;
4004 : :
4005 : 472698 : tree fnattr = NULL_TREE;
4006 : 472698 : tree fndecl = gimple_call_fndecl (call);
4007 : 472698 : if (fndecl)
4008 : 472698 : fnattr = DECL_ATTRIBUTES (fndecl);
4009 : : else
4010 : : {
4011 : 0 : tree fntype = gimple_call_fntype (stmt);
4012 : 0 : if (!fntype)
4013 : : return NULL_TREE;
4014 : 0 : fnattr = TYPE_ATTRIBUTES (fntype);
4015 : : }
4016 : :
4017 : 472698 : if (!fnattr)
4018 : : return NULL_TREE;
4019 : :
4020 : 470098 : for (tree ats = fnattr; (ats = lookup_attribute ("*dealloc", ats));
4021 : 14449 : ats = TREE_CHAIN (ats))
4022 : : {
4023 : 14589 : tree args = TREE_VALUE (ats);
4024 : 14589 : if (!args)
4025 : 0 : continue;
4026 : :
4027 : 14589 : tree alloc = TREE_VALUE (args);
4028 : 14589 : if (!alloc)
4029 : 0 : continue;
4030 : :
4031 : 14589 : if (alloc == DECL_NAME (fndecl))
4032 : : {
4033 : 140 : unsigned argno = 0;
4034 : 140 : if (tree index = TREE_CHAIN (args))
4035 : 82 : argno = TREE_INT_CST_LOW (TREE_VALUE (index)) - 1;
4036 : 140 : *ptr = gimple_call_arg (stmt, argno);
4037 : 140 : return gimple_call_lhs (stmt);
4038 : : }
4039 : : }
4040 : :
4041 : : return NULL_TREE;
4042 : : }
4043 : :
4044 : : /* Warn if STMT is a call to a deallocation function that's not a match
4045 : : for the REALLOC_STMT call. Return true if warned. */
4046 : :
4047 : : static bool
4048 : 89350 : maybe_warn_mismatched_realloc (tree ptr, gimple *realloc_stmt, gimple *stmt)
4049 : : {
4050 : 89350 : if (!is_gimple_call (stmt))
4051 : : return false;
4052 : :
4053 : 39769 : tree fndecl = gimple_call_fndecl (stmt);
4054 : 39769 : if (!fndecl)
4055 : : return false;
4056 : :
4057 : 39764 : unsigned argno = fndecl_dealloc_argno (fndecl);
4058 : 39764 : if (call_nargs (stmt) <= argno)
4059 : : return false;
4060 : :
4061 : 2450 : if (matching_alloc_calls_p (realloc_stmt, fndecl))
4062 : : return false;
4063 : :
4064 : : /* Avoid printing the unhelpful "<unknown>" in the diagnostics. */
4065 : 43 : if (ptr && TREE_CODE (ptr) == SSA_NAME
4066 : 86 : && (!SSA_NAME_VAR (ptr) || DECL_ARTIFICIAL (SSA_NAME_VAR (ptr))))
4067 : : ptr = NULL_TREE;
4068 : :
4069 : 43 : location_t loc = gimple_location (stmt);
4070 : 43 : tree realloc_decl = gimple_call_fndecl (realloc_stmt);
4071 : 43 : tree dealloc_decl = gimple_call_fndecl (stmt);
4072 : 43 : if (ptr && !warning_at (loc, OPT_Wmismatched_dealloc,
4073 : : "%qD called on pointer %qE passed to mismatched "
4074 : : "allocation function %qD",
4075 : : dealloc_decl, ptr, realloc_decl))
4076 : 4 : return false;
4077 : 39 : if (!ptr && !warning_at (loc, OPT_Wmismatched_dealloc,
4078 : : "%qD called on a pointer passed to mismatched "
4079 : : "reallocation function %qD",
4080 : : dealloc_decl, realloc_decl))
4081 : 0 : return false;
4082 : :
4083 : 39 : inform (gimple_location (realloc_stmt),
4084 : : "call to %qD", realloc_decl);
4085 : 39 : return true;
4086 : : }
4087 : :
4088 : : /* Return true if P and Q point to the same object, and false if they
4089 : : either don't or their relationship cannot be determined. */
4090 : :
4091 : : static bool
4092 : 89239 : pointers_related_p (gimple *stmt, tree p, tree q, pointer_query &qry,
4093 : : auto_bitmap &visited)
4094 : : {
4095 : 89239 : if (!ptr_derefs_may_alias_p (p, q))
4096 : : return false;
4097 : :
4098 : : /* TODO: Work harder to rule out relatedness. */
4099 : 89239 : access_ref pref, qref;
4100 : 89239 : if (!qry.get_ref (p, stmt, &pref, 0)
4101 : 89239 : || !qry.get_ref (q, stmt, &qref, 0))
4102 : : /* GET_REF() only rarely fails. When it does, it's likely because
4103 : : it involves a self-referential PHI. Return a conservative result. */
4104 : 0 : return false;
4105 : :
4106 : 89239 : if (pref.ref == qref.ref)
4107 : : return true;
4108 : :
4109 : : /* If either pointer is a PHI, iterate over all its operands and
4110 : : return true if they're all related to the other pointer. */
4111 : 48 : tree ptr = q;
4112 : 48 : unsigned version;
4113 : 48 : gphi *phi = pref.phi ();
4114 : 48 : if (phi)
4115 : 48 : version = SSA_NAME_VERSION (pref.ref);
4116 : : else
4117 : : {
4118 : 0 : phi = qref.phi ();
4119 : 0 : if (!phi)
4120 : : return false;
4121 : :
4122 : 0 : ptr = p;
4123 : 0 : version = SSA_NAME_VERSION (qref.ref);
4124 : : }
4125 : :
4126 : 48 : if (!bitmap_set_bit (visited, version))
4127 : : return true;
4128 : :
4129 : 24 : unsigned nargs = gimple_phi_num_args (phi);
4130 : 72 : for (unsigned i = 0; i != nargs; ++i)
4131 : : {
4132 : 48 : tree arg = gimple_phi_arg_def (phi, i);
4133 : 48 : if (!pointers_related_p (stmt, arg, ptr, qry, visited))
4134 : : return false;
4135 : : }
4136 : :
4137 : : return true;
4138 : : }
4139 : :
4140 : : /* Convenience wrapper for the above. */
4141 : :
4142 : : static bool
4143 : 89191 : pointers_related_p (gimple *stmt, tree p, tree q, pointer_query &qry)
4144 : : {
4145 : 89191 : auto_bitmap visited;
4146 : 89191 : return pointers_related_p (stmt, p, q, qry, visited);
4147 : 89191 : }
4148 : :
4149 : : /* For a STMT either a call to a deallocation function or a clobber, warn
4150 : : for uses of the pointer PTR it was called with (including its copies
4151 : : or others derived from it by pointer arithmetic). If STMT is a clobber,
4152 : : VAR is the decl of the clobbered variable. When MAYBE is true use
4153 : : a "maybe" form of diagnostic. */
4154 : :
4155 : : void
4156 : 648657 : pass_waccess::check_pointer_uses (gimple *stmt, tree ptr,
4157 : : tree var /* = NULL_TREE */,
4158 : : bool maybe /* = false */)
4159 : : {
4160 : 648657 : gcc_assert (TREE_CODE (ptr) == SSA_NAME);
4161 : :
4162 : 648657 : const bool check_dangling = !is_gimple_call (stmt);
4163 : 648657 : basic_block stmt_bb = gimple_bb (stmt);
4164 : :
4165 : : /* If STMT is a reallocation function set to the reallocated pointer
4166 : : and the LHS of the call, respectively. */
4167 : 648657 : tree realloc_ptr = NULL_TREE;
4168 : 648657 : tree realloc_lhs = get_realloc_lhs (stmt, &realloc_ptr);
4169 : :
4170 : 648657 : auto_bitmap visited;
4171 : :
4172 : 648657 : auto_vec<tree, 8> pointers;
4173 : 648657 : pointers.quick_push (ptr);
4174 : 648657 : hash_map<tree, int> *phi_map = nullptr;
4175 : :
4176 : : /* Starting with PTR, iterate over POINTERS added by the loop, and
4177 : : either warn for their uses in basic blocks dominated by the STMT
4178 : : or in statements that follow it in the same basic block, or add
4179 : : them to POINTERS if they point into the same object as PTR (i.e.,
4180 : : are obtained by pointer arithmetic on PTR). */
4181 : 2933528 : for (unsigned i = 0; i != pointers.length (); ++i)
4182 : : {
4183 : 818107 : tree ptr = pointers[i];
4184 : 818107 : if (!bitmap_set_bit (visited, SSA_NAME_VERSION (ptr)))
4185 : : /* Avoid revisiting the same pointer. */
4186 : 43 : continue;
4187 : :
4188 : 818064 : use_operand_p use_p;
4189 : 818064 : imm_use_iterator iter;
4190 : 4012986 : FOR_EACH_IMM_USE_FAST (use_p, iter, ptr)
4191 : : {
4192 : 3194922 : gimple *use_stmt = USE_STMT (use_p);
4193 : 3194922 : if (use_stmt == stmt || is_gimple_debug (use_stmt))
4194 : 1459176 : continue;
4195 : :
4196 : : /* A clobber isn't a use. */
4197 : 1735746 : if (gimple_clobber_p (use_stmt))
4198 : 79026 : continue;
4199 : :
4200 : 1656720 : if (realloc_lhs)
4201 : : {
4202 : : /* Check to see if USE_STMT is a mismatched deallocation
4203 : : call for the pointer passed to realloc. That's a bug
4204 : : regardless of the pointer's value and so warn. */
4205 : 89350 : if (maybe_warn_mismatched_realloc (*use_p->use, stmt, use_stmt))
4206 : 159 : continue;
4207 : :
4208 : : /* Pointers passed to realloc that are used in basic blocks
4209 : : where the realloc call is known to have failed are valid.
4210 : : Ignore pointers that nothing is known about. Those could
4211 : : have escaped along with their nullness. */
4212 : 89311 : prange vr;
4213 : 89311 : if (m_ptr_qry.rvals->range_of_expr (vr, realloc_lhs, use_stmt))
4214 : : {
4215 : 89311 : if (vr.zero_p ())
4216 : 120 : continue;
4217 : :
4218 : 89191 : if (!pointers_related_p (stmt, ptr, realloc_ptr, m_ptr_qry))
4219 : 0 : continue;
4220 : : }
4221 : 89311 : }
4222 : :
4223 : 1656802 : if (check_dangling
4224 : 1656561 : && gimple_code (use_stmt) == GIMPLE_RETURN)
4225 : : /* Avoid interfering with -Wreturn-local-addr (which runs only
4226 : : with optimization enabled so it won't diagnose cases that
4227 : : would be caught here when optimization is disabled). */
4228 : 241 : continue;
4229 : :
4230 : 1656320 : bool equality = false;
4231 : 1656320 : if (is_gimple_assign (use_stmt))
4232 : : {
4233 : 957132 : tree_code code = gimple_assign_rhs_code (use_stmt);
4234 : 957132 : equality = code == EQ_EXPR || code == NE_EXPR;
4235 : : }
4236 : 699188 : else if (gcond *cond = dyn_cast<gcond *>(use_stmt))
4237 : : {
4238 : 282612 : tree_code code = gimple_cond_code (cond);
4239 : 282612 : equality = code == EQ_EXPR || code == NE_EXPR;
4240 : : }
4241 : 416576 : else if (gphi *phi = dyn_cast <gphi *> (use_stmt))
4242 : : {
4243 : : /* Only add a PHI result to POINTERS if all its
4244 : : operands are related to PTR, otherwise continue. The
4245 : : PHI result is related once we've reached all arguments
4246 : : through this iteration. That also means any invariant
4247 : : argument will make the PHI not related. For arguments
4248 : : flowing over natural loop backedges we are optimistic
4249 : : (and diagnose the first iteration). */
4250 : 89098 : tree lhs = gimple_phi_result (phi);
4251 : 89098 : if (!phi_map)
4252 : 38777 : phi_map = new hash_map<tree, int>;
4253 : 89098 : bool existed_p;
4254 : 89098 : int &related = phi_map->get_or_insert (lhs, &existed_p);
4255 : 89098 : if (!existed_p)
4256 : : {
4257 : 53380 : related = gimple_phi_num_args (phi) - 1;
4258 : 204641 : for (unsigned j = 0; j < gimple_phi_num_args (phi); ++j)
4259 : : {
4260 : 151261 : if ((unsigned) phi_arg_index_from_use (use_p) == j)
4261 : 53380 : continue;
4262 : 97881 : tree arg = gimple_phi_arg_def (phi, j);
4263 : 97881 : edge e = gimple_phi_arg_edge (phi, j);
4264 : 97881 : basic_block arg_bb;
4265 : 97881 : if (dominated_by_p (CDI_DOMINATORS, e->src, e->dest)
4266 : : /* Make sure we are not forward visiting a
4267 : : backedge argument. */
4268 : 97881 : && (TREE_CODE (arg) != SSA_NAME
4269 : 15519 : || (!SSA_NAME_IS_DEFAULT_DEF (arg)
4270 : 15519 : && ((arg_bb
4271 : 15519 : = gimple_bb (SSA_NAME_DEF_STMT (arg)))
4272 : 15519 : != e->dest)
4273 : 12346 : && !dominated_by_p (CDI_DOMINATORS,
4274 : : e->dest, arg_bb))))
4275 : 12348 : related--;
4276 : : }
4277 : : }
4278 : : else
4279 : 35718 : related--;
4280 : :
4281 : 89098 : if (related == 0)
4282 : 20584 : pointers.safe_push (lhs);
4283 : 89098 : continue;
4284 : 89098 : }
4285 : :
4286 : : /* Warn if USE_STMT is dominated by the deallocation STMT.
4287 : : Otherwise, add the pointer to POINTERS so that the uses
4288 : : of any other pointers derived from it can be checked. */
4289 : 1567222 : if (use_after_inval_p (stmt, use_stmt, check_dangling))
4290 : : {
4291 : 18146 : basic_block use_bb = gimple_bb (use_stmt);
4292 : 18146 : bool this_maybe
4293 : : = (maybe
4294 : 18146 : || !dominated_by_p (CDI_POST_DOMINATORS, stmt_bb, use_bb));
4295 : 18146 : warn_invalid_pointer (*use_p->use, use_stmt, stmt, var,
4296 : : this_maybe, equality);
4297 : 18146 : continue;
4298 : 18146 : }
4299 : :
4300 : 1549076 : if (is_gimple_assign (use_stmt))
4301 : : {
4302 : 955688 : tree lhs = gimple_assign_lhs (use_stmt);
4303 : 955688 : if (TREE_CODE (lhs) == SSA_NAME)
4304 : : {
4305 : 630533 : tree_code rhs_code = gimple_assign_rhs_code (use_stmt);
4306 : 630533 : if (rhs_code == POINTER_PLUS_EXPR || rhs_code == SSA_NAME)
4307 : 147674 : pointers.safe_push (lhs);
4308 : : }
4309 : 955688 : continue;
4310 : 955688 : }
4311 : :
4312 : 3788310 : if (gcall *call = dyn_cast <gcall *>(use_stmt))
4313 : : {
4314 : 310554 : if (gimple_call_return_arg (call) == ptr)
4315 : 36207 : if (tree lhs = gimple_call_lhs (call))
4316 : 1192 : if (TREE_CODE (lhs) == SSA_NAME)
4317 : 1192 : pointers.safe_push (lhs);
4318 : 310554 : continue;
4319 : 310554 : }
4320 : : }
4321 : : }
4322 : :
4323 : 648657 : if (phi_map)
4324 : 38777 : delete phi_map;
4325 : 648657 : }
4326 : :
4327 : : /* Check call STMT for invalid accesses. */
4328 : :
4329 : : void
4330 : 21386117 : pass_waccess::check_call (gcall *stmt)
4331 : : {
4332 : : /* Skip special calls generated by the compiler. */
4333 : 21386117 : if (gimple_call_from_thunk_p (stmt))
4334 : : return;
4335 : :
4336 : : /* .ASAN_MARK doesn't access any vars, only modifies shadow memory. */
4337 : 21381954 : if (gimple_call_internal_p (stmt)
4338 : 21381954 : && gimple_call_internal_fn (stmt) == IFN_ASAN_MARK)
4339 : : return;
4340 : :
4341 : 21372139 : if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
4342 : 4883133 : check_builtin (stmt);
4343 : :
4344 : 21372139 : if (tree callee = gimple_call_fndecl (stmt))
4345 : : {
4346 : : /* Check for uses of the pointer passed to either a standard
4347 : : or a user-defined deallocation function. */
4348 : 20255598 : unsigned argno = fndecl_dealloc_argno (callee);
4349 : 20255598 : if (argno < (unsigned) call_nargs (stmt))
4350 : : {
4351 : 434438 : tree arg = call_arg (stmt, argno);
4352 : 434438 : if (TREE_CODE (arg) == SSA_NAME)
4353 : 433954 : check_pointer_uses (stmt, arg);
4354 : : }
4355 : : }
4356 : :
4357 : 21372139 : check_call_access (stmt);
4358 : 21372139 : check_call_dangling (stmt);
4359 : :
4360 : 21372139 : if (m_early_checks_p)
4361 : : return;
4362 : :
4363 : 6504894 : maybe_check_dealloc_call (stmt);
4364 : 6504894 : check_nonstring_args (stmt);
4365 : : }
4366 : :
4367 : : /* Check non-call STMT for invalid accesses. */
4368 : :
4369 : : void
4370 : 124726310 : pass_waccess::check_stmt (gimple *stmt)
4371 : : {
4372 : 124726310 : if (m_check_dangling_p
4373 : 124726310 : && gimple_clobber_p (stmt, CLOBBER_STORAGE_END))
4374 : : {
4375 : : /* Ignore clobber statements in blocks with exceptional edges. */
4376 : 3042012 : basic_block bb = gimple_bb (stmt);
4377 : 3042012 : edge e = EDGE_PRED (bb, 0);
4378 : 3042012 : if (e->flags & EDGE_EH)
4379 : : return;
4380 : :
4381 : 2393452 : tree var = gimple_assign_lhs (stmt);
4382 : 2393452 : m_clobbers.put (var, stmt);
4383 : 2393452 : return;
4384 : : }
4385 : :
4386 : 121684298 : if (is_gimple_assign (stmt))
4387 : : {
4388 : : /* Clobbered unnamed temporaries such as compound literals can be
4389 : : revived. Check for an assignment to one and remove it from
4390 : : M_CLOBBERS. */
4391 : 91093397 : tree lhs = gimple_assign_lhs (stmt);
4392 : 114280369 : while (handled_component_p (lhs))
4393 : 23186972 : lhs = TREE_OPERAND (lhs, 0);
4394 : :
4395 : 91093397 : if (auto_var_p (lhs))
4396 : 15051663 : m_clobbers.remove (lhs);
4397 : 91093397 : return;
4398 : : }
4399 : :
4400 : 30590901 : if (greturn *ret = dyn_cast <greturn *> (stmt))
4401 : : {
4402 : 4993645 : if (optimize && flag_isolate_erroneous_paths_dereference)
4403 : : /* Avoid interfering with -Wreturn-local-addr (which runs only
4404 : : with optimization enabled). */
4405 : 4993644 : return;
4406 : :
4407 : 1066471 : tree arg = gimple_return_retval (ret);
4408 : 1066471 : if (!arg || TREE_CODE (arg) != ADDR_EXPR)
4409 : : return;
4410 : :
4411 : 311 : arg = TREE_OPERAND (arg, 0);
4412 : 419 : while (handled_component_p (arg))
4413 : 108 : arg = TREE_OPERAND (arg, 0);
4414 : :
4415 : 311 : if (!auto_var_p (arg))
4416 : : return;
4417 : :
4418 : 3 : gimple **pclobber = m_clobbers.get (arg);
4419 : 3 : if (!pclobber)
4420 : : return;
4421 : :
4422 : 1 : if (!use_after_inval_p (*pclobber, stmt))
4423 : : return;
4424 : :
4425 : 1 : warn_invalid_pointer (NULL_TREE, stmt, *pclobber, arg, false);
4426 : : }
4427 : : }
4428 : :
4429 : : /* Check basic block BB for invalid accesses. */
4430 : :
4431 : : void
4432 : 41319324 : pass_waccess::check_block (basic_block bb)
4433 : : {
4434 : : /* Iterate over statements, looking for function calls. */
4435 : 228751075 : for (auto si = gsi_start_bb (bb); !gsi_end_p (si);
4436 : 146112427 : gsi_next_nondebug (&si))
4437 : : {
4438 : 146112427 : gimple *stmt = gsi_stmt (si);
4439 : 146112427 : if (gcall *call = dyn_cast <gcall *> (stmt))
4440 : 21386117 : check_call (call);
4441 : : else
4442 : 124726310 : check_stmt (stmt);
4443 : : }
4444 : 41319324 : }
4445 : :
4446 : : /* Return the argument that the call STMT to a built-in function returns
4447 : : (including with an offset) or null if it doesn't. */
4448 : :
4449 : : tree
4450 : 2093293 : pass_waccess::gimple_call_return_arg (gcall *call)
4451 : : {
4452 : : /* Check for attribute fn spec to see if the function returns one
4453 : : of its arguments. */
4454 : 2093293 : attr_fnspec fnspec = gimple_call_fnspec (call);
4455 : 2093293 : unsigned int argno;
4456 : 2093293 : if (!fnspec.returns_arg (&argno))
4457 : : {
4458 : 2027546 : if (gimple_call_num_args (call) < 1)
4459 : : return NULL_TREE;
4460 : :
4461 : 1954203 : if (!gimple_call_builtin_p (call, BUILT_IN_NORMAL))
4462 : : return NULL_TREE;
4463 : :
4464 : 268842 : tree fndecl = gimple_call_fndecl (call);
4465 : 268842 : switch (DECL_FUNCTION_CODE (fndecl))
4466 : : {
4467 : : case BUILT_IN_MEMPCPY:
4468 : : case BUILT_IN_MEMPCPY_CHK:
4469 : : case BUILT_IN_MEMCHR:
4470 : : case BUILT_IN_STRCHR:
4471 : : case BUILT_IN_STRRCHR:
4472 : : case BUILT_IN_STRSTR:
4473 : : case BUILT_IN_STPCPY:
4474 : : case BUILT_IN_STPCPY_CHK:
4475 : : case BUILT_IN_STPNCPY:
4476 : : case BUILT_IN_STPNCPY_CHK:
4477 : : argno = 0;
4478 : : break;
4479 : :
4480 : : default:
4481 : : return NULL_TREE;
4482 : : }
4483 : : }
4484 : :
4485 : 78268 : if (gimple_call_num_args (call) <= argno)
4486 : : return NULL_TREE;
4487 : :
4488 : 78268 : return gimple_call_arg (call, argno);
4489 : : }
4490 : :
4491 : : /* Check for and diagnose all uses of the dangling pointer VAR to the auto
4492 : : object DECL whose lifetime has ended. OBJREF is true when VAR denotes
4493 : : an access to a DECL that may have been clobbered. */
4494 : :
4495 : : void
4496 : 13999510 : pass_waccess::check_dangling_uses (tree var, tree decl, bool maybe /* = false */,
4497 : : bool objref /* = false */)
4498 : : {
4499 : 13999510 : if (!decl || !auto_var_p (decl))
4500 : 6198264 : return;
4501 : :
4502 : 7801246 : gimple **pclob = m_clobbers.get (decl);
4503 : 7801246 : if (!pclob)
4504 : : return;
4505 : :
4506 : 3374064 : if (!objref)
4507 : : {
4508 : 155203 : check_pointer_uses (*pclob, var, decl, maybe);
4509 : 155203 : return;
4510 : : }
4511 : :
4512 : 3218861 : gimple *use_stmt = SSA_NAME_DEF_STMT (var);
4513 : 3218861 : if (!use_after_inval_p (*pclob, use_stmt, true))
4514 : : return;
4515 : :
4516 : 0 : basic_block use_bb = gimple_bb (use_stmt);
4517 : 0 : basic_block clob_bb = gimple_bb (*pclob);
4518 : 0 : maybe = maybe || !dominated_by_p (CDI_POST_DOMINATORS, clob_bb, use_bb);
4519 : 0 : warn_invalid_pointer (var, use_stmt, *pclob, decl, maybe, false);
4520 : : }
4521 : :
4522 : : /* Diagnose stores in BB and (recursively) its predecessors of the addresses
4523 : : of local variables into nonlocal pointers that are left dangling after
4524 : : the function returns. Returns true when we can continue walking
4525 : : the CFG to predecessors. */
4526 : :
4527 : : bool
4528 : 14642903 : pass_waccess::check_dangling_stores (basic_block bb,
4529 : : hash_set<tree> &stores)
4530 : : {
4531 : : /* Iterate backwards over the statements looking for a store of
4532 : : the address of a local variable into a nonlocal pointer. */
4533 : 49262462 : for (auto gsi = gsi_last_nondebug_bb (bb); ; gsi_prev_nondebug (&gsi))
4534 : : {
4535 : 49262462 : gimple *stmt = gsi_stmt (gsi);
4536 : 49262462 : if (!stmt)
4537 : : break;
4538 : :
4539 : 38214022 : if (warning_suppressed_p (stmt, OPT_Wdangling_pointer_))
4540 : 34618992 : continue;
4541 : :
4542 : 38174668 : if (is_gimple_call (stmt)
4543 : 38174668 : && !(gimple_call_flags (stmt) & (ECF_CONST | ECF_PURE)))
4544 : : /* Avoid looking before nonconst, nonpure calls since those might
4545 : : use the escaped locals. */
4546 : 3594463 : return false;
4547 : :
4548 : 34723966 : if (!is_gimple_assign (stmt) || gimple_clobber_p (stmt)
4549 : 57475939 : || !gimple_store_p (stmt))
4550 : 29776848 : continue;
4551 : :
4552 : 4947118 : access_ref lhs_ref;
4553 : 4947118 : tree lhs = gimple_assign_lhs (stmt);
4554 : 4947118 : if (!m_ptr_qry.get_ref (lhs, stmt, &lhs_ref, 0))
4555 : 9255 : continue;
4556 : :
4557 : 4937863 : if (TREE_CODE (lhs_ref.ref) == MEM_REF)
4558 : : {
4559 : 17874 : lhs_ref.ref = TREE_OPERAND (lhs_ref.ref, 0);
4560 : 17874 : ++lhs_ref.deref;
4561 : : }
4562 : 4937863 : if (TREE_CODE (lhs_ref.ref) == ADDR_EXPR)
4563 : : {
4564 : 5850 : lhs_ref.ref = TREE_OPERAND (lhs_ref.ref, 0);
4565 : 5850 : --lhs_ref.deref;
4566 : : }
4567 : 4937863 : if (TREE_CODE (lhs_ref.ref) == SSA_NAME)
4568 : : {
4569 : 997512 : gimple *def_stmt = SSA_NAME_DEF_STMT (lhs_ref.ref);
4570 : 997512 : if (!gimple_nop_p (def_stmt))
4571 : : /* Avoid looking at or before stores into unknown objects. */
4572 : : return false;
4573 : :
4574 : 853751 : lhs_ref.ref = SSA_NAME_VAR (lhs_ref.ref);
4575 : : }
4576 : :
4577 : 4794102 : if (TREE_CODE (lhs_ref.ref) == PARM_DECL
4578 : 4794102 : && (lhs_ref.deref - DECL_BY_REFERENCE (lhs_ref.ref)) > 0)
4579 : : /* Assignment through a (real) pointer/reference parameter. */;
4580 : 6960778 : else if (VAR_P (lhs_ref.ref)
4581 : 3989595 : && !auto_var_p (lhs_ref.ref))
4582 : : /* Assignment to/through a non-local variable. */;
4583 : : else
4584 : : /* Something else, don't warn. */
4585 : 2971183 : continue;
4586 : :
4587 : 1822919 : if (stores.add (lhs_ref.ref))
4588 : 1258179 : continue;
4589 : :
4590 : : /* FIXME: Handle stores of alloca() and VLA. */
4591 : 564740 : access_ref rhs_ref;
4592 : 564740 : tree rhs = gimple_assign_rhs1 (stmt);
4593 : 564740 : if (!m_ptr_qry.get_ref (rhs, stmt, &rhs_ref, 0)
4594 : 564740 : || rhs_ref.deref != -1)
4595 : 538841 : continue;
4596 : :
4597 : 25899 : if (!auto_var_p (rhs_ref.ref))
4598 : 25332 : continue;
4599 : :
4600 : 567 : auto_diagnostic_group d;
4601 : 567 : location_t loc = gimple_location (stmt);
4602 : 567 : if (warning_at (loc, OPT_Wdangling_pointer_,
4603 : : "storing the address of local variable %qD in %qE",
4604 : : rhs_ref.ref, lhs))
4605 : : {
4606 : 45 : suppress_warning (stmt, OPT_Wdangling_pointer_);
4607 : :
4608 : 45 : location_t loc = DECL_SOURCE_LOCATION (rhs_ref.ref);
4609 : 45 : inform (loc, "%qD declared here", rhs_ref.ref);
4610 : :
4611 : 45 : loc = DECL_SOURCE_LOCATION (lhs_ref.ref);
4612 : 45 : inform (loc, "%qD declared here", lhs_ref.ref);
4613 : : }
4614 : 34620126 : }
4615 : :
4616 : 11048440 : return true;
4617 : : }
4618 : :
4619 : : /* Diagnose stores of the addresses of local variables into nonlocal
4620 : : pointers that are left dangling after the function returns. */
4621 : :
4622 : : void
4623 : 3659346 : pass_waccess::check_dangling_stores ()
4624 : : {
4625 : 3659346 : if (EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (m_func)->preds) == 0)
4626 : 54325 : return;
4627 : :
4628 : 3605021 : auto_bitmap bbs;
4629 : 3605021 : hash_set<tree> stores;
4630 : 3605021 : auto_vec<edge_iterator, 8> worklist (n_basic_blocks_for_fn (cfun) + 1);
4631 : 3605021 : worklist.quick_push (ei_start (EXIT_BLOCK_PTR_FOR_FN (m_func)->preds));
4632 : 31835978 : do
4633 : : {
4634 : 31835978 : edge_iterator ei = worklist.last ();
4635 : 31835978 : basic_block src = ei_edge (ei)->src;
4636 : 31835978 : if (bitmap_set_bit (bbs, src->index))
4637 : : {
4638 : 14642903 : if (check_dangling_stores (src, stores)
4639 : 14642903 : && EDGE_COUNT (src->preds) > 0)
4640 : 9574441 : worklist.quick_push (ei_start (src->preds));
4641 : : }
4642 : : else
4643 : : {
4644 : 17193075 : if (ei_one_before_end_p (ei))
4645 : 13179462 : worklist.pop ();
4646 : : else
4647 : 4013613 : ei_next (&worklist.last ());
4648 : : }
4649 : : }
4650 : 63671956 : while (!worklist.is_empty ());
4651 : 3605021 : }
4652 : :
4653 : : /* Check for and diagnose uses of dangling pointers to auto objects
4654 : : whose lifetime has ended. */
4655 : :
4656 : : void
4657 : 3659346 : pass_waccess::check_dangling_uses ()
4658 : : {
4659 : 3659346 : tree var;
4660 : 3659346 : unsigned i;
4661 : 107325621 : FOR_EACH_SSA_NAME (i, var, m_func)
4662 : : {
4663 : : /* For each SSA_NAME pointer VAR find the object it points to.
4664 : : If the object is a clobbered local variable, check to see
4665 : : if any of VAR's uses (or those of other pointers derived
4666 : : from VAR) happens after the clobber. If so, warn. */
4667 : :
4668 : 99840100 : gimple *def_stmt = SSA_NAME_DEF_STMT (var);
4669 : 99840100 : if (is_gimple_assign (def_stmt))
4670 : : {
4671 : 64098183 : tree rhs = gimple_assign_rhs1 (def_stmt);
4672 : 64098183 : if (TREE_CODE (rhs) == ADDR_EXPR)
4673 : : {
4674 : 4284927 : if (!POINTER_TYPE_P (TREE_TYPE (var)))
4675 : 1922169 : continue;
4676 : 2362758 : check_dangling_uses (var, TREE_OPERAND (rhs, 0));
4677 : : }
4678 : : else
4679 : : {
4680 : : /* For other expressions, check the base DECL to see
4681 : : if it's been clobbered, most likely as a result of
4682 : : inlining a reference to it. */
4683 : 59813256 : tree decl = get_base_address (rhs);
4684 : 59813256 : if (DECL_P (decl))
4685 : 11426272 : check_dangling_uses (var, decl, false, true);
4686 : : }
4687 : : }
4688 : 35741917 : else if (POINTER_TYPE_P (TREE_TYPE (var)))
4689 : : {
4690 : 5829232 : if (gcall *call = dyn_cast<gcall *>(def_stmt))
4691 : : {
4692 : 1782739 : if (tree arg = gimple_call_return_arg (call))
4693 : : {
4694 : 26191 : access_ref aref;
4695 : 26191 : if (m_ptr_qry.get_ref (arg, call, &aref, 0)
4696 : 26191 : && aref.deref < 0)
4697 : 8553 : check_dangling_uses (var, aref.ref);
4698 : : }
4699 : : }
4700 : 104226999 : else if (gphi *phi = dyn_cast <gphi *>(def_stmt))
4701 : : {
4702 : 560724 : unsigned nargs = gimple_phi_num_args (phi);
4703 : 1920095 : for (unsigned i = 0; i != nargs; ++i)
4704 : : {
4705 : 1359371 : access_ref aref;
4706 : 1359371 : tree arg = gimple_phi_arg_def (phi, i);
4707 : 1359371 : if (m_ptr_qry.get_ref (arg, phi, &aref, 0)
4708 : 1359371 : && aref.deref < 0)
4709 : 201927 : check_dangling_uses (var, aref.ref, true);
4710 : : }
4711 : : }
4712 : : }
4713 : : }
4714 : 3659346 : }
4715 : :
4716 : : /* Check CALL arguments for dangling pointers (those that have been
4717 : : clobbered) and warn if found. */
4718 : :
4719 : : void
4720 : 21372139 : pass_waccess::check_call_dangling (gcall *call)
4721 : : {
4722 : 21372139 : unsigned nargs = gimple_call_num_args (call);
4723 : 63166958 : for (unsigned i = 0; i != nargs; ++i)
4724 : : {
4725 : 41794819 : tree arg = gimple_call_arg (call, i);
4726 : 41794819 : if (TREE_CODE (arg) != ADDR_EXPR)
4727 : 41794792 : continue;
4728 : :
4729 : 11719977 : arg = TREE_OPERAND (arg, 0);
4730 : 11719977 : if (!DECL_P (arg))
4731 : 3862580 : continue;
4732 : :
4733 : 7857397 : gimple **pclobber = m_clobbers.get (arg);
4734 : 7857397 : if (!pclobber)
4735 : 7685305 : continue;
4736 : :
4737 : 172092 : if (!use_after_inval_p (*pclobber, call))
4738 : 172065 : continue;
4739 : :
4740 : 27 : warn_invalid_pointer (NULL_TREE, call, *pclobber, arg, false);
4741 : : }
4742 : 21372139 : }
4743 : :
4744 : : /* Check function FUN for invalid accesses. */
4745 : :
4746 : : unsigned
4747 : 5075536 : pass_waccess::execute (function *fun)
4748 : : {
4749 : 5075536 : auto_urlify_attributes sentinel;
4750 : :
4751 : 5075536 : calculate_dominance_info (CDI_DOMINATORS);
4752 : 5075536 : calculate_dominance_info (CDI_POST_DOMINATORS);
4753 : :
4754 : : /* Set or clear EDGE_DFS_BACK bits on back edges. */
4755 : 5075536 : mark_dfs_back_edges (fun);
4756 : :
4757 : : /* Create a new ranger instance and associate it with FUN. */
4758 : 5075536 : m_ptr_qry.rvals = enable_ranger (fun);
4759 : 5075536 : m_func = fun;
4760 : :
4761 : : /* Check for dangling pointers in the earliest run of the pass.
4762 : : The latest point -Wdangling-pointer should run is just before
4763 : : loop unrolling which introduces uses after clobbers. Most cases
4764 : : can be detected without optimization; cases where the address of
4765 : : the local variable is passed to and then returned from a user-
4766 : : defined function before its lifetime ends and the returned pointer
4767 : : becomes dangling depend on inlining. */
4768 : 5075536 : m_check_dangling_p = m_early_checks_p;
4769 : :
4770 : 5075536 : auto_bitmap bb_uids_set (&bitmap_default_obstack);
4771 : 5075536 : m_bb_uids_set = bb_uids_set;
4772 : :
4773 : 5075536 : set_gimple_stmt_max_uid (m_func, 0);
4774 : :
4775 : 5075536 : basic_block bb;
4776 : 46394860 : FOR_EACH_BB_FN (bb, fun)
4777 : 41319324 : check_block (bb);
4778 : :
4779 : 5075536 : if (m_check_dangling_p)
4780 : : {
4781 : 3659346 : check_dangling_uses ();
4782 : 3659346 : check_dangling_stores ();
4783 : : }
4784 : :
4785 : 5075536 : if (dump_file)
4786 : 149 : m_ptr_qry.dump (dump_file, (dump_flags & TDF_DETAILS) != 0);
4787 : :
4788 : 5075536 : m_ptr_qry.flush_cache ();
4789 : :
4790 : : /* Release the ranger instance and replace it with a global ranger.
4791 : : Also reset the pointer since calling disable_ranger() deletes it. */
4792 : 5075536 : disable_ranger (fun);
4793 : 5075536 : m_ptr_qry.rvals = NULL;
4794 : :
4795 : 5075536 : m_clobbers.empty ();
4796 : 5075536 : m_bb_uids_set = NULL;
4797 : :
4798 : 5075536 : free_dominance_info (CDI_POST_DOMINATORS);
4799 : 5075536 : free_dominance_info (CDI_DOMINATORS);
4800 : 5075536 : return 0;
4801 : 5075536 : }
4802 : :
4803 : : } // namespace
4804 : :
4805 : : /* Return a new instance of the pass. */
4806 : :
4807 : : gimple_opt_pass *
4808 : 280114 : make_pass_warn_access (gcc::context *ctxt)
4809 : : {
4810 : 280114 : return new pass_waccess (ctxt);
4811 : : }
|