System Grab Bag

View all man pages from Linux (or from all projects)

Name

socketcall - socket system calls

Library

Standard C library ( libc ", " -lc )

Synopsis

"#include <linux/net.h>" "        /* Definition of " SYS_* " constants */""#include <sys/syscall.h>" "      /* Definition of " SYS_socketcall " */"#include <unistd.h> 
int syscall(SYS_socketcall, int " call ", unsigned long * args );

Note : glibc provides no wrapper for socketcall() necessitating the use of syscall(2).

Description

socketcall() is a common kernel entry point for the socket system calls. call determines which socket function to invoke. args points to a block containing the actual arguments, which are passed through to the appropriate call.

User programs should call the appropriate functions by their usual names. Only standard library implementors and kernel hackers need to know about socketcall()

tab(:); l l. call:Man page T{ SYS_SOCKET T}:T{ socket(2) T} T{ SYS_BIND T}:T{ bind(2) T} T{ SYS_CONNECT T}:T{ connect(2) T} T{ SYS_LISTEN T}:T{ listen(2) T} T{ SYS_ACCEPT T}:T{ accept(2) T} T{ SYS_GETSOCKNAME T}:T{ getsockname(2) T} T{ SYS_GETPEERNAME T}:T{ getpeername(2) T} T{ SYS_SOCKETPAIR T}:T{ socketpair(2) T} T{ SYS_SEND T}:T{ send(2) T} T{ SYS_RECV T}:T{ recv(2) T} T{ SYS_SENDTO T}:T{ sendto(2) T} T{ SYS_RECVFROM T}:T{ recvfrom(2) T} T{ SYS_SHUTDOWN T}:T{ shutdown(2) T} T{ SYS_SETSOCKOPT T}:T{ setsockopt(2) T} T{ SYS_GETSOCKOPT T}:T{ getsockopt(2) T} T{ SYS_SENDMSG T}:T{ sendmsg(2) T} T{ SYS_RECVMSG T}:T{ recvmsg(2) T} T{ SYS_ACCEPT4 T}:T{ accept4(2) T} T{ SYS_RECVMMSG T}:T{ recvmmsg(2) T} T{ SYS_SENDMMSG T}:T{ sendmmsg(2) T}

Versions

On some architectures—for example, x86-64 and ARM—there is no socketcall() system call; instead socket(2), accept(2), bind(2), and so on really are implemented as separate system calls.

Standards

Linux.

On x86-32, socketcall() was historically the only entry point for the sockets API. However, starting in Linux 4.3, direct system calls are provided on x86-32 for the sockets API. This facilitates the creation of seccomp(2) filters that filter sockets system calls (for new user-space binaries that are compiled to use the new entry points) and also provides a (very) small performance improvement.

See Also

  1. accept(2),
  2. bind(2),
  3. connect(2),
  4. getpeername(2),
  5. getsockname(2),
  6. getsockopt(2),
  7. listen(2),
  8. recv(2),
  9. recvfrom(2),
  10. recvmsg(2),
  11. send(2),
  12. sendmsg(2),
  13. sendto(2),
  14. setsockopt(2),
  15. shutdown(2),
  16. socket(2),
  17. socketpair(2)