socket.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. #ifndef _LINUX_SOCKET_H
  2. #define _LINUX_SOCKET_H
  3. /*
  4. * Desired design of maximum size and alignment (see RFC2553)
  5. */
  6. #define _K_SS_MAXSIZE 128 /* Implementation specific max size */
  7. #define _K_SS_ALIGNSIZE (__alignof__ (struct sockaddr *))
  8. /* Implementation specific desired alignment */
  9. struct __kernel_sockaddr_storage {
  10. unsigned short ss_family; /* address family */
  11. /* Following field(s) are implementation specific */
  12. char __data[_K_SS_MAXSIZE - sizeof(unsigned short)];
  13. /* space to achieve desired size, */
  14. /* _SS_MAXSIZE value minus size of ss_family */
  15. } __attribute__ ((aligned(_K_SS_ALIGNSIZE))); /* force desired alignment */
  16. #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)
  17. #include <linux/config.h> /* for CONFIG_COMPAT */
  18. #include <linux/linkage.h>
  19. #include <asm/socket.h> /* arch-dependent defines */
  20. #include <linux/sockios.h> /* the SIOCxxx I/O controls */
  21. #include <linux/uio.h> /* iovec support */
  22. #include <linux/types.h> /* pid_t */
  23. #include <linux/compiler.h> /* __user */
  24. extern int sysctl_somaxconn;
  25. #ifdef CONFIG_PROC_FS
  26. struct seq_file;
  27. extern void socket_seq_show(struct seq_file *seq);
  28. #endif
  29. typedef unsigned short sa_family_t;
  30. /*
  31. * 1003.1g requires sa_family_t and that sa_data is char.
  32. */
  33. struct sockaddr {
  34. sa_family_t sa_family; /* address family, AF_xxx */
  35. char sa_data[14]; /* 14 bytes of protocol address */
  36. };
  37. struct linger {
  38. int l_onoff; /* Linger active */
  39. int l_linger; /* How long to linger for */
  40. };
  41. #define sockaddr_storage __kernel_sockaddr_storage
  42. /*
  43. * As we do 4.4BSD message passing we use a 4.4BSD message passing
  44. * system, not 4.3. Thus msg_accrights(len) are now missing. They
  45. * belong in an obscure libc emulation or the bin.
  46. */
  47. struct msghdr {
  48. void * msg_name; /* Socket name */
  49. int msg_namelen; /* Length of name */
  50. struct iovec * msg_iov; /* Data blocks */
  51. __kernel_size_t msg_iovlen; /* Number of blocks */
  52. void * msg_control; /* Per protocol magic (eg BSD file descriptor passing) */
  53. __kernel_size_t msg_controllen; /* Length of cmsg list */
  54. unsigned msg_flags;
  55. };
  56. /*
  57. * POSIX 1003.1g - ancillary data object information
  58. * Ancillary data consits of a sequence of pairs of
  59. * (cmsghdr, cmsg_data[])
  60. */
  61. struct cmsghdr {
  62. __kernel_size_t cmsg_len; /* data byte count, including hdr */
  63. int cmsg_level; /* originating protocol */
  64. int cmsg_type; /* protocol-specific type */
  65. };
  66. /*
  67. * Ancilliary data object information MACROS
  68. * Table 5-14 of POSIX 1003.1g
  69. */
  70. #define __CMSG_NXTHDR(ctl, len, cmsg) __cmsg_nxthdr((ctl),(len),(cmsg))
  71. #define CMSG_NXTHDR(mhdr, cmsg) cmsg_nxthdr((mhdr), (cmsg))
  72. #define CMSG_ALIGN(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
  73. #define CMSG_DATA(cmsg) ((void *)((char *)(cmsg) + CMSG_ALIGN(sizeof(struct cmsghdr))))
  74. #define CMSG_SPACE(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(len))
  75. #define CMSG_LEN(len) (CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
  76. #define __CMSG_FIRSTHDR(ctl,len) ((len) >= sizeof(struct cmsghdr) ? \
  77. (struct cmsghdr *)(ctl) : \
  78. (struct cmsghdr *)NULL)
  79. #define CMSG_FIRSTHDR(msg) __CMSG_FIRSTHDR((msg)->msg_control, (msg)->msg_controllen)
  80. #define CMSG_OK(mhdr, cmsg) ((cmsg)->cmsg_len >= sizeof(struct cmsghdr) && \
  81. (cmsg)->cmsg_len <= (unsigned long) \
  82. ((mhdr)->msg_controllen - \
  83. ((char *)(cmsg) - (char *)(mhdr)->msg_control)))
  84. /*
  85. * This mess will go away with glibc
  86. */
  87. #ifdef __KERNEL__
  88. #define __KINLINE static inline
  89. #elif defined(__GNUC__)
  90. #define __KINLINE static __inline__
  91. #elif defined(__cplusplus)
  92. #define __KINLINE static inline
  93. #else
  94. #define __KINLINE static
  95. #endif
  96. /*
  97. * Get the next cmsg header
  98. *
  99. * PLEASE, do not touch this function. If you think, that it is
  100. * incorrect, grep kernel sources and think about consequences
  101. * before trying to improve it.
  102. *
  103. * Now it always returns valid, not truncated ancillary object
  104. * HEADER. But caller still MUST check, that cmsg->cmsg_len is
  105. * inside range, given by msg->msg_controllen before using
  106. * ancillary object DATA. --ANK (980731)
  107. */
  108. __KINLINE struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size,
  109. struct cmsghdr *__cmsg)
  110. {
  111. struct cmsghdr * __ptr;
  112. __ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) + CMSG_ALIGN(__cmsg->cmsg_len));
  113. if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size)
  114. return (struct cmsghdr *)0;
  115. return __ptr;
  116. }
  117. __KINLINE struct cmsghdr * cmsg_nxthdr (struct msghdr *__msg, struct cmsghdr *__cmsg)
  118. {
  119. return __cmsg_nxthdr(__msg->msg_control, __msg->msg_controllen, __cmsg);
  120. }
  121. /* "Socket"-level control message types: */
  122. #define SCM_RIGHTS 0x01 /* rw: access rights (array of int) */
  123. #define SCM_CREDENTIALS 0x02 /* rw: struct ucred */
  124. #define SCM_SECURITY 0x03 /* rw: security label */
  125. struct ucred {
  126. __u32 pid;
  127. __u32 uid;
  128. __u32 gid;
  129. };
  130. /* Supported address families. */
  131. #define AF_UNSPEC 0
  132. #define AF_UNIX 1 /* Unix domain sockets */
  133. #define AF_LOCAL 1 /* POSIX name for AF_UNIX */
  134. #define AF_INET 2 /* Internet IP Protocol */
  135. #define AF_AX25 3 /* Amateur Radio AX.25 */
  136. #define AF_IPX 4 /* Novell IPX */
  137. #define AF_APPLETALK 5 /* AppleTalk DDP */
  138. #define AF_NETROM 6 /* Amateur Radio NET/ROM */
  139. #define AF_BRIDGE 7 /* Multiprotocol bridge */
  140. #define AF_ATMPVC 8 /* ATM PVCs */
  141. #define AF_X25 9 /* Reserved for X.25 project */
  142. #define AF_INET6 10 /* IP version 6 */
  143. #define AF_ROSE 11 /* Amateur Radio X.25 PLP */
  144. #define AF_DECnet 12 /* Reserved for DECnet project */
  145. #define AF_NETBEUI 13 /* Reserved for 802.2LLC project*/
  146. #define AF_SECURITY 14 /* Security callback pseudo AF */
  147. #define AF_KEY 15 /* PF_KEY key management API */
  148. #define AF_NETLINK 16
  149. #define AF_ROUTE AF_NETLINK /* Alias to emulate 4.4BSD */
  150. #define AF_PACKET 17 /* Packet family */
  151. #define AF_ASH 18 /* Ash */
  152. #define AF_ECONET 19 /* Acorn Econet */
  153. #define AF_ATMSVC 20 /* ATM SVCs */
  154. #define AF_SNA 22 /* Linux SNA Project (nutters!) */
  155. #define AF_IRDA 23 /* IRDA sockets */
  156. #define AF_PPPOX 24 /* PPPoX sockets */
  157. #define AF_WANPIPE 25 /* Wanpipe API Sockets */
  158. #define AF_LLC 26 /* Linux LLC */
  159. #define AF_TIPC 30 /* TIPC sockets */
  160. #define AF_BLUETOOTH 31 /* Bluetooth sockets */
  161. #define AF_MAX 32 /* For now.. */
  162. /* Protocol families, same as address families. */
  163. #define PF_UNSPEC AF_UNSPEC
  164. #define PF_UNIX AF_UNIX
  165. #define PF_LOCAL AF_LOCAL
  166. #define PF_INET AF_INET
  167. #define PF_AX25 AF_AX25
  168. #define PF_IPX AF_IPX
  169. #define PF_APPLETALK AF_APPLETALK
  170. #define PF_NETROM AF_NETROM
  171. #define PF_BRIDGE AF_BRIDGE
  172. #define PF_ATMPVC AF_ATMPVC
  173. #define PF_X25 AF_X25
  174. #define PF_INET6 AF_INET6
  175. #define PF_ROSE AF_ROSE
  176. #define PF_DECnet AF_DECnet
  177. #define PF_NETBEUI AF_NETBEUI
  178. #define PF_SECURITY AF_SECURITY
  179. #define PF_KEY AF_KEY
  180. #define PF_NETLINK AF_NETLINK
  181. #define PF_ROUTE AF_ROUTE
  182. #define PF_PACKET AF_PACKET
  183. #define PF_ASH AF_ASH
  184. #define PF_ECONET AF_ECONET
  185. #define PF_ATMSVC AF_ATMSVC
  186. #define PF_SNA AF_SNA
  187. #define PF_IRDA AF_IRDA
  188. #define PF_PPPOX AF_PPPOX
  189. #define PF_WANPIPE AF_WANPIPE
  190. #define PF_LLC AF_LLC
  191. #define PF_TIPC AF_TIPC
  192. #define PF_BLUETOOTH AF_BLUETOOTH
  193. #define PF_MAX AF_MAX
  194. /* Maximum queue length specifiable by listen. */
  195. #define SOMAXCONN 128
  196. /* Flags we can use with send/ and recv.
  197. Added those for 1003.1g not all are supported yet
  198. */
  199. #define MSG_OOB 1
  200. #define MSG_PEEK 2
  201. #define MSG_DONTROUTE 4
  202. #define MSG_TRYHARD 4 /* Synonym for MSG_DONTROUTE for DECnet */
  203. #define MSG_CTRUNC 8
  204. #define MSG_PROBE 0x10 /* Do not send. Only probe path f.e. for MTU */
  205. #define MSG_TRUNC 0x20
  206. #define MSG_DONTWAIT 0x40 /* Nonblocking io */
  207. #define MSG_EOR 0x80 /* End of record */
  208. #define MSG_WAITALL 0x100 /* Wait for a full request */
  209. #define MSG_FIN 0x200
  210. #define MSG_SYN 0x400
  211. #define MSG_CONFIRM 0x800 /* Confirm path validity */
  212. #define MSG_RST 0x1000
  213. #define MSG_ERRQUEUE 0x2000 /* Fetch message from error queue */
  214. #define MSG_NOSIGNAL 0x4000 /* Do not generate SIGPIPE */
  215. #define MSG_MORE 0x8000 /* Sender will send more */
  216. #define MSG_EOF MSG_FIN
  217. #if defined(CONFIG_COMPAT)
  218. #define MSG_CMSG_COMPAT 0x80000000 /* This message needs 32 bit fixups */
  219. #else
  220. #define MSG_CMSG_COMPAT 0 /* We never have 32 bit fixups */
  221. #endif
  222. /* Setsockoptions(2) level. Thanks to BSD these must match IPPROTO_xxx */
  223. #define SOL_IP 0
  224. /* #define SOL_ICMP 1 No-no-no! Due to Linux :-) we cannot use SOL_ICMP=1 */
  225. #define SOL_TCP 6
  226. #define SOL_UDP 17
  227. #define SOL_IPV6 41
  228. #define SOL_ICMPV6 58
  229. #define SOL_SCTP 132
  230. #define SOL_RAW 255
  231. #define SOL_IPX 256
  232. #define SOL_AX25 257
  233. #define SOL_ATALK 258
  234. #define SOL_NETROM 259
  235. #define SOL_ROSE 260
  236. #define SOL_DECNET 261
  237. #define SOL_X25 262
  238. #define SOL_PACKET 263
  239. #define SOL_ATM 264 /* ATM layer (cell level) */
  240. #define SOL_AAL 265 /* ATM Adaption Layer (packet level) */
  241. #define SOL_IRDA 266
  242. #define SOL_NETBEUI 267
  243. #define SOL_LLC 268
  244. #define SOL_DCCP 269
  245. #define SOL_NETLINK 270
  246. #define SOL_TIPC 271
  247. /* IPX options */
  248. #define IPX_TYPE 1
  249. #ifdef __KERNEL__
  250. extern int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len);
  251. extern int memcpy_fromiovecend(unsigned char *kdata, struct iovec *iov,
  252. int offset, int len);
  253. extern int csum_partial_copy_fromiovecend(unsigned char *kdata,
  254. struct iovec *iov,
  255. int offset,
  256. unsigned int len, int *csump);
  257. extern int verify_iovec(struct msghdr *m, struct iovec *iov, char *address, int mode);
  258. extern int memcpy_toiovec(struct iovec *v, unsigned char *kdata, int len);
  259. extern int move_addr_to_user(void *kaddr, int klen, void __user *uaddr, int __user *ulen);
  260. extern int move_addr_to_kernel(void __user *uaddr, int ulen, void *kaddr);
  261. extern int put_cmsg(struct msghdr*, int level, int type, int len, void *data);
  262. #endif
  263. #endif /* not kernel and not glibc */
  264. #endif /* _LINUX_SOCKET_H */