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