diff options
author | Yury Gribov <y.gribov@samsung.com> | 2015-04-17 07:51:02 +0000 |
---|---|---|
committer | Yury Gribov <ygribov@gcc.gnu.org> | 2015-04-17 07:51:02 +0000 |
commit | 18af8d16cf71b75081f20184d34206ff4ebce025 (patch) | |
tree | 09b053c21952ec3a007be7fb313cc8b3d5295944 /gcc/asan.c | |
parent | d7cb230a931ffc5e4356bbffdb05998162df900c (diff) | |
download | gcc-18af8d16cf71b75081f20184d34206ff4ebce025.zip gcc-18af8d16cf71b75081f20184d34206ff4ebce025.tar.gz gcc-18af8d16cf71b75081f20184d34206ff4ebce025.tar.bz2 |
asan.c (set_sanitized_sections): New function.
2015-04-17 Yury Gribov <y.gribov@samsung.com>
gcc/
* asan.c (set_sanitized_sections): New function.
(section_sanitized_p): Ditto.
(asan_protect_global): Optionally sanitize user-defined
sections.
* asan.h (set_sanitized_sections): Declare new function.
* common.opt (fsanitize-sections): New option.
* doc/invoke.texi (-fsanitize-sections): Document new option.
* opts-global.c (handle_common_deferred_options): Handle new
option.
gcc/testsuite/
* c-c++-common/asan/user-section-1.c: New test.
From-SVN: r222168
Diffstat (limited to 'gcc/asan.c')
-rw-r--r-- | gcc/asan.c | 31 |
1 files changed, 30 insertions, 1 deletions
@@ -272,6 +272,7 @@ along with GCC; see the file COPYING3. If not see static unsigned HOST_WIDE_INT asan_shadow_offset_value; static bool asan_shadow_offset_computed; +static const char *sanitized_sections; /* Sets shadow offset to value in string VAL. */ @@ -294,6 +295,33 @@ set_asan_shadow_offset (const char *val) return true; } +/* Set list of user-defined sections that need to be sanitized. */ + +void +set_sanitized_sections (const char *secs) +{ + sanitized_sections = secs; +} + +/* Checks whether section SEC should be sanitized. */ + +static bool +section_sanitized_p (const char *sec) +{ + if (!sanitized_sections) + return false; + size_t len = strlen (sec); + const char *p = sanitized_sections; + while ((p = strstr (p, sec))) + { + if ((p == sanitized_sections || p[-1] == ',') + && (p[len] == 0 || p[len] == ',')) + return true; + ++p; + } + return false; +} + /* Returns Asan shadow offset. */ static unsigned HOST_WIDE_INT @@ -1374,7 +1402,8 @@ asan_protect_global (tree decl) to be an array of such vars, putting padding in there breaks this assumption. */ || (DECL_SECTION_NAME (decl) != NULL - && !symtab_node::get (decl)->implicit_section) + && !symtab_node::get (decl)->implicit_section + && !section_sanitized_p (DECL_SECTION_NAME (decl))) || DECL_SIZE (decl) == 0 || ASAN_RED_ZONE_SIZE * BITS_PER_UNIT > MAX_OFILE_ALIGNMENT || !valid_constant_size_p (DECL_SIZE_UNIT (decl)) |