net.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET An implementation of the SOCKET network access protocol.
  3.  * This is the master header file for the Linux NET layer,
  4.  * or, in plain English: the networking handling part of the
  5.  * kernel.
  6.  *
  7.  * Version: @(#)net.h 1.0.3 05/25/93
  8.  *
  9.  * Authors: Orest Zborowski, <obz@Kodak.COM>
  10.  * Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  *
  13.  * This program is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU General Public License
  15.  * as published by the Free Software Foundation; either version
  16.  * 2 of the License, or (at your option) any later version.
  17.  */
  18. #ifndef _LINUX_NET_H
  19. #define _LINUX_NET_H
  20. #include <linux/config.h>
  21. #include <linux/socket.h>
  22. #include <linux/wait.h>
  23. struct poll_table_struct;
  24. #define NPROTO 32 /* should be enough for now.. */
  25. #define SYS_SOCKET 1 /* sys_socket(2) */
  26. #define SYS_BIND 2 /* sys_bind(2) */
  27. #define SYS_CONNECT 3 /* sys_connect(2) */
  28. #define SYS_LISTEN 4 /* sys_listen(2) */
  29. #define SYS_ACCEPT 5 /* sys_accept(2) */
  30. #define SYS_GETSOCKNAME 6 /* sys_getsockname(2) */
  31. #define SYS_GETPEERNAME 7 /* sys_getpeername(2) */
  32. #define SYS_SOCKETPAIR 8 /* sys_socketpair(2) */
  33. #define SYS_SEND 9 /* sys_send(2) */
  34. #define SYS_RECV 10 /* sys_recv(2) */
  35. #define SYS_SENDTO 11 /* sys_sendto(2) */
  36. #define SYS_RECVFROM 12 /* sys_recvfrom(2) */
  37. #define SYS_SHUTDOWN 13 /* sys_shutdown(2) */
  38. #define SYS_SETSOCKOPT 14 /* sys_setsockopt(2) */
  39. #define SYS_GETSOCKOPT 15 /* sys_getsockopt(2) */
  40. #define SYS_SENDMSG 16 /* sys_sendmsg(2) */
  41. #define SYS_RECVMSG 17 /* sys_recvmsg(2) */
  42. typedef enum {
  43.   SS_FREE = 0, /* not allocated */
  44.   SS_UNCONNECTED, /* unconnected to any socket */
  45.   SS_CONNECTING, /* in process of connecting */
  46.   SS_CONNECTED, /* connected to socket */
  47.   SS_DISCONNECTING /* in process of disconnecting */
  48. } socket_state;
  49. #define __SO_ACCEPTCON (1<<16) /* performed a listen */
  50. #ifdef __KERNEL__
  51. #define SOCK_ASYNC_NOSPACE 0
  52. #define SOCK_ASYNC_WAITDATA 1
  53. #define SOCK_NOSPACE 2
  54. struct socket
  55. {
  56. socket_state state;
  57. unsigned long flags;
  58. struct proto_ops *ops;
  59. struct inode *inode;
  60. struct fasync_struct *fasync_list; /* Asynchronous wake up list */
  61. struct file *file; /* File back pointer for gc */
  62. struct sock *sk;
  63. wait_queue_head_t wait;
  64. short type;
  65. unsigned char passcred;
  66. };
  67. #define SOCK_INODE(S) ((S)->inode)
  68. struct scm_cookie;
  69. struct vm_area_struct;
  70. struct page;
  71. struct proto_ops {
  72.   int family;
  73.   int (*release) (struct socket *sock);
  74.   int (*bind) (struct socket *sock, struct sockaddr *umyaddr,
  75.  int sockaddr_len);
  76.   int (*connect) (struct socket *sock, struct sockaddr *uservaddr,
  77.  int sockaddr_len, int flags);
  78.   int (*socketpair) (struct socket *sock1, struct socket *sock2);
  79.   int (*accept) (struct socket *sock, struct socket *newsock,
  80.  int flags);
  81.   int (*getname) (struct socket *sock, struct sockaddr *uaddr,
  82.  int *usockaddr_len, int peer);
  83.   unsigned int (*poll) (struct file *file, struct socket *sock, struct poll_table_struct *wait);
  84.   int (*ioctl) (struct socket *sock, unsigned int cmd,
  85.  unsigned long arg);
  86.   int (*listen) (struct socket *sock, int len);
  87.   int (*shutdown) (struct socket *sock, int flags);
  88.   int (*setsockopt) (struct socket *sock, int level, int optname,
  89.  char *optval, int optlen);
  90.   int (*getsockopt) (struct socket *sock, int level, int optname,
  91.  char *optval, int *optlen);
  92.   int   (*sendmsg) (struct socket *sock, struct msghdr *m, int total_len, struct scm_cookie *scm);
  93.   int   (*recvmsg) (struct socket *sock, struct msghdr *m, int total_len, int flags, struct scm_cookie *scm);
  94.   int (*mmap) (struct file *file, struct socket *sock, struct vm_area_struct * vma);
  95.   ssize_t (*sendpage) (struct socket *sock, struct page *page, int offset, size_t size, int flags);
  96. };
  97. struct net_proto_family 
  98. {
  99. int family;
  100. int (*create)(struct socket *sock, int protocol);
  101. /* These are counters for the number of different methods of
  102.    each we support */
  103. short authentication;
  104. short encryption;
  105. short encrypt_net;
  106. };
  107. struct net_proto 
  108. {
  109. const char *name; /* Protocol name */
  110. void (*init_func)(struct net_proto *); /* Bootstrap */
  111. };
  112. extern int sock_wake_async(struct socket *sk, int how, int band);
  113. extern int sock_register(struct net_proto_family *fam);
  114. extern int sock_unregister(int family);
  115. extern struct socket *sock_alloc(void);
  116. extern int sock_create(int family, int type, int proto, struct socket **);
  117. extern void sock_release(struct socket *);
  118. extern int    sock_sendmsg(struct socket *, struct msghdr *m, int len);
  119. extern int sock_recvmsg(struct socket *, struct msghdr *m, int len, int flags);
  120. extern int sock_readv_writev(int type, struct inode * inode, struct file * file,
  121.   const struct iovec * iov, long count, long size);
  122. extern int net_ratelimit(void);
  123. extern unsigned long net_random(void);
  124. extern void net_srandom(unsigned long);
  125. #ifndef CONFIG_SMP
  126. #define SOCKOPS_WRAPPED(name) name
  127. #define SOCKOPS_WRAP(name, fam)
  128. #else
  129. #define SOCKOPS_WRAPPED(name) __unlocked_##name
  130. #define SOCKCALL_WRAP(name, call, parms, args)
  131. static int __lock_##name##_##call  parms
  132. {
  133. int ret;
  134. lock_kernel();
  135. ret = __unlocked_##name##_ops.call  args ;
  136. unlock_kernel();
  137. return ret;
  138. }
  139. #define SOCKCALL_UWRAP(name, call, parms, args)
  140. static unsigned int __lock_##name##_##call  parms
  141. {
  142. int ret;
  143. lock_kernel();
  144. ret = __unlocked_##name##_ops.call  args ;
  145. unlock_kernel();
  146. return ret;
  147. }
  148. #define SOCKOPS_WRAP(name, fam)
  149. SOCKCALL_WRAP(name, release, (struct socket *sock), (sock))
  150. SOCKCALL_WRAP(name, bind, (struct socket *sock, struct sockaddr *uaddr, int addr_len), 
  151.       (sock, uaddr, addr_len))
  152. SOCKCALL_WRAP(name, connect, (struct socket *sock, struct sockaddr * uaddr, 
  153.       int addr_len, int flags), 
  154.       (sock, uaddr, addr_len, flags))
  155. SOCKCALL_WRAP(name, socketpair, (struct socket *sock1, struct socket *sock2), 
  156.       (sock1, sock2))
  157. SOCKCALL_WRAP(name, accept, (struct socket *sock, struct socket *newsock, 
  158.  int flags), (sock, newsock, flags)) 
  159. SOCKCALL_WRAP(name, getname, (struct socket *sock, struct sockaddr *uaddr, 
  160.  int *addr_len, int peer), (sock, uaddr, addr_len, peer)) 
  161. SOCKCALL_UWRAP(name, poll, (struct file *file, struct socket *sock, struct poll_table_struct *wait), 
  162.       (file, sock, wait)) 
  163. SOCKCALL_WRAP(name, ioctl, (struct socket *sock, unsigned int cmd, 
  164.  unsigned long arg), (sock, cmd, arg)) 
  165. SOCKCALL_WRAP(name, listen, (struct socket *sock, int len), (sock, len)) 
  166. SOCKCALL_WRAP(name, shutdown, (struct socket *sock, int flags), (sock, flags)) 
  167. SOCKCALL_WRAP(name, setsockopt, (struct socket *sock, int level, int optname, 
  168.  char *optval, int optlen), (sock, level, optname, optval, optlen)) 
  169. SOCKCALL_WRAP(name, getsockopt, (struct socket *sock, int level, int optname, 
  170.  char *optval, int *optlen), (sock, level, optname, optval, optlen)) 
  171. SOCKCALL_WRAP(name, sendmsg, (struct socket *sock, struct msghdr *m, int len, struct scm_cookie *scm), 
  172.       (sock, m, len, scm)) 
  173. SOCKCALL_WRAP(name, recvmsg, (struct socket *sock, struct msghdr *m, int len, int flags, struct scm_cookie *scm), 
  174.       (sock, m, len, flags, scm)) 
  175. SOCKCALL_WRAP(name, mmap, (struct file *file, struct socket *sock, struct vm_area_struct *vma), 
  176.       (file, sock, vma)) 
  177.       
  178. static struct proto_ops name##_ops = {
  179. family: fam,
  180. release: __lock_##name##_release,
  181. bind: __lock_##name##_bind,
  182. connect: __lock_##name##_connect,
  183. socketpair: __lock_##name##_socketpair,
  184. accept: __lock_##name##_accept,
  185. getname: __lock_##name##_getname,
  186. poll: __lock_##name##_poll,
  187. ioctl: __lock_##name##_ioctl,
  188. listen: __lock_##name##_listen,
  189. shutdown: __lock_##name##_shutdown,
  190. setsockopt: __lock_##name##_setsockopt,
  191. getsockopt: __lock_##name##_getsockopt,
  192. sendmsg: __lock_##name##_sendmsg,
  193. recvmsg: __lock_##name##_recvmsg,
  194. mmap: __lock_##name##_mmap,
  195. };
  196. #endif
  197. #endif /* __KERNEL__ */
  198. #endif /* _LINUX_NET_H */