blob: cd0c8bd0a1dec0d2047509177ee8d33de1f185d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * 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
David Woodhouseeacf17b2006-04-25 14:46:09 +010021#include <linux/stringify.h>
David Woodhousecb4db4c2006-12-28 21:21:55 -080022#include <linux/random.h>
David Woodhouse5770a3f2008-08-26 15:29:22 +010023#include <linux/wait.h>
24#include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */
Eric Dumazet29a020d2009-09-15 02:39:20 -070025#include <linux/kmemcheck.h>
Eric Dumazet43815482010-04-29 11:01:49 +000026#include <linux/rcupdate.h>
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020027#include <linux/once.h>
Tom Herbert0294b622016-08-28 14:43:17 -070028#include <linux/fs.h>
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020029
David Howells607ca462012-10-13 10:46:48 +010030#include <uapi/linux/net.h>
David Woodhouse5770a3f2008-08-26 15:29:22 +010031
32struct poll_table_struct;
33struct pipe_inode_info;
34struct inode;
Al Viro56b31d12012-08-18 00:25:51 -040035struct file;
David Woodhouse5770a3f2008-08-26 15:29:22 +010036struct net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Eric Dumazetceb5d582015-11-29 20:03:11 -080038/* Historically, SOCKWQ_ASYNC_NOSPACE & SOCKWQ_ASYNC_WAITDATA were located
39 * in sock->flags, but moved into sk->sk_wq->flags to be RCU protected.
40 * Eventually all flags will be in sk->sk_wq_flags.
41 */
Eric Dumazet9cd3e072015-11-29 20:03:10 -080042#define SOCKWQ_ASYNC_NOSPACE 0
43#define SOCKWQ_ASYNC_WAITDATA 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define SOCK_NOSPACE 2
45#define SOCK_PASSCRED 3
Catherine Zhang877ce7c2006-06-29 12:27:47 -070046#define SOCK_PASSSEC 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#ifndef ARCH_HAS_SOCKET_TYPES
Pavel Pisa4dc3b162005-05-01 08:59:25 -070049/**
50 * enum sock_type - Socket types
51 * @SOCK_STREAM: stream (connection) socket
52 * @SOCK_DGRAM: datagram (conn.less) socket
53 * @SOCK_RAW: raw socket
54 * @SOCK_RDM: reliably-delivered message
55 * @SOCK_SEQPACKET: sequential packet socket
Randy Dunlap8f2709b2005-11-07 01:01:05 -080056 * @SOCK_DCCP: Datagram Congestion Control Protocol socket
Pavel Pisa4dc3b162005-05-01 08:59:25 -070057 * @SOCK_PACKET: linux specific way of getting packets at the dev level.
58 * For writing rarp and other similar things on the user level.
59 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * When adding some new socket type please
61 * grep ARCH_HAS_SOCKET_TYPE include/asm-* /socket.h, at least MIPS
62 * overrides this enum for binary compat reasons.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 */
64enum sock_type {
65 SOCK_STREAM = 1,
66 SOCK_DGRAM = 2,
67 SOCK_RAW = 3,
68 SOCK_RDM = 4,
69 SOCK_SEQPACKET = 5,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070070 SOCK_DCCP = 6,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 SOCK_PACKET = 10,
72};
73
74#define SOCK_MAX (SOCK_PACKET + 1)
Ulrich Dreppera677a032008-07-23 21:29:17 -070075/* Mask which covers at least up to SOCK_MASK-1. The
76 * remaining bits are used as flags. */
77#define SOCK_TYPE_MASK 0xf
78
Ulrich Drepperde11def2008-11-19 15:36:14 -080079/* Flags for socket, socketpair, accept4 */
Ulrich Dreppera677a032008-07-23 21:29:17 -070080#define SOCK_CLOEXEC O_CLOEXEC
Ulrich Drepperc019bbc2008-07-23 21:29:21 -070081#ifndef SOCK_NONBLOCK
82#define SOCK_NONBLOCK O_NONBLOCK
83#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85#endif /* ARCH_HAS_SOCKET_TYPES */
86
Trond Myklebust91cf45f2007-11-12 18:10:39 -080087enum sock_shutdown_cmd {
Jean Sacren0e9649c2013-06-01 16:23:16 +000088 SHUT_RD,
89 SHUT_WR,
90 SHUT_RDWR,
Trond Myklebust91cf45f2007-11-12 18:10:39 -080091};
92
Eric Dumazet43815482010-04-29 11:01:49 +000093struct socket_wq {
Eric Dumazeteaefd112011-02-18 03:26:36 +000094 /* Note: wait MUST be first field of socket_wq */
Eric Dumazet43815482010-04-29 11:01:49 +000095 wait_queue_head_t wait;
96 struct fasync_struct *fasync_list;
Eric Dumazetceb5d582015-11-29 20:03:11 -080097 unsigned long flags; /* %SOCKWQ_ASYNC_NOSPACE, etc */
Eric Dumazet43815482010-04-29 11:01:49 +000098 struct rcu_head rcu;
99} ____cacheline_aligned_in_smp;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/**
102 * struct socket - general BSD socket
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700103 * @state: socket state (%SS_CONNECTED, etc)
Richard Kennedy2c693612008-07-08 03:03:01 -0700104 * @type: socket type (%SOCK_STREAM, etc)
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800105 * @flags: socket flags (%SOCK_NOSPACE, etc)
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700106 * @ops: protocol specific socket operations
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700107 * @file: File back pointer for gc
108 * @sk: internal networking protocol agnostic socket representation
Randy Dunlape2aec372010-07-01 13:18:58 +0000109 * @wq: wait queue for several uses
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
111struct socket {
112 socket_state state;
Eric Dumazet29a020d2009-09-15 02:39:20 -0700113
114 kmemcheck_bitfield_begin(type);
Richard Kennedy2c693612008-07-08 03:03:01 -0700115 short type;
Eric Dumazet29a020d2009-09-15 02:39:20 -0700116 kmemcheck_bitfield_end(type);
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned long flags;
Eric Dumazet43815482010-04-29 11:01:49 +0000119
Eric Dumazeteaefd112011-02-18 03:26:36 +0000120 struct socket_wq __rcu *wq;
Eric Dumazet8bdd6632009-03-15 19:59:13 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 struct file *file;
123 struct sock *sk;
Eric Dumazet8bdd6632009-03-15 19:59:13 -0700124 const struct proto_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127struct vm_area_struct;
128struct page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129struct sockaddr;
130struct msghdr;
131struct module;
Tom Herbert0294b622016-08-28 14:43:17 -0700132struct sk_buff;
133typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *,
134 unsigned int, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136struct proto_ops {
137 int family;
138 struct module *owner;
139 int (*release) (struct socket *sock);
140 int (*bind) (struct socket *sock,
141 struct sockaddr *myaddr,
142 int sockaddr_len);
143 int (*connect) (struct socket *sock,
144 struct sockaddr *vaddr,
145 int sockaddr_len, int flags);
146 int (*socketpair)(struct socket *sock1,
147 struct socket *sock2);
148 int (*accept) (struct socket *sock,
149 struct socket *newsock, int flags);
150 int (*getname) (struct socket *sock,
151 struct sockaddr *addr,
152 int *sockaddr_len, int peer);
153 unsigned int (*poll) (struct file *file, struct socket *sock,
154 struct poll_table_struct *wait);
155 int (*ioctl) (struct socket *sock, unsigned int cmd,
156 unsigned long arg);
Alexey Dobriyan1621e092010-02-01 09:44:19 +0000157#ifdef CONFIG_COMPAT
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800158 int (*compat_ioctl) (struct socket *sock, unsigned int cmd,
159 unsigned long arg);
Alexey Dobriyan1621e092010-02-01 09:44:19 +0000160#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int (*listen) (struct socket *sock, int len);
162 int (*shutdown) (struct socket *sock, int flags);
163 int (*setsockopt)(struct socket *sock, int level,
David S. Millerb7058842009-09-30 16:12:20 -0700164 int optname, char __user *optval, unsigned int optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int (*getsockopt)(struct socket *sock, int level,
166 int optname, char __user *optval, int __user *optlen);
Alexey Dobriyan1621e092010-02-01 09:44:19 +0000167#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800168 int (*compat_setsockopt)(struct socket *sock, int level,
David S. Millerb7058842009-09-30 16:12:20 -0700169 int optname, char __user *optval, unsigned int optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800170 int (*compat_getsockopt)(struct socket *sock, int level,
171 int optname, char __user *optval, int __user *optlen);
Alexey Dobriyan1621e092010-02-01 09:44:19 +0000172#endif
Ying Xue1b784142015-03-02 15:37:48 +0800173 int (*sendmsg) (struct socket *sock, struct msghdr *m,
174 size_t total_len);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +0100175 /* Notes for implementing recvmsg:
176 * ===============================
177 * msg->msg_namelen should get updated by the recvmsg handlers
178 * iff msg_name != NULL. It is by default 0 to prevent
179 * returning uninitialized memory to user space. The recvfrom
180 * handlers can assume that msg.msg_name is either NULL or has
181 * a minimum size of sizeof(struct sockaddr_storage).
182 */
Ying Xue1b784142015-03-02 15:37:48 +0800183 int (*recvmsg) (struct socket *sock, struct msghdr *m,
184 size_t total_len, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int (*mmap) (struct file *file, struct socket *sock,
186 struct vm_area_struct * vma);
187 ssize_t (*sendpage) (struct socket *sock, struct page *page,
188 int offset, size_t size, int flags);
Jens Axboe9c55e012007-11-06 23:30:13 -0800189 ssize_t (*splice_read)(struct socket *sock, loff_t *ppos,
190 struct pipe_inode_info *pipe, size_t len, unsigned int flags);
Sasha Levin12663bf2013-12-07 17:26:27 -0500191 int (*set_peek_off)(struct sock *sk, int val);
Jason Wang1576d982016-06-30 14:45:36 +0800192 int (*peek_len)(struct socket *sock);
Tom Herbert0294b622016-08-28 14:43:17 -0700193 int (*read_sock)(struct sock *sk, read_descriptor_t *desc,
194 sk_read_actor_t recv_actor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Cyrill Gorcunov38bfd8f2009-10-29 02:59:18 -0700197#define DECLARE_SOCKADDR(type, dst, src) \
198 type dst = ({ __sockaddr_check_size(sizeof(*dst)); (type) src; })
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200struct net_proto_family {
201 int family;
Eric Paris3f378b62009-11-05 22:18:14 -0800202 int (*create)(struct net *net, struct socket *sock,
203 int protocol, int kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct module *owner;
205};
206
207struct iovec;
208struct kvec;
209
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +0800210enum {
211 SOCK_WAKE_IO,
212 SOCK_WAKE_WAITD,
213 SOCK_WAKE_SPACE,
214 SOCK_WAKE_URG,
215};
216
Eric Dumazetceb5d582015-11-29 20:03:11 -0800217int sock_wake_async(struct socket_wq *sk_wq, int how, int band);
Joe Perches7965bd42013-09-26 14:48:15 -0700218int sock_register(const struct net_proto_family *fam);
219void sock_unregister(int family);
220int __sock_create(struct net *net, int family, int type, int proto,
221 struct socket **res, int kern);
222int sock_create(int family, int type, int proto, struct socket **res);
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -0500223int sock_create_kern(struct net *net, int family, int type, int proto, struct socket **res);
Joe Perches7965bd42013-09-26 14:48:15 -0700224int sock_create_lite(int family, int type, int proto, struct socket **res);
Tom Herbertf4a00aa2016-03-07 14:11:01 -0800225struct socket *sock_alloc(void);
Joe Perches7965bd42013-09-26 14:48:15 -0700226void sock_release(struct socket *sock);
Al Virod8725c82014-12-11 00:02:50 -0500227int sock_sendmsg(struct socket *sock, struct msghdr *msg);
Al Viro2da62902015-03-14 21:13:46 -0400228int sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags);
Joe Perches7965bd42013-09-26 14:48:15 -0700229struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname);
230struct socket *sockfd_lookup(int fd, int *err);
231struct socket *sock_from_file(struct file *file, int *err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#define sockfd_put(sock) fput(sock->file)
Joe Perches7965bd42013-09-26 14:48:15 -0700233int net_ratelimit(void);
Stephen Hemmingeraaa248f2006-10-17 00:09:42 -0700234
Joe Perches3a3bfb62012-05-13 21:56:25 +0000235#define net_ratelimited_function(function, ...) \
236do { \
237 if (net_ratelimit()) \
238 function(__VA_ARGS__); \
239} while (0)
240
241#define net_emerg_ratelimited(fmt, ...) \
242 net_ratelimited_function(pr_emerg, fmt, ##__VA_ARGS__)
243#define net_alert_ratelimited(fmt, ...) \
244 net_ratelimited_function(pr_alert, fmt, ##__VA_ARGS__)
245#define net_crit_ratelimited(fmt, ...) \
246 net_ratelimited_function(pr_crit, fmt, ##__VA_ARGS__)
247#define net_err_ratelimited(fmt, ...) \
248 net_ratelimited_function(pr_err, fmt, ##__VA_ARGS__)
249#define net_notice_ratelimited(fmt, ...) \
250 net_ratelimited_function(pr_notice, fmt, ##__VA_ARGS__)
251#define net_warn_ratelimited(fmt, ...) \
252 net_ratelimited_function(pr_warn, fmt, ##__VA_ARGS__)
253#define net_info_ratelimited(fmt, ...) \
254 net_ratelimited_function(pr_info, fmt, ##__VA_ARGS__)
Tim Bingham2c94b532016-04-29 13:30:23 -0400255#if defined(CONFIG_DYNAMIC_DEBUG)
256#define net_dbg_ratelimited(fmt, ...) \
257do { \
258 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
259 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
260 net_ratelimit()) \
Jason A. Donenfelddaddef72016-06-15 11:14:53 +0200261 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), \
262 ##__VA_ARGS__); \
Tim Bingham2c94b532016-04-29 13:30:23 -0400263} while (0)
264#elif defined(DEBUG)
Joe Perches3a3bfb62012-05-13 21:56:25 +0000265#define net_dbg_ratelimited(fmt, ...) \
266 net_ratelimited_function(pr_debug, fmt, ##__VA_ARGS__)
Jason A. Donenfeldd92cff82015-08-04 18:26:19 +0200267#else
268#define net_dbg_ratelimited(fmt, ...) \
269 do { \
270 if (0) \
271 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); \
272 } while (0)
273#endif
Joe Perches3a3bfb62012-05-13 21:56:25 +0000274
Hannes Frederic Sowa46234252015-10-08 01:20:35 +0200275#define net_get_random_once(buf, nbytes) \
276 get_random_once((buf), (nbytes))
Hannes Frederic Sowaa48e4292013-10-19 21:48:55 +0200277
Joe Perches7965bd42013-09-26 14:48:15 -0700278int kernel_sendmsg(struct socket *sock, struct msghdr *msg, struct kvec *vec,
279 size_t num, size_t len);
280int kernel_recvmsg(struct socket *sock, struct msghdr *msg, struct kvec *vec,
281 size_t num, size_t len, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Joe Perches7965bd42013-09-26 14:48:15 -0700283int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen);
284int kernel_listen(struct socket *sock, int backlog);
285int kernel_accept(struct socket *sock, struct socket **newsock, int flags);
286int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
287 int flags);
288int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
289 int *addrlen);
290int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
291 int *addrlen);
292int kernel_getsockopt(struct socket *sock, int level, int optname, char *optval,
293 int *optlen);
294int kernel_setsockopt(struct socket *sock, int level, int optname, char *optval,
295 unsigned int optlen);
296int kernel_sendpage(struct socket *sock, struct page *page, int offset,
297 size_t size, int flags);
298int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg);
299int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -0700300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#define MODULE_ALIAS_NETPROTO(proto) \
302 MODULE_ALIAS("net-pf-" __stringify(proto))
303
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700304#define MODULE_ALIAS_NET_PF_PROTO(pf, proto) \
305 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto))
306
Jean Delvare305e1e92007-10-21 16:44:04 -0700307#define MODULE_ALIAS_NET_PF_PROTO_TYPE(pf, proto, type) \
308 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto) \
309 "-type-" __stringify(type))
310
Neil Horman2033e9b2012-05-29 09:30:40 +0000311#define MODULE_ALIAS_NET_PF_PROTO_NAME(pf, proto, name) \
312 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto) \
313 name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#endif /* _LINUX_NET_H */