socket.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. #ifndef _LINUX_SOCKET_H
  2. #define _LINUX_SOCKET_H
  3. #include <asm/socket.h> /* arch-dependent defines */
  4. #include <linux/sockios.h> /* the SIOCxxx I/O controls */
  5. #include <linux/uio.h> /* iovec support */
  6. #include <linux/types.h> /* pid_t */
  7. #include <linux/compiler.h> /* __user */
  8. #include <uapi/linux/socket.h>
  9. struct pid;
  10. struct cred;
  11. #define __sockaddr_check_size(size) \
  12. BUILD_BUG_ON(((size) > sizeof(struct __kernel_sockaddr_storage)))
  13. #ifdef CONFIG_PROC_FS
  14. struct seq_file;
  15. extern void socket_seq_show(struct seq_file *seq);
  16. #endif
  17. typedef __kernel_sa_family_t sa_family_t;
  18. /*
  19. * 1003.1g requires sa_family_t and that sa_data is char.
  20. */
  21. struct sockaddr {
  22. sa_family_t sa_family; /* address family, AF_xxx */
  23. char sa_data[14]; /* 14 bytes of protocol address */
  24. };
  25. struct linger {
  26. int l_onoff; /* Linger active */
  27. int l_linger; /* How long to linger for */
  28. };
  29. #define sockaddr_storage __kernel_sockaddr_storage
  30. /*
  31. * As we do 4.4BSD message passing we use a 4.4BSD message passing
  32. * system, not 4.3. Thus msg_accrights(len) are now missing. They
  33. * belong in an obscure libc emulation or the bin.
  34. */
  35. struct msghdr {
  36. void *msg_name; /* ptr to socket address structure */
  37. int msg_namelen; /* size of socket address structure */
  38. struct iov_iter msg_iter; /* data */
  39. void *msg_control; /* ancillary data */
  40. __kernel_size_t msg_controllen; /* ancillary data buffer length */
  41. unsigned int msg_flags; /* flags on received message */
  42. struct kiocb *msg_iocb; /* ptr to iocb for async requests */
  43. };
  44. struct user_msghdr {
  45. void __user *msg_name; /* ptr to socket address structure */
  46. int msg_namelen; /* size of socket address structure */
  47. struct iovec __user *msg_iov; /* scatter/gather array */
  48. __kernel_size_t msg_iovlen; /* # elements in msg_iov */
  49. void __user *msg_control; /* ancillary data */
  50. __kernel_size_t msg_controllen; /* ancillary data buffer length */
  51. unsigned int msg_flags; /* flags on received message */
  52. };
  53. /* For recvmmsg/sendmmsg */
  54. struct mmsghdr {
  55. struct user_msghdr msg_hdr;
  56. unsigned int msg_len;
  57. };
  58. /*
  59. * POSIX 1003.1g - ancillary data object information
  60. * Ancillary data consits of a sequence of pairs of
  61. * (cmsghdr, cmsg_data[])
  62. */
  63. struct cmsghdr {
  64. __kernel_size_t cmsg_len; /* data byte count, including hdr */
  65. int cmsg_level; /* originating protocol */
  66. int cmsg_type; /* protocol-specific type */
  67. };
  68. /*
  69. * Ancillary data object information MACROS
  70. * Table 5-14 of POSIX 1003.1g
  71. */
  72. #define __CMSG_NXTHDR(ctl, len, cmsg) __cmsg_nxthdr((ctl),(len),(cmsg))
  73. #define CMSG_NXTHDR(mhdr, cmsg) cmsg_nxthdr((mhdr), (cmsg))
  74. #define CMSG_ALIGN(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
  75. #define CMSG_DATA(cmsg) ((void *)((char *)(cmsg) + CMSG_ALIGN(sizeof(struct cmsghdr))))
  76. #define CMSG_SPACE(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(len))
  77. #define CMSG_LEN(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
  78. #define __CMSG_FIRSTHDR(ctl,len) ((len) >= sizeof(struct cmsghdr) ? \
  79. (struct cmsghdr *)(ctl) : \
  80. (struct cmsghdr *)NULL)
  81. #define CMSG_FIRSTHDR(msg) __CMSG_FIRSTHDR((msg)->msg_control, (msg)->msg_controllen)
  82. #define CMSG_OK(mhdr, cmsg) ((cmsg)->cmsg_len >= sizeof(struct cmsghdr) && \
  83. (cmsg)->cmsg_len <= (unsigned long) \
  84. ((mhdr)->msg_controllen - \
  85. ((char *)(cmsg) - (char *)(mhdr)->msg_control)))
  86. #define for_each_cmsghdr(cmsg, msg) \
  87. for (cmsg = CMSG_FIRSTHDR(msg); \
  88. cmsg; \
  89. cmsg = CMSG_NXTHDR(msg, cmsg))
  90. /*
  91. * Get the next cmsg header
  92. *
  93. * PLEASE, do not touch this function. If you think, that it is
  94. * incorrect, grep kernel sources and think about consequences
  95. * before trying to improve it.
  96. *
  97. * Now it always returns valid, not truncated ancillary object
  98. * HEADER. But caller still MUST check, that cmsg->cmsg_len is
  99. * inside range, given by msg->msg_controllen before using
  100. * ancillary object DATA. --ANK (980731)
  101. */
  102. static inline struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size,
  103. struct cmsghdr *__cmsg)
  104. {
  105. struct cmsghdr * __ptr;
  106. __ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) + CMSG_ALIGN(__cmsg->cmsg_len));
  107. if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size)
  108. return (struct cmsghdr *)0;
  109. return __ptr;
  110. }
  111. static inline struct cmsghdr * cmsg_nxthdr (struct msghdr *__msg, struct cmsghdr *__cmsg)
  112. {
  113. return __cmsg_nxthdr(__msg->msg_control, __msg->msg_controllen, __cmsg);
  114. }
  115. static inline size_t msg_data_left(struct msghdr *msg)
  116. {
  117. return iov_iter_count(&msg->msg_iter);
  118. }
  119. /* "Socket"-level control message types: */
  120. #define SCM_RIGHTS 0x01 /* rw: access rights (array of int) */
  121. #define SCM_CREDENTIALS 0x02 /* rw: struct ucred */
  122. #define SCM_SECURITY 0x03 /* rw: security label */
  123. struct ucred {
  124. __u32 pid;
  125. __u32 uid;
  126. __u32 gid;
  127. };
  128. /* Supported address families. */
  129. #define AF_UNSPEC 0
  130. #define AF_UNIX 1 /* Unix domain sockets */
  131. #define AF_LOCAL 1 /* POSIX name for AF_UNIX */
  132. #define AF_INET 2 /* Internet IP Protocol */
  133. #define AF_AX25 3 /* Amateur Radio AX.25 */
  134. #define AF_IPX 4 /* Novell IPX */
  135. #define AF_APPLETALK 5 /* AppleTalk DDP */
  136. #define AF_NETROM 6 /* Amateur Radio NET/ROM */
  137. #define AF_BRIDGE 7 /* Multiprotocol bridge */
  138. #define AF_ATMPVC 8 /* ATM PVCs */
  139. #define AF_X25 9 /* Reserved for X.25 project */
  140. #define AF_INET6 10 /* IP version 6 */
  141. #define AF_ROSE 11 /* Amateur Radio X.25 PLP */
  142. #define AF_DECnet 12 /* Reserved for DECnet project */
  143. #define AF_NETBEUI 13 /* Reserved for 802.2LLC project*/
  144. #define AF_SECURITY 14 /* Security callback pseudo AF */
  145. #define AF_KEY 15 /* PF_KEY key management API */
  146. #define AF_NETLINK 16
  147. #define AF_ROUTE AF_NETLINK /* Alias to emulate 4.4BSD */
  148. #define AF_PACKET 17 /* Packet family */
  149. #define AF_ASH 18 /* Ash */
  150. #define AF_ECONET 19 /* Acorn Econet */
  151. #define AF_ATMSVC 20 /* ATM SVCs */
  152. #define AF_RDS 21 /* RDS sockets */
  153. #define AF_SNA 22 /* Linux SNA Project (nutters!) */
  154. #define AF_IRDA 23 /* IRDA sockets */
  155. #define AF_PPPOX 24 /* PPPoX sockets */
  156. #define AF_WANPIPE 25 /* Wanpipe API Sockets */
  157. #define AF_LLC 26 /* Linux LLC */
  158. #define AF_IB 27 /* Native InfiniBand address */
  159. #define AF_MPLS 28 /* MPLS */
  160. #define AF_CAN 29 /* Controller Area Network */
  161. #define AF_TIPC 30 /* TIPC sockets */
  162. #define AF_BLUETOOTH 31 /* Bluetooth sockets */
  163. #define AF_IUCV 32 /* IUCV sockets */
  164. #define AF_RXRPC 33 /* RxRPC sockets */
  165. #define AF_ISDN 34 /* mISDN sockets */
  166. #define AF_PHONET 35 /* Phonet sockets */
  167. #define AF_IEEE802154 36 /* IEEE802154 sockets */
  168. #define AF_CAIF 37 /* CAIF sockets */
  169. #define AF_ALG 38 /* Algorithm sockets */
  170. #define AF_NFC 39 /* NFC sockets */
  171. #define AF_VSOCK 40 /* vSockets */
  172. #define AF_MAX 41 /* For now.. */
  173. /* Protocol families, same as address families. */
  174. #define PF_UNSPEC AF_UNSPEC
  175. #define PF_UNIX AF_UNIX
  176. #define PF_LOCAL AF_LOCAL
  177. #define PF_INET AF_INET
  178. #define PF_AX25 AF_AX25
  179. #define PF_IPX AF_IPX
  180. #define PF_APPLETALK AF_APPLETALK
  181. #define PF_NETROM AF_NETROM
  182. #define PF_BRIDGE AF_BRIDGE
  183. #define PF_ATMPVC AF_ATMPVC
  184. #define PF_X25 AF_X25
  185. #define PF_INET6 AF_INET6
  186. #define PF_ROSE AF_ROSE
  187. #define PF_DECnet AF_DECnet
  188. #define PF_NETBEUI AF_NETBEUI
  189. #define PF_SECURITY AF_SECURITY
  190. #define PF_KEY AF_KEY
  191. #define PF_NETLINK AF_NETLINK
  192. #define PF_ROUTE AF_ROUTE
  193. #define PF_PACKET AF_PACKET
  194. #define PF_ASH AF_ASH
  195. #define PF_ECONET AF_ECONET
  196. #define PF_ATMSVC AF_ATMSVC
  197. #define PF_RDS AF_RDS
  198. #define PF_SNA AF_SNA
  199. #define PF_IRDA AF_IRDA
  200. #define PF_PPPOX AF_PPPOX
  201. #define PF_WANPIPE AF_WANPIPE
  202. #define PF_LLC AF_LLC
  203. #define PF_IB AF_IB
  204. #define PF_MPLS AF_MPLS
  205. #define PF_CAN AF_CAN
  206. #define PF_TIPC AF_TIPC
  207. #define PF_BLUETOOTH AF_BLUETOOTH
  208. #define PF_IUCV AF_IUCV
  209. #define PF_RXRPC AF_RXRPC
  210. #define PF_ISDN AF_ISDN
  211. #define PF_PHONET AF_PHONET
  212. #define PF_IEEE802154 AF_IEEE802154
  213. #define PF_CAIF AF_CAIF
  214. #define PF_ALG AF_ALG
  215. #define PF_NFC AF_NFC
  216. #define PF_VSOCK AF_VSOCK
  217. #define PF_MAX AF_MAX
  218. /* Maximum queue length specifiable by listen. */
  219. #define SOMAXCONN 128
  220. /* Flags we can use with send/ and recv.
  221. Added those for 1003.1g not all are supported yet
  222. */
  223. #define MSG_OOB 1
  224. #define MSG_PEEK 2
  225. #define MSG_DONTROUTE 4
  226. #define MSG_TRYHARD 4 /* Synonym for MSG_DONTROUTE for DECnet */
  227. #define MSG_CTRUNC 8
  228. #define MSG_PROBE 0x10 /* Do not send. Only probe path f.e. for MTU */
  229. #define MSG_TRUNC 0x20
  230. #define MSG_DONTWAIT 0x40 /* Nonblocking io */
  231. #define MSG_EOR 0x80 /* End of record */
  232. #define MSG_WAITALL 0x100 /* Wait for a full request */
  233. #define MSG_FIN 0x200
  234. #define MSG_SYN 0x400
  235. #define MSG_CONFIRM 0x800 /* Confirm path validity */
  236. #define MSG_RST 0x1000
  237. #define MSG_ERRQUEUE 0x2000 /* Fetch message from error queue */
  238. #define MSG_NOSIGNAL 0x4000 /* Do not generate SIGPIPE */
  239. #define MSG_MORE 0x8000 /* Sender will send more */
  240. #define MSG_WAITFORONE 0x10000 /* recvmmsg(): block until 1+ packets avail */
  241. #define MSG_SENDPAGE_NOTLAST 0x20000 /* sendpage() internal : not the last page */
  242. #define MSG_EOF MSG_FIN
  243. #define MSG_FASTOPEN 0x20000000 /* Send data in TCP SYN */
  244. #define MSG_CMSG_CLOEXEC 0x40000000 /* Set close_on_exec for file
  245. descriptor received through
  246. SCM_RIGHTS */
  247. #if defined(CONFIG_COMPAT)
  248. #define MSG_CMSG_COMPAT 0x80000000 /* This message needs 32 bit fixups */
  249. #else
  250. #define MSG_CMSG_COMPAT 0 /* We never have 32 bit fixups */
  251. #endif
  252. /* Setsockoptions(2) level. Thanks to BSD these must match IPPROTO_xxx */
  253. #define SOL_IP 0
  254. /* #define SOL_ICMP 1 No-no-no! Due to Linux :-) we cannot use SOL_ICMP=1 */
  255. #define SOL_TCP 6
  256. #define SOL_UDP 17
  257. #define SOL_IPV6 41
  258. #define SOL_ICMPV6 58
  259. #define SOL_SCTP 132
  260. #define SOL_UDPLITE 136 /* UDP-Lite (RFC 3828) */
  261. #define SOL_RAW 255
  262. #define SOL_IPX 256
  263. #define SOL_AX25 257
  264. #define SOL_ATALK 258
  265. #define SOL_NETROM 259
  266. #define SOL_ROSE 260
  267. #define SOL_DECNET 261
  268. #define SOL_X25 262
  269. #define SOL_PACKET 263
  270. #define SOL_ATM 264 /* ATM layer (cell level) */
  271. #define SOL_AAL 265 /* ATM Adaption Layer (packet level) */
  272. #define SOL_IRDA 266
  273. #define SOL_NETBEUI 267
  274. #define SOL_LLC 268
  275. #define SOL_DCCP 269
  276. #define SOL_NETLINK 270
  277. #define SOL_TIPC 271
  278. #define SOL_RXRPC 272
  279. #define SOL_PPPOL2TP 273
  280. #define SOL_BLUETOOTH 274
  281. #define SOL_PNPIPE 275
  282. #define SOL_RDS 276
  283. #define SOL_IUCV 277
  284. #define SOL_CAIF 278
  285. #define SOL_ALG 279
  286. #define SOL_NFC 280
  287. /* IPX options */
  288. #define IPX_TYPE 1
  289. extern int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr);
  290. extern int put_cmsg(struct msghdr*, int level, int type, int len, void *data);
  291. struct timespec;
  292. /* The __sys_...msg variants allow MSG_CMSG_COMPAT */
  293. extern long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned flags);
  294. extern long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags);
  295. extern int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
  296. unsigned int flags, struct timespec *timeout);
  297. extern int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg,
  298. unsigned int vlen, unsigned int flags);
  299. #endif /* _LINUX_SOCKET_H */