This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug network/17733] Resolver bind, getsockname namespace


https://sourceware.org/bugzilla/show_bug.cgi?id=17733

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  935ab8179287f3b7aefdbe3829110d369be1a5c8 (commit)
      from  cc8623f196cd5d1c82573b34cb3a6a56f712790a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=935ab8179287f3b7aefdbe3829110d369be1a5c8

commit 935ab8179287f3b7aefdbe3829110d369be1a5c8
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Dec 22 12:46:27 2014 +0000

    Fix resolver bind, getsockname namespace (bug 17733).

    On Linux architectures using socketcall, the resolver ends up bringing
    in strong symbols for bind and getsockname, which are not in
    POSIX.1-1996.  This causes linknamespace test failures:

    FAIL: conform/POSIX/pthread.h/linknamespace
    FAIL: conform/POSIX/sched.h/linknamespace
    FAIL: conform/POSIX/time.h/linknamespace

    These functions are defined as strong symbols with __bind and
    __getsockname as weak aliases.  This patch switches this to the other
    way round by removing the NO_WEAK_ALIAS definitions and so letting the
    default case in socket.S act; I see no reason for the existing
    arrangements.

    Tested for x86 (testsuite, and that disassembly of installed shared
    libraries is unchanged by the patch).

        [BZ #17733]
        * sysdeps/unix/sysv/linux/bind.S (NO_WEAK_ALIAS): Do not define.
        (__bind): Do not define as weak alias.
        * sysdeps/unix/sysv/linux/getsockname.S (NO_WEAK_ALIAS): Do not
        define.
        (__getsockname): Do not define as weak alias.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                             |    9 +++++++++
 NEWS                                  |    2 +-
 sysdeps/unix/sysv/linux/bind.S        |    2 --
 sysdeps/unix/sysv/linux/getsockname.S |    2 --
 4 files changed, 10 insertions(+), 5 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]