]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/sys/socket.h
Correct range checking in mallopt/mxfast/tcache [BZ #25194]
[thirdparty/glibc.git] / include / sys / socket.h
CommitLineData
6796bc80 1#ifndef _SYS_SOCKET_H
2064087b 2#include <socket/sys/socket.h>
bdbf022d 3
31341567 4#ifndef _ISOMAC
bdbf022d 5/* Now define the internal interfaces. */
6f9ddfff
AJ
6
7/* Create a new socket of type TYPE in domain DOMAIN, using
8 protocol PROTOCOL. If PROTOCOL is zero, one is chosen automatically.
9 Returns a file descriptor for the new socket, or -1 for errors. */
b2bffca2 10extern int __socket (int __domain, int __type,
0595c984
JM
11 int __protocol);
12libc_hidden_proto (__socket)
f720d3d2 13
36f7b1df
MK
14/* Create two new sockets, of type TYPE in domain DOMAIN and using
15 protocol PROTOCOL, which are connected to each other, and put file
16 descriptors for them in FDS[0] and FDS[1]. If PROTOCOL is zero,
17 one will be chosen automatically. Returns 0 on success, -1 for errors. */
18extern int __socketpair (int __domain, int __type, int __protocol,
b2bffca2 19 int __fds[2]) attribute_hidden;
36f7b1df 20
f720d3d2
UD
21/* Return a socket of any type. The socket can be used in subsequent
22 ioctl calls to talk to the kernel. */
038d1caf 23extern int __opensock (void) attribute_hidden;
f720d3d2 24
3d421b28
AJ
25/* Put the address of the peer connected to socket FD into *ADDR
26 (which is *LEN bytes long), and its actual length into *LEN. */
b2bffca2
UD
27extern int __getpeername (int __fd, __SOCKADDR_ARG __addr,
28 socklen_t *__len) attribute_hidden;
3d421b28 29
8f589a7c 30/* Send N bytes of BUF to socket FD. Returns the number sent or -1. */
a784e502 31extern ssize_t __libc_send (int __fd, const void *__buf, size_t __n,
91d29377 32 int __flags);
a784e502 33extern ssize_t __send (int __fd, const void *__buf, size_t __n, int __flags);
37ba7d66 34libc_hidden_proto (__send)
8f589a7c 35
91d29377
UD
36/* Read N bytes into BUF from socket FD.
37 Returns the number read or -1 for errors. */
38extern ssize_t __libc_recv (int __fd, void *__buf, size_t __n, int __flags);
39
6f9ddfff
AJ
40/* Send N bytes of BUF on socket FD to peer at address ADDR (which is
41 ADDR_LEN bytes long). Returns the number sent, or -1 for errors. */
a784e502 42extern ssize_t __libc_sendto (int __fd, const void *__buf, size_t __n,
6f9ddfff
AJ
43 int __flags, __CONST_SOCKADDR_ARG __addr,
44 socklen_t __addr_len);
45
46/* Read N bytes into BUF through socket FD.
47 If ADDR is not NULL, fill in *ADDR_LEN bytes of it with tha address of
48 the sender, and store the actual size of the address in *ADDR_LEN.
49 Returns the number of bytes read or -1 for errors. */
50extern ssize_t __libc_recvfrom (int __fd, void *__restrict __buf, size_t __n,
51 int __flags, __SOCKADDR_ARG __addr,
52 socklen_t *__restrict __addr_len);
53
8f589a7c
AJ
54/* Open a connection on socket FD to peer at ADDR (which LEN bytes long).
55 For connectionless socket types, just set the default address to send to
56 and the only address from which to accept transmissions.
57 Return 0 on success, -1 for errors. */
91d29377
UD
58extern int __libc_connect (int __fd, __CONST_SOCKADDR_ARG __addr,
59 socklen_t __len);
8f589a7c 60extern int __connect (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len);
03277f8f 61libc_hidden_proto (__connect)
8f589a7c 62
a2274a08
RM
63/* Read N bytes into BUF from socket FD.
64 Returns the number read or -1 for errors.
65
66 This function is a cancellation point and therefore not marked with
67 __THROW. */
0595c984
JM
68extern ssize_t __recv (int __fd, void *__buf, size_t __n, int __flags);
69libc_hidden_proto (__recv)
a2274a08 70
b2bffca2
UD
71/* Send N bytes of BUF on socket FD to peer at address ADDR (which is
72 ADDR_LEN bytes long). Returns the number sent, or -1 for errors. */
a784e502 73extern ssize_t __libc_sendto (int __fd, const void *__buf, size_t __n,
91d29377
UD
74 int __flags, __CONST_SOCKADDR_ARG __addr,
75 socklen_t __addr_len);
a784e502 76extern ssize_t __sendto (int __fd, const void *__buf, size_t __n,
b2bffca2
UD
77 int __flags, __CONST_SOCKADDR_ARG __addr,
78 socklen_t __addr_len) attribute_hidden;
79
80/* Read N bytes into BUF through socket FD.
81 If ADDR is not NULL, fill in *ADDR_LEN bytes of it with tha address of
82 the sender, and store the actual size of the address in *ADDR_LEN.
83 Returns the number of bytes read or -1 for errors. */
84extern ssize_t __recvfrom (int __fd, void *__restrict __buf, size_t __n,
85 int __flags, __SOCKADDR_ARG __addr,
86 socklen_t *__restrict __addr_len) attribute_hidden;
87
88/* Send a message described MESSAGE on socket FD.
89 Returns the number of bytes sent, or -1 for errors. */
a784e502 90extern ssize_t __libc_sendmsg (int __fd, const struct msghdr *__message,
91d29377 91 int __flags);
a784e502 92extern ssize_t __sendmsg (int __fd, const struct msghdr *__message,
b2bffca2
UD
93 int __flags) attribute_hidden;
94
7f296942 95#ifdef __USE_GNU
123be9de
TS
96extern int __sendmmsg (int __fd, struct mmsghdr *__vmessages,
97 unsigned int __vlen, int __flags);
98libc_hidden_proto (__sendmmsg)
7f296942 99#endif
123be9de 100
b2bffca2
UD
101/* Receive a message as described by MESSAGE from socket FD.
102 Returns the number of bytes read or -1 for errors. */
91d29377
UD
103extern ssize_t __libc_recvmsg (int __fd, struct msghdr *__message,
104 int __flags);
b2bffca2
UD
105extern ssize_t __recvmsg (int __fd, struct msghdr *__message,
106 int __flags) attribute_hidden;
107
108/* Set socket FD's option OPTNAME at protocol level LEVEL
109 to *OPTVAL (which is OPTLEN bytes long).
110 Returns 0 on success, -1 for errors. */
111extern int __setsockopt (int __fd, int __level, int __optname,
a784e502 112 const void *__optval,
b2bffca2
UD
113 socklen_t __optlen) attribute_hidden;
114
489aa29d
UD
115/* Put the current value for socket FD's option OPTNAME at protocol level LEVEL
116 into OPTVAL (which is *OPTLEN bytes long), and set *OPTLEN to the value's
117 actual length. Returns 0 on success, -1 for errors. */
118extern int __getsockopt (int __fd, int __level, int __optname,
119 void *__restrict __optval,
120 socklen_t *__restrict __optlen) attribute_hidden;
121
b2bffca2
UD
122/* Put the local address of FD into *ADDR and its length in *LEN. */
123extern int __getsockname (int __fd, __SOCKADDR_ARG __addr,
124 socklen_t *__restrict __len) attribute_hidden;
125
126/* Give the socket FD the local address ADDR (which is LEN bytes long). */
127extern int __bind (int __fd, __CONST_SOCKADDR_ARG __addr,
128 socklen_t __len) attribute_hidden;
129
130/* Prepare to accept connections on socket FD.
131 N connection requests will be queued before further requests are refused.
132 Returns 0 on success, -1 for errors. */
133extern int __listen (int __fd, int __n) attribute_hidden;
134
91d29377
UD
135/* Await a connection on socket FD.
136 When a connection arrives, open a new socket to communicate with it,
137 set *ADDR (which is *ADDR_LEN bytes long) to the address of the connecting
138 peer and *ADDR_LEN to the address's actual length, and return the
139 new socket's descriptor, or -1 for errors. */
140extern int __libc_accept (int __fd, __SOCKADDR_ARG __addr,
141 socklen_t *__restrict __addr_len)
789bd351 142 __THROW attribute_hidden;
a4baf360 143libc_hidden_proto (accept)
eb43375f
TS
144extern int __libc_accept4 (int __fd, __SOCKADDR_ARG __addr,
145 socklen_t *__restrict __addr_len, int __flags)
789bd351 146 __THROW attribute_hidden;
91d29377 147
3f66a0cf
UD
148/* Return the length of a `sockaddr' structure. */
149#ifdef _HAVE_SA_LEN
150# define SA_LEN(_x) (_x)->sa_len
151#else
08f60074 152extern int __libc_sa_len (sa_family_t __af);
03277f8f
AS
153libc_hidden_proto (__libc_sa_len)
154# define SA_LEN(_x) __libc_sa_len((_x)->sa_family)
6b87a564
UD
155#endif
156
e4452a2d
JM
157libc_hidden_proto (__cmsg_nxthdr)
158
6796bc80 159#endif
31341567 160#endif