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
21
22 #include <linux/wait.h>
23 #include <linux/socket.h>
24
25
26 #define NSOCKETS 2000 /* Dynamic, this is MAX LIMIT */
27 #define NSOCKETS_UNIX 128 /* unix domain static limit */
28 #define NPROTO 16 /* should be enough for now.. */
29
30
31 #define SYS_SOCKET 1 /* sys_socket(2) */
32 #define SYS_BIND 2 /* sys_bind(2) */
33 #define SYS_CONNECT 3 /* sys_connect(2) */
34 #define SYS_LISTEN 4 /* sys_listen(2) */
35 #define SYS_ACCEPT 5 /* sys_accept(2) */
36 #define SYS_GETSOCKNAME 6 /* sys_getsockname(2) */
37 #define SYS_GETPEERNAME 7 /* sys_getpeername(2) */
38 #define SYS_SOCKETPAIR 8 /* sys_socketpair(2) */
39 #define SYS_SEND 9 /* sys_send(2) */
40 #define SYS_RECV 10 /* sys_recv(2) */
41 #define SYS_SENDTO 11 /* sys_sendto(2) */
42 #define SYS_RECVFROM 12 /* sys_recvfrom(2) */
43 #define SYS_SHUTDOWN 13 /* sys_shutdown(2) */
44 #define SYS_SETSOCKOPT 14 /* sys_setsockopt(2) */
45 #define SYS_GETSOCKOPT 15 /* sys_getsockopt(2) */
46 #define SYS_SENDMSG 16 /* sys_sendmsg(2) */
47 #define SYS_RECVMSG 17 /* sys_recvmsg(2) */
48
49
50 typedef enum {
51 SS_FREE = 0, /* not allocated */
52 SS_UNCONNECTED, /* unconnected to any socket */
53 SS_CONNECTING, /* in process of connecting */
54 SS_CONNECTED, /* connected to socket */
55 SS_DISCONNECTING /* in process of disconnecting */
56 } socket_state;
57
58 #define SO_ACCEPTCON (1<<16) /* performed a listen */
59 #define SO_WAITDATA (1<<17) /* wait data to read */
60 #define SO_NOSPACE (1<<18) /* no space to write */
61
62 #ifdef __KERNEL__
63 /*
64 * Internal representation of a socket. not all the fields are used by
65 * all configurations:
66 *
67 * server client
68 * conn client connected to server connected to
69 * iconn list of clients -unused-
70 * awaiting connections
71 * wait sleep for clients, sleep for connection,
72 * sleep for i/o sleep for i/o
73 */
74 struct socket {
75 short type; /* SOCK_STREAM, ... */
76 socket_state state;
77 long flags;
78 struct proto_ops *ops; /* protocols do most everything */
79 void *data; /* protocol data */
80 struct socket *conn; /* server socket connected to */
81 struct socket *iconn; /* incomplete client conn.s */
82 struct socket *next;
83 struct wait_queue **wait; /* ptr to place to wait on */
84 struct inode *inode;
85 struct fasync_struct *fasync_list; /* Asynchronous wake up list */
86 struct file *file; /* File back pointer for gc */
87 };
88
89 #define SOCK_INODE(S) ((S)->inode)
90
91 struct proto_ops {
92 int family;
93
94 int (*create) (struct socket *sock, int protocol);
95 int (*dup) (struct socket *newsock, struct socket *oldsock);
96 int (*release) (struct socket *sock, struct socket *peer);
97 int (*bind) (struct socket *sock, struct sockaddr *umyaddr,
98 int sockaddr_len);
99 int (*connect) (struct socket *sock, struct sockaddr *uservaddr,
100 int sockaddr_len, int flags);
101 int (*socketpair) (struct socket *sock1, struct socket *sock2);
102 int (*accept) (struct socket *sock, struct socket *newsock,
103 int flags);
104 int (*getname) (struct socket *sock, struct sockaddr *uaddr,
105 int *usockaddr_len, int peer);
106 int (*select) (struct socket *sock, int sel_type,
107 select_table *wait);
108 int (*ioctl) (struct socket *sock, unsigned int cmd,
109 unsigned long arg);
110 int (*listen) (struct socket *sock, int len);
111 int (*shutdown) (struct socket *sock, int flags);
112 int (*setsockopt) (struct socket *sock, int level, int optname,
113 char *optval, int optlen);
114 int (*getsockopt) (struct socket *sock, int level, int optname,
115 char *optval, int *optlen);
116 int (*fcntl) (struct socket *sock, unsigned int cmd,
117 unsigned long arg);
118 int (*sendmsg) (struct socket *sock, struct msghdr *m, int total_len, int nonblock, int flags);
119 int (*recvmsg) (struct socket *sock, struct msghdr *m, int total_len, int nonblock, int flags, int *addr_len);
120 };
121
122 struct net_proto {
123 const char *name; /* Protocol name */
124 void (*init_func)(struct net_proto *); /* Bootstrap */
125 };
126
127 extern int sock_wake_async(struct socket *sock, int how);
128 extern int sock_register(int family, struct proto_ops *ops);
129 extern int sock_unregister(int family);
130 extern struct socket *sock_alloc(void);
131 extern void sock_release(struct socket *sock);
132 #endif /* __KERNEL__ */
133 #endif /* _LINUX_NET_H */