public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: "H.J. Lu" <hjl.tools@gmail.com>
To: Binutils <binutils@sourceware.org>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>, GDB <gdb-patches@sourceware.org>
Subject: Re: [PATCH] Use dlsym to check if libdl is needed for plugin
Date: Mon, 02 Apr 2018 11:55:00 -0000	[thread overview]
Message-ID: <CAMe9rOomb73gqHESyg7SFOHj+euP5R-aRC71v-_EQSca=H6djg@mail.gmail.com> (raw)
In-Reply-To: <20171019002520.GA4932@gmail.com>

On Wed, Oct 18, 2017 at 5:25 PM, H.J. Lu <hjl.tools@gmail.com> wrote:
> config/plugins.m4 has
>
>  if test "$plugins" = "yes"; then
>     AC_SEARCH_LIBS([dlopen], [dl])
>   fi
>
> Plugin uses dlsym, but libasan.so only intercepts dlopen, not dlsym:
>
> [hjl@gnu-tools-1 binutils-text]$ nm -D /lib64/libasan.so.4| grep " dl"
> 0000000000038580 W dlclose
>                  U dl_iterate_phdr
> 000000000004dc50 W dlopen
>                  U dlsym
>                  U dlvsym
> [hjl@gnu-tools-1 binutils-text]$
>
> Testing dlopen for libdl leads to false negative when -fsanitize=address
> is used.  It results in link failure:
>
> ../bfd/.libs/libbfd.a(plugin.o): undefined reference to symbol 'dlsym@@GLIBC_2.16'
>
> dlsym should be used to check if libdl is needed for plugin.
>
> OK for master?
>
> H.J.
> ---
> bfd/
>
>         PR gas/22318
>         * configure: Regenerated.
>
> binutils/
>
>         PR gas/22318
>         * configure: Regenerated.
>
> config/
>
>         * plugins.m4 (AC_PLUGINS): Use dlsym to check if libdl is needed.
>
> gas/
>
>         PR gas/22318
>         * configure: Regenerated.
>
> gprof/
>
>         PR gas/22318
>         * configure: Regenerated.
>
> ld/
>
>         PR gas/22318
>         * configure: Regenerated.


> diff --git a/config/plugins.m4 b/config/plugins.m4
> index 513c690e1b..c6acebc1ca 100644
> --- a/config/plugins.m4
> +++ b/config/plugins.m4
> @@ -16,6 +16,6 @@ AC_DEFUN([AC_PLUGINS],
>      [plugins=$maybe_plugins]
>    )
>    if test "$plugins" = "yes"; then
> -    AC_SEARCH_LIBS([dlopen], [dl])
> +    AC_SEARCH_LIBS([dlsym], [dl])
>    fi
>  ])

If there are no objections, I will check into binutils master branch this week.



-- 
H.J.

  reply	other threads:[~2018-04-02 11:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-19  0:25 H.J. Lu
2018-04-02 11:55 ` H.J. Lu [this message]
2018-04-05 17:08 ` DJ Delorie

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='CAMe9rOomb73gqHESyg7SFOHj+euP5R-aRC71v-_EQSca=H6djg@mail.gmail.com' \
    --to=hjl.tools@gmail.com \
    --cc=binutils@sourceware.org \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=gdb-patches@sourceware.org \
    /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).