1 /* Mudflap: narrow-pointer bounds-checking by tree rewriting.
2 Copyright (C) 2002-2013 Free Software Foundation, Inc.
3 Contributed by Frank Ch. Eigler <fche@redhat.com>
4 and Graydon Hoare <graydon@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
31 #include "mf-runtime.h"
35 #error "Do not compile this file with -fmudflap!"
40 extern char ENTRY_POINT
[];
43 /* Run some quick validation of the given region.
44 Return -1 / 0 / 1 if the access known-invalid, possibly-valid, or known-valid.
47 __mf_heuristic_check (uintptr_t ptr
, uintptr_t ptr_high
)
49 VERBOSE_TRACE ("mf: heuristic check\n");
51 /* XXX: Disable the stack bounding check for libmudflapth. We do
52 actually have enough information to track stack bounds (see
53 __mf_pthread_info in mf-hooks.c), so with a bit of future work,
54 this heuristic can be turned on. */
57 /* The first heuristic is to check stack bounds. This is a
58 transient condition and quick to check. */
59 if (__mf_opts
.heur_stack_bound
)
61 uintptr_t stack_top_guess
= (uintptr_t)__builtin_frame_address(0);
62 #if defined(__i386__) && defined (__linux__)
63 uintptr_t stack_segment_base
= 0xC0000000; /* XXX: Bad assumption. */
65 /* Cause tests to fail. */
66 uintptr_t stack_segment_base
= 0;
69 VERBOSE_TRACE ("mf: stack estimated as %p-%p\n",
70 (void *) stack_top_guess
, (void *) stack_segment_base
);
72 if (ptr_high
<= stack_segment_base
&&
73 ptr
>= stack_top_guess
&&
82 /* The second heuristic is to scan the range of memory regions
83 listed in /proc/self/maps, a special file provided by the Linux
84 kernel. Its results may be cached, and in fact, a GUESS object
85 may as well be recorded for interesting matching sections. */
86 if (__mf_opts
.heur_proc_map
)
88 /* Keep a record of seen records from /proc/self/map. */
89 enum { max_entries
= 500 };
90 struct proc_self_map_entry
95 static struct proc_self_map_entry entry
[max_entries
];
96 static unsigned entry_used
[max_entries
];
98 /* Look for a known proc_self_map entry that may cover this
99 region. If one exists, then this heuristic has already run,
100 and should not be run again. The check should be allowed to
103 unsigned deja_vu
= 0;
104 for (i
=0; i
<max_entries
; i
++)
107 (entry
[i
].low
<= ptr
) &&
108 (entry
[i
].high
>= ptr_high
))
114 /* Time to run the heuristic. Rescan /proc/self/maps; update the
115 entry[] array; XXX: remove expired entries, add new ones.
116 XXX: Consider entries that have grown (e.g., stack). */
122 fp
= fopen ("/proc/self/maps", "r");
125 while (fgets (buf
, sizeof(buf
), fp
))
127 if (sscanf (buf
, "%p-%p %4c", &low
, &high
, flags
) == 3)
129 if ((uintptr_t) low
<= ptr
&&
130 (uintptr_t) high
>= ptr_high
)
132 for (i
=0; i
<max_entries
; i
++)
136 entry
[i
].low
= (uintptr_t) low
;
137 entry
[i
].high
= (uintptr_t) high
;
143 VERBOSE_TRACE ("mf: registering region #%d "
145 i
, (void *) low
, (void *) high
, buf
);
147 __mfu_register ((void *) low
, (size_t) (high
-low
),
149 "/proc/self/maps segment");
151 return 0; /* undecided (tending to cachable) */
161 /* The third heuristic is to approve all accesses between _start (or its
162 equivalent for the given target) and _end, which should include all
163 text and initialized data. */
164 if (__mf_opts
.heur_start_end
)
165 if (ptr
>= (uintptr_t) & ENTRY_POINT
&& ptr_high
<= (uintptr_t) & _end
)
166 return 1; /* uncacheable */
168 return 0; /* unknown */