blob: 9402e70071a769b1674a377c2e3c136ec17bcbac [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Andrei Emeltchenko43d21372013-10-14 16:48:26 +030028
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029#ifndef _SYS_SOCKET_H_
30#define _SYS_SOCKET_H_
31
32#include <sys/cdefs.h>
33#include <sys/types.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080034
Andrei Emeltchenko43d21372013-10-14 16:48:26 +030035#include <asm/fcntl.h>
Elliott Hughes86ec05a2012-09-11 19:03:02 -070036#include <asm/socket.h>
37#include <linux/sockios.h>
38#include <linux/uio.h>
39#include <linux/types.h>
40#include <linux/compiler.h>
41
Elliott Hughes5850f6f2023-11-29 11:18:49 -080042#include <bits/sockaddr_storage.h>
Elliott Hughes508d2922016-07-21 16:38:43 -070043#include <bits/sa_family_t.h>
44
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080045__BEGIN_DECLS
46
Elliott Hughesa8b1eb32014-02-28 17:59:29 -080047struct timespec;
48
Greg Hackmannd75abb92015-08-25 17:45:46 -070049#define SOCK_STREAM 1
50#define SOCK_DGRAM 2
Raghu Gandham6437eac2012-08-02 16:50:10 -070051#define SOCK_RAW 3
52#define SOCK_RDM 4
53#define SOCK_SEQPACKET 5
54#define SOCK_DCCP 6
55#define SOCK_PACKET 10
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080056
Andrei Emeltchenko43d21372013-10-14 16:48:26 +030057#define SOCK_CLOEXEC O_CLOEXEC
58#define SOCK_NONBLOCK O_NONBLOCK
59
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080060enum {
Andrei Emeltchenko43d21372013-10-14 16:48:26 +030061 SHUT_RD = 0,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080062#define SHUT_RD SHUT_RD
Andrei Emeltchenko43d21372013-10-14 16:48:26 +030063 SHUT_WR,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080064#define SHUT_WR SHUT_WR
Andrei Emeltchenko43d21372013-10-14 16:48:26 +030065 SHUT_RDWR
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080066#define SHUT_RDWR SHUT_RDWR
67};
68
Elliott Hughes86ec05a2012-09-11 19:03:02 -070069struct sockaddr {
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +010070 sa_family_t sa_family;
71 char sa_data[14];
Elliott Hughes86ec05a2012-09-11 19:03:02 -070072};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080073
zijunzhao4e274fa2023-05-25 18:48:38 +000074#pragma clang diagnostic push
75#pragma clang diagnostic ignored "-Wnullability-completeness"
Colin Crossd2750672021-06-29 12:52:26 -070076
Elliott Hughes86ec05a2012-09-11 19:03:02 -070077struct linger {
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +010078 int l_onoff;
79 int l_linger;
Elliott Hughes86ec05a2012-09-11 19:03:02 -070080};
81
82struct msghdr {
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +010083 void* msg_name;
84 socklen_t msg_namelen;
85 struct iovec* msg_iov;
86 size_t msg_iovlen;
87 void* msg_control;
88 size_t msg_controllen;
89 int msg_flags;
90};
91
92struct mmsghdr {
93 struct msghdr msg_hdr;
94 unsigned int msg_len;
Elliott Hughes86ec05a2012-09-11 19:03:02 -070095};
96
97struct cmsghdr {
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +010098 size_t cmsg_len;
99 int cmsg_level;
100 int cmsg_type;
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700101};
102
zijunzhao4e274fa2023-05-25 18:48:38 +0000103#pragma clang diagnostic pop
104
Calin Juravle096b4eb2014-06-19 18:16:17 +0100105#define CMSG_NXTHDR(mhdr, cmsg) __cmsg_nxthdr((mhdr), (cmsg))
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700106#define CMSG_ALIGN(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
Dan Albert268af262015-09-11 09:47:27 -0700107#define CMSG_DATA(cmsg) (((unsigned char*)(cmsg) + CMSG_ALIGN(sizeof(struct cmsghdr))))
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700108#define CMSG_SPACE(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(len))
109#define CMSG_LEN(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
Calin Juravlef1de90b2014-03-19 17:40:23 +0000110#define CMSG_FIRSTHDR(msg) \
111 ((msg)->msg_controllen >= sizeof(struct cmsghdr) \
112 ? (struct cmsghdr*) (msg)->msg_control : (struct cmsghdr*) NULL)
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +0100113#define CMSG_OK(mhdr, cmsg) ((cmsg)->cmsg_len >= sizeof(struct cmsghdr) && (cmsg)->cmsg_len <= (unsigned long) ((mhdr)->msg_controllen - ((char*)(cmsg) - (char*)(mhdr)->msg_control)))
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700114
Elliott Hughes655e4302023-06-16 12:39:33 -0700115struct cmsghdr* _Nullable __cmsg_nxthdr(struct msghdr* _Nonnull __msg, struct cmsghdr* _Nonnull __cmsg);
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700116
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700117#define SCM_RIGHTS 0x01
118#define SCM_CREDENTIALS 0x02
119#define SCM_SECURITY 0x03
120
121struct ucred {
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +0100122 pid_t pid;
123 uid_t uid;
124 gid_t gid;
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700125};
126
127#define AF_UNSPEC 0
128#define AF_UNIX 1
129#define AF_LOCAL 1
130#define AF_INET 2
131#define AF_AX25 3
132#define AF_IPX 4
133#define AF_APPLETALK 5
134#define AF_NETROM 6
135#define AF_BRIDGE 7
136#define AF_ATMPVC 8
137#define AF_X25 9
138#define AF_INET6 10
139#define AF_ROSE 11
140#define AF_DECnet 12
141#define AF_NETBEUI 13
142#define AF_SECURITY 14
143#define AF_KEY 15
144#define AF_NETLINK 16
145#define AF_ROUTE AF_NETLINK
146#define AF_PACKET 17
147#define AF_ASH 18
148#define AF_ECONET 19
149#define AF_ATMSVC 20
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800150#define AF_RDS 21
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700151#define AF_SNA 22
152#define AF_IRDA 23
153#define AF_PPPOX 24
154#define AF_WANPIPE 25
155#define AF_LLC 26
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800156#define AF_CAN 29
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700157#define AF_TIPC 30
158#define AF_BLUETOOTH 31
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800159#define AF_IUCV 32
160#define AF_RXRPC 33
161#define AF_ISDN 34
162#define AF_PHONET 35
163#define AF_IEEE802154 36
164#define AF_CAIF 37
165#define AF_ALG 38
Greg Hackmannc7ca8f32016-01-28 11:07:26 -0800166#define AF_NFC 39
167#define AF_VSOCK 40
Elliott Hughes8d768712016-12-13 15:29:58 -0800168#define AF_KCM 41
169#define AF_QIPCRTR 42
170#define AF_MAX 43
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700171
172#define PF_UNSPEC AF_UNSPEC
173#define PF_UNIX AF_UNIX
174#define PF_LOCAL AF_LOCAL
175#define PF_INET AF_INET
176#define PF_AX25 AF_AX25
177#define PF_IPX AF_IPX
178#define PF_APPLETALK AF_APPLETALK
179#define PF_NETROM AF_NETROM
180#define PF_BRIDGE AF_BRIDGE
181#define PF_ATMPVC AF_ATMPVC
182#define PF_X25 AF_X25
183#define PF_INET6 AF_INET6
184#define PF_ROSE AF_ROSE
185#define PF_DECnet AF_DECnet
186#define PF_NETBEUI AF_NETBEUI
187#define PF_SECURITY AF_SECURITY
188#define PF_KEY AF_KEY
189#define PF_NETLINK AF_NETLINK
190#define PF_ROUTE AF_ROUTE
191#define PF_PACKET AF_PACKET
192#define PF_ASH AF_ASH
193#define PF_ECONET AF_ECONET
194#define PF_ATMSVC AF_ATMSVC
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800195#define PF_RDS AF_RDS
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700196#define PF_SNA AF_SNA
197#define PF_IRDA AF_IRDA
198#define PF_PPPOX AF_PPPOX
199#define PF_WANPIPE AF_WANPIPE
200#define PF_LLC AF_LLC
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800201#define PF_CAN AF_CAN
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700202#define PF_TIPC AF_TIPC
203#define PF_BLUETOOTH AF_BLUETOOTH
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800204#define PF_IUCV AF_IUCV
205#define PF_RXRPC AF_RXRPC
206#define PF_ISDN AF_ISDN
207#define PF_PHONET AF_PHONET
208#define PF_IEEE802154 AF_IEEE802154
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700209#define PF_CAIF AF_CAIF
Elliott Hughesd73c0b32013-01-03 16:25:47 -0800210#define PF_ALG AF_ALG
Greg Hackmannc7ca8f32016-01-28 11:07:26 -0800211#define PF_NFC AF_NFC
212#define PF_VSOCK AF_VSOCK
Elliott Hughes8d768712016-12-13 15:29:58 -0800213#define PF_KCM AF_KCM
214#define PF_QIPCRTR AF_QIPCRTR
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700215#define PF_MAX AF_MAX
216
217#define SOMAXCONN 128
218
219#define MSG_OOB 1
220#define MSG_PEEK 2
221#define MSG_DONTROUTE 4
222#define MSG_TRYHARD 4
223#define MSG_CTRUNC 8
224#define MSG_PROBE 0x10
225#define MSG_TRUNC 0x20
226#define MSG_DONTWAIT 0x40
227#define MSG_EOR 0x80
228#define MSG_WAITALL 0x100
229#define MSG_FIN 0x200
230#define MSG_SYN 0x400
231#define MSG_CONFIRM 0x800
232#define MSG_RST 0x1000
233#define MSG_ERRQUEUE 0x2000
234#define MSG_NOSIGNAL 0x4000
235#define MSG_MORE 0x8000
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +0100236#define MSG_WAITFORONE 0x10000
Elliott Hughes8d768712016-12-13 15:29:58 -0800237#define MSG_BATCH 0x40000
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +0100238#define MSG_FASTOPEN 0x20000000
239#define MSG_CMSG_CLOEXEC 0x40000000
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700240#define MSG_EOF MSG_FIN
241#define MSG_CMSG_COMPAT 0
242
243#define SOL_IP 0
244#define SOL_TCP 6
245#define SOL_UDP 17
246#define SOL_IPV6 41
247#define SOL_ICMPV6 58
248#define SOL_SCTP 132
249#define SOL_RAW 255
250#define SOL_IPX 256
251#define SOL_AX25 257
252#define SOL_ATALK 258
253#define SOL_NETROM 259
254#define SOL_ROSE 260
255#define SOL_DECNET 261
256#define SOL_X25 262
257#define SOL_PACKET 263
258#define SOL_ATM 264
259#define SOL_AAL 265
260#define SOL_IRDA 266
261#define SOL_NETBEUI 267
262#define SOL_LLC 268
263#define SOL_DCCP 269
264#define SOL_NETLINK 270
265#define SOL_TIPC 271
Elliott Hughes8d768712016-12-13 15:29:58 -0800266#define SOL_RXRPC 272
267#define SOL_PPPOL2TP 273
268#define SOL_BLUETOOTH 274
269#define SOL_PNPIPE 275
270#define SOL_RDS 276
271#define SOL_IUCV 277
272#define SOL_CAIF 278
273#define SOL_ALG 279
274#define SOL_NFC 280
275#define SOL_KCM 281
Elliott Hughes062eac82018-08-27 11:27:06 -0700276#define SOL_TLS 282
Elliott Hughes86ec05a2012-09-11 19:03:02 -0700277
278#define IPX_TYPE 1
279
280#ifdef __i386__
281# define __socketcall extern __attribute__((__cdecl__))
282#else
283# define __socketcall extern
284#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800285
zijunzhao4e274fa2023-05-25 18:48:38 +0000286__socketcall int accept(int __fd, struct sockaddr* _Nullable __addr, socklen_t* _Nullable __addr_length);
Elliott Hughes655e4302023-06-16 12:39:33 -0700287__socketcall int accept4(int __fd, struct sockaddr* _Nullable __addr, socklen_t* _Nullable __addr_length, int __flags);
zijunzhao4e274fa2023-05-25 18:48:38 +0000288__socketcall int bind(int __fd, const struct sockaddr* _Nonnull __addr, socklen_t __addr_length);
289__socketcall int connect(int __fd, const struct sockaddr* _Nonnull __addr, socklen_t __addr_length);
290__socketcall int getpeername(int __fd, struct sockaddr* _Nonnull __addr, socklen_t* _Nonnull __addr_length);
291__socketcall int getsockname(int __fd, struct sockaddr* _Nonnull __addr, socklen_t* _Nonnull __addr_length);
292__socketcall int getsockopt(int __fd, int __level, int __option, void* _Nullable __value, socklen_t* _Nonnull __value_length);
Elliott Hughesff26a162017-08-17 22:34:21 +0000293__socketcall int listen(int __fd, int __backlog);
Elliott Hughes655e4302023-06-16 12:39:33 -0700294__socketcall int recvmmsg(int __fd, struct mmsghdr* _Nonnull __msgs, unsigned int __msg_count, int __flags, const struct timespec* _Nullable __timeout);
zijunzhao4e274fa2023-05-25 18:48:38 +0000295__socketcall ssize_t recvmsg(int __fd, struct msghdr* _Nonnull __msg, int __flags);
Elliott Hughes655e4302023-06-16 12:39:33 -0700296__socketcall int sendmmsg(int __fd, const struct mmsghdr* _Nonnull __msgs, unsigned int __msg_count, int __flags);
zijunzhao4e274fa2023-05-25 18:48:38 +0000297__socketcall ssize_t sendmsg(int __fd, const struct msghdr* _Nonnull __msg, int __flags);
298__socketcall int setsockopt(int __fd, int __level, int __option, const void* _Nullable __value, socklen_t __value_length);
Elliott Hughesff26a162017-08-17 22:34:21 +0000299__socketcall int shutdown(int __fd, int __how);
300__socketcall int socket(int __af, int __type, int __protocol);
zijunzhao4e274fa2023-05-25 18:48:38 +0000301__socketcall int socketpair(int __af, int __type, int __protocol, int __fds[_Nonnull 2]);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800302
zijunzhao4e274fa2023-05-25 18:48:38 +0000303ssize_t recv(int __fd, void* _Nullable __buf, size_t __n, int __flags);
304ssize_t send(int __fd, const void* _Nonnull __buf, size_t __n, int __flags);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800305
zijunzhao4e274fa2023-05-25 18:48:38 +0000306__socketcall ssize_t sendto(int __fd, const void* _Nonnull __buf, size_t __n, int __flags, const struct sockaddr* _Nullable __dst_addr, socklen_t __dst_addr_length);
307__socketcall ssize_t recvfrom(int __fd, void* _Nullable __buf, size_t __n, int __flags, struct sockaddr* _Nullable __src_addr, socklen_t* _Nullable __src_addr_length);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800308
George Burgess IVb97049c2017-07-24 15:05:05 -0700309#if defined(__BIONIC_INCLUDE_FORTIFY_HEADERS)
310#include <bits/fortify/socket.h>
311#endif
Nick Kralevich60f4f9a2013-09-24 16:32:07 -0700312
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800313#undef __socketcall
314
315__END_DECLS
316
Elliott Hughesff26a162017-08-17 22:34:21 +0000317#endif