can: replace timestamp as unique skb attribute
[linux-2.6-block.git] / include / linux / net.h
CommitLineData
1da177e4
LT
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>
02c30a84 10 * Ross Biro
1da177e4
LT
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
eacf17bd 21#include <linux/stringify.h>
cb4db4c2 22#include <linux/random.h>
5770a3fb
DW
23#include <linux/wait.h>
24#include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */
29a020d3 25#include <linux/kmemcheck.h>
43815482 26#include <linux/rcupdate.h>
c68c7f5a 27#include <linux/jump_label.h>
607ca46e 28#include <uapi/linux/net.h>
5770a3fb
DW
29
30struct poll_table_struct;
31struct pipe_inode_info;
32struct inode;
56b31d1c 33struct file;
5770a3fb 34struct net;
1da177e4
LT
35
36#define SOCK_ASYNC_NOSPACE 0
37#define SOCK_ASYNC_WAITDATA 1
38#define SOCK_NOSPACE 2
39#define SOCK_PASSCRED 3
877ce7c1 40#define SOCK_PASSSEC 4
1da177e4
LT
41
42#ifndef ARCH_HAS_SOCKET_TYPES
4dc3b16b
PP
43/**
44 * enum sock_type - Socket types
45 * @SOCK_STREAM: stream (connection) socket
46 * @SOCK_DGRAM: datagram (conn.less) socket
47 * @SOCK_RAW: raw socket
48 * @SOCK_RDM: reliably-delivered message
49 * @SOCK_SEQPACKET: sequential packet socket
8f2709b5 50 * @SOCK_DCCP: Datagram Congestion Control Protocol socket
4dc3b16b
PP
51 * @SOCK_PACKET: linux specific way of getting packets at the dev level.
52 * For writing rarp and other similar things on the user level.
53 *
1da177e4
LT
54 * When adding some new socket type please
55 * grep ARCH_HAS_SOCKET_TYPE include/asm-* /socket.h, at least MIPS
56 * overrides this enum for binary compat reasons.
1da177e4
LT
57 */
58enum sock_type {
59 SOCK_STREAM = 1,
60 SOCK_DGRAM = 2,
61 SOCK_RAW = 3,
62 SOCK_RDM = 4,
63 SOCK_SEQPACKET = 5,
7c657876 64 SOCK_DCCP = 6,
1da177e4
LT
65 SOCK_PACKET = 10,
66};
67
68#define SOCK_MAX (SOCK_PACKET + 1)
a677a039
UD
69/* Mask which covers at least up to SOCK_MASK-1. The
70 * remaining bits are used as flags. */
71#define SOCK_TYPE_MASK 0xf
72
de11defe 73/* Flags for socket, socketpair, accept4 */
a677a039 74#define SOCK_CLOEXEC O_CLOEXEC
c019bbc6
UD
75#ifndef SOCK_NONBLOCK
76#define SOCK_NONBLOCK O_NONBLOCK
77#endif
1da177e4
LT
78
79#endif /* ARCH_HAS_SOCKET_TYPES */
80
91cf45f0 81enum sock_shutdown_cmd {
0e9649c1
JS
82 SHUT_RD,
83 SHUT_WR,
84 SHUT_RDWR,
91cf45f0
TM
85};
86
43815482 87struct socket_wq {
eaefd110 88 /* Note: wait MUST be first field of socket_wq */
43815482
ED
89 wait_queue_head_t wait;
90 struct fasync_struct *fasync_list;
91 struct rcu_head rcu;
92} ____cacheline_aligned_in_smp;
93
1da177e4
LT
94/**
95 * struct socket - general BSD socket
4dc3b16b 96 * @state: socket state (%SS_CONNECTED, etc)
2c693610 97 * @type: socket type (%SOCK_STREAM, etc)
4dc3b16b
PP
98 * @flags: socket flags (%SOCK_ASYNC_NOSPACE, etc)
99 * @ops: protocol specific socket operations
4dc3b16b
PP
100 * @file: File back pointer for gc
101 * @sk: internal networking protocol agnostic socket representation
e2aec372 102 * @wq: wait queue for several uses
1da177e4
LT
103 */
104struct socket {
105 socket_state state;
29a020d3
ED
106
107 kmemcheck_bitfield_begin(type);
2c693610 108 short type;
29a020d3
ED
109 kmemcheck_bitfield_end(type);
110
1da177e4 111 unsigned long flags;
43815482 112
eaefd110 113 struct socket_wq __rcu *wq;
8bdd663a 114
1da177e4
LT
115 struct file *file;
116 struct sock *sk;
8bdd663a 117 const struct proto_ops *ops;
1da177e4
LT
118};
119
120struct vm_area_struct;
121struct page;
1da177e4
LT
122struct sockaddr;
123struct msghdr;
124struct module;
125
126struct proto_ops {
127 int family;
128 struct module *owner;
129 int (*release) (struct socket *sock);
130 int (*bind) (struct socket *sock,
131 struct sockaddr *myaddr,
132 int sockaddr_len);
133 int (*connect) (struct socket *sock,
134 struct sockaddr *vaddr,
135 int sockaddr_len, int flags);
136 int (*socketpair)(struct socket *sock1,
137 struct socket *sock2);
138 int (*accept) (struct socket *sock,
139 struct socket *newsock, int flags);
140 int (*getname) (struct socket *sock,
141 struct sockaddr *addr,
142 int *sockaddr_len, int peer);
143 unsigned int (*poll) (struct file *file, struct socket *sock,
144 struct poll_table_struct *wait);
145 int (*ioctl) (struct socket *sock, unsigned int cmd,
146 unsigned long arg);
1621e094 147#ifdef CONFIG_COMPAT
89bbfc95
SP
148 int (*compat_ioctl) (struct socket *sock, unsigned int cmd,
149 unsigned long arg);
1621e094 150#endif
1da177e4
LT
151 int (*listen) (struct socket *sock, int len);
152 int (*shutdown) (struct socket *sock, int flags);
153 int (*setsockopt)(struct socket *sock, int level,
b7058842 154 int optname, char __user *optval, unsigned int optlen);
1da177e4
LT
155 int (*getsockopt)(struct socket *sock, int level,
156 int optname, char __user *optval, int __user *optlen);
1621e094 157#ifdef CONFIG_COMPAT
3fdadf7d 158 int (*compat_setsockopt)(struct socket *sock, int level,
b7058842 159 int optname, char __user *optval, unsigned int optlen);
3fdadf7d
DM
160 int (*compat_getsockopt)(struct socket *sock, int level,
161 int optname, char __user *optval, int __user *optlen);
1621e094 162#endif
1b784140
YX
163 int (*sendmsg) (struct socket *sock, struct msghdr *m,
164 size_t total_len);
f3d33426
HFS
165 /* Notes for implementing recvmsg:
166 * ===============================
167 * msg->msg_namelen should get updated by the recvmsg handlers
168 * iff msg_name != NULL. It is by default 0 to prevent
169 * returning uninitialized memory to user space. The recvfrom
170 * handlers can assume that msg.msg_name is either NULL or has
171 * a minimum size of sizeof(struct sockaddr_storage).
172 */
1b784140
YX
173 int (*recvmsg) (struct socket *sock, struct msghdr *m,
174 size_t total_len, int flags);
1da177e4
LT
175 int (*mmap) (struct file *file, struct socket *sock,
176 struct vm_area_struct * vma);
177 ssize_t (*sendpage) (struct socket *sock, struct page *page,
178 int offset, size_t size, int flags);
9c55e01c
JA
179 ssize_t (*splice_read)(struct socket *sock, loff_t *ppos,
180 struct pipe_inode_info *pipe, size_t len, unsigned int flags);
12663bfc 181 int (*set_peek_off)(struct sock *sk, int val);
1da177e4
LT
182};
183
38bfd8f5
CG
184#define DECLARE_SOCKADDR(type, dst, src) \
185 type dst = ({ __sockaddr_check_size(sizeof(*dst)); (type) src; })
186
1da177e4
LT
187struct net_proto_family {
188 int family;
3f378b68
EP
189 int (*create)(struct net *net, struct socket *sock,
190 int protocol, int kern);
1da177e4
LT
191 struct module *owner;
192};
193
194struct iovec;
195struct kvec;
196
8d8ad9d7
PE
197enum {
198 SOCK_WAKE_IO,
199 SOCK_WAKE_WAITD,
200 SOCK_WAKE_SPACE,
201 SOCK_WAKE_URG,
202};
203
7965bd4d
JP
204int sock_wake_async(struct socket *sk, int how, int band);
205int sock_register(const struct net_proto_family *fam);
206void sock_unregister(int family);
207int __sock_create(struct net *net, int family, int type, int proto,
208 struct socket **res, int kern);
209int sock_create(int family, int type, int proto, struct socket **res);
eeb1bd5c 210int sock_create_kern(struct net *net, int family, int type, int proto, struct socket **res);
7965bd4d
JP
211int sock_create_lite(int family, int type, int proto, struct socket **res);
212void sock_release(struct socket *sock);
d8725c86 213int sock_sendmsg(struct socket *sock, struct msghdr *msg);
7965bd4d
JP
214int sock_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
215 int flags);
216struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname);
217struct socket *sockfd_lookup(int fd, int *err);
218struct socket *sock_from_file(struct file *file, int *err);
1da177e4 219#define sockfd_put(sock) fput(sock->file)
7965bd4d 220int net_ratelimit(void);
aaa248f6 221
3a3bfb61
JP
222#define net_ratelimited_function(function, ...) \
223do { \
224 if (net_ratelimit()) \
225 function(__VA_ARGS__); \
226} while (0)
227
228#define net_emerg_ratelimited(fmt, ...) \
229 net_ratelimited_function(pr_emerg, fmt, ##__VA_ARGS__)
230#define net_alert_ratelimited(fmt, ...) \
231 net_ratelimited_function(pr_alert, fmt, ##__VA_ARGS__)
232#define net_crit_ratelimited(fmt, ...) \
233 net_ratelimited_function(pr_crit, fmt, ##__VA_ARGS__)
234#define net_err_ratelimited(fmt, ...) \
235 net_ratelimited_function(pr_err, fmt, ##__VA_ARGS__)
236#define net_notice_ratelimited(fmt, ...) \
237 net_ratelimited_function(pr_notice, fmt, ##__VA_ARGS__)
238#define net_warn_ratelimited(fmt, ...) \
239 net_ratelimited_function(pr_warn, fmt, ##__VA_ARGS__)
240#define net_info_ratelimited(fmt, ...) \
241 net_ratelimited_function(pr_info, fmt, ##__VA_ARGS__)
242#define net_dbg_ratelimited(fmt, ...) \
243 net_ratelimited_function(pr_debug, fmt, ##__VA_ARGS__)
244
a48e4292
HFS
245bool __net_get_random_once(void *buf, int nbytes, bool *done,
246 struct static_key *done_key);
247
a48e4292
HFS
248#define net_get_random_once(buf, nbytes) \
249 ({ \
250 bool ___ret = false; \
251 static bool ___done = false; \
3d440522
HFS
252 static struct static_key ___once_key = \
253 STATIC_KEY_INIT_TRUE; \
254 if (static_key_true(&___once_key)) \
a48e4292
HFS
255 ___ret = __net_get_random_once(buf, \
256 nbytes, \
257 &___done, \
3d440522 258 &___once_key); \
a48e4292
HFS
259 ___ret; \
260 })
261
7965bd4d
JP
262int kernel_sendmsg(struct socket *sock, struct msghdr *msg, struct kvec *vec,
263 size_t num, size_t len);
264int kernel_recvmsg(struct socket *sock, struct msghdr *msg, struct kvec *vec,
265 size_t num, size_t len, int flags);
1da177e4 266
7965bd4d
JP
267int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen);
268int kernel_listen(struct socket *sock, int backlog);
269int kernel_accept(struct socket *sock, struct socket **newsock, int flags);
270int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
271 int flags);
272int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
273 int *addrlen);
274int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
275 int *addrlen);
276int kernel_getsockopt(struct socket *sock, int level, int optname, char *optval,
277 int *optlen);
278int kernel_setsockopt(struct socket *sock, int level, int optname, char *optval,
279 unsigned int optlen);
280int kernel_sendpage(struct socket *sock, struct page *page, int offset,
281 size_t size, int flags);
282int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg);
283int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how);
ac5a488e 284
1da177e4
LT
285#define MODULE_ALIAS_NETPROTO(proto) \
286 MODULE_ALIAS("net-pf-" __stringify(proto))
287
4fdb3bb7
HW
288#define MODULE_ALIAS_NET_PF_PROTO(pf, proto) \
289 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto))
290
305e1e96
JD
291#define MODULE_ALIAS_NET_PF_PROTO_TYPE(pf, proto, type) \
292 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto) \
293 "-type-" __stringify(type))
294
2033e9bf
NH
295#define MODULE_ALIAS_NET_PF_PROTO_NAME(pf, proto, name) \
296 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto) \
297 name)
1da177e4 298#endif /* _LINUX_NET_H */