socket.h 9.5 KB

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