PageRenderTime 49ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/bits/socket.h

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