socket.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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