public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew Pinski <pinskia@gmail.com>
To: Marek Polacek <polacek@redhat.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH] opts: SANITIZE_ADDRESS wrongly cleared [PR108543]
Date: Wed, 25 Jan 2023 17:49:20 -0800	[thread overview]
Message-ID: <CA+=Sn1kmJTDciNqTp+Uf7jkue211KcmXRJhioTJ7Y3jUbsEufw@mail.gmail.com> (raw)
In-Reply-To: <20230125232545.312399-1-polacek@redhat.com>

On Wed, Jan 25, 2023 at 3:26 PM Marek Polacek via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> Here we crash on a null fndecl ultimately because we haven't defined
> the built-ins described in sanitizer.def.  So
> builtin_decl_explicit (BUILT_IN_ASAN_POINTER_SUBTRACT);
> returns NULL_TREE, causing an ICE later.
>
> DEF_SANITIZER_BUILTIN only actually defines the built-ins when flag_sanitize
> has SANITIZE_ADDRESS, or some of the other SANITIZE_*, but it doesn't check
> SANITIZE_KERNEL_ADDRESS or SANITIZE_USER_ADDRESS.  Unfortunately, with
> -fsanitize=address -fno-sanitize=kernel-address
> or
> -fsanitize=kernel-address -fno-sanitize=address
> SANITIZE_ADDRESS ends up being unset from flag_sanitize even though
> _USER/_KERNEL are set.  That's because -fsanitize=address means
> SANITIZE_ADDRESS | SANITIZE_USER_ADDRESS and -fsanitize=kernel-address
> is SANITIZE_ADDRESS | SANITIZE_KERNEL_ADDRESS but parse_sanitizer_options
> does
>   flags &= ~sanitizer_opts[i].flag;
> so the subsequent -fno- unsets SANITIZE_ADDRESS.  Then no sanitizer
> built-ins are actually defined.
>
> I'm not sure why SANITIZE_ADDRESS isn't just SANITIZE_USER_ADDRESS |
> SANITIZE_KERNEL_ADDRESS, I don't think we need 3 bits.

I am trying to follow the code but I can't tell if -fsanitize=address
-fno-sanitize=address still will work?
It would make sense to add a testcase for that case too.

I suspect it does not work though, because it would still leave
SANITIZE_ADDRESS enabled ...

Thanks,
Andrew

>
> Bootstrapped/regtested on x86_64-pc-linux-gnu, ok for trunk/12/11?
>
>         PR middle-end/108543
>
> gcc/ChangeLog:
>
>         * opts.cc (parse_sanitizer_options): Don't clear SANITIZE_ADDRESS if it
>         was previously set.
>
> gcc/testsuite/ChangeLog:
>
>         * c-c++-common/asan/pointer-subtract-5.c: New test.
>         * c-c++-common/asan/pointer-subtract-6.c: New test.
>         * c-c++-common/asan/pointer-subtract-7.c: New test.
>         * c-c++-common/asan/pointer-subtract-8.c: New test.
> ---
>  gcc/opts.cc                                       |  5 ++++-
>  .../c-c++-common/asan/pointer-subtract-5.c        | 15 +++++++++++++++
>  .../c-c++-common/asan/pointer-subtract-6.c        | 15 +++++++++++++++
>  .../c-c++-common/asan/pointer-subtract-7.c        | 15 +++++++++++++++
>  .../c-c++-common/asan/pointer-subtract-8.c        | 15 +++++++++++++++
>  5 files changed, 64 insertions(+), 1 deletion(-)
>  create mode 100644 gcc/testsuite/c-c++-common/asan/pointer-subtract-5.c
>  create mode 100644 gcc/testsuite/c-c++-common/asan/pointer-subtract-6.c
>  create mode 100644 gcc/testsuite/c-c++-common/asan/pointer-subtract-7.c
>  create mode 100644 gcc/testsuite/c-c++-common/asan/pointer-subtract-8.c
>
> diff --git a/gcc/opts.cc b/gcc/opts.cc
> index 9ba47d7deaa..c042b03bd9f 100644
> --- a/gcc/opts.cc
> +++ b/gcc/opts.cc
> @@ -2246,7 +2246,10 @@ parse_sanitizer_options (const char *p, location_t loc, int scode,
>                   flags |= sanitizer_opts[i].flag;
>               }
>             else
> -             flags &= ~sanitizer_opts[i].flag;
> +             /* Don't clear SANITIZE_ADDRESS if it was previously set;
> +                -fsanitize=address -fno-sanitize=kernel-address should
> +                leave SANITIZE_ADDRESS set.  */
> +             flags &= (~sanitizer_opts[i].flag | SANITIZE_ADDRESS);
>             found = true;
>             break;
>           }
> diff --git a/gcc/testsuite/c-c++-common/asan/pointer-subtract-5.c b/gcc/testsuite/c-c++-common/asan/pointer-subtract-5.c
> new file mode 100644
> index 00000000000..867eda0e61e
> --- /dev/null
> +++ b/gcc/testsuite/c-c++-common/asan/pointer-subtract-5.c
> @@ -0,0 +1,15 @@
> +/* PR middle-end/108543 */
> +/* { dg-do compile  } */
> +/* { dg-options "-fsanitize=address -fno-sanitize=kernel-address -fsanitize=pointer-subtract" } */
> +
> +struct S {
> +  long _M_p;
> +};
> +
> +typedef struct S S;
> +
> +__PTRDIFF_TYPE__
> +f (S __x, S __y)
> +{
> +  return &__x._M_p - &__y._M_p;
> +}
> diff --git a/gcc/testsuite/c-c++-common/asan/pointer-subtract-6.c b/gcc/testsuite/c-c++-common/asan/pointer-subtract-6.c
> new file mode 100644
> index 00000000000..785b90b3d98
> --- /dev/null
> +++ b/gcc/testsuite/c-c++-common/asan/pointer-subtract-6.c
> @@ -0,0 +1,15 @@
> +/* PR middle-end/108543 */
> +/* { dg-do compile  } */
> +/* { dg-options "-fsanitize=kernel-address -fno-sanitize=address -fsanitize=pointer-subtract" } */
> +
> +struct S {
> +  long _M_p;
> +};
> +
> +typedef struct S S;
> +
> +__PTRDIFF_TYPE__
> +f (S __x, S __y)
> +{
> +  return &__x._M_p - &__y._M_p;
> +}
> diff --git a/gcc/testsuite/c-c++-common/asan/pointer-subtract-7.c b/gcc/testsuite/c-c++-common/asan/pointer-subtract-7.c
> new file mode 100644
> index 00000000000..11b63401b8c
> --- /dev/null
> +++ b/gcc/testsuite/c-c++-common/asan/pointer-subtract-7.c
> @@ -0,0 +1,15 @@
> +/* PR middle-end/108543 */
> +/* { dg-do compile  } */
> +/* { dg-options "-fno-sanitize=kernel-address -fsanitize=address -fsanitize=pointer-subtract" } */
> +
> +struct S {
> +  long _M_p;
> +};
> +
> +typedef struct S S;
> +
> +__PTRDIFF_TYPE__
> +f (S __x, S __y)
> +{
> +  return &__x._M_p - &__y._M_p;
> +}
> diff --git a/gcc/testsuite/c-c++-common/asan/pointer-subtract-8.c b/gcc/testsuite/c-c++-common/asan/pointer-subtract-8.c
> new file mode 100644
> index 00000000000..ac2b9c3c1d9
> --- /dev/null
> +++ b/gcc/testsuite/c-c++-common/asan/pointer-subtract-8.c
> @@ -0,0 +1,15 @@
> +/* PR middle-end/108543 */
> +/* { dg-do compile  } */
> +/* { dg-options "-fno-sanitize=address -fsanitize=kernel-address -fsanitize=pointer-subtract" } */
> +
> +struct S {
> +  long _M_p;
> +};
> +
> +typedef struct S S;
> +
> +__PTRDIFF_TYPE__
> +f (S __x, S __y)
> +{
> +  return &__x._M_p - &__y._M_p;
> +}
>
> base-commit: 9fb9da3d38513d320bfea72050f7a59688595e0b
> --
> 2.39.1
>

  reply	other threads:[~2023-01-26  1:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-25 23:25 Marek Polacek
2023-01-26  1:49 ` Andrew Pinski [this message]
2023-01-26 16:40   ` [PATCH v2] " Marek Polacek
2023-01-26 16:50     ` Jakub Jelinek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CA+=Sn1kmJTDciNqTp+Uf7jkue211KcmXRJhioTJ7Y3jUbsEufw@mail.gmail.com' \
    --to=pinskia@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=polacek@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).