socket.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. /* System-specific socket constants and types. 4.4 BSD version.
  2. Copyright (C) 1991-2026 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If
  14. not, see <https://www.gnu.org/licenses/>. */
  15. #ifndef __BITS_SOCKET_H
  16. #define __BITS_SOCKET_H 1
  17. #ifndef _SYS_SOCKET_H
  18. # error "Never include <bits/socket.h> directly; use <sys/socket.h> instead."
  19. #endif
  20. #define __need_size_t
  21. #include <stddef.h>
  22. #include <bits/wordsize.h>
  23. #include <bits/types.h>
  24. /* Type for length arguments in socket calls. */
  25. #ifndef __socklen_t_defined
  26. typedef __socklen_t socklen_t;
  27. # define __socklen_t_defined
  28. #endif
  29. /* Types of sockets. */
  30. enum __socket_type
  31. {
  32. SOCK_STREAM = 1, /* Sequenced, reliable, connection-based
  33. byte streams. */
  34. #define SOCK_STREAM SOCK_STREAM
  35. SOCK_DGRAM = 2, /* Connectionless, unreliable datagrams
  36. of fixed maximum length. */
  37. #define SOCK_DGRAM SOCK_DGRAM
  38. SOCK_RAW = 3, /* Raw protocol interface. */
  39. #define SOCK_RAW SOCK_RAW
  40. SOCK_RDM = 4, /* Reliably-delivered messages. */
  41. #define SOCK_RDM SOCK_RDM
  42. SOCK_SEQPACKET = 5, /* Sequenced, reliable, connection-based,
  43. datagrams of fixed maximum length. */
  44. #define SOCK_SEQPACKET SOCK_SEQPACKET
  45. #define SOCK_MAX (SOCK_SEQPACKET + 1)
  46. /* Mask which covers at least up to SOCK_MASK-1.
  47. The remaining bits are used as flags. */
  48. #define SOCK_TYPE_MASK 0xf
  49. /* Flags to be ORed into the type parameter of socket and socketpair and
  50. used for the flags parameter of accept4. */
  51. SOCK_CLOEXEC = 0x10000000, /* Atomically set close-on-exec flag for the
  52. new descriptor(s). */
  53. #define SOCK_CLOEXEC SOCK_CLOEXEC
  54. SOCK_NONBLOCK = 0x20000000 /* Atomically mark descriptor(s) as
  55. non-blocking. */
  56. #define SOCK_NONBLOCK SOCK_NONBLOCK
  57. };
  58. /* Protocol families. */
  59. #define PF_UNSPEC 0 /* Unspecified. */
  60. #define PF_LOCAL 1 /* Local to host (pipes and file-domain). */
  61. #define PF_UNIX PF_LOCAL /* Old BSD name for PF_LOCAL. */
  62. #define PF_FILE PF_LOCAL /* POSIX name for PF_LOCAL. */
  63. #define PF_INET 2 /* IP protocol family. */
  64. #define PF_IMPLINK 3 /* ARPAnet IMP protocol. */
  65. #define PF_PUP 4 /* PUP protocols. */
  66. #define PF_CHAOS 5 /* MIT Chaos protocols. */
  67. #define PF_NS 6 /* Xerox NS protocols. */
  68. #define PF_ISO 7 /* ISO protocols. */
  69. #define PF_OSI PF_ISO
  70. #define PF_ECMA 8 /* ECMA protocols. */
  71. #define PF_DATAKIT 9 /* AT&T Datakit protocols. */
  72. #define PF_CCITT 10 /* CCITT protocols (X.25 et al). */
  73. #define PF_SNA 11 /* IBM SNA protocol. */
  74. #define PF_DECnet 12 /* DECnet protocols. */
  75. #define PF_DLI 13 /* Direct data link interface. */
  76. #define PF_LAT 14 /* DEC Local Area Transport protocol. */
  77. #define PF_HYLINK 15 /* NSC Hyperchannel protocol. */
  78. #define PF_APPLETALK 16 /* Don't use this. */
  79. #define PF_ROUTE 17 /* Internal Routing Protocol. */
  80. #define PF_LINK 18 /* Link layer interface. */
  81. #define PF_XTP 19 /* eXpress Transfer Protocol (no AF). */
  82. #define PF_COIP 20 /* Connection-oriented IP, aka ST II. */
  83. #define PF_CNT 21 /* Computer Network Technology. */
  84. #define PF_RTIP 22 /* Help Identify RTIP packets. **/
  85. #define PF_IPX 23 /* Novell Internet Protocol. */
  86. #define PF_SIP 24 /* Simple Internet Protocol. */
  87. #define PF_PIP 25 /* Help Identify PIP packets. */
  88. #define PF_INET6 26 /* IP version 6. */
  89. #define PF_MAX 27
  90. /* Address families. */
  91. #define AF_UNSPEC PF_UNSPEC
  92. #define AF_LOCAL PF_LOCAL
  93. #define AF_UNIX PF_UNIX
  94. #define AF_FILE PF_FILE
  95. #define AF_INET PF_INET
  96. #define AF_IMPLINK PF_IMPLINK
  97. #define AF_PUP PF_PUP
  98. #define AF_CHAOS PF_CHAOS
  99. #define AF_NS PF_NS
  100. #define AF_ISO PF_ISO
  101. #define AF_OSI PF_OSI
  102. #define AF_ECMA PF_ECMA
  103. #define AF_DATAKIT PF_DATAKIT
  104. #define AF_CCITT PF_CCITT
  105. #define AF_SNA PF_SNA
  106. #define AF_DECnet PF_DECnet
  107. #define AF_DLI PF_DLI
  108. #define AF_LAT PF_LAT
  109. #define AF_HYLINK PF_HYLINK
  110. #define AF_APPLETALK PF_APPLETALK
  111. #define AF_ROUTE PF_ROUTE
  112. #define AF_LINK PF_LINK
  113. #ifdef __USE_MISC
  114. # define pseudo_AF_XTP PF_XTP
  115. #endif
  116. #define AF_COIP PF_COIP
  117. #define AF_CNT PF_CNT
  118. #ifdef __USE_MISC
  119. # define pseudo_AF_RTIP PF_RTIP
  120. #endif
  121. #define AF_IPX PF_IPX
  122. #define AF_SIP PF_SIP
  123. #ifdef __USE_MISC
  124. # define pseudo_AF_PIP PF_PIP
  125. #endif
  126. #define AF_INET6 PF_INET6
  127. #define AF_MAX PF_MAX
  128. /* Maximum queue length specifiable by listen. */
  129. #define SOMAXCONN 128 /* 5 on the original 4.4 BSD. */
  130. /* Get the definition of the macro to define the common sockaddr members. */
  131. #include <bits/sockaddr.h>
  132. /* Structure describing a generic socket address. */
  133. struct __attribute_struct_may_alias__ sockaddr
  134. {
  135. __SOCKADDR_COMMON (sa_); /* Common data: address family and length. */
  136. char sa_data[14]; /* Address data. */
  137. };
  138. /* Structure large enough to hold any socket address (with the historical
  139. exception of AF_UNIX). */
  140. #if __WORDSIZE == 64
  141. # define __ss_aligntype __uint64_t
  142. #else
  143. # define __ss_aligntype __uint32_t
  144. #endif
  145. #define _SS_PADSIZE \
  146. (_SS_SIZE - __SOCKADDR_COMMON_SIZE - sizeof (__ss_aligntype))
  147. struct __attribute_struct_may_alias__ sockaddr_storage
  148. {
  149. __SOCKADDR_COMMON (ss_); /* Address family, etc. */
  150. char __ss_padding[_SS_PADSIZE];
  151. __ss_aligntype __ss_align; /* Force desired alignment. */
  152. };
  153. /* Bits in the FLAGS argument to `send', `recv', et al. */
  154. enum
  155. {
  156. MSG_OOB = 0x01, /* Process out-of-band data. */
  157. #define MSG_OOB MSG_OOB
  158. MSG_PEEK = 0x02, /* Peek at incoming messages. */
  159. #define MSG_PEEK MSG_PEEK
  160. MSG_DONTROUTE = 0x04, /* Don't use local routing. */
  161. #define MSG_DONTROUTE MSG_DONTROUTE
  162. MSG_EOR = 0x08, /* Data completes record. */
  163. #define MSG_EOR MSG_EOR
  164. MSG_TRUNC = 0x10, /* Data discarded before delivery. */
  165. #define MSG_TRUNC MSG_TRUNC
  166. MSG_CTRUNC = 0x20, /* Control data lost before delivery. */
  167. #define MSG_CTRUNC MSG_CTRUNC
  168. MSG_WAITALL = 0x40, /* Wait for full request or error. */
  169. #define MSG_WAITALL MSG_WAITALL
  170. MSG_DONTWAIT = 0x80, /* This message should be nonblocking. */
  171. #define MSG_DONTWAIT MSG_DONTWAIT
  172. MSG_NOSIGNAL = 0x0400 /* Do not generate SIGPIPE on EPIPE. */
  173. #define MSG_NOSIGNAL MSG_NOSIGNAL
  174. };
  175. /* Structure describing messages sent by
  176. `sendmsg' and received by `recvmsg'. */
  177. struct msghdr
  178. {
  179. void *msg_name; /* Address to send to/receive from. */
  180. socklen_t msg_namelen; /* Length of address data. */
  181. struct iovec *msg_iov; /* Vector of data to send/receive into. */
  182. int msg_iovlen; /* Number of elements in the vector. */
  183. void *msg_control; /* Ancillary data (eg BSD filedesc passing). */
  184. socklen_t msg_controllen; /* Ancillary data buffer length. */
  185. int msg_flags; /* Flags in received message. */
  186. };
  187. /* Structure used for storage of ancillary data object information. */
  188. struct cmsghdr
  189. {
  190. socklen_t cmsg_len; /* Length of data in cmsg_data plus length
  191. of cmsghdr structure. */
  192. int cmsg_level; /* Originating protocol. */
  193. int cmsg_type; /* Protocol specific type. */
  194. /* This field is to be aligned with CMSG_ALIGN */
  195. /* __extension__ unsigned char __cmsg_data __flexarr; */ /* Ancillary data. */
  196. };
  197. /* Ancillary data object manipulation macros. */
  198. #define CMSG_DATA(cmsg) \
  199. ((unsigned char *) (cmsg) + CMSG_ALIGN (sizeof (struct cmsghdr)))
  200. #define CMSG_NXTHDR(mhdr, cmsg) __cmsg_nxthdr (mhdr, cmsg)
  201. #define CMSG_FIRSTHDR(mhdr) \
  202. ((size_t) (mhdr)->msg_controllen >= sizeof (struct cmsghdr) \
  203. ? (struct cmsghdr *) (mhdr)->msg_control : (struct cmsghdr *) 0)
  204. #define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) \
  205. & (size_t) ~(sizeof (size_t) - 1))
  206. #define CMSG_SPACE(len) (CMSG_ALIGN (len) \
  207. + CMSG_ALIGN (sizeof (struct cmsghdr)))
  208. #define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
  209. /* Given a length, return the additional padding necessary such that
  210. len + __CMSG_PADDING(len) == CMSG_ALIGN (len). */
  211. #define __CMSG_PADDING(len) ((sizeof (size_t) \
  212. - ((len) & (sizeof (size_t) - 1))) \
  213. & (sizeof (size_t) - 1))
  214. extern struct cmsghdr *__cmsg_nxthdr (struct msghdr *__mhdr,
  215. struct cmsghdr *__cmsg) __THROW;
  216. #ifdef __USE_EXTERN_INLINES
  217. # ifndef _EXTERN_INLINE
  218. # define _EXTERN_INLINE __extern_inline
  219. # endif
  220. _EXTERN_INLINE struct cmsghdr *
  221. __NTH (__cmsg_nxthdr (struct msghdr *__mhdr, struct cmsghdr *__cmsg))
  222. {
  223. /* We may safely assume that __cmsg lies between __mhdr->msg_control and
  224. __mhdr->msg_controllen because the user is required to obtain the first
  225. cmsg via CMSG_FIRSTHDR, set its length, then obtain subsequent cmsgs
  226. via CMSG_NXTHDR, setting lengths along the way. However, we don't yet
  227. trust the value of __cmsg->cmsg_len and therefore do not use it in any
  228. pointer arithmetic until we check its value. */
  229. unsigned char * __msg_control_ptr = (unsigned char *) __mhdr->msg_control;
  230. unsigned char * __cmsg_ptr = (unsigned char *) __cmsg;
  231. size_t __size_needed = sizeof (struct cmsghdr)
  232. + __CMSG_PADDING (__cmsg->cmsg_len);
  233. /* The current header is malformed, too small to be a full header. */
  234. if ((size_t) __cmsg->cmsg_len < sizeof (struct cmsghdr))
  235. return (struct cmsghdr *) 0;
  236. /* There isn't enough space between __cmsg and the end of the buffer to
  237. hold the current cmsg *and* the next one. */
  238. if (((size_t)
  239. (__msg_control_ptr + __mhdr->msg_controllen - __cmsg_ptr)
  240. < __size_needed)
  241. || ((size_t)
  242. (__msg_control_ptr + __mhdr->msg_controllen - __cmsg_ptr
  243. - __size_needed)
  244. < __cmsg->cmsg_len))
  245. return (struct cmsghdr *) 0;
  246. /* Now, we trust cmsg_len and can use it to find the next header. */
  247. __cmsg = (struct cmsghdr *) ((unsigned char *) __cmsg
  248. + CMSG_ALIGN (__cmsg->cmsg_len));
  249. return __cmsg;
  250. }
  251. #endif /* Use `extern inline'. */
  252. /* Socket level message types. */
  253. enum
  254. {
  255. SCM_RIGHTS = 0x01, /* Access rights (array of int). */
  256. #define SCM_RIGHTS SCM_RIGHTS
  257. SCM_TIMESTAMP = 0x02, /* Timestamp (struct timeval). */
  258. #define SCM_TIMESTAMP SCM_TIMESTAMP
  259. SCM_CREDS = 0x03 /* Process creds (struct cmsgcred). */
  260. #define SCM_CREDS SCM_CREDS
  261. };
  262. #ifdef __USE_MISC
  263. /* Unfortunately, BSD practice dictates this structure be of fixed size.
  264. If there are more than CMGROUP_MAX groups, the list is truncated.
  265. (On GNU systems, the `cmcred_euid' field is just the first in the
  266. list of effective UIDs.) */
  267. #define CMGROUP_MAX 16
  268. /* Structure delivered by SCM_CREDS. This describes the identity of the
  269. sender of the data simultaneously received on the socket. By BSD
  270. convention, this is included only when a sender on a AF_LOCAL socket
  271. sends cmsg data of this type and size; the sender's structure is
  272. ignored, and the system fills in the various IDs of the sender process. */
  273. struct cmsgcred
  274. {
  275. __pid_t cmcred_pid;
  276. __uid_t cmcred_uid;
  277. __uid_t cmcred_euid;
  278. __gid_t cmcred_gid;
  279. int cmcred_ngroups;
  280. __gid_t cmcred_groups[CMGROUP_MAX];
  281. };
  282. #endif
  283. /* Protocol number used to manipulate socket-level options
  284. with `getsockopt' and `setsockopt'. */
  285. #define SOL_SOCKET 0xffff
  286. /* Socket-level options for `getsockopt' and `setsockopt'. */
  287. enum
  288. {
  289. SO_DEBUG = 0x0001, /* Record debugging information. */
  290. #define SO_DEBUG SO_DEBUG
  291. SO_ACCEPTCONN = 0x0002, /* Accept connections on socket. */
  292. #define SO_ACCEPTCONN SO_ACCEPTCONN
  293. SO_REUSEADDR = 0x0004, /* Allow reuse of local addresses. */
  294. #define SO_REUSEADDR SO_REUSEADDR
  295. SO_KEEPALIVE = 0x0008, /* Keep connections alive and send
  296. SIGPIPE when they die. */
  297. #define SO_KEEPALIVE SO_KEEPALIVE
  298. SO_DONTROUTE = 0x0010, /* Don't do local routing. */
  299. #define SO_DONTROUTE SO_DONTROUTE
  300. SO_BROADCAST = 0x0020, /* Allow transmission of
  301. broadcast messages. */
  302. #define SO_BROADCAST SO_BROADCAST
  303. SO_USELOOPBACK = 0x0040, /* Use the software loopback to avoid
  304. hardware use when possible. */
  305. #define SO_USELOOPBACK SO_USELOOPBACK
  306. SO_LINGER = 0x0080, /* Block on close of a reliable
  307. socket to transmit pending data. */
  308. #define SO_LINGER SO_LINGER
  309. SO_OOBINLINE = 0x0100, /* Receive out-of-band data in-band. */
  310. #define SO_OOBINLINE SO_OOBINLINE
  311. SO_REUSEPORT = 0x0200, /* Allow local address and port reuse. */
  312. #define SO_REUSEPORT SO_REUSEPORT
  313. SO_SNDBUF = 0x1001, /* Send buffer size. */
  314. #define SO_SNDBUF SO_SNDBUF
  315. SO_RCVBUF = 0x1002, /* Receive buffer. */
  316. #define SO_RCVBUF SO_RCVBUF
  317. SO_SNDLOWAT = 0x1003, /* Send low-water mark. */
  318. #define SO_SNDLOWAT SO_SNDLOWAT
  319. SO_RCVLOWAT = 0x1004, /* Receive low-water mark. */
  320. #define SO_RCVLOWAT SO_RCVLOWAT
  321. SO_SNDTIMEO = 0x1005, /* Send timeout. */
  322. #define SO_SNDTIMEO SO_SNDTIMEO
  323. SO_RCVTIMEO = 0x1006, /* Receive timeout. */
  324. #define SO_RCVTIMEO SO_RCVTIMEO
  325. SO_ERROR = 0x1007, /* Get and clear error status. */
  326. #define SO_ERROR SO_ERROR
  327. SO_STYLE = 0x1008, /* Get socket connection style. */
  328. #define SO_STYLE SO_STYLE
  329. SO_TYPE = SO_STYLE /* Compatible name for SO_STYLE. */
  330. #define SO_TYPE SO_TYPE
  331. };
  332. /* Structure used to manipulate the SO_LINGER option. */
  333. struct linger
  334. {
  335. int l_onoff; /* Nonzero to linger on close. */
  336. int l_linger; /* Time to linger. */
  337. };
  338. #endif /* bits/socket.h */