socket.h 9.3 KB

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