1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 #ifndef _LINUX_NET_H
19 #define _LINUX_NET_H
20
21
22 #include <linux/wait.h>
23 #include <linux/socket.h>
24
25
26 #define NSOCKETS 2000
27 #define NSOCKETS_UNIX 128
28 #define NPROTO 16
29
30
31 #define SYS_SOCKET 1
32 #define SYS_BIND 2
33 #define SYS_CONNECT 3
34 #define SYS_LISTEN 4
35 #define SYS_ACCEPT 5
36 #define SYS_GETSOCKNAME 6
37 #define SYS_GETPEERNAME 7
38 #define SYS_SOCKETPAIR 8
39 #define SYS_SEND 9
40 #define SYS_RECV 10
41 #define SYS_SENDTO 11
42 #define SYS_RECVFROM 12
43 #define SYS_SHUTDOWN 13
44 #define SYS_SETSOCKOPT 14
45 #define SYS_GETSOCKOPT 15
46
47
48 typedef enum {
49 SS_FREE = 0,
50 SS_UNCONNECTED,
51 SS_CONNECTING,
52 SS_CONNECTED,
53 SS_DISCONNECTING
54 } socket_state;
55
56 #define SO_ACCEPTCON (1<<16)
57 #define SO_WAITDATA (1<<17)
58 #define SO_NOSPACE (1<<18)
59
60 #ifdef __KERNEL__
61
62
63
64
65
66
67
68
69
70
71
72 struct socket {
73 short type;
74 socket_state state;
75 long flags;
76 struct proto_ops *ops;
77 void *data;
78 struct socket *conn;
79 struct socket *iconn;
80 struct socket *next;
81 struct wait_queue **wait;
82 struct inode *inode;
83 struct fasync_struct *fasync_list;
84 };
85
86 #define SOCK_INODE(S) ((S)->inode)
87
88 struct proto_ops {
89 int family;
90
91 int (*create) (struct socket *sock, int protocol);
92 int (*dup) (struct socket *newsock, struct socket *oldsock);
93 int (*release) (struct socket *sock, struct socket *peer);
94 int (*bind) (struct socket *sock, struct sockaddr *umyaddr,
95 int sockaddr_len);
96 int (*connect) (struct socket *sock, struct sockaddr *uservaddr,
97 int sockaddr_len, int flags);
98 int (*socketpair) (struct socket *sock1, struct socket *sock2);
99 int (*accept) (struct socket *sock, struct socket *newsock,
100 int flags);
101 int (*getname) (struct socket *sock, struct sockaddr *uaddr,
102 int *usockaddr_len, int peer);
103 int (*read) (struct socket *sock, char *ubuf, int size,
104 int nonblock);
105 int (*write) (struct socket *sock, char *ubuf, int size,
106 int nonblock);
107 int (*select) (struct socket *sock, int sel_type,
108 select_table *wait);
109 int (*ioctl) (struct socket *sock, unsigned int cmd,
110 unsigned long arg);
111 int (*listen) (struct socket *sock, int len);
112 int (*send) (struct socket *sock, void *buff, int len, int nonblock,
113 unsigned flags);
114 int (*recv) (struct socket *sock, void *buff, int len, int nonblock,
115 unsigned flags);
116 int (*sendto) (struct socket *sock, void *buff, int len, int nonblock,
117 unsigned flags, struct sockaddr *, int addr_len);
118 int (*recvfrom) (struct socket *sock, void *buff, int len, int nonblock,
119 unsigned flags, struct sockaddr *, int *addr_len);
120 int (*shutdown) (struct socket *sock, int flags);
121 int (*setsockopt) (struct socket *sock, int level, int optname,
122 char *optval, int optlen);
123 int (*getsockopt) (struct socket *sock, int level, int optname,
124 char *optval, int *optlen);
125 int (*fcntl) (struct socket *sock, unsigned int cmd,
126 unsigned long arg);
127 };
128
129 struct net_proto {
130 char *name;
131 void (*init_func)(struct net_proto *);
132 };
133
134 extern int sock_awaitconn(struct socket *mysock, struct socket *servsock, int flags);
135 extern int sock_wake_async(struct socket *sock, int how);
136 extern int sock_register(int family, struct proto_ops *ops);
137 extern int sock_unregister(int family);
138 extern struct socket *sock_alloc(void);
139 extern void sock_release(struct socket *sock);
140 #endif
141 #endif