Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / unix / sysv / linux / sendmmsg.c
blob06744192061f4023e17491a675abccc1911f3dcc
1 /* Copyright (C) 2011 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
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 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <sys/socket.h>
22 #include <sysdep-cancel.h>
23 #include <sys/syscall.h>
24 #include <kernel-features.h>
27 #ifdef __NR_sendmmsg
28 int
29 sendmmsg (int fd, struct mmsghdr *vmessages, unsigned int vlen, int flags)
31 if (SINGLE_THREAD_P)
32 return INLINE_SYSCALL (sendmmsg, 4, fd, vmessages, vlen, flags);
34 int oldtype = LIBC_CANCEL_ASYNC ();
36 int result = INLINE_SYSCALL (sendmmsg, 4, fd, vmessages, vlen, flags);
38 LIBC_CANCEL_RESET (oldtype);
40 return result;
42 #elif defined __NR_socketcall
43 # ifndef __ASSUME_SENDMMSG
44 extern int __internal_sendmmsg (int fd, struct mmsghdr *vmessages,
45 unsigned int vlen, int flags)
46 attribute_hidden;
48 static int have_sendmmsg;
50 int
51 sendmmsg (int fd, struct mmsghdr *vmessages, unsigned int vlen, int flags)
53 if (__builtin_expect (have_sendmmsg >= 0, 1))
55 int ret = __internal_sendmmsg (fd, vmessages, vlen, flags);
56 /* The kernel returns -EINVAL for unknown socket operations.
57 We need to convert that error to an ENOSYS error. */
58 if (__builtin_expect (ret < 0, 0)
59 && have_sendmmsg == 0
60 && errno == EINVAL)
62 /* Try another call, this time with an invalid file
63 descriptor and all other parameters cleared. This call
64 will not cause any harm and it will return
65 immediately. */
66 ret = __internal_sendmmsg (-1, 0, 0, 0);
67 if (errno == EINVAL)
69 have_sendmmsg = -1;
70 __set_errno (ENOSYS);
72 else
74 have_sendmmsg = 1;
75 __set_errno (EINVAL);
77 return -1;
79 return ret;
81 __set_errno (ENOSYS);
82 return -1;
84 # else
85 /* When __ASSUME_SENDMMSG sendmmsg is defined in internal_sendmmsg.S. */
86 # endif
87 #else
88 int
89 sendmmsg (int fd, struct mmsghdr *vmessages, unsigned int vlen, int flags)
91 __set_errno (ENOSYS);
92 return -1;
94 stub_warning (sendmmsg)
95 #endif