mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Linux: Assume and consolidate bind wire-up syscall
And disable if kernel does not support it. Checked on x86_64-linux-gnu and i686-linux-gnu. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
committed by
Adhemerval Zanella
parent
a33919698b
commit
215bf99347
@ -15,19 +15,14 @@
|
|||||||
License along with the GNU C Library; if not, see
|
License along with the GNU C Library; if not, see
|
||||||
<https://www.gnu.org/licenses/>. */
|
<https://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
#include <errno.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
||||||
#include <socketcall.h>
|
#include <socketcall.h>
|
||||||
#include <kernel-features.h>
|
|
||||||
#include <sys/syscall.h>
|
|
||||||
|
|
||||||
int
|
int
|
||||||
__bind (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len)
|
__bind (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len)
|
||||||
{
|
{
|
||||||
#ifdef __ASSUME_BIND_SYSCALL
|
#ifdef __ASSUME_BIND_SYSCALL
|
||||||
return INLINE_SYSCALL (bind, 3, fd, addr.__sockaddr__, len);
|
return INLINE_SYSCALL_CALL (bind, fd, addr.__sockaddr__, len);
|
||||||
#else
|
#else
|
||||||
return SOCKETCALL (bind, fd, addr.__sockaddr__, len, 0, 0, 0);
|
return SOCKETCALL (bind, fd, addr.__sockaddr__, len, 0, 0, 0);
|
||||||
#endif
|
#endif
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
# Socket APIs
|
# Socket APIs
|
||||||
socket - socket i:iii __socket socket
|
socket - socket i:iii __socket socket
|
||||||
socketpair - socketpair i:iiif __socketpair socketpair
|
socketpair - socketpair i:iiif __socketpair socketpair
|
||||||
bind - bind i:ipi __bind bind
|
|
||||||
listen - listen i:ii __listen listen
|
listen - listen i:ii __listen listen
|
||||||
getsockname - getsockname i:ipp __getsockname getsockname
|
getsockname - getsockname i:ipp __getsockname getsockname
|
||||||
getpeername - getpeername i:ipp __getpeername getpeername
|
getpeername - getpeername i:ipp __getpeername getpeername
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
#if __LINUX_KERNEL_VERSION >= 0x040300
|
#if __LINUX_KERNEL_VERSION >= 0x040300
|
||||||
# define __ASSUME_SOCKET_SYSCALL 1
|
# define __ASSUME_SOCKET_SYSCALL 1
|
||||||
# define __ASSUME_SOCKETPAIR_SYSCALL 1
|
# define __ASSUME_SOCKETPAIR_SYSCALL 1
|
||||||
# define __ASSUME_BIND_SYSCALL 1
|
|
||||||
# define __ASSUME_LISTEN_SYSCALL 1
|
# define __ASSUME_LISTEN_SYSCALL 1
|
||||||
# define __ASSUME_GETSOCKNAME_SYSCALL 1
|
# define __ASSUME_GETSOCKNAME_SYSCALL 1
|
||||||
# define __ASSUME_GETPEERNAME_SYSCALL 1
|
# define __ASSUME_GETPEERNAME_SYSCALL 1
|
||||||
@ -41,6 +40,7 @@
|
|||||||
# undef __ASSUME_SENDTO_SYSCALL
|
# undef __ASSUME_SENDTO_SYSCALL
|
||||||
# undef __ASSUME_GETSOCKOPT_SYSCALL
|
# undef __ASSUME_GETSOCKOPT_SYSCALL
|
||||||
# undef __ASSUME_SETSOCKOPT_SYSCALL
|
# undef __ASSUME_SETSOCKOPT_SYSCALL
|
||||||
|
# undef __ASSUME_BIND_SYSCALL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* i686 only supports ipc syscall before 5.1. */
|
/* i686 only supports ipc syscall before 5.1. */
|
||||||
|
@ -79,6 +79,7 @@
|
|||||||
#define __ASSUME_SENDMMSG_SYSCALL 1
|
#define __ASSUME_SENDMMSG_SYSCALL 1
|
||||||
#define __ASSUME_GETSOCKOPT_SYSCALL 1
|
#define __ASSUME_GETSOCKOPT_SYSCALL 1
|
||||||
#define __ASSUME_SETSOCKOPT_SYSCALL 1
|
#define __ASSUME_SETSOCKOPT_SYSCALL 1
|
||||||
|
#define __ASSUME_BIND_SYSCALL 1
|
||||||
|
|
||||||
/* Support for SysV IPC through wired syscalls. All supported architectures
|
/* Support for SysV IPC through wired syscalls. All supported architectures
|
||||||
either support ipc syscall and/or all the ipc correspondent syscalls. */
|
either support ipc syscall and/or all the ipc correspondent syscalls. */
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
#if __LINUX_KERNEL_VERSION >= 0x040300
|
#if __LINUX_KERNEL_VERSION >= 0x040300
|
||||||
# define __ASSUME_SOCKET_SYSCALL 1
|
# define __ASSUME_SOCKET_SYSCALL 1
|
||||||
# define __ASSUME_SOCKETPAIR_SYSCALL 1
|
# define __ASSUME_SOCKETPAIR_SYSCALL 1
|
||||||
# define __ASSUME_BIND_SYSCALL 1
|
|
||||||
# define __ASSUME_LISTEN_SYSCALL 1
|
# define __ASSUME_LISTEN_SYSCALL 1
|
||||||
# define __ASSUME_GETSOCKNAME_SYSCALL 1
|
# define __ASSUME_GETSOCKNAME_SYSCALL 1
|
||||||
# define __ASSUME_GETPEERNAME_SYSCALL 1
|
# define __ASSUME_GETPEERNAME_SYSCALL 1
|
||||||
@ -43,6 +42,7 @@
|
|||||||
# undef __ASSUME_SENDTO_SYSCALL
|
# undef __ASSUME_SENDTO_SYSCALL
|
||||||
# undef __ASSUME_GETSOCKOPT_SYSCALL
|
# undef __ASSUME_GETSOCKOPT_SYSCALL
|
||||||
# undef __ASSUME_SETSOCKOPT_SYSCALL
|
# undef __ASSUME_SETSOCKOPT_SYSCALL
|
||||||
|
# undef __ASSUME_BIND_SYSCALL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* No support for PI futexes or robust mutexes before 3.10 for m68k. */
|
/* No support for PI futexes or robust mutexes before 3.10 for m68k. */
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
/* All supported kernel versions for MicroBlaze have these syscalls. */
|
/* All supported kernel versions for MicroBlaze have these syscalls. */
|
||||||
#define __ASSUME_SOCKET_SYSCALL 1
|
#define __ASSUME_SOCKET_SYSCALL 1
|
||||||
#define __ASSUME_BIND_SYSCALL 1
|
|
||||||
#define __ASSUME_CONNECT_SYSCALL 1
|
#define __ASSUME_CONNECT_SYSCALL 1
|
||||||
#define __ASSUME_LISTEN_SYSCALL 1
|
#define __ASSUME_LISTEN_SYSCALL 1
|
||||||
#define __ASSUME_GETSOCKNAME_SYSCALL 1
|
#define __ASSUME_GETSOCKNAME_SYSCALL 1
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
/* New syscalls added for PowerPC in 2.6.37. */
|
/* New syscalls added for PowerPC in 2.6.37. */
|
||||||
#define __ASSUME_SOCKET_SYSCALL 1
|
#define __ASSUME_SOCKET_SYSCALL 1
|
||||||
#define __ASSUME_BIND_SYSCALL 1
|
|
||||||
#define __ASSUME_CONNECT_SYSCALL 1
|
#define __ASSUME_CONNECT_SYSCALL 1
|
||||||
#define __ASSUME_LISTEN_SYSCALL 1
|
#define __ASSUME_LISTEN_SYSCALL 1
|
||||||
#define __ASSUME_GETSOCKNAME_SYSCALL 1
|
#define __ASSUME_GETSOCKNAME_SYSCALL 1
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
#if __LINUX_KERNEL_VERSION >= 0x040300
|
#if __LINUX_KERNEL_VERSION >= 0x040300
|
||||||
# define __ASSUME_SOCKET_SYSCALL 1
|
# define __ASSUME_SOCKET_SYSCALL 1
|
||||||
# define __ASSUME_SOCKETPAIR_SYSCALL 1
|
# define __ASSUME_SOCKETPAIR_SYSCALL 1
|
||||||
# define __ASSUME_BIND_SYSCALL 1
|
|
||||||
# define __ASSUME_LISTEN_SYSCALL 1
|
# define __ASSUME_LISTEN_SYSCALL 1
|
||||||
# define __ASSUME_GETSOCKNAME_SYSCALL 1
|
# define __ASSUME_GETSOCKNAME_SYSCALL 1
|
||||||
# define __ASSUME_GETPEERNAME_SYSCALL 1
|
# define __ASSUME_GETPEERNAME_SYSCALL 1
|
||||||
@ -43,6 +42,7 @@
|
|||||||
# undef __ASSUME_SENDTO_SYSCALL
|
# undef __ASSUME_SENDTO_SYSCALL
|
||||||
# undef __ASSUME_GETSOCKOPT_SYSCALL
|
# undef __ASSUME_GETSOCKOPT_SYSCALL
|
||||||
# undef __ASSUME_SETSOCKOPT_SYSCALL
|
# undef __ASSUME_SETSOCKOPT_SYSCALL
|
||||||
|
# undef __ASSUME_BIND_SYSCALL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* s390 only supports ipc syscall before 5.1. */
|
/* s390 only supports ipc syscall before 5.1. */
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
/* These syscalls were added for SH in 2.6.37. */
|
/* These syscalls were added for SH in 2.6.37. */
|
||||||
#define __ASSUME_SOCKET_SYSCALL 1
|
#define __ASSUME_SOCKET_SYSCALL 1
|
||||||
#define __ASSUME_BIND_SYSCALL 1
|
|
||||||
#define __ASSUME_CONNECT_SYSCALL 1
|
#define __ASSUME_CONNECT_SYSCALL 1
|
||||||
#define __ASSUME_LISTEN_SYSCALL 1
|
#define __ASSUME_LISTEN_SYSCALL 1
|
||||||
#define __ASSUME_GETSOCKNAME_SYSCALL 1
|
#define __ASSUME_GETSOCKNAME_SYSCALL 1
|
||||||
|
@ -48,10 +48,13 @@
|
|||||||
|
|
||||||
/* These syscalls were added for both 32-bit and 64-bit in 4.4. */
|
/* These syscalls were added for both 32-bit and 64-bit in 4.4. */
|
||||||
#if __LINUX_KERNEL_VERSION >= 0x040400
|
#if __LINUX_KERNEL_VERSION >= 0x040400
|
||||||
# define __ASSUME_BIND_SYSCALL 1
|
|
||||||
# define __ASSUME_LISTEN_SYSCALL 1
|
# define __ASSUME_LISTEN_SYSCALL 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if __LINUX_KERNEL_VERSION < 0x040400
|
||||||
|
# undef __ASSUME_BIND_SYSCALL
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __arch64__
|
#ifdef __arch64__
|
||||||
/* sparc64 defines __NR_pause, however it is not supported (ENOSYS).
|
/* sparc64 defines __NR_pause, however it is not supported (ENOSYS).
|
||||||
Undefine so pause.c can use a correct alternative. */
|
Undefine so pause.c can use a correct alternative. */
|
||||||
|
Reference in New Issue
Block a user