x86: In ld.so, diagnose missing APX support in APX-only builds
[glibc.git] / sysdeps / unix / sysv / linux / recvmsg.c
blob034526eb3de79ab95f3ca8898fd5402a0bfacb7e
1 /* Linux recvmsg syscall wrapper.
2 Copyright (C) 2016-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <sys/socket.h>
20 #include <sysdep-cancel.h>
21 #include <socketcall.h>
23 static int
24 __recvmsg_syscall (int fd, struct msghdr *msg, int flags)
26 #ifdef __ASSUME_RECVMSG_SYSCALL
27 return SYSCALL_CANCEL (recvmsg, fd, msg, flags);
28 #else
29 return SOCKETCALL_CANCEL (recvmsg, fd, msg, flags);
30 #endif
33 ssize_t
34 __libc_recvmsg64 (int fd, struct msghdr *msg, int flags)
36 ssize_t r;
37 #if __TIMESIZE != 64
38 socklen_t orig_controllen = msg != NULL ? msg->msg_controllen : 0;
39 #endif
41 r = __recvmsg_syscall (fd, msg, flags);
43 #if __TIMESIZE != 64
44 if (r >= 0 && orig_controllen != 0)
45 __convert_scm_timestamps (msg, orig_controllen);
46 #endif
48 return r;
50 #if __TIMESIZE != 64
51 weak_alias (__libc_recvmsg64, __recvmsg64)
53 ssize_t
54 __libc_recvmsg (int fd, struct msghdr *msg, int flags)
56 return __recvmsg_syscall (fd, msg, flags);
58 #endif
59 weak_alias (__libc_recvmsg, recvmsg)
60 weak_alias (__libc_recvmsg, __recvmsg)