blob: bf18473de85276692191cc07c6b9ef0e536a7e30 [file] [log] [blame]
Keith Burns (alagalah)b327c2b2017-10-09 08:52:59 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef included_vcom_glibc_socket_h
17#define included_vcom_glibc_socket_h
18
19#include <sys/types.h>
20#include <sys/socket.h>
21#include <sys/select.h>
22#include <arpa/inet.h>
23#include <fcntl.h>
24
25#include <sys/epoll.h>
shrinivasan ganapathy1d359632017-10-15 15:46:09 -070026
27#include <signal.h>
Keith Burns (alagalah)b327c2b2017-10-09 08:52:59 -070028#include <poll.h>
29
30/*
31 *
32 * Generic glibc fd api
33 *
34 */
35/*
36 * glibc APIs from <unistd.h>
37 */
38
39/* Close the file descriptor FD.
40
41 This function is a cancellation point and therefore not marked with
42 __THROW. */
43extern int close (int __fd);
44
45/* Read NBYTES into BUF from FD. Return the
46 number read, -1 for errors or 0 for EOF.
47
48 This function is a cancellation point and therefore not marked with
49 __THROW. */
50extern ssize_t __wur read (int __fd, void *__buf, size_t __nbytes);
51
52/* Write N bytes of BUF to FD. Return the number written, or -1.
53
54 This function is a cancellation point and therefore not marked with
55 __THROW. */
56extern ssize_t __wur write (int __fd, const void *__buf, size_t __n);
57
58
59/*
60 * glibc APIs from <fcntl.h>
61 */
62
63/* Do the file control operation described by CMD on FD.
64 The remaining arguments are interpreted depending on CMD.
65
66 This function is a cancellation point and therefore not marked with
67 __THROW. */
68extern int fcntl (int __fd, int __cmd, ...);
69
70
71/*
72 * glibc APIs from <sys/select.h>
73 */
74
75/* Check the first NFDS descriptors each in READFDS (if not NULL) for read
76 readiness, in WRITEFDS (if not NULL) for write readiness, and in EXCEPTFDS
77 (if not NULL) for exceptional conditions. If TIMEOUT is not NULL, time out
78 after waiting the interval specified therein. Returns the number of ready
79 descriptors, or -1 for errors.
80
81
82 This function is a cancellation point and therefore not marked with
83 __THROW. */
84extern int
85select (int __nfds, fd_set * __restrict __readfds,
86 fd_set * __restrict __writefds,
87 fd_set * __restrict __exceptfds,
88 struct timeval *__restrict __timeout);
89
90#ifdef __USE_XOPEN2K
91/* Same as above only that the TIMEOUT value is given with higher
92 resolution and a sigmask which is been set temporarily. This version
93 should be used.
94
95 This function is a cancellation point and therefore not marked with
96 __THROW. */
97extern int
98pselect (int __nfds, fd_set * __restrict __readfds,
99 fd_set * __restrict __writefds,
100 fd_set * __restrict __exceptfds,
101 const struct timespec *__restrict __timeout,
102 const __sigset_t * __restrict __sigmask);
103#endif
104
105
106/*
107 *
108 * Socket specific glibc api
109 *
110 */
111
112/*
113 * glibc APIs from <sys/socket.h>
114 */
115
116/* Create a new socket of type TYPE in domain DOMAIN, using
117 protocol PROTOCOL. If PROTOCOL is zero, one is chosen automatically.
118 Returns a file descriptor for the new socket, or -1 for errors. */
119extern int __THROW socket (int __domain, int __type, int __protocol);
120
121/* Create two new sockets, of type TYPE in domain DOMAIN and using
122 protocol PROTOCOL, which are connected to each other, and put file
123 descriptors for them in FDS[0] and FDS[1]. If PROTOCOL is zero,
124 one will be chosen automatically. Returns 0 on success, -1 for errors. */
125extern int __THROW
126socketpair (int __domain, int __type, int __protocol, int __fds[2]);
127
128/* Give the socket FD the local address ADDR (which is LEN bytes long). */
129extern int __THROW
130bind (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len);
131
132/* Put the local address of FD into *ADDR and its length in *LEN. */
133extern int __THROW
134getsockname (int __fd, __SOCKADDR_ARG __addr, socklen_t * __restrict __len);
135
136/* Open a connection on socket FD to peer at ADDR (which LEN bytes long).
137 For connectionless socket types, just set the default address to send to
138 and the only address from which to accept transmissions.
139 Return 0 on success, -1 for errors.
140
141 This function is a cancellation point and therefore not marked with
142 __THROW. */
143extern int connect (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len);
144
145/* Put the address of the peer connected to socket FD into *ADDR
146 (which is *LEN bytes long), and its actual length into *LEN. */
147extern int __THROW
148getpeername (int __fd, __SOCKADDR_ARG __addr, socklen_t * __restrict __len);
149
150/* Send N bytes of BUF to socket FD. Returns the number sent or -1.
151
152 This function is a cancellation point and therefore not marked with
153 __THROW. */
154extern ssize_t send (int __fd, const void *__buf, size_t __n, int __flags);
155
Dave Wallace227867f2017-11-13 21:21:53 -0500156extern ssize_t sendfile (int __out_fd, int __in_fd, off_t * __offset,
157 size_t __len);
158
Keith Burns (alagalah)b327c2b2017-10-09 08:52:59 -0700159/* Read N bytes into BUF from socket FD.
160 Returns the number read or -1 for errors.
161
162 This function is a cancellation point and therefore not marked with
163 __THROW. */
164extern ssize_t recv (int __fd, void *__buf, size_t __n, int __flags);
165
166/* Send N bytes of BUF on socket FD to peer at address ADDR (which is
167 ADDR_LEN bytes long). Returns the number sent, or -1 for errors.
168
169 This function is a cancellation point and therefore not marked with
170 __THROW. */
171extern ssize_t
172sendto (int __fd, const void *__buf, size_t __n,
173 int __flags, __CONST_SOCKADDR_ARG __addr, socklen_t __addr_len);
174
175/* Read N bytes into BUF through socket FD.
176 If ADDR is not NULL, fill in *ADDR_LEN bytes of it with tha address of
177 the sender, and store the actual size of the address in *ADDR_LEN.
178 Returns the number of bytes read or -1 for errors.
179
180 This function is a cancellation point and therefore not marked with
181 __THROW. */
182extern ssize_t
183recvfrom (int __fd, void *__restrict __buf,
184 size_t __n, int __flags,
185 __SOCKADDR_ARG __addr, socklen_t * __restrict __addr_len);
186
187/* Send a message described MESSAGE on socket FD.
188 Returns the number of bytes sent, or -1 for errors.
189
190 This function is a cancellation point and therefore not marked with
191 __THROW. */
192extern ssize_t
193sendmsg (int __fd, const struct msghdr *__message, int __flags);
194
195#ifdef __USE_GNU
196/* Send a VLEN messages as described by VMESSAGES to socket FD.
197 Returns the number of datagrams successfully written or -1 for errors.
198
199 This function is a cancellation point and therefore not marked with
200 __THROW. */
201extern int
202sendmmsg (int __fd, struct mmsghdr *__vmessages,
203 unsigned int __vlen, int __flags);
204#endif
205
206/* Receive a message as described by MESSAGE from socket FD.
207 Returns the number of bytes read or -1 for errors.
208
209 This function is a cancellation point and therefore not marked with
210 __THROW. */
211extern ssize_t recvmsg (int __fd, struct msghdr *__message, int __flags);
212
213#ifdef __USE_GNU
214/* Receive up to VLEN messages as described by VMESSAGES from socket FD.
215 Returns the number of messages received or -1 for errors.
216
217 This function is a cancellation point and therefore not marked with
218 __THROW. */
219extern int
220recvmmsg (int __fd, struct mmsghdr *__vmessages,
221 unsigned int __vlen, int __flags, struct timespec *__tmo);
222#endif
223
224
225/* Put the current value for socket FD's option OPTNAME at protocol level LEVEL
226 into OPTVAL (which is *OPTLEN bytes long), and set *OPTLEN to the value's
227 actual length. Returns 0 on success, -1 for errors. */
228extern int __THROW
229getsockopt (int __fd, int __level, int __optname,
230 void *__restrict __optval, socklen_t * __restrict __optlen);
231
232/* Set socket FD's option OPTNAME at protocol level LEVEL
233 to *OPTVAL (which is OPTLEN bytes long).
234 Returns 0 on success, -1 for errors. */
235extern int __THROW
236setsockopt (int __fd, int __level, int __optname,
237 const void *__optval, socklen_t __optlen);
238
239/* Prepare to accept connections on socket FD.
240 N connection requests will be queued before further requests are refused.
241 Returns 0 on success, -1 for errors. */
242extern int __THROW listen (int __fd, int __n);
243
244/* Await a connection on socket FD.
245 When a connection arrives, open a new socket to communicate with it,
246 set *ADDR (which is *ADDR_LEN bytes long) to the address of the connecting
247 peer and *ADDR_LEN to the address's actual length, and return the
248 new socket's descriptor, or -1 for errors.
249
250 This function is a cancellation point and therefore not marked with
251 __THROW. */
252extern int
253accept (int __fd, __SOCKADDR_ARG __addr, socklen_t * __restrict __addr_len);
254
Keith Burns (alagalah)b327c2b2017-10-09 08:52:59 -0700255/* Similar to 'accept' but takes an additional parameter to specify flags.
256
257 This function is a cancellation point and therefore not marked with
258 __THROW. */
259 /* TBD: implemented later */
260extern int
261accept4 (int __fd, __SOCKADDR_ARG __addr,
262 socklen_t * __restrict __addr_len, int __flags);
Keith Burns (alagalah)b327c2b2017-10-09 08:52:59 -0700263
264/* Shut down all or part of the connection open on socket FD.
265 HOW determines what to shut down:
266 SHUT_RD = No more receptions;
267 SHUT_WR = No more transmissions;
268 SHUT_RDWR = No more receptions or transmissions.
269 Returns 0 on success, -1 for errors. */
270extern int __THROW shutdown (int __fd, int __how);
271
272
273/*
274 * glibc APIs from <sys/epoll.h>
275 */
276
277/* Creates an epoll instance. Returns an fd for the new instance.
278 The "size" parameter is a hint specifying the number of file
279 descriptors to be associated with the new instance. The fd
280 returned by epoll_create() should be closed with close(). */
281extern int __THROW epoll_create (int __size);
282
283/* Same as epoll_create but with an FLAGS parameter. The unused SIZE
284 parameter has been dropped. */
285extern int __THROW epoll_create1 (int __flags);
286
287/* Manipulate an epoll instance "epfd". Returns 0 in case of success,
288 -1 in case of error ( the "errno" variable will contain the
289 specific error code ) The "op" parameter is one of the EPOLL_CTL_*
290 constants defined above. The "fd" parameter is the target of the
291 operation. The "event" parameter describes which events the caller
292 is interested in and any associated user data. */
293extern int __THROW
294epoll_ctl (int __epfd, int __op, int __fd, struct epoll_event *__event);
295
296#define EP_INT_MAX ((int)(~0U>>1))
297#define EP_MAX_EVENTS (EP_INT_MAX / sizeof(struct epoll_event))
298
299/* Wait for events on an epoll instance "epfd". Returns the number of
300 triggered events returned in "events" buffer. Or -1 in case of
301 error with the "errno" variable set to the specific error code. The
302 "events" parameter is a buffer that will contain triggered
303 events. The "maxevents" is the maximum number of events to be
304 returned ( usually size of "events" ). The "timeout" parameter
305 specifies the maximum wait time in milliseconds (-1 == infinite).
306
307 This function is a cancellation point and therefore not marked with
308 __THROW. */
309extern int
310epoll_wait (int __epfd, struct epoll_event *__events,
311 int __maxevents, int __timeout);
312
313/* Same as epoll_wait, but the thread's signal mask is temporarily
314 and atomically replaced with the one provided as parameter.
315
316 This function is a cancellation point and therefore not marked with
317 __THROW. */
318extern int
319epoll_pwait (int __epfd, struct epoll_event *__events,
320 int __maxevents, int __timeout, const __sigset_t * __ss);
321
322/* Poll the file descriptors described by the NFDS structures starting at
323 FDS. If TIMEOUT is nonzero and not -1, allow TIMEOUT milliseconds for
324 an event to occur; if TIMEOUT is -1, block until an event occurs.
325 Returns the number of file descriptors with events, zero if timed out,
326 or -1 for errors.
327
328 This function is a cancellation point and therefore not marked with
329 __THROW. */
330extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout);
331
332#ifdef __USE_GNU
333/* Like poll, but before waiting the threads signal mask is replaced
334 with that specified in the fourth parameter. For better usability,
335 the timeout value is specified using a TIMESPEC object.
336
337 This function is a cancellation point and therefore not marked with
338 __THROW. */
339extern int ppoll (struct pollfd *__fds, nfds_t __nfds,
340 const struct timespec *__timeout, const __sigset_t * __ss);
341#endif
342
343
344#endif /* included_vcom_glibc_socket_h */
345
346/*
347 * fd.io coding-style-patch-verification: ON
348 *
349 * Local Variables:
350 * eval: (c-set-style "gnu")
351 * End:
352 */