blob: 93d011e35b8349954db6918055c2f90ae473d254 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Generic socket support routines. Memory allocators, socket lock/release
7 * handler for protocols to use and generic option handler.
8 *
9 *
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Florian La Roche, <flla@stud.uni-sb.de>
13 * Alan Cox, <A.Cox@swansea.ac.uk>
14 *
15 * Fixes:
16 * Alan Cox : Numerous verify_area() problems
17 * Alan Cox : Connecting on a connecting socket
18 * now returns an error for tcp.
19 * Alan Cox : sock->protocol is set correctly.
20 * and is not sometimes left as 0.
21 * Alan Cox : connect handles icmp errors on a
22 * connect properly. Unfortunately there
23 * is a restart syscall nasty there. I
24 * can't match BSD without hacking the C
25 * library. Ideas urgently sought!
26 * Alan Cox : Disallow bind() to addresses that are
27 * not ours - especially broadcast ones!!
28 * Alan Cox : Socket 1024 _IS_ ok for users. (fencepost)
29 * Alan Cox : sock_wfree/sock_rfree don't destroy sockets,
30 * instead they leave that for the DESTROY timer.
31 * Alan Cox : Clean up error flag in accept
32 * Alan Cox : TCP ack handling is buggy, the DESTROY timer
33 * was buggy. Put a remove_sock() in the handler
34 * for memory when we hit 0. Also altered the timer
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090035 * code. The ACK stuff can wait and needs major
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * TCP layer surgery.
37 * Alan Cox : Fixed TCP ack bug, removed remove sock
38 * and fixed timer/inet_bh race.
39 * Alan Cox : Added zapped flag for TCP
40 * Alan Cox : Move kfree_skb into skbuff.c and tidied up surplus code
41 * Alan Cox : for new sk_buff allocations wmalloc/rmalloc now call alloc_skb
42 * Alan Cox : kfree_s calls now are kfree_skbmem so we can track skb resources
43 * Alan Cox : Supports socket option broadcast now as does udp. Packet and raw need fixing.
44 * Alan Cox : Added RCVBUF,SNDBUF size setting. It suddenly occurred to me how easy it was so...
45 * Rick Sladkey : Relaxed UDP rules for matching packets.
46 * C.E.Hawkins : IFF_PROMISC/SIOCGHWADDR support
47 * Pauline Middelink : identd support
48 * Alan Cox : Fixed connect() taking signals I think.
49 * Alan Cox : SO_LINGER supported
50 * Alan Cox : Error reporting fixes
51 * Anonymous : inet_create tidied up (sk->reuse setting)
52 * Alan Cox : inet sockets don't set sk->type!
53 * Alan Cox : Split socket option code
54 * Alan Cox : Callbacks
55 * Alan Cox : Nagle flag for Charles & Johannes stuff
56 * Alex : Removed restriction on inet fioctl
57 * Alan Cox : Splitting INET from NET core
58 * Alan Cox : Fixed bogus SO_TYPE handling in getsockopt()
59 * Adam Caldwell : Missing return in SO_DONTROUTE/SO_DEBUG code
60 * Alan Cox : Split IP from generic code
61 * Alan Cox : New kfree_skbmem()
62 * Alan Cox : Make SO_DEBUG superuser only.
63 * Alan Cox : Allow anyone to clear SO_DEBUG
64 * (compatibility fix)
65 * Alan Cox : Added optimistic memory grabbing for AF_UNIX throughput.
66 * Alan Cox : Allocator for a socket is settable.
67 * Alan Cox : SO_ERROR includes soft errors.
68 * Alan Cox : Allow NULL arguments on some SO_ opts
69 * Alan Cox : Generic socket allocation to make hooks
70 * easier (suggested by Craig Metz).
71 * Michael Pall : SO_ERROR returns positive errno again
72 * Steve Whitehouse: Added default destructor to free
73 * protocol private data.
74 * Steve Whitehouse: Added various other default routines
75 * common to several socket families.
76 * Chris Evans : Call suser() check last on F_SETOWN
77 * Jay Schulist : Added SO_ATTACH_FILTER and SO_DETACH_FILTER.
78 * Andi Kleen : Add sock_kmalloc()/sock_kfree_s()
79 * Andi Kleen : Fix write_space callback
80 * Chris Evans : Security fixes - signedness again
81 * Arnaldo C. Melo : cleanups, use skb_queue_purge
82 *
83 * To Fix:
84 *
85 *
86 * This program is free software; you can redistribute it and/or
87 * modify it under the terms of the GNU General Public License
88 * as published by the Free Software Foundation; either version
89 * 2 of the License, or (at your option) any later version.
90 */
91
Joe Perchese005d192012-05-16 19:58:40 +000092#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
93
Randy Dunlap4fc268d2006-01-11 12:17:47 -080094#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/errno.h>
Richard Cochrancb820f82013-07-19 19:40:09 +020096#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <linux/types.h>
98#include <linux/socket.h>
99#include <linux/in.h>
100#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/module.h>
102#include <linux/proc_fs.h>
103#include <linux/seq_file.h>
104#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700105#include <linux/sched/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <linux/timer.h>
107#include <linux/string.h>
108#include <linux/sockios.h>
109#include <linux/net.h>
110#include <linux/mm.h>
111#include <linux/slab.h>
112#include <linux/interrupt.h>
113#include <linux/poll.h>
114#include <linux/tcp.h>
115#include <linux/init.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -0400116#include <linux/highmem.h>
Eric W. Biederman3f551f92010-06-13 03:28:59 +0000117#include <linux/user_namespace.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100118#include <linux/static_key.h>
David S. Miller3969eb32012-01-09 13:44:23 -0800119#include <linux/memcontrol.h>
David S. Miller8c1ae102012-05-03 02:25:55 -0400120#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -0800122#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124#include <linux/netdevice.h>
125#include <net/protocol.h>
126#include <linux/skbuff.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200127#include <net/net_namespace.h>
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700128#include <net/request_sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#include <net/sock.h>
Patrick Ohly20d49472009-02-12 05:03:38 +0000130#include <linux/net_tstamp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#include <net/xfrm.h>
132#include <linux/ipsec.h>
Herbert Xuf8451722010-05-24 00:12:34 -0700133#include <net/cls_cgroup.h>
Neil Horman5bc14212011-11-22 05:10:51 +0000134#include <net/netprio_cgroup.h>
Craig Gallekeb4cb002015-06-15 11:26:18 -0400135#include <linux/sock_diag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#include <linux/filter.h>
Craig Gallek538950a2016-01-04 17:41:47 -0500138#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Satoru Moriya3847ce32011-06-17 12:00:03 +0000140#include <trace/events/sock.h>
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#ifdef CONFIG_INET
143#include <net/tcp.h>
144#endif
145
Eliezer Tamir076bb0c2013-07-10 17:13:17 +0300146#include <net/busy_poll.h>
Eliezer Tamir06021292013-06-10 11:39:50 +0300147
Glauber Costa36b77a52011-12-16 00:51:59 +0000148static DEFINE_MUTEX(proto_list_mutex);
Glauber Costad1a4c0b2011-12-11 21:47:04 +0000149static LIST_HEAD(proto_list);
150
Eric W. Biedermana3b299d2014-04-23 14:26:56 -0700151/**
152 * sk_ns_capable - General socket capability test
153 * @sk: Socket to use a capability on or through
154 * @user_ns: The user namespace of the capability to use
155 * @cap: The capability to use
156 *
157 * Test to see if the opener of the socket had when the socket was
158 * created and the current process has the capability @cap in the user
159 * namespace @user_ns.
160 */
161bool sk_ns_capable(const struct sock *sk,
162 struct user_namespace *user_ns, int cap)
163{
164 return file_ns_capable(sk->sk_socket->file, user_ns, cap) &&
165 ns_capable(user_ns, cap);
166}
167EXPORT_SYMBOL(sk_ns_capable);
168
169/**
170 * sk_capable - Socket global capability test
171 * @sk: Socket to use a capability on or through
Masanari Iidae793c0f2014-09-04 23:44:36 +0900172 * @cap: The global capability to use
Eric W. Biedermana3b299d2014-04-23 14:26:56 -0700173 *
174 * Test to see if the opener of the socket had when the socket was
175 * created and the current process has the capability @cap in all user
176 * namespaces.
177 */
178bool sk_capable(const struct sock *sk, int cap)
179{
180 return sk_ns_capable(sk, &init_user_ns, cap);
181}
182EXPORT_SYMBOL(sk_capable);
183
184/**
185 * sk_net_capable - Network namespace socket capability test
186 * @sk: Socket to use a capability on or through
187 * @cap: The capability to use
188 *
Masanari Iidae793c0f2014-09-04 23:44:36 +0900189 * Test to see if the opener of the socket had when the socket was created
Eric W. Biedermana3b299d2014-04-23 14:26:56 -0700190 * and the current process has the capability @cap over the network namespace
191 * the socket is a member of.
192 */
193bool sk_net_capable(const struct sock *sk, int cap)
194{
195 return sk_ns_capable(sk, sock_net(sk)->user_ns, cap);
196}
197EXPORT_SYMBOL(sk_net_capable);
198
Ingo Molnarda21f242006-07-03 00:25:12 -0700199/*
200 * Each address family might have different locking rules, so we have
David Howellscdfbabf2017-03-09 08:09:05 +0000201 * one slock key per address family and separate keys for internal and
202 * userspace sockets.
Ingo Molnarda21f242006-07-03 00:25:12 -0700203 */
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700204static struct lock_class_key af_family_keys[AF_MAX];
David Howellscdfbabf2017-03-09 08:09:05 +0000205static struct lock_class_key af_family_kern_keys[AF_MAX];
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700206static struct lock_class_key af_family_slock_keys[AF_MAX];
David Howellscdfbabf2017-03-09 08:09:05 +0000207static struct lock_class_key af_family_kern_slock_keys[AF_MAX];
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700208
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700209/*
210 * Make lock validator output more readable. (we pre-construct these
211 * strings build-time, so that runtime initialization of socket
212 * locks is fast):
213 */
David Howellscdfbabf2017-03-09 08:09:05 +0000214
215#define _sock_locks(x) \
216 x "AF_UNSPEC", x "AF_UNIX" , x "AF_INET" , \
217 x "AF_AX25" , x "AF_IPX" , x "AF_APPLETALK", \
218 x "AF_NETROM", x "AF_BRIDGE" , x "AF_ATMPVC" , \
219 x "AF_X25" , x "AF_INET6" , x "AF_ROSE" , \
220 x "AF_DECnet", x "AF_NETBEUI" , x "AF_SECURITY" , \
221 x "AF_KEY" , x "AF_NETLINK" , x "AF_PACKET" , \
222 x "AF_ASH" , x "AF_ECONET" , x "AF_ATMSVC" , \
223 x "AF_RDS" , x "AF_SNA" , x "AF_IRDA" , \
224 x "AF_PPPOX" , x "AF_WANPIPE" , x "AF_LLC" , \
225 x "27" , x "28" , x "AF_CAN" , \
226 x "AF_TIPC" , x "AF_BLUETOOTH", x "IUCV" , \
227 x "AF_RXRPC" , x "AF_ISDN" , x "AF_PHONET" , \
228 x "AF_IEEE802154", x "AF_CAIF" , x "AF_ALG" , \
229 x "AF_NFC" , x "AF_VSOCK" , x "AF_KCM" , \
230 x "AF_QIPCRTR", x "AF_SMC" , x "AF_MAX"
231
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700232static const char *const af_family_key_strings[AF_MAX+1] = {
David Howellscdfbabf2017-03-09 08:09:05 +0000233 _sock_locks("sk_lock-")
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700234};
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700235static const char *const af_family_slock_key_strings[AF_MAX+1] = {
David Howellscdfbabf2017-03-09 08:09:05 +0000236 _sock_locks("slock-")
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700237};
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700238static const char *const af_family_clock_key_strings[AF_MAX+1] = {
David Howellscdfbabf2017-03-09 08:09:05 +0000239 _sock_locks("clock-")
240};
241
242static const char *const af_family_kern_key_strings[AF_MAX+1] = {
243 _sock_locks("k-sk_lock-")
244};
245static const char *const af_family_kern_slock_key_strings[AF_MAX+1] = {
246 _sock_locks("k-slock-")
247};
248static const char *const af_family_kern_clock_key_strings[AF_MAX+1] = {
249 _sock_locks("k-clock-")
Peter Zijlstra443aef0e2007-07-19 01:49:00 -0700250};
Paolo Abeni581319c2017-03-09 13:54:08 +0100251static const char *const af_family_rlock_key_strings[AF_MAX+1] = {
252 "rlock-AF_UNSPEC", "rlock-AF_UNIX" , "rlock-AF_INET" ,
253 "rlock-AF_AX25" , "rlock-AF_IPX" , "rlock-AF_APPLETALK",
254 "rlock-AF_NETROM", "rlock-AF_BRIDGE" , "rlock-AF_ATMPVC" ,
255 "rlock-AF_X25" , "rlock-AF_INET6" , "rlock-AF_ROSE" ,
256 "rlock-AF_DECnet", "rlock-AF_NETBEUI" , "rlock-AF_SECURITY" ,
257 "rlock-AF_KEY" , "rlock-AF_NETLINK" , "rlock-AF_PACKET" ,
258 "rlock-AF_ASH" , "rlock-AF_ECONET" , "rlock-AF_ATMSVC" ,
259 "rlock-AF_RDS" , "rlock-AF_SNA" , "rlock-AF_IRDA" ,
260 "rlock-AF_PPPOX" , "rlock-AF_WANPIPE" , "rlock-AF_LLC" ,
261 "rlock-27" , "rlock-28" , "rlock-AF_CAN" ,
262 "rlock-AF_TIPC" , "rlock-AF_BLUETOOTH", "rlock-AF_IUCV" ,
263 "rlock-AF_RXRPC" , "rlock-AF_ISDN" , "rlock-AF_PHONET" ,
264 "rlock-AF_IEEE802154", "rlock-AF_CAIF" , "rlock-AF_ALG" ,
265 "rlock-AF_NFC" , "rlock-AF_VSOCK" , "rlock-AF_KCM" ,
266 "rlock-AF_QIPCRTR", "rlock-AF_SMC" , "rlock-AF_MAX"
267};
268static const char *const af_family_wlock_key_strings[AF_MAX+1] = {
269 "wlock-AF_UNSPEC", "wlock-AF_UNIX" , "wlock-AF_INET" ,
270 "wlock-AF_AX25" , "wlock-AF_IPX" , "wlock-AF_APPLETALK",
271 "wlock-AF_NETROM", "wlock-AF_BRIDGE" , "wlock-AF_ATMPVC" ,
272 "wlock-AF_X25" , "wlock-AF_INET6" , "wlock-AF_ROSE" ,
273 "wlock-AF_DECnet", "wlock-AF_NETBEUI" , "wlock-AF_SECURITY" ,
274 "wlock-AF_KEY" , "wlock-AF_NETLINK" , "wlock-AF_PACKET" ,
275 "wlock-AF_ASH" , "wlock-AF_ECONET" , "wlock-AF_ATMSVC" ,
276 "wlock-AF_RDS" , "wlock-AF_SNA" , "wlock-AF_IRDA" ,
277 "wlock-AF_PPPOX" , "wlock-AF_WANPIPE" , "wlock-AF_LLC" ,
278 "wlock-27" , "wlock-28" , "wlock-AF_CAN" ,
279 "wlock-AF_TIPC" , "wlock-AF_BLUETOOTH", "wlock-AF_IUCV" ,
280 "wlock-AF_RXRPC" , "wlock-AF_ISDN" , "wlock-AF_PHONET" ,
281 "wlock-AF_IEEE802154", "wlock-AF_CAIF" , "wlock-AF_ALG" ,
282 "wlock-AF_NFC" , "wlock-AF_VSOCK" , "wlock-AF_KCM" ,
283 "wlock-AF_QIPCRTR", "wlock-AF_SMC" , "wlock-AF_MAX"
284};
285static const char *const af_family_elock_key_strings[AF_MAX+1] = {
286 "elock-AF_UNSPEC", "elock-AF_UNIX" , "elock-AF_INET" ,
287 "elock-AF_AX25" , "elock-AF_IPX" , "elock-AF_APPLETALK",
288 "elock-AF_NETROM", "elock-AF_BRIDGE" , "elock-AF_ATMPVC" ,
289 "elock-AF_X25" , "elock-AF_INET6" , "elock-AF_ROSE" ,
290 "elock-AF_DECnet", "elock-AF_NETBEUI" , "elock-AF_SECURITY" ,
291 "elock-AF_KEY" , "elock-AF_NETLINK" , "elock-AF_PACKET" ,
292 "elock-AF_ASH" , "elock-AF_ECONET" , "elock-AF_ATMSVC" ,
293 "elock-AF_RDS" , "elock-AF_SNA" , "elock-AF_IRDA" ,
294 "elock-AF_PPPOX" , "elock-AF_WANPIPE" , "elock-AF_LLC" ,
295 "elock-27" , "elock-28" , "elock-AF_CAN" ,
296 "elock-AF_TIPC" , "elock-AF_BLUETOOTH", "elock-AF_IUCV" ,
297 "elock-AF_RXRPC" , "elock-AF_ISDN" , "elock-AF_PHONET" ,
298 "elock-AF_IEEE802154", "elock-AF_CAIF" , "elock-AF_ALG" ,
299 "elock-AF_NFC" , "elock-AF_VSOCK" , "elock-AF_KCM" ,
300 "elock-AF_QIPCRTR", "elock-AF_SMC" , "elock-AF_MAX"
301};
Ingo Molnarda21f242006-07-03 00:25:12 -0700302
303/*
Paolo Abeni581319c2017-03-09 13:54:08 +0100304 * sk_callback_lock and sk queues locking rules are per-address-family,
Ingo Molnarda21f242006-07-03 00:25:12 -0700305 * so split the lock classes by using a per-AF key:
306 */
307static struct lock_class_key af_callback_keys[AF_MAX];
Paolo Abeni581319c2017-03-09 13:54:08 +0100308static struct lock_class_key af_rlock_keys[AF_MAX];
309static struct lock_class_key af_wlock_keys[AF_MAX];
310static struct lock_class_key af_elock_keys[AF_MAX];
David Howellscdfbabf2017-03-09 08:09:05 +0000311static struct lock_class_key af_kern_callback_keys[AF_MAX];
Ingo Molnarda21f242006-07-03 00:25:12 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313/* Take into consideration the size of the struct sk_buff overhead in the
314 * determination of these values, since that is non-constant across
315 * platforms. This makes socket queueing behavior and performance
316 * not depend upon such differences.
317 */
318#define _SK_MEM_PACKETS 256
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000319#define _SK_MEM_OVERHEAD SKB_TRUESIZE(256)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#define SK_WMEM_MAX (_SK_MEM_OVERHEAD * _SK_MEM_PACKETS)
321#define SK_RMEM_MAX (_SK_MEM_OVERHEAD * _SK_MEM_PACKETS)
322
323/* Run time adjustable parameters. */
Brian Haleyab32ea52006-09-22 14:15:41 -0700324__u32 sysctl_wmem_max __read_mostly = SK_WMEM_MAX;
Hans Schillstrom6d8ebc82012-04-30 08:13:50 +0200325EXPORT_SYMBOL(sysctl_wmem_max);
Brian Haleyab32ea52006-09-22 14:15:41 -0700326__u32 sysctl_rmem_max __read_mostly = SK_RMEM_MAX;
Hans Schillstrom6d8ebc82012-04-30 08:13:50 +0200327EXPORT_SYMBOL(sysctl_rmem_max);
Brian Haleyab32ea52006-09-22 14:15:41 -0700328__u32 sysctl_wmem_default __read_mostly = SK_WMEM_MAX;
329__u32 sysctl_rmem_default __read_mostly = SK_RMEM_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300331/* Maximal space eaten by iovec or ancillary data plus some space */
Brian Haleyab32ea52006-09-22 14:15:41 -0700332int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*(2*UIO_MAXIOV+512);
Eric Dumazet2a915252009-05-27 11:30:05 +0000333EXPORT_SYMBOL(sysctl_optmem_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Willem de Bruijnb245be12015-01-30 13:29:32 -0500335int sysctl_tstamp_allow_data __read_mostly = 1;
336
Mel Gormanc93bdd02012-07-31 16:44:19 -0700337struct static_key memalloc_socks = STATIC_KEY_INIT_FALSE;
338EXPORT_SYMBOL_GPL(memalloc_socks);
339
Mel Gorman7cb02402012-07-31 16:44:16 -0700340/**
341 * sk_set_memalloc - sets %SOCK_MEMALLOC
342 * @sk: socket to set it on
343 *
344 * Set %SOCK_MEMALLOC on a socket for access to emergency reserves.
345 * It's the responsibility of the admin to adjust min_free_kbytes
346 * to meet the requirements
347 */
348void sk_set_memalloc(struct sock *sk)
349{
350 sock_set_flag(sk, SOCK_MEMALLOC);
351 sk->sk_allocation |= __GFP_MEMALLOC;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700352 static_key_slow_inc(&memalloc_socks);
Mel Gorman7cb02402012-07-31 16:44:16 -0700353}
354EXPORT_SYMBOL_GPL(sk_set_memalloc);
355
356void sk_clear_memalloc(struct sock *sk)
357{
358 sock_reset_flag(sk, SOCK_MEMALLOC);
359 sk->sk_allocation &= ~__GFP_MEMALLOC;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700360 static_key_slow_dec(&memalloc_socks);
Mel Gormanc76562b2012-07-31 16:44:41 -0700361
362 /*
363 * SOCK_MEMALLOC is allowed to ignore rmem limits to ensure forward
Mel Gorman5d753612015-06-10 21:02:04 -0400364 * progress of swapping. SOCK_MEMALLOC may be cleared while
365 * it has rmem allocations due to the last swapfile being deactivated
366 * but there is a risk that the socket is unusable due to exceeding
367 * the rmem limits. Reclaim the reserves and obey rmem limits again.
Mel Gormanc76562b2012-07-31 16:44:41 -0700368 */
Mel Gorman5d753612015-06-10 21:02:04 -0400369 sk_mem_reclaim(sk);
Mel Gorman7cb02402012-07-31 16:44:16 -0700370}
371EXPORT_SYMBOL_GPL(sk_clear_memalloc);
372
Mel Gormanb4b9e352012-07-31 16:44:26 -0700373int __sk_backlog_rcv(struct sock *sk, struct sk_buff *skb)
374{
375 int ret;
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700376 unsigned int noreclaim_flag;
Mel Gormanb4b9e352012-07-31 16:44:26 -0700377
378 /* these should have been dropped before queueing */
379 BUG_ON(!sock_flag(sk, SOCK_MEMALLOC));
380
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700381 noreclaim_flag = memalloc_noreclaim_save();
Mel Gormanb4b9e352012-07-31 16:44:26 -0700382 ret = sk->sk_backlog_rcv(sk, skb);
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700383 memalloc_noreclaim_restore(noreclaim_flag);
Mel Gormanb4b9e352012-07-31 16:44:26 -0700384
385 return ret;
386}
387EXPORT_SYMBOL(__sk_backlog_rcv);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389static int sock_set_timeout(long *timeo_p, char __user *optval, int optlen)
390{
391 struct timeval tv;
392
393 if (optlen < sizeof(tv))
394 return -EINVAL;
395 if (copy_from_user(&tv, optval, sizeof(tv)))
396 return -EFAULT;
Vasily Averinba780732007-05-24 16:58:54 -0700397 if (tv.tv_usec < 0 || tv.tv_usec >= USEC_PER_SEC)
398 return -EDOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Vasily Averinba780732007-05-24 16:58:54 -0700400 if (tv.tv_sec < 0) {
Andrew Morton6f11df82007-07-09 13:16:00 -0700401 static int warned __read_mostly;
402
Vasily Averinba780732007-05-24 16:58:54 -0700403 *timeo_p = 0;
Ilpo Järvinen50aab542008-05-02 16:20:10 -0700404 if (warned < 10 && net_ratelimit()) {
Vasily Averinba780732007-05-24 16:58:54 -0700405 warned++;
Joe Perchese005d192012-05-16 19:58:40 +0000406 pr_info("%s: `%s' (pid %d) tries to set negative timeout\n",
407 __func__, current->comm, task_pid_nr(current));
Ilpo Järvinen50aab542008-05-02 16:20:10 -0700408 }
Vasily Averinba780732007-05-24 16:58:54 -0700409 return 0;
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *timeo_p = MAX_SCHEDULE_TIMEOUT;
412 if (tv.tv_sec == 0 && tv.tv_usec == 0)
413 return 0;
414 if (tv.tv_sec < (MAX_SCHEDULE_TIMEOUT/HZ - 1))
Gao Feng8ccde4c2017-02-21 17:09:19 +0800415 *timeo_p = tv.tv_sec * HZ + DIV_ROUND_UP(tv.tv_usec, USEC_PER_SEC / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return 0;
417}
418
419static void sock_warn_obsolete_bsdism(const char *name)
420{
421 static int warned;
422 static char warncomm[TASK_COMM_LEN];
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900423 if (strcmp(warncomm, current->comm) && warned < 5) {
424 strcpy(warncomm, current->comm);
Joe Perchese005d192012-05-16 19:58:40 +0000425 pr_warn("process `%s' is using obsolete %s SO_BSDCOMPAT\n",
426 warncomm, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 warned++;
428 }
429}
430
Hannes Frederic Sowa080a2702015-10-26 13:51:37 +0100431static bool sock_needs_netstamp(const struct sock *sk)
432{
433 switch (sk->sk_family) {
434 case AF_UNSPEC:
435 case AF_UNIX:
436 return false;
437 default:
438 return true;
439 }
440}
441
Eric Dumazet08e29af2011-11-28 12:04:18 +0000442static void sock_disable_timestamp(struct sock *sk, unsigned long flags)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900443{
Eric Dumazet08e29af2011-11-28 12:04:18 +0000444 if (sk->sk_flags & flags) {
445 sk->sk_flags &= ~flags;
Hannes Frederic Sowa080a2702015-10-26 13:51:37 +0100446 if (sock_needs_netstamp(sk) &&
447 !(sk->sk_flags & SK_FLAGS_TIMESTAMP))
Patrick Ohly20d49472009-02-12 05:03:38 +0000448 net_disable_timestamp();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450}
451
452
samanthakumare6afc8a2016-04-05 12:41:15 -0400453int __sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800454{
Neil Horman3b885782009-10-12 13:26:31 -0700455 unsigned long flags;
456 struct sk_buff_head *list = &sk->sk_receive_queue;
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800457
Eric Dumazet0fd7bac2011-12-21 07:11:44 +0000458 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf) {
Eric Dumazet766e90372009-10-14 20:40:11 -0700459 atomic_inc(&sk->sk_drops);
Satoru Moriya3847ce32011-06-17 12:00:03 +0000460 trace_sock_rcvqueue_full(sk, skb);
Eric Dumazet766e90372009-10-14 20:40:11 -0700461 return -ENOMEM;
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800462 }
463
Mel Gormanc76562b2012-07-31 16:44:41 -0700464 if (!sk_rmem_schedule(sk, skb, skb->truesize)) {
Eric Dumazet766e90372009-10-14 20:40:11 -0700465 atomic_inc(&sk->sk_drops);
466 return -ENOBUFS;
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800467 }
468
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800469 skb->dev = NULL;
470 skb_set_owner_r(skb, sk);
David S. Miller49ad9592008-12-17 22:11:38 -0800471
Eric Dumazet7fee2262010-05-11 23:19:48 +0000472 /* we escape from rcu protected region, make sure we dont leak
473 * a norefcounted dst
474 */
475 skb_dst_force(skb);
476
Neil Horman3b885782009-10-12 13:26:31 -0700477 spin_lock_irqsave(&list->lock, flags);
Eyal Birger3bc3b962015-03-01 14:58:30 +0200478 sock_skb_set_dropcount(sk, skb);
Neil Horman3b885782009-10-12 13:26:31 -0700479 __skb_queue_tail(list, skb);
480 spin_unlock_irqrestore(&list->lock, flags);
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800481
482 if (!sock_flag(sk, SOCK_DEAD))
David S. Miller676d2362014-04-11 16:15:36 -0400483 sk->sk_data_ready(sk);
Eric Dumazet766e90372009-10-14 20:40:11 -0700484 return 0;
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800485}
samanthakumare6afc8a2016-04-05 12:41:15 -0400486EXPORT_SYMBOL(__sock_queue_rcv_skb);
487
488int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
489{
490 int err;
491
492 err = sk_filter(sk, skb);
493 if (err)
494 return err;
495
496 return __sock_queue_rcv_skb(sk, skb);
497}
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800498EXPORT_SYMBOL(sock_queue_rcv_skb);
499
Willem de Bruijn4f0c40d92016-07-12 18:18:57 -0400500int __sk_receive_skb(struct sock *sk, struct sk_buff *skb,
Eric Dumazetc3f24cf2016-11-02 17:14:41 -0700501 const int nested, unsigned int trim_cap, bool refcounted)
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800502{
503 int rc = NET_RX_SUCCESS;
504
Willem de Bruijn4f0c40d92016-07-12 18:18:57 -0400505 if (sk_filter_trim_cap(sk, skb, trim_cap))
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800506 goto discard_and_relse;
507
508 skb->dev = NULL;
509
Sorin Dumitru274f4822014-07-22 21:16:51 +0300510 if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
Eric Dumazetc3774112010-04-27 15:13:20 -0700511 atomic_inc(&sk->sk_drops);
512 goto discard_and_relse;
513 }
Arnaldo Carvalho de Melo58a5a7b2006-11-16 14:06:06 -0200514 if (nested)
515 bh_lock_sock_nested(sk);
516 else
517 bh_lock_sock(sk);
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700518 if (!sock_owned_by_user(sk)) {
519 /*
520 * trylock + unlock semantics:
521 */
522 mutex_acquire(&sk->sk_lock.dep_map, 0, 1, _RET_IP_);
523
Peter Zijlstrac57943a2008-10-07 14:18:42 -0700524 rc = sk_backlog_rcv(sk, skb);
Ingo Molnara5b5bb92006-07-03 00:25:35 -0700525
526 mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_);
Eric Dumazetf545a382012-04-22 23:34:26 +0000527 } else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
Zhu Yi8eae9392010-03-04 18:01:40 +0000528 bh_unlock_sock(sk);
529 atomic_inc(&sk->sk_drops);
530 goto discard_and_relse;
531 }
532
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800533 bh_unlock_sock(sk);
534out:
Eric Dumazetc3f24cf2016-11-02 17:14:41 -0700535 if (refcounted)
536 sock_put(sk);
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800537 return rc;
538discard_and_relse:
539 kfree_skb(skb);
540 goto out;
541}
Willem de Bruijn4f0c40d92016-07-12 18:18:57 -0400542EXPORT_SYMBOL(__sk_receive_skb);
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800543
544struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie)
545{
Eric Dumazetb6c67122010-04-08 23:03:29 +0000546 struct dst_entry *dst = __sk_dst_get(sk);
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800547
548 if (dst && dst->obsolete && dst->ops->check(dst, cookie) == NULL) {
Krishna Kumare022f0b2009-10-19 23:46:20 +0000549 sk_tx_queue_clear(sk);
Julian Anastasov9b8805a2017-02-06 23:14:11 +0200550 sk->sk_dst_pending_confirm = 0;
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000551 RCU_INIT_POINTER(sk->sk_dst_cache, NULL);
Denis Vlasenkof0088a52006-03-28 01:08:21 -0800552 dst_release(dst);
553 return NULL;
554 }
555
556 return dst;
557}
558EXPORT_SYMBOL(__sk_dst_check);
559
560struct dst_entry *sk_dst_check(struct sock *sk, u32 cookie)
561{
562 struct dst_entry *dst = sk_dst_get(sk);
563
564 if (dst && dst->obsolete && dst->ops->check(dst, cookie) == NULL) {
565 sk_dst_reset(sk);
566 dst_release(dst);
567 return NULL;
568 }
569
570 return dst;
571}
572EXPORT_SYMBOL(sk_dst_check);
573
Brian Haleyc91f6df2012-11-26 05:21:08 +0000574static int sock_setbindtodevice(struct sock *sk, char __user *optval,
575 int optlen)
David S. Miller48788092007-09-14 16:41:03 -0700576{
577 int ret = -ENOPROTOOPT;
578#ifdef CONFIG_NETDEVICES
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900579 struct net *net = sock_net(sk);
David S. Miller48788092007-09-14 16:41:03 -0700580 char devname[IFNAMSIZ];
581 int index;
582
583 /* Sorry... */
584 ret = -EPERM;
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000585 if (!ns_capable(net->user_ns, CAP_NET_RAW))
David S. Miller48788092007-09-14 16:41:03 -0700586 goto out;
587
588 ret = -EINVAL;
589 if (optlen < 0)
590 goto out;
591
592 /* Bind this socket to a particular device like "eth0",
593 * as specified in the passed interface name. If the
594 * name is "" or the option length is zero the socket
595 * is not bound.
596 */
597 if (optlen > IFNAMSIZ - 1)
598 optlen = IFNAMSIZ - 1;
599 memset(devname, 0, sizeof(devname));
600
601 ret = -EFAULT;
602 if (copy_from_user(devname, optval, optlen))
603 goto out;
604
David S. Miller000ba2e2009-11-05 22:37:11 -0800605 index = 0;
606 if (devname[0] != '\0') {
Eric Dumazetbf8e56b2009-11-05 21:03:39 -0800607 struct net_device *dev;
David S. Miller48788092007-09-14 16:41:03 -0700608
Eric Dumazetbf8e56b2009-11-05 21:03:39 -0800609 rcu_read_lock();
610 dev = dev_get_by_name_rcu(net, devname);
611 if (dev)
612 index = dev->ifindex;
613 rcu_read_unlock();
David S. Miller48788092007-09-14 16:41:03 -0700614 ret = -ENODEV;
615 if (!dev)
616 goto out;
David S. Miller48788092007-09-14 16:41:03 -0700617 }
618
619 lock_sock(sk);
620 sk->sk_bound_dev_if = index;
621 sk_dst_reset(sk);
622 release_sock(sk);
623
624 ret = 0;
625
626out:
627#endif
628
629 return ret;
630}
631
Brian Haleyc91f6df2012-11-26 05:21:08 +0000632static int sock_getbindtodevice(struct sock *sk, char __user *optval,
633 int __user *optlen, int len)
634{
635 int ret = -ENOPROTOOPT;
636#ifdef CONFIG_NETDEVICES
637 struct net *net = sock_net(sk);
Brian Haleyc91f6df2012-11-26 05:21:08 +0000638 char devname[IFNAMSIZ];
Brian Haleyc91f6df2012-11-26 05:21:08 +0000639
640 if (sk->sk_bound_dev_if == 0) {
641 len = 0;
642 goto zero;
643 }
644
645 ret = -EINVAL;
646 if (len < IFNAMSIZ)
647 goto out;
648
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200649 ret = netdev_get_name(net, devname, sk->sk_bound_dev_if);
650 if (ret)
Brian Haleyc91f6df2012-11-26 05:21:08 +0000651 goto out;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000652
653 len = strlen(devname) + 1;
654
655 ret = -EFAULT;
656 if (copy_to_user(optval, devname, len))
657 goto out;
658
659zero:
660 ret = -EFAULT;
661 if (put_user(len, optlen))
662 goto out;
663
664 ret = 0;
665
666out:
667#endif
668
669 return ret;
670}
671
Pavel Emelyanovc0ef8772007-11-15 03:03:19 -0800672static inline void sock_valbool_flag(struct sock *sk, int bit, int valbool)
673{
674 if (valbool)
675 sock_set_flag(sk, bit);
676 else
677 sock_reset_flag(sk, bit);
678}
679
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +0200680bool sk_mc_loop(struct sock *sk)
681{
682 if (dev_recursion_level())
683 return false;
684 if (!sk)
685 return true;
686 switch (sk->sk_family) {
687 case AF_INET:
688 return inet_sk(sk)->mc_loop;
689#if IS_ENABLED(CONFIG_IPV6)
690 case AF_INET6:
691 return inet6_sk(sk)->mc_loop;
692#endif
693 }
694 WARN_ON(1);
695 return true;
696}
697EXPORT_SYMBOL(sk_mc_loop);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699/*
700 * This is meant for all protocols to use and covers goings on
701 * at the socket level. Everything here is generic.
702 */
703
704int sock_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700705 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Eric Dumazet2a915252009-05-27 11:30:05 +0000707 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int val;
709 int valbool;
710 struct linger ling;
711 int ret = 0;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /*
714 * Options without arguments
715 */
716
David S. Miller48788092007-09-14 16:41:03 -0700717 if (optname == SO_BINDTODEVICE)
Brian Haleyc91f6df2012-11-26 05:21:08 +0000718 return sock_setbindtodevice(sk, optval, optlen);
David S. Miller48788092007-09-14 16:41:03 -0700719
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700720 if (optlen < sizeof(int))
721 return -EINVAL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (get_user(val, (int __user *)optval))
724 return -EFAULT;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900725
Eric Dumazet2a915252009-05-27 11:30:05 +0000726 valbool = val ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 lock_sock(sk);
729
Eric Dumazet2a915252009-05-27 11:30:05 +0000730 switch (optname) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700731 case SO_DEBUG:
Eric Dumazet2a915252009-05-27 11:30:05 +0000732 if (val && !capable(CAP_NET_ADMIN))
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700733 ret = -EACCES;
Eric Dumazet2a915252009-05-27 11:30:05 +0000734 else
Pavel Emelyanovc0ef8772007-11-15 03:03:19 -0800735 sock_valbool_flag(sk, SOCK_DBG, valbool);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700736 break;
737 case SO_REUSEADDR:
Pavel Emelyanov4a17fd52012-04-19 03:39:36 +0000738 sk->sk_reuse = (valbool ? SK_CAN_REUSE : SK_NO_REUSE);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700739 break;
Tom Herbert055dc212013-01-22 09:49:50 +0000740 case SO_REUSEPORT:
741 sk->sk_reuseport = valbool;
742 break;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700743 case SO_TYPE:
Jan Engelhardt49c794e2009-08-04 07:28:28 +0000744 case SO_PROTOCOL:
Jan Engelhardt0d6038e2009-08-04 07:28:29 +0000745 case SO_DOMAIN:
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700746 case SO_ERROR:
747 ret = -ENOPROTOOPT;
748 break;
749 case SO_DONTROUTE:
Pavel Emelyanovc0ef8772007-11-15 03:03:19 -0800750 sock_valbool_flag(sk, SOCK_LOCALROUTE, valbool);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700751 break;
752 case SO_BROADCAST:
753 sock_valbool_flag(sk, SOCK_BROADCAST, valbool);
754 break;
755 case SO_SNDBUF:
756 /* Don't error on this BSD doesn't and if you think
Eric Dumazet82981932012-04-26 20:07:59 +0000757 * about it this is right. Otherwise apps have to
758 * play 'guess the biggest size' games. RCVBUF/SNDBUF
759 * are treated in BSD as hints
760 */
761 val = min_t(u32, val, sysctl_wmem_max);
Patrick McHardyb0573de2005-08-09 19:30:51 -0700762set_sndbuf:
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700763 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Eric Dumazetb98b0bc2016-12-02 09:44:53 -0800764 sk->sk_sndbuf = max_t(int, val * 2, SOCK_MIN_SNDBUF);
Eric Dumazet82981932012-04-26 20:07:59 +0000765 /* Wake up sending tasks if we upped the value. */
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700766 sk->sk_write_space(sk);
767 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700769 case SO_SNDBUFFORCE:
770 if (!capable(CAP_NET_ADMIN)) {
771 ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 break;
773 }
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700774 goto set_sndbuf;
775
776 case SO_RCVBUF:
777 /* Don't error on this BSD doesn't and if you think
Eric Dumazet82981932012-04-26 20:07:59 +0000778 * about it this is right. Otherwise apps have to
779 * play 'guess the biggest size' games. RCVBUF/SNDBUF
780 * are treated in BSD as hints
781 */
782 val = min_t(u32, val, sysctl_rmem_max);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700783set_rcvbuf:
784 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
785 /*
786 * We double it on the way in to account for
787 * "struct sk_buff" etc. overhead. Applications
788 * assume that the SO_RCVBUF setting they make will
789 * allow that much actual data to be received on that
790 * socket.
791 *
792 * Applications are unaware that "struct sk_buff" and
793 * other overheads allocate from the receive buffer
794 * during socket buffer allocation.
795 *
796 * And after considering the possible alternatives,
797 * returning the value we actually used in getsockopt
798 * is the most desirable behavior.
799 */
Eric Dumazetb98b0bc2016-12-02 09:44:53 -0800800 sk->sk_rcvbuf = max_t(int, val * 2, SOCK_MIN_RCVBUF);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700801 break;
802
803 case SO_RCVBUFFORCE:
804 if (!capable(CAP_NET_ADMIN)) {
805 ret = -EPERM;
806 break;
807 }
808 goto set_rcvbuf;
809
810 case SO_KEEPALIVE:
Ursula Braun4b9d07a2017-01-09 16:55:12 +0100811 if (sk->sk_prot->keepalive)
812 sk->sk_prot->keepalive(sk, valbool);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700813 sock_valbool_flag(sk, SOCK_KEEPOPEN, valbool);
814 break;
815
816 case SO_OOBINLINE:
817 sock_valbool_flag(sk, SOCK_URGINLINE, valbool);
818 break;
819
820 case SO_NO_CHECK:
Tom Herbert28448b82014-05-23 08:47:19 -0700821 sk->sk_no_check_tx = valbool;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700822 break;
823
824 case SO_PRIORITY:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000825 if ((val >= 0 && val <= 6) ||
826 ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700827 sk->sk_priority = val;
828 else
829 ret = -EPERM;
830 break;
831
832 case SO_LINGER:
833 if (optlen < sizeof(ling)) {
834 ret = -EINVAL; /* 1003.1g */
835 break;
836 }
Eric Dumazet2a915252009-05-27 11:30:05 +0000837 if (copy_from_user(&ling, optval, sizeof(ling))) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700838 ret = -EFAULT;
839 break;
840 }
841 if (!ling.l_onoff)
842 sock_reset_flag(sk, SOCK_LINGER);
843 else {
844#if (BITS_PER_LONG == 32)
845 if ((unsigned int)ling.l_linger >= MAX_SCHEDULE_TIMEOUT/HZ)
846 sk->sk_lingertime = MAX_SCHEDULE_TIMEOUT;
847 else
848#endif
849 sk->sk_lingertime = (unsigned int)ling.l_linger * HZ;
850 sock_set_flag(sk, SOCK_LINGER);
851 }
852 break;
853
854 case SO_BSDCOMPAT:
855 sock_warn_obsolete_bsdism("setsockopt");
856 break;
857
858 case SO_PASSCRED:
859 if (valbool)
860 set_bit(SOCK_PASSCRED, &sock->flags);
861 else
862 clear_bit(SOCK_PASSCRED, &sock->flags);
863 break;
864
865 case SO_TIMESTAMP:
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700866 case SO_TIMESTAMPNS:
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700867 if (valbool) {
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700868 if (optname == SO_TIMESTAMP)
869 sock_reset_flag(sk, SOCK_RCVTSTAMPNS);
870 else
871 sock_set_flag(sk, SOCK_RCVTSTAMPNS);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700872 sock_set_flag(sk, SOCK_RCVTSTAMP);
Patrick Ohly20d49472009-02-12 05:03:38 +0000873 sock_enable_timestamp(sk, SOCK_TIMESTAMP);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700874 } else {
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700875 sock_reset_flag(sk, SOCK_RCVTSTAMP);
Eric Dumazet92f37fd2007-03-25 22:14:49 -0700876 sock_reset_flag(sk, SOCK_RCVTSTAMPNS);
877 }
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700878 break;
879
Patrick Ohly20d49472009-02-12 05:03:38 +0000880 case SO_TIMESTAMPING:
881 if (val & ~SOF_TIMESTAMPING_MASK) {
Rémi Denis-Courmontf249fb72009-07-20 00:47:04 +0000882 ret = -EINVAL;
Patrick Ohly20d49472009-02-12 05:03:38 +0000883 break;
884 }
Willem de Bruijnb245be12015-01-30 13:29:32 -0500885
Willem de Bruijn09c2d252014-08-04 22:11:47 -0400886 if (val & SOF_TIMESTAMPING_OPT_ID &&
Willem de Bruijn4ed2d762014-08-04 22:11:49 -0400887 !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID)) {
WANG Congac5cc972015-12-16 23:39:04 -0800888 if (sk->sk_protocol == IPPROTO_TCP &&
889 sk->sk_type == SOCK_STREAM) {
Soheil Hassas Yeganeh6db8b962016-04-02 23:08:07 -0400890 if ((1 << sk->sk_state) &
891 (TCPF_CLOSE | TCPF_LISTEN)) {
Willem de Bruijn4ed2d762014-08-04 22:11:49 -0400892 ret = -EINVAL;
893 break;
894 }
895 sk->sk_tskey = tcp_sk(sk)->snd_una;
896 } else {
897 sk->sk_tskey = 0;
898 }
899 }
Francis Yan1c885802016-11-27 23:07:18 -0800900
901 if (val & SOF_TIMESTAMPING_OPT_STATS &&
902 !(val & SOF_TIMESTAMPING_OPT_TSONLY)) {
903 ret = -EINVAL;
904 break;
905 }
906
Willem de Bruijnb9f40e22014-08-04 22:11:46 -0400907 sk->sk_tsflags = val;
Patrick Ohly20d49472009-02-12 05:03:38 +0000908 if (val & SOF_TIMESTAMPING_RX_SOFTWARE)
909 sock_enable_timestamp(sk,
910 SOCK_TIMESTAMPING_RX_SOFTWARE);
911 else
912 sock_disable_timestamp(sk,
Eric Dumazet08e29af2011-11-28 12:04:18 +0000913 (1UL << SOCK_TIMESTAMPING_RX_SOFTWARE));
Patrick Ohly20d49472009-02-12 05:03:38 +0000914 break;
915
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700916 case SO_RCVLOWAT:
917 if (val < 0)
918 val = INT_MAX;
919 sk->sk_rcvlowat = val ? : 1;
920 break;
921
922 case SO_RCVTIMEO:
923 ret = sock_set_timeout(&sk->sk_rcvtimeo, optval, optlen);
924 break;
925
926 case SO_SNDTIMEO:
927 ret = sock_set_timeout(&sk->sk_sndtimeo, optval, optlen);
928 break;
929
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700930 case SO_ATTACH_FILTER:
931 ret = -EINVAL;
932 if (optlen == sizeof(struct sock_fprog)) {
933 struct sock_fprog fprog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700935 ret = -EFAULT;
936 if (copy_from_user(&fprog, optval, sizeof(fprog)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700939 ret = sk_attach_filter(&fprog, sk);
940 }
941 break;
942
Alexei Starovoitov89aa0752014-12-01 15:06:35 -0800943 case SO_ATTACH_BPF:
944 ret = -EINVAL;
945 if (optlen == sizeof(u32)) {
946 u32 ufd;
947
948 ret = -EFAULT;
949 if (copy_from_user(&ufd, optval, sizeof(ufd)))
950 break;
951
952 ret = sk_attach_bpf(ufd, sk);
953 }
954 break;
955
Craig Gallek538950a2016-01-04 17:41:47 -0500956 case SO_ATTACH_REUSEPORT_CBPF:
957 ret = -EINVAL;
958 if (optlen == sizeof(struct sock_fprog)) {
959 struct sock_fprog fprog;
960
961 ret = -EFAULT;
962 if (copy_from_user(&fprog, optval, sizeof(fprog)))
963 break;
964
965 ret = sk_reuseport_attach_filter(&fprog, sk);
966 }
967 break;
968
969 case SO_ATTACH_REUSEPORT_EBPF:
970 ret = -EINVAL;
971 if (optlen == sizeof(u32)) {
972 u32 ufd;
973
974 ret = -EFAULT;
975 if (copy_from_user(&ufd, optval, sizeof(ufd)))
976 break;
977
978 ret = sk_reuseport_attach_bpf(ufd, sk);
979 }
980 break;
981
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700982 case SO_DETACH_FILTER:
Pavel Emelyanov55b33322007-10-17 21:21:26 -0700983 ret = sk_detach_filter(sk);
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700984 break;
985
Vincent Bernatd59577b2013-01-16 22:55:49 +0100986 case SO_LOCK_FILTER:
987 if (sock_flag(sk, SOCK_FILTER_LOCKED) && !valbool)
988 ret = -EPERM;
989 else
990 sock_valbool_flag(sk, SOCK_FILTER_LOCKED, valbool);
991 break;
992
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700993 case SO_PASSSEC:
994 if (valbool)
995 set_bit(SOCK_PASSSEC, &sock->flags);
996 else
997 clear_bit(SOCK_PASSSEC, &sock->flags);
998 break;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800999 case SO_MARK:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +00001000 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001001 ret = -EPERM;
Eric Dumazet2a915252009-05-27 11:30:05 +00001002 else
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001003 sk->sk_mark = val;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001004 break;
Catherine Zhang877ce7c2006-06-29 12:27:47 -07001005
Neil Horman3b885782009-10-12 13:26:31 -07001006 case SO_RXQ_OVFL:
Johannes Berg8083f0f2011-10-07 03:30:20 +00001007 sock_valbool_flag(sk, SOCK_RXQ_OVFL, valbool);
Neil Horman3b885782009-10-12 13:26:31 -07001008 break;
Johannes Berg6e3e9392011-11-09 10:15:42 +01001009
1010 case SO_WIFI_STATUS:
1011 sock_valbool_flag(sk, SOCK_WIFI_STATUS, valbool);
1012 break;
1013
Pavel Emelyanovef64a542012-02-21 07:31:34 +00001014 case SO_PEEK_OFF:
1015 if (sock->ops->set_peek_off)
Sasha Levin12663bf2013-12-07 17:26:27 -05001016 ret = sock->ops->set_peek_off(sk, val);
Pavel Emelyanovef64a542012-02-21 07:31:34 +00001017 else
1018 ret = -EOPNOTSUPP;
1019 break;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001020
1021 case SO_NOFCS:
1022 sock_valbool_flag(sk, SOCK_NOFCS, valbool);
1023 break;
1024
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00001025 case SO_SELECT_ERR_QUEUE:
1026 sock_valbool_flag(sk, SOCK_SELECT_ERR_QUEUE, valbool);
1027 break;
1028
Cong Wange0d10952013-08-01 11:10:25 +08001029#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +03001030 case SO_BUSY_POLL:
Eliezer Tamirdafcc432013-06-14 16:33:57 +03001031 /* allow unprivileged users to decrease the value */
1032 if ((val > sk->sk_ll_usec) && !capable(CAP_NET_ADMIN))
1033 ret = -EPERM;
1034 else {
1035 if (val < 0)
1036 ret = -EINVAL;
1037 else
1038 sk->sk_ll_usec = val;
1039 }
1040 break;
1041#endif
Eric Dumazet62748f32013-09-24 08:20:52 -07001042
1043 case SO_MAX_PACING_RATE:
Eric Dumazet218af592017-05-16 04:24:36 -07001044 if (val != ~0U)
1045 cmpxchg(&sk->sk_pacing_status,
1046 SK_PACING_NONE,
1047 SK_PACING_NEEDED);
Eric Dumazet62748f32013-09-24 08:20:52 -07001048 sk->sk_max_pacing_rate = val;
1049 sk->sk_pacing_rate = min(sk->sk_pacing_rate,
1050 sk->sk_max_pacing_rate);
1051 break;
1052
Eric Dumazet70da2682015-10-08 19:33:21 -07001053 case SO_INCOMING_CPU:
1054 sk->sk_incoming_cpu = val;
1055 break;
1056
Tom Herberta87cb3e2016-02-24 10:02:52 -08001057 case SO_CNX_ADVICE:
1058 if (val == 1)
1059 dst_negative_advice(sk);
1060 break;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001061 default:
1062 ret = -ENOPROTOOPT;
1063 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 release_sock(sk);
1066 return ret;
1067}
Eric Dumazet2a915252009-05-27 11:30:05 +00001068EXPORT_SYMBOL(sock_setsockopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070
stephen hemminger8f098982014-01-03 09:17:14 -08001071static void cred_to_ucred(struct pid *pid, const struct cred *cred,
1072 struct ucred *ucred)
Eric W. Biederman3f551f92010-06-13 03:28:59 +00001073{
1074 ucred->pid = pid_vnr(pid);
1075 ucred->uid = ucred->gid = -1;
1076 if (cred) {
1077 struct user_namespace *current_ns = current_user_ns();
1078
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -06001079 ucred->uid = from_kuid_munged(current_ns, cred->euid);
1080 ucred->gid = from_kgid_munged(current_ns, cred->egid);
Eric W. Biederman3f551f92010-06-13 03:28:59 +00001081 }
1082}
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084int sock_getsockopt(struct socket *sock, int level, int optname,
1085 char __user *optval, int __user *optlen)
1086{
1087 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001088
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001089 union {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001090 int val;
Chenbo Feng5daab9d2017-04-05 19:00:55 -07001091 u64 val64;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001092 struct linger ling;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct timeval tm;
1094 } v;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001095
H Hartley Sweeten4d0392b2010-01-15 01:08:58 -08001096 int lv = sizeof(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 int len;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001098
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001099 if (get_user(len, optlen))
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001100 return -EFAULT;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001101 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return -EINVAL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001103
Eugene Teo50fee1d2009-02-23 15:38:41 -08001104 memset(&v, 0, sizeof(v));
Clément Lecignedf0bca02009-02-12 16:59:09 -08001105
Eric Dumazet2a915252009-05-27 11:30:05 +00001106 switch (optname) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001107 case SO_DEBUG:
1108 v.val = sock_flag(sk, SOCK_DBG);
1109 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001110
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001111 case SO_DONTROUTE:
1112 v.val = sock_flag(sk, SOCK_LOCALROUTE);
1113 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001114
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001115 case SO_BROADCAST:
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001116 v.val = sock_flag(sk, SOCK_BROADCAST);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001117 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001119 case SO_SNDBUF:
1120 v.val = sk->sk_sndbuf;
1121 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001122
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001123 case SO_RCVBUF:
1124 v.val = sk->sk_rcvbuf;
1125 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001127 case SO_REUSEADDR:
1128 v.val = sk->sk_reuse;
1129 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Tom Herbert055dc212013-01-22 09:49:50 +00001131 case SO_REUSEPORT:
1132 v.val = sk->sk_reuseport;
1133 break;
1134
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001135 case SO_KEEPALIVE:
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001136 v.val = sock_flag(sk, SOCK_KEEPOPEN);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001139 case SO_TYPE:
1140 v.val = sk->sk_type;
1141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Jan Engelhardt49c794e2009-08-04 07:28:28 +00001143 case SO_PROTOCOL:
1144 v.val = sk->sk_protocol;
1145 break;
1146
Jan Engelhardt0d6038e2009-08-04 07:28:29 +00001147 case SO_DOMAIN:
1148 v.val = sk->sk_family;
1149 break;
1150
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001151 case SO_ERROR:
1152 v.val = -sock_error(sk);
Eric Dumazet2a915252009-05-27 11:30:05 +00001153 if (v.val == 0)
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001154 v.val = xchg(&sk->sk_err_soft, 0);
1155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001157 case SO_OOBINLINE:
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001158 v.val = sock_flag(sk, SOCK_URGINLINE);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001159 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001160
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001161 case SO_NO_CHECK:
Tom Herbert28448b82014-05-23 08:47:19 -07001162 v.val = sk->sk_no_check_tx;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001163 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001165 case SO_PRIORITY:
1166 v.val = sk->sk_priority;
1167 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001168
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001169 case SO_LINGER:
1170 lv = sizeof(v.ling);
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001171 v.ling.l_onoff = sock_flag(sk, SOCK_LINGER);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001172 v.ling.l_linger = sk->sk_lingertime / HZ;
1173 break;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001174
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001175 case SO_BSDCOMPAT:
1176 sock_warn_obsolete_bsdism("getsockopt");
1177 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001179 case SO_TIMESTAMP:
Eric Dumazet92f37fd2007-03-25 22:14:49 -07001180 v.val = sock_flag(sk, SOCK_RCVTSTAMP) &&
1181 !sock_flag(sk, SOCK_RCVTSTAMPNS);
1182 break;
1183
1184 case SO_TIMESTAMPNS:
1185 v.val = sock_flag(sk, SOCK_RCVTSTAMPNS);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001186 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Patrick Ohly20d49472009-02-12 05:03:38 +00001188 case SO_TIMESTAMPING:
Willem de Bruijnb9f40e22014-08-04 22:11:46 -04001189 v.val = sk->sk_tsflags;
Patrick Ohly20d49472009-02-12 05:03:38 +00001190 break;
1191
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001192 case SO_RCVTIMEO:
Eric Dumazet2a915252009-05-27 11:30:05 +00001193 lv = sizeof(struct timeval);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001194 if (sk->sk_rcvtimeo == MAX_SCHEDULE_TIMEOUT) {
1195 v.tm.tv_sec = 0;
1196 v.tm.tv_usec = 0;
1197 } else {
1198 v.tm.tv_sec = sk->sk_rcvtimeo / HZ;
Gao Feng8ccde4c2017-02-21 17:09:19 +08001199 v.tm.tv_usec = ((sk->sk_rcvtimeo % HZ) * USEC_PER_SEC) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001201 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001203 case SO_SNDTIMEO:
Eric Dumazet2a915252009-05-27 11:30:05 +00001204 lv = sizeof(struct timeval);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001205 if (sk->sk_sndtimeo == MAX_SCHEDULE_TIMEOUT) {
1206 v.tm.tv_sec = 0;
1207 v.tm.tv_usec = 0;
1208 } else {
1209 v.tm.tv_sec = sk->sk_sndtimeo / HZ;
Gao Feng8ccde4c2017-02-21 17:09:19 +08001210 v.tm.tv_usec = ((sk->sk_sndtimeo % HZ) * USEC_PER_SEC) / HZ;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001211 }
1212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001214 case SO_RCVLOWAT:
1215 v.val = sk->sk_rcvlowat;
1216 break;
Catherine Zhang877ce7c2006-06-29 12:27:47 -07001217
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001218 case SO_SNDLOWAT:
Eric Dumazet2a915252009-05-27 11:30:05 +00001219 v.val = 1;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001222 case SO_PASSCRED:
Eric Dumazet82981932012-04-26 20:07:59 +00001223 v.val = !!test_bit(SOCK_PASSCRED, &sock->flags);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001224 break;
1225
1226 case SO_PEERCRED:
Eric W. Biederman109f6e32010-06-13 03:30:14 +00001227 {
1228 struct ucred peercred;
1229 if (len > sizeof(peercred))
1230 len = sizeof(peercred);
1231 cred_to_ucred(sk->sk_peer_pid, sk->sk_peer_cred, &peercred);
1232 if (copy_to_user(optval, &peercred, len))
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001233 return -EFAULT;
1234 goto lenout;
Eric W. Biederman109f6e32010-06-13 03:30:14 +00001235 }
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001236
1237 case SO_PEERNAME:
1238 {
1239 char address[128];
1240
1241 if (sock->ops->getname(sock, (struct sockaddr *)address, &lv, 2))
1242 return -ENOTCONN;
1243 if (lv < len)
1244 return -EINVAL;
1245 if (copy_to_user(optval, address, len))
1246 return -EFAULT;
1247 goto lenout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001249
1250 /* Dubious BSD thing... Probably nobody even uses it, but
1251 * the UNIX standard wants it for whatever reason... -DaveM
1252 */
1253 case SO_ACCEPTCONN:
1254 v.val = sk->sk_state == TCP_LISTEN;
1255 break;
1256
1257 case SO_PASSSEC:
Eric Dumazet82981932012-04-26 20:07:59 +00001258 v.val = !!test_bit(SOCK_PASSSEC, &sock->flags);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001259 break;
1260
1261 case SO_PEERSEC:
1262 return security_socket_getpeersec_stream(sock, optval, optlen, len);
1263
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -08001264 case SO_MARK:
1265 v.val = sk->sk_mark;
1266 break;
1267
Neil Horman3b885782009-10-12 13:26:31 -07001268 case SO_RXQ_OVFL:
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001269 v.val = sock_flag(sk, SOCK_RXQ_OVFL);
Neil Horman3b885782009-10-12 13:26:31 -07001270 break;
1271
Johannes Berg6e3e9392011-11-09 10:15:42 +01001272 case SO_WIFI_STATUS:
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001273 v.val = sock_flag(sk, SOCK_WIFI_STATUS);
Johannes Berg6e3e9392011-11-09 10:15:42 +01001274 break;
1275
Pavel Emelyanovef64a542012-02-21 07:31:34 +00001276 case SO_PEEK_OFF:
1277 if (!sock->ops->set_peek_off)
1278 return -EOPNOTSUPP;
1279
1280 v.val = sk->sk_peek_off;
1281 break;
David S. Millerbc2f7992012-02-24 14:48:34 -05001282 case SO_NOFCS:
Eric Dumazet1b23a5d2012-05-16 05:57:07 +00001283 v.val = sock_flag(sk, SOCK_NOFCS);
David S. Millerbc2f7992012-02-24 14:48:34 -05001284 break;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001285
Pavel Emelyanovf7b86bf2012-10-18 23:55:56 +00001286 case SO_BINDTODEVICE:
Brian Haleyc91f6df2012-11-26 05:21:08 +00001287 return sock_getbindtodevice(sk, optval, optlen, len);
1288
Pavel Emelyanova8fc9272012-11-01 02:01:48 +00001289 case SO_GET_FILTER:
1290 len = sk_get_filter(sk, (struct sock_filter __user *)optval, len);
1291 if (len < 0)
1292 return len;
1293
1294 goto lenout;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001295
Vincent Bernatd59577b2013-01-16 22:55:49 +01001296 case SO_LOCK_FILTER:
1297 v.val = sock_flag(sk, SOCK_FILTER_LOCKED);
1298 break;
1299
Michal Sekletarea02f942014-01-17 17:09:45 +01001300 case SO_BPF_EXTENSIONS:
1301 v.val = bpf_tell_extensions();
1302 break;
1303
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00001304 case SO_SELECT_ERR_QUEUE:
1305 v.val = sock_flag(sk, SOCK_SELECT_ERR_QUEUE);
1306 break;
1307
Cong Wange0d10952013-08-01 11:10:25 +08001308#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir64b0dc52013-07-10 17:13:36 +03001309 case SO_BUSY_POLL:
Eliezer Tamirdafcc432013-06-14 16:33:57 +03001310 v.val = sk->sk_ll_usec;
1311 break;
1312#endif
1313
Eric Dumazet62748f32013-09-24 08:20:52 -07001314 case SO_MAX_PACING_RATE:
1315 v.val = sk->sk_max_pacing_rate;
1316 break;
1317
Eric Dumazet2c8c56e2014-11-11 05:54:28 -08001318 case SO_INCOMING_CPU:
1319 v.val = sk->sk_incoming_cpu;
1320 break;
1321
Josh Hunta2d133b2017-03-20 15:22:03 -04001322 case SO_MEMINFO:
1323 {
1324 u32 meminfo[SK_MEMINFO_VARS];
1325
1326 if (get_user(len, optlen))
1327 return -EFAULT;
1328
1329 sk_get_meminfo(sk, meminfo);
1330
1331 len = min_t(unsigned int, len, sizeof(meminfo));
1332 if (copy_to_user(optval, &meminfo, len))
1333 return -EFAULT;
1334
1335 goto lenout;
1336 }
Sridhar Samudrala6d433902017-03-24 10:08:36 -07001337
1338#ifdef CONFIG_NET_RX_BUSY_POLL
1339 case SO_INCOMING_NAPI_ID:
1340 v.val = READ_ONCE(sk->sk_napi_id);
1341
1342 /* aggregate non-NAPI IDs down to 0 */
1343 if (v.val < MIN_NAPI_ID)
1344 v.val = 0;
1345
1346 break;
1347#endif
1348
Chenbo Feng5daab9d2017-04-05 19:00:55 -07001349 case SO_COOKIE:
1350 lv = sizeof(u64);
1351 if (len < lv)
1352 return -EINVAL;
1353 v.val64 = sock_gen_cookie(sk);
1354 break;
1355
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001356 default:
YOSHIFUJI Hideaki/吉藤英明443b5992015-03-23 18:04:13 +09001357 /* We implement the SO_SNDLOWAT etc to not be settable
1358 * (1003.1g 7).
1359 */
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001360 return -ENOPROTOOPT;
1361 }
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (len > lv)
1364 len = lv;
1365 if (copy_to_user(optval, &v, len))
1366 return -EFAULT;
1367lenout:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001368 if (put_user(len, optlen))
1369 return -EFAULT;
1370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Ingo Molnara5b5bb92006-07-03 00:25:35 -07001373/*
1374 * Initialize an sk_lock.
1375 *
1376 * (We also register the sk_lock with the lock validator.)
1377 */
Dave Jonesb6f99a22007-03-22 12:27:49 -07001378static inline void sock_lock_init(struct sock *sk)
Ingo Molnara5b5bb92006-07-03 00:25:35 -07001379{
David Howellscdfbabf2017-03-09 08:09:05 +00001380 if (sk->sk_kern_sock)
1381 sock_lock_init_class_and_name(
1382 sk,
1383 af_family_kern_slock_key_strings[sk->sk_family],
1384 af_family_kern_slock_keys + sk->sk_family,
1385 af_family_kern_key_strings[sk->sk_family],
1386 af_family_kern_keys + sk->sk_family);
1387 else
1388 sock_lock_init_class_and_name(
1389 sk,
Peter Zijlstraed075362006-12-06 20:35:24 -08001390 af_family_slock_key_strings[sk->sk_family],
1391 af_family_slock_keys + sk->sk_family,
1392 af_family_key_strings[sk->sk_family],
1393 af_family_keys + sk->sk_family);
Ingo Molnara5b5bb92006-07-03 00:25:35 -07001394}
1395
Eric Dumazet4dc6dc72009-07-15 23:13:10 +00001396/*
1397 * Copy all fields from osk to nsk but nsk->sk_refcnt must not change yet,
1398 * even temporarly, because of RCU lookups. sk_node should also be left as is.
Eric Dumazet68835ab2010-11-30 19:04:07 +00001399 * We must not copy fields between sk_dontcopy_begin and sk_dontcopy_end
Eric Dumazet4dc6dc72009-07-15 23:13:10 +00001400 */
Pavel Emelyanovf1a6c4d2007-11-01 00:29:45 -07001401static void sock_copy(struct sock *nsk, const struct sock *osk)
1402{
1403#ifdef CONFIG_SECURITY_NETWORK
1404 void *sptr = nsk->sk_security;
1405#endif
Eric Dumazet68835ab2010-11-30 19:04:07 +00001406 memcpy(nsk, osk, offsetof(struct sock, sk_dontcopy_begin));
1407
1408 memcpy(&nsk->sk_dontcopy_end, &osk->sk_dontcopy_end,
1409 osk->sk_prot->obj_size - offsetof(struct sock, sk_dontcopy_end));
1410
Pavel Emelyanovf1a6c4d2007-11-01 00:29:45 -07001411#ifdef CONFIG_SECURITY_NETWORK
1412 nsk->sk_security = sptr;
1413 security_sk_clone(osk, nsk);
1414#endif
1415}
1416
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001417static struct sock *sk_prot_alloc(struct proto *prot, gfp_t priority,
1418 int family)
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001419{
1420 struct sock *sk;
1421 struct kmem_cache *slab;
1422
1423 slab = prot->slab;
Eric Dumazete912b112009-07-08 19:36:05 +00001424 if (slab != NULL) {
1425 sk = kmem_cache_alloc(slab, priority & ~__GFP_ZERO);
1426 if (!sk)
1427 return sk;
Eric Dumazetba2489b2016-08-23 11:39:29 -07001428 if (priority & __GFP_ZERO)
1429 sk_prot_clear_nulls(sk, prot->obj_size);
Octavian Purdilafcbdf092010-12-16 14:26:56 -08001430 } else
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001431 sk = kmalloc(prot->obj_size, priority);
1432
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001433 if (sk != NULL) {
Vegard Nossuma98b65a2009-02-26 14:46:57 +01001434 kmemcheck_annotate_bitfield(sk, flags);
1435
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001436 if (security_sk_alloc(sk, family, priority))
1437 goto out_free;
1438
1439 if (!try_module_get(prot->owner))
1440 goto out_free_sec;
Krishna Kumare022f0b2009-10-19 23:46:20 +00001441 sk_tx_queue_clear(sk);
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001442 }
1443
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001444 return sk;
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001445
1446out_free_sec:
1447 security_sk_free(sk);
1448out_free:
1449 if (slab != NULL)
1450 kmem_cache_free(slab, sk);
1451 else
1452 kfree(sk);
1453 return NULL;
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001454}
1455
1456static void sk_prot_free(struct proto *prot, struct sock *sk)
1457{
1458 struct kmem_cache *slab;
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001459 struct module *owner;
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001460
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001461 owner = prot->owner;
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001462 slab = prot->slab;
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001463
Tejun Heobd1060a2015-12-07 17:38:53 -05001464 cgroup_sk_free(&sk->sk_cgrp_data);
Johannes Weiner2d758072016-10-07 17:00:58 -07001465 mem_cgroup_sk_free(sk);
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001466 security_sk_free(sk);
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001467 if (slab != NULL)
1468 kmem_cache_free(slab, sk);
1469 else
1470 kfree(sk);
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001471 module_put(owner);
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001472}
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474/**
1475 * sk_alloc - All socket objects are allocated here
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001476 * @net: the applicable net namespace
Pavel Pisa4dc3b162005-05-01 08:59:25 -07001477 * @family: protocol family
1478 * @priority: for allocation (%GFP_KERNEL, %GFP_ATOMIC, etc)
1479 * @prot: struct proto associated with this new sock instance
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05001480 * @kern: is this to be a kernel socket?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 */
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001482struct sock *sk_alloc(struct net *net, int family, gfp_t priority,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05001483 struct proto *prot, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001485 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Pavel Emelyanov154adbc2007-11-01 00:38:43 -07001487 sk = sk_prot_alloc(prot, priority | __GFP_ZERO, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (sk) {
Pavel Emelyanov154adbc2007-11-01 00:38:43 -07001489 sk->sk_family = family;
1490 /*
1491 * See comment in struct sock definition to understand
1492 * why we need sk_prot_creator -acme
1493 */
1494 sk->sk_prot = sk->sk_prot_creator = prot;
David Howellscdfbabf2017-03-09 08:09:05 +00001495 sk->sk_kern_sock = kern;
Pavel Emelyanov154adbc2007-11-01 00:38:43 -07001496 sock_lock_init(sk);
Eric W. Biederman26abe142015-05-08 21:10:31 -05001497 sk->sk_net_refcnt = kern ? 0 : 1;
1498 if (likely(sk->sk_net_refcnt))
1499 get_net(net);
1500 sock_net_set(sk, net);
Jarek Poplawskid66ee052009-08-30 23:15:36 +00001501 atomic_set(&sk->sk_wmem_alloc, 1);
Herbert Xuf8451722010-05-24 00:12:34 -07001502
Johannes Weiner2d758072016-10-07 17:00:58 -07001503 mem_cgroup_sk_alloc(sk);
Johannes Weinerd979a392016-09-19 14:44:38 -07001504 cgroup_sk_alloc(&sk->sk_cgrp_data);
Tejun Heo2a56a1f2015-12-07 17:38:52 -05001505 sock_update_classid(&sk->sk_cgrp_data);
1506 sock_update_netprioidx(&sk->sk_cgrp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
Frank Filza79af592005-09-27 15:23:38 -07001508
Pavel Emelyanov2e4afe72007-11-01 00:36:26 -07001509 return sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
Eric Dumazet2a915252009-05-27 11:30:05 +00001511EXPORT_SYMBOL(sk_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Eric Dumazeta4298e42016-04-01 08:52:12 -07001513/* Sockets having SOCK_RCU_FREE will call this function after one RCU
1514 * grace period. This is the case for UDP sockets and TCP listeners.
1515 */
1516static void __sk_destruct(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Eric Dumazeta4298e42016-04-01 08:52:12 -07001518 struct sock *sk = container_of(head, struct sock, sk_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct sk_filter *filter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 if (sk->sk_destruct)
1522 sk->sk_destruct(sk);
1523
Paul E. McKenneya898def2010-02-22 17:04:49 -08001524 filter = rcu_dereference_check(sk->sk_filter,
1525 atomic_read(&sk->sk_wmem_alloc) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (filter) {
Pavel Emelyanov309dd5f2007-10-17 21:21:51 -07001527 sk_filter_uncharge(sk, filter);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001528 RCU_INIT_POINTER(sk->sk_filter, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
Craig Gallek538950a2016-01-04 17:41:47 -05001530 if (rcu_access_pointer(sk->sk_reuseport_cb))
1531 reuseport_detach_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Eric Dumazet08e29af2011-11-28 12:04:18 +00001533 sock_disable_timestamp(sk, SK_FLAGS_TIMESTAMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 if (atomic_read(&sk->sk_omem_alloc))
Joe Perchese005d192012-05-16 19:58:40 +00001536 pr_debug("%s: optmem leakage (%d bytes) detected\n",
1537 __func__, atomic_read(&sk->sk_omem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Eric Dumazet22a0e182017-03-15 13:21:28 -07001539 if (sk->sk_frag.page) {
1540 put_page(sk->sk_frag.page);
1541 sk->sk_frag.page = NULL;
1542 }
1543
Eric W. Biederman109f6e32010-06-13 03:30:14 +00001544 if (sk->sk_peer_cred)
1545 put_cred(sk->sk_peer_cred);
1546 put_pid(sk->sk_peer_pid);
Eric W. Biederman26abe142015-05-08 21:10:31 -05001547 if (likely(sk->sk_net_refcnt))
1548 put_net(sock_net(sk));
Pavel Emelyanovc308c1b22007-11-01 00:33:50 -07001549 sk_prot_free(sk->sk_prot_creator, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550}
Eric Dumazet2b85a342009-06-11 02:55:43 -07001551
Eric Dumazeta4298e42016-04-01 08:52:12 -07001552void sk_destruct(struct sock *sk)
1553{
1554 if (sock_flag(sk, SOCK_RCU_FREE))
1555 call_rcu(&sk->sk_rcu, __sk_destruct);
1556 else
1557 __sk_destruct(&sk->sk_rcu);
1558}
1559
Craig Gallekeb4cb002015-06-15 11:26:18 -04001560static void __sk_free(struct sock *sk)
1561{
Craig Gallekb9226222015-06-30 12:49:32 -04001562 if (unlikely(sock_diag_has_destroy_listeners(sk) && sk->sk_net_refcnt))
Craig Gallekeb4cb002015-06-15 11:26:18 -04001563 sock_diag_broadcast_destroy(sk);
1564 else
1565 sk_destruct(sk);
1566}
1567
Eric Dumazet2b85a342009-06-11 02:55:43 -07001568void sk_free(struct sock *sk)
1569{
1570 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001571 * We subtract one from sk_wmem_alloc and can know if
Eric Dumazet2b85a342009-06-11 02:55:43 -07001572 * some packets are still in some tx queue.
1573 * If not null, sock_wfree() will call __sk_free(sk) later
1574 */
1575 if (atomic_dec_and_test(&sk->sk_wmem_alloc))
1576 __sk_free(sk);
1577}
Eric Dumazet2a915252009-05-27 11:30:05 +00001578EXPORT_SYMBOL(sk_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Paolo Abeni581319c2017-03-09 13:54:08 +01001580static void sk_init_common(struct sock *sk)
1581{
1582 skb_queue_head_init(&sk->sk_receive_queue);
1583 skb_queue_head_init(&sk->sk_write_queue);
1584 skb_queue_head_init(&sk->sk_error_queue);
1585
1586 rwlock_init(&sk->sk_callback_lock);
1587 lockdep_set_class_and_name(&sk->sk_receive_queue.lock,
1588 af_rlock_keys + sk->sk_family,
1589 af_family_rlock_key_strings[sk->sk_family]);
1590 lockdep_set_class_and_name(&sk->sk_write_queue.lock,
1591 af_wlock_keys + sk->sk_family,
1592 af_family_wlock_key_strings[sk->sk_family]);
1593 lockdep_set_class_and_name(&sk->sk_error_queue.lock,
1594 af_elock_keys + sk->sk_family,
1595 af_family_elock_key_strings[sk->sk_family]);
1596 lockdep_set_class_and_name(&sk->sk_callback_lock,
1597 af_callback_keys + sk->sk_family,
1598 af_family_clock_key_strings[sk->sk_family]);
1599}
1600
Eric Dumazete56c57d2011-11-08 17:07:07 -05001601/**
1602 * sk_clone_lock - clone a socket, and lock its clone
1603 * @sk: the socket to clone
1604 * @priority: for allocation (%GFP_KERNEL, %GFP_ATOMIC, etc)
1605 *
1606 * Caller must unlock socket even in error path (bh_unlock_sock(newsk))
1607 */
1608struct sock *sk_clone_lock(const struct sock *sk, const gfp_t priority)
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001609{
Pavel Emelyanov8fd1d172007-11-01 00:37:32 -07001610 struct sock *newsk;
Alexei Starovoitov278571b2014-07-30 20:34:12 -07001611 bool is_charged = true;
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001612
Pavel Emelyanov8fd1d172007-11-01 00:37:32 -07001613 newsk = sk_prot_alloc(sk->sk_prot, priority, sk->sk_family);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001614 if (newsk != NULL) {
1615 struct sk_filter *filter;
1616
Venkat Yekkirala892c1412006-08-04 23:08:56 -07001617 sock_copy(newsk, sk);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001618
1619 /* SANITY */
Sowmini Varadhan8a681732015-07-30 15:50:36 +02001620 if (likely(newsk->sk_net_refcnt))
1621 get_net(sock_net(newsk));
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001622 sk_node_init(&newsk->sk_node);
1623 sock_lock_init(newsk);
1624 bh_lock_sock(newsk);
Eric Dumazetfa438cc2007-03-04 16:05:44 -08001625 newsk->sk_backlog.head = newsk->sk_backlog.tail = NULL;
Zhu Yi8eae9392010-03-04 18:01:40 +00001626 newsk->sk_backlog.len = 0;
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001627
1628 atomic_set(&newsk->sk_rmem_alloc, 0);
Eric Dumazet2b85a342009-06-11 02:55:43 -07001629 /*
1630 * sk_wmem_alloc set to one (see sk_free() and sock_wfree())
1631 */
1632 atomic_set(&newsk->sk_wmem_alloc, 1);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001633 atomic_set(&newsk->sk_omem_alloc, 0);
Paolo Abeni581319c2017-03-09 13:54:08 +01001634 sk_init_common(newsk);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001635
1636 newsk->sk_dst_cache = NULL;
Julian Anastasov9b8805a2017-02-06 23:14:11 +02001637 newsk->sk_dst_pending_confirm = 0;
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001638 newsk->sk_wmem_queued = 0;
1639 newsk->sk_forward_alloc = 0;
Eric Dumazet9caad862016-04-01 08:52:20 -07001640 atomic_set(&newsk->sk_drops, 0);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001641 newsk->sk_send_head = NULL;
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001642 newsk->sk_userlocks = sk->sk_userlocks & ~SOCK_BINDPORT_LOCK;
1643
1644 sock_reset_flag(newsk, SOCK_DONE);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001645
Eric Dumazet0d7da9d2010-10-25 03:47:05 +00001646 filter = rcu_dereference_protected(newsk->sk_filter, 1);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001647 if (filter != NULL)
Alexei Starovoitov278571b2014-07-30 20:34:12 -07001648 /* though it's an empty new sock, the charging may fail
1649 * if sysctl_optmem_max was changed between creation of
1650 * original socket and cloning
1651 */
1652 is_charged = sk_filter_charge(newsk, filter);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001653
Eric Dumazetd188ba82015-12-08 07:22:02 -08001654 if (unlikely(!is_charged || xfrm_sk_clone_policy(newsk, sk))) {
Daniel Borkmanna97e50c2017-03-22 13:08:08 +01001655 /* We need to make sure that we don't uncharge the new
1656 * socket if we couldn't charge it in the first place
1657 * as otherwise we uncharge the parent's filter.
1658 */
1659 if (!is_charged)
1660 RCU_INIT_POINTER(newsk->sk_filter, NULL);
Arnaldo Carvalho de Melo94352d42017-03-01 16:35:08 -03001661 sk_free_unlock_clone(newsk);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001662 newsk = NULL;
1663 goto out;
1664 }
Craig Gallekfa463492016-02-10 11:50:39 -05001665 RCU_INIT_POINTER(newsk->sk_reuseport_cb, NULL);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001666
1667 newsk->sk_err = 0;
Eric Dumazete551c322016-10-28 13:40:24 -07001668 newsk->sk_err_soft = 0;
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001669 newsk->sk_priority = 0;
Eric Dumazet2c8c56e2014-11-11 05:54:28 -08001670 newsk->sk_incoming_cpu = raw_smp_processor_id();
Eric Dumazet33cf7c92015-03-11 18:53:14 -07001671 atomic64_set(&newsk->sk_cookie, 0);
Johannes Weinerd979a392016-09-19 14:44:38 -07001672
Johannes Weiner2d758072016-10-07 17:00:58 -07001673 mem_cgroup_sk_alloc(newsk);
Johannes Weinerd979a392016-09-19 14:44:38 -07001674 cgroup_sk_alloc(&newsk->sk_cgrp_data);
1675
Eric Dumazet4dc6dc72009-07-15 23:13:10 +00001676 /*
1677 * Before updating sk_refcnt, we must commit prior changes to memory
1678 * (Documentation/RCU/rculist_nulls.txt for details)
1679 */
1680 smp_wmb();
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001681 atomic_set(&newsk->sk_refcnt, 2);
1682
1683 /*
1684 * Increment the counter in the same struct proto as the master
1685 * sock (sk_refcnt_debug_inc uses newsk->sk_prot->socks, that
1686 * is the same as sk->sk_prot->socks, as this field was copied
1687 * with memcpy).
1688 *
1689 * This _changes_ the previous behaviour, where
1690 * tcp_create_openreq_child always was incrementing the
1691 * equivalent to tcp_prot->socks (inet_sock_nr), so this have
1692 * to be taken into account in all callers. -acme
1693 */
1694 sk_refcnt_debug_inc(newsk);
David S. Miller972692e2008-06-17 22:41:38 -07001695 sk_set_socket(newsk, NULL);
Eric Dumazet43815482010-04-29 11:01:49 +00001696 newsk->sk_wq = NULL;
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001697
1698 if (newsk->sk_prot->sockets_allocated)
Glauber Costa180d8cd2011-12-11 21:47:02 +00001699 sk_sockets_allocated_inc(newsk);
Octavian Purdila704da5602010-01-08 00:00:09 -08001700
Hannes Frederic Sowa080a2702015-10-26 13:51:37 +01001701 if (sock_needs_netstamp(sk) &&
1702 newsk->sk_flags & SK_FLAGS_TIMESTAMP)
Octavian Purdila704da5602010-01-08 00:00:09 -08001703 net_enable_timestamp();
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001704 }
1705out:
1706 return newsk;
1707}
Eric Dumazete56c57d2011-11-08 17:07:07 -05001708EXPORT_SYMBOL_GPL(sk_clone_lock);
Arnaldo Carvalho de Melo87d11ce2005-08-09 20:10:12 -07001709
Arnaldo Carvalho de Melo94352d42017-03-01 16:35:08 -03001710void sk_free_unlock_clone(struct sock *sk)
1711{
1712 /* It is still raw copy of parent, so invalidate
1713 * destructor and make plain sk_free() */
1714 sk->sk_destruct = NULL;
1715 bh_unlock_sock(sk);
1716 sk_free(sk);
1717}
1718EXPORT_SYMBOL_GPL(sk_free_unlock_clone);
1719
Andi Kleen99580892007-04-20 17:12:43 -07001720void sk_setup_caps(struct sock *sk, struct dst_entry *dst)
1721{
Eric Dumazetd6a4e262015-05-26 08:55:28 -07001722 u32 max_segs = 1;
1723
Eric Dumazet6bd4f352015-12-02 21:53:57 -08001724 sk_dst_set(sk, dst);
Andi Kleen99580892007-04-20 17:12:43 -07001725 sk->sk_route_caps = dst->dev->features;
1726 if (sk->sk_route_caps & NETIF_F_GSO)
Herbert Xu4fcd6b92007-05-31 22:15:50 -07001727 sk->sk_route_caps |= NETIF_F_GSO_SOFTWARE;
Eric Dumazeta4654192010-05-16 00:36:33 -07001728 sk->sk_route_caps &= ~sk->sk_route_nocaps;
Andi Kleen99580892007-04-20 17:12:43 -07001729 if (sk_can_gso(sk)) {
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07001730 if (dst->header_len) {
Andi Kleen99580892007-04-20 17:12:43 -07001731 sk->sk_route_caps &= ~NETIF_F_GSO_MASK;
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07001732 } else {
Andi Kleen99580892007-04-20 17:12:43 -07001733 sk->sk_route_caps |= NETIF_F_SG | NETIF_F_HW_CSUM;
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07001734 sk->sk_gso_max_size = dst->dev->gso_max_size;
Eric Dumazetd6a4e262015-05-26 08:55:28 -07001735 max_segs = max_t(u32, dst->dev->gso_max_segs, 1);
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07001736 }
Andi Kleen99580892007-04-20 17:12:43 -07001737 }
Eric Dumazetd6a4e262015-05-26 08:55:28 -07001738 sk->sk_gso_max_segs = max_segs;
Andi Kleen99580892007-04-20 17:12:43 -07001739}
1740EXPORT_SYMBOL_GPL(sk_setup_caps);
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742/*
1743 * Simple resource managers for sockets.
1744 */
1745
1746
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001747/*
1748 * Write buffer destructor automatically called from kfree_skb.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 */
1750void sock_wfree(struct sk_buff *skb)
1751{
1752 struct sock *sk = skb->sk;
Eric Dumazetd99927f2009-09-24 10:49:24 +00001753 unsigned int len = skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Eric Dumazetd99927f2009-09-24 10:49:24 +00001755 if (!sock_flag(sk, SOCK_USE_WRITE_QUEUE)) {
1756 /*
1757 * Keep a reference on sk_wmem_alloc, this will be released
1758 * after sk_write_space() call
1759 */
1760 atomic_sub(len - 1, &sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 sk->sk_write_space(sk);
Eric Dumazetd99927f2009-09-24 10:49:24 +00001762 len = 1;
1763 }
Eric Dumazet2b85a342009-06-11 02:55:43 -07001764 /*
Eric Dumazetd99927f2009-09-24 10:49:24 +00001765 * if sk_wmem_alloc reaches 0, we must finish what sk_free()
1766 * could not do because of in-flight packets
Eric Dumazet2b85a342009-06-11 02:55:43 -07001767 */
Eric Dumazetd99927f2009-09-24 10:49:24 +00001768 if (atomic_sub_and_test(len, &sk->sk_wmem_alloc))
Eric Dumazet2b85a342009-06-11 02:55:43 -07001769 __sk_free(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
Eric Dumazet2a915252009-05-27 11:30:05 +00001771EXPORT_SYMBOL(sock_wfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Eric Dumazet1d2077a2016-05-02 10:56:27 -07001773/* This variant of sock_wfree() is used by TCP,
1774 * since it sets SOCK_USE_WRITE_QUEUE.
1775 */
1776void __sock_wfree(struct sk_buff *skb)
1777{
1778 struct sock *sk = skb->sk;
1779
1780 if (atomic_sub_and_test(skb->truesize, &sk->sk_wmem_alloc))
1781 __sk_free(sk);
1782}
1783
Eric Dumazet9e17f8a2015-11-01 15:36:55 -08001784void skb_set_owner_w(struct sk_buff *skb, struct sock *sk)
1785{
1786 skb_orphan(skb);
1787 skb->sk = sk;
1788#ifdef CONFIG_INET
1789 if (unlikely(!sk_fullsock(sk))) {
1790 skb->destructor = sock_edemux;
1791 sock_hold(sk);
1792 return;
1793 }
1794#endif
1795 skb->destructor = sock_wfree;
1796 skb_set_hash_from_sk(skb, sk);
1797 /*
1798 * We used to take a refcount on sk, but following operation
1799 * is enough to guarantee sk_free() wont free this sock until
1800 * all in-flight packets are completed
1801 */
1802 atomic_add(skb->truesize, &sk->sk_wmem_alloc);
1803}
1804EXPORT_SYMBOL(skb_set_owner_w);
1805
Eric Dumazet1d2077a2016-05-02 10:56:27 -07001806/* This helper is used by netem, as it can hold packets in its
1807 * delay queue. We want to allow the owner socket to send more
1808 * packets, as if they were already TX completed by a typical driver.
1809 * But we also want to keep skb->sk set because some packet schedulers
Eric Dumazetf6ba8d32017-05-11 15:24:41 -07001810 * rely on it (sch_fq for example).
Eric Dumazet1d2077a2016-05-02 10:56:27 -07001811 */
Eric Dumazetf2f872f2013-07-30 17:55:08 -07001812void skb_orphan_partial(struct sk_buff *skb)
1813{
Eric Dumazetf6ba8d32017-05-11 15:24:41 -07001814 if (skb_is_tcp_pure_ack(skb))
Eric Dumazet1d2077a2016-05-02 10:56:27 -07001815 return;
1816
Eric Dumazetf2f872f2013-07-30 17:55:08 -07001817 if (skb->destructor == sock_wfree
1818#ifdef CONFIG_INET
1819 || skb->destructor == tcp_wfree
1820#endif
1821 ) {
Eric Dumazetf6ba8d32017-05-11 15:24:41 -07001822 struct sock *sk = skb->sk;
1823
1824 if (atomic_inc_not_zero(&sk->sk_refcnt)) {
1825 atomic_sub(skb->truesize, &sk->sk_wmem_alloc);
1826 skb->destructor = sock_efree;
1827 }
Eric Dumazetf2f872f2013-07-30 17:55:08 -07001828 } else {
1829 skb_orphan(skb);
1830 }
1831}
1832EXPORT_SYMBOL(skb_orphan_partial);
1833
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001834/*
1835 * Read buffer destructor automatically called from kfree_skb.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 */
1837void sock_rfree(struct sk_buff *skb)
1838{
1839 struct sock *sk = skb->sk;
Eric Dumazetd361fd52010-07-10 22:45:17 +00001840 unsigned int len = skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Eric Dumazetd361fd52010-07-10 22:45:17 +00001842 atomic_sub(len, &sk->sk_rmem_alloc);
1843 sk_mem_uncharge(sk, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
Eric Dumazet2a915252009-05-27 11:30:05 +00001845EXPORT_SYMBOL(sock_rfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Oliver Hartkopp7768eed2015-03-10 19:03:46 +01001847/*
1848 * Buffer destructor for skbs that are not used directly in read or write
1849 * path, e.g. for error handler skbs. Automatically called from kfree_skb.
1850 */
Alexander Duyck62bccb82014-09-04 13:31:35 -04001851void sock_efree(struct sk_buff *skb)
1852{
1853 sock_put(skb->sk);
1854}
1855EXPORT_SYMBOL(sock_efree);
1856
Eric W. Biederman976d02012012-05-23 17:16:53 -06001857kuid_t sock_i_uid(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
Eric W. Biederman976d02012012-05-23 17:16:53 -06001859 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Eric Dumazetf064af12010-09-22 12:43:39 +00001861 read_lock_bh(&sk->sk_callback_lock);
Eric W. Biederman976d02012012-05-23 17:16:53 -06001862 uid = sk->sk_socket ? SOCK_INODE(sk->sk_socket)->i_uid : GLOBAL_ROOT_UID;
Eric Dumazetf064af12010-09-22 12:43:39 +00001863 read_unlock_bh(&sk->sk_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return uid;
1865}
Eric Dumazet2a915252009-05-27 11:30:05 +00001866EXPORT_SYMBOL(sock_i_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868unsigned long sock_i_ino(struct sock *sk)
1869{
1870 unsigned long ino;
1871
Eric Dumazetf064af12010-09-22 12:43:39 +00001872 read_lock_bh(&sk->sk_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 ino = sk->sk_socket ? SOCK_INODE(sk->sk_socket)->i_ino : 0;
Eric Dumazetf064af12010-09-22 12:43:39 +00001874 read_unlock_bh(&sk->sk_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return ino;
1876}
Eric Dumazet2a915252009-05-27 11:30:05 +00001877EXPORT_SYMBOL(sock_i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879/*
1880 * Allocate a skb from the socket's send buffer.
1881 */
Victor Fusco86a76ca2005-07-08 14:57:47 -07001882struct sk_buff *sock_wmalloc(struct sock *sk, unsigned long size, int force,
Al Virodd0fc662005-10-07 07:46:04 +01001883 gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 if (force || atomic_read(&sk->sk_wmem_alloc) < sk->sk_sndbuf) {
Eric Dumazet2a915252009-05-27 11:30:05 +00001886 struct sk_buff *skb = alloc_skb(size, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (skb) {
1888 skb_set_owner_w(skb, sk);
1889 return skb;
1890 }
1891 }
1892 return NULL;
1893}
Eric Dumazet2a915252009-05-27 11:30:05 +00001894EXPORT_SYMBOL(sock_wmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 * Allocate a memory block from the socket's option memory buffer.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001898 */
Al Virodd0fc662005-10-07 07:46:04 +01001899void *sock_kmalloc(struct sock *sk, int size, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Eric Dumazet95c96172012-04-15 05:58:06 +00001901 if ((unsigned int)size <= sysctl_optmem_max &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 atomic_read(&sk->sk_omem_alloc) + size < sysctl_optmem_max) {
1903 void *mem;
1904 /* First do the add, to avoid the race if kmalloc
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001905 * might sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 */
1907 atomic_add(size, &sk->sk_omem_alloc);
1908 mem = kmalloc(size, priority);
1909 if (mem)
1910 return mem;
1911 atomic_sub(size, &sk->sk_omem_alloc);
1912 }
1913 return NULL;
1914}
Eric Dumazet2a915252009-05-27 11:30:05 +00001915EXPORT_SYMBOL(sock_kmalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Daniel Borkmann79e88652014-11-19 17:13:11 +01001917/* Free an option memory block. Note, we actually want the inline
1918 * here as this allows gcc to detect the nullify and fold away the
1919 * condition entirely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 */
Daniel Borkmann79e88652014-11-19 17:13:11 +01001921static inline void __sock_kfree_s(struct sock *sk, void *mem, int size,
1922 const bool nullify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
David S. Millere53da5f2014-10-14 17:02:37 -04001924 if (WARN_ON_ONCE(!mem))
1925 return;
Daniel Borkmann79e88652014-11-19 17:13:11 +01001926 if (nullify)
1927 kzfree(mem);
1928 else
1929 kfree(mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 atomic_sub(size, &sk->sk_omem_alloc);
1931}
Daniel Borkmann79e88652014-11-19 17:13:11 +01001932
1933void sock_kfree_s(struct sock *sk, void *mem, int size)
1934{
1935 __sock_kfree_s(sk, mem, size, false);
1936}
Eric Dumazet2a915252009-05-27 11:30:05 +00001937EXPORT_SYMBOL(sock_kfree_s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Daniel Borkmann79e88652014-11-19 17:13:11 +01001939void sock_kzfree_s(struct sock *sk, void *mem, int size)
1940{
1941 __sock_kfree_s(sk, mem, size, true);
1942}
1943EXPORT_SYMBOL(sock_kzfree_s);
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945/* It is almost wait_for_tcp_memory minus release_sock/lock_sock.
1946 I think, these locks should be removed for datagram sockets.
1947 */
Eric Dumazet2a915252009-05-27 11:30:05 +00001948static long sock_wait_for_wmem(struct sock *sk, long timeo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 DEFINE_WAIT(wait);
1951
Eric Dumazet9cd3e072015-11-29 20:03:10 -08001952 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 for (;;) {
1954 if (!timeo)
1955 break;
1956 if (signal_pending(current))
1957 break;
1958 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +00001959 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 if (atomic_read(&sk->sk_wmem_alloc) < sk->sk_sndbuf)
1961 break;
1962 if (sk->sk_shutdown & SEND_SHUTDOWN)
1963 break;
1964 if (sk->sk_err)
1965 break;
1966 timeo = schedule_timeout(timeo);
1967 }
Eric Dumazetaa395142010-04-20 13:03:51 +00001968 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return timeo;
1970}
1971
1972
1973/*
1974 * Generic send/receive buffer handlers
1975 */
1976
Herbert Xu4cc7f682009-02-04 16:55:54 -08001977struct sk_buff *sock_alloc_send_pskb(struct sock *sk, unsigned long header_len,
1978 unsigned long data_len, int noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07001979 int *errcode, int max_page_order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Eric Dumazet2e4e4412014-09-17 04:49:49 -07001981 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 long timeo;
1983 int err;
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 timeo = sock_sndtimeo(sk, noblock);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07001986 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 err = sock_error(sk);
1988 if (err != 0)
1989 goto failure;
1990
1991 err = -EPIPE;
1992 if (sk->sk_shutdown & SEND_SHUTDOWN)
1993 goto failure;
1994
Eric Dumazet2e4e4412014-09-17 04:49:49 -07001995 if (sk_wmem_alloc_get(sk) < sk->sk_sndbuf)
1996 break;
Eric Dumazet28d64272013-08-08 14:38:47 -07001997
Eric Dumazet9cd3e072015-11-29 20:03:10 -08001998 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07001999 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
2000 err = -EAGAIN;
2001 if (!timeo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 goto failure;
Eric Dumazet2e4e4412014-09-17 04:49:49 -07002003 if (signal_pending(current))
2004 goto interrupted;
2005 timeo = sock_wait_for_wmem(sk, timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
Eric Dumazet2e4e4412014-09-17 04:49:49 -07002007 skb = alloc_skb_with_frags(header_len, data_len, max_page_order,
2008 errcode, sk->sk_allocation);
2009 if (skb)
2010 skb_set_owner_w(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return skb;
2012
2013interrupted:
2014 err = sock_intr_errno(timeo);
2015failure:
2016 *errcode = err;
2017 return NULL;
2018}
Herbert Xu4cc7f682009-02-04 16:55:54 -08002019EXPORT_SYMBOL(sock_alloc_send_pskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002021struct sk_buff *sock_alloc_send_skb(struct sock *sk, unsigned long size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 int noblock, int *errcode)
2023{
Eric Dumazet28d64272013-08-08 14:38:47 -07002024 return sock_alloc_send_pskb(sk, size, 0, noblock, errcode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
Eric Dumazet2a915252009-05-27 11:30:05 +00002026EXPORT_SYMBOL(sock_alloc_send_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Willem de Bruijn39771b12016-04-02 23:08:06 -04002028int __sock_cmsg_send(struct sock *sk, struct msghdr *msg, struct cmsghdr *cmsg,
2029 struct sockcm_cookie *sockc)
2030{
Soheil Hassas Yeganeh3dd17e62016-04-02 23:08:09 -04002031 u32 tsflags;
2032
Willem de Bruijn39771b12016-04-02 23:08:06 -04002033 switch (cmsg->cmsg_type) {
2034 case SO_MARK:
2035 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
2036 return -EPERM;
2037 if (cmsg->cmsg_len != CMSG_LEN(sizeof(u32)))
2038 return -EINVAL;
2039 sockc->mark = *(u32 *)CMSG_DATA(cmsg);
2040 break;
Soheil Hassas Yeganeh3dd17e62016-04-02 23:08:09 -04002041 case SO_TIMESTAMPING:
2042 if (cmsg->cmsg_len != CMSG_LEN(sizeof(u32)))
2043 return -EINVAL;
2044
2045 tsflags = *(u32 *)CMSG_DATA(cmsg);
2046 if (tsflags & ~SOF_TIMESTAMPING_TX_RECORD_MASK)
2047 return -EINVAL;
2048
2049 sockc->tsflags &= ~SOF_TIMESTAMPING_TX_RECORD_MASK;
2050 sockc->tsflags |= tsflags;
2051 break;
Soheil Hassas Yeganeh779f1ed2016-07-11 16:51:26 -04002052 /* SCM_RIGHTS and SCM_CREDENTIALS are semantically in SOL_UNIX. */
2053 case SCM_RIGHTS:
2054 case SCM_CREDENTIALS:
2055 break;
Willem de Bruijn39771b12016-04-02 23:08:06 -04002056 default:
2057 return -EINVAL;
2058 }
2059 return 0;
2060}
2061EXPORT_SYMBOL(__sock_cmsg_send);
2062
Edward Jeef28ea362015-10-08 14:56:48 -07002063int sock_cmsg_send(struct sock *sk, struct msghdr *msg,
2064 struct sockcm_cookie *sockc)
2065{
2066 struct cmsghdr *cmsg;
Willem de Bruijn39771b12016-04-02 23:08:06 -04002067 int ret;
Edward Jeef28ea362015-10-08 14:56:48 -07002068
2069 for_each_cmsghdr(cmsg, msg) {
2070 if (!CMSG_OK(msg, cmsg))
2071 return -EINVAL;
2072 if (cmsg->cmsg_level != SOL_SOCKET)
2073 continue;
Willem de Bruijn39771b12016-04-02 23:08:06 -04002074 ret = __sock_cmsg_send(sk, msg, cmsg, sockc);
2075 if (ret)
2076 return ret;
Edward Jeef28ea362015-10-08 14:56:48 -07002077 }
2078 return 0;
2079}
2080EXPORT_SYMBOL(sock_cmsg_send);
2081
Eric Dumazet5640f762012-09-23 23:04:42 +00002082/* On 32bit arches, an skb frag is limited to 2^15 */
2083#define SKB_FRAG_PAGE_ORDER get_order(32768)
2084
Eric Dumazet400dfd32013-10-17 16:27:07 -07002085/**
2086 * skb_page_frag_refill - check that a page_frag contains enough room
2087 * @sz: minimum size of the fragment we want to get
2088 * @pfrag: pointer to page_frag
Eric Dumazet82d5e2b2014-09-08 04:00:00 -07002089 * @gfp: priority for memory allocation
Eric Dumazet400dfd32013-10-17 16:27:07 -07002090 *
2091 * Note: While this allocator tries to use high order pages, there is
2092 * no guarantee that allocations succeed. Therefore, @sz MUST be
2093 * less or equal than PAGE_SIZE.
2094 */
Eric Dumazetd9b29382014-08-27 20:49:34 -07002095bool skb_page_frag_refill(unsigned int sz, struct page_frag *pfrag, gfp_t gfp)
Eric Dumazet5640f762012-09-23 23:04:42 +00002096{
Eric Dumazet5640f762012-09-23 23:04:42 +00002097 if (pfrag->page) {
Joonsoo Kimfe896d12016-03-17 14:19:26 -07002098 if (page_ref_count(pfrag->page) == 1) {
Eric Dumazet5640f762012-09-23 23:04:42 +00002099 pfrag->offset = 0;
2100 return true;
2101 }
Eric Dumazet400dfd32013-10-17 16:27:07 -07002102 if (pfrag->offset + sz <= pfrag->size)
Eric Dumazet5640f762012-09-23 23:04:42 +00002103 return true;
2104 put_page(pfrag->page);
2105 }
2106
Eric Dumazetd9b29382014-08-27 20:49:34 -07002107 pfrag->offset = 0;
2108 if (SKB_FRAG_PAGE_ORDER) {
Mel Gormand0164ad2015-11-06 16:28:21 -08002109 /* Avoid direct reclaim but allow kswapd to wake */
2110 pfrag->page = alloc_pages((gfp & ~__GFP_DIRECT_RECLAIM) |
2111 __GFP_COMP | __GFP_NOWARN |
2112 __GFP_NORETRY,
Eric Dumazetd9b29382014-08-27 20:49:34 -07002113 SKB_FRAG_PAGE_ORDER);
Eric Dumazet5640f762012-09-23 23:04:42 +00002114 if (likely(pfrag->page)) {
Eric Dumazetd9b29382014-08-27 20:49:34 -07002115 pfrag->size = PAGE_SIZE << SKB_FRAG_PAGE_ORDER;
Eric Dumazet5640f762012-09-23 23:04:42 +00002116 return true;
2117 }
Eric Dumazetd9b29382014-08-27 20:49:34 -07002118 }
2119 pfrag->page = alloc_page(gfp);
2120 if (likely(pfrag->page)) {
2121 pfrag->size = PAGE_SIZE;
2122 return true;
2123 }
Eric Dumazet400dfd32013-10-17 16:27:07 -07002124 return false;
2125}
2126EXPORT_SYMBOL(skb_page_frag_refill);
2127
2128bool sk_page_frag_refill(struct sock *sk, struct page_frag *pfrag)
2129{
2130 if (likely(skb_page_frag_refill(32U, pfrag, sk->sk_allocation)))
2131 return true;
2132
Eric Dumazet5640f762012-09-23 23:04:42 +00002133 sk_enter_memory_pressure(sk);
2134 sk_stream_moderate_sndbuf(sk);
2135 return false;
2136}
2137EXPORT_SYMBOL(sk_page_frag_refill);
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139static void __lock_sock(struct sock *sk)
Namhyung Kimf39234d2010-09-08 03:48:48 +00002140 __releases(&sk->sk_lock.slock)
2141 __acquires(&sk->sk_lock.slock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
2143 DEFINE_WAIT(wait);
2144
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002145 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 prepare_to_wait_exclusive(&sk->sk_lock.wq, &wait,
2147 TASK_UNINTERRUPTIBLE);
2148 spin_unlock_bh(&sk->sk_lock.slock);
2149 schedule();
2150 spin_lock_bh(&sk->sk_lock.slock);
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002151 if (!sock_owned_by_user(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 break;
2153 }
2154 finish_wait(&sk->sk_lock.wq, &wait);
2155}
2156
2157static void __release_sock(struct sock *sk)
Namhyung Kimf39234d2010-09-08 03:48:48 +00002158 __releases(&sk->sk_lock.slock)
2159 __acquires(&sk->sk_lock.slock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Eric Dumazet5413d1b2016-04-29 14:16:52 -07002161 struct sk_buff *skb, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Eric Dumazet5413d1b2016-04-29 14:16:52 -07002163 while ((skb = sk->sk_backlog.head) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 sk->sk_backlog.head = sk->sk_backlog.tail = NULL;
Eric Dumazet5413d1b2016-04-29 14:16:52 -07002165
2166 spin_unlock_bh(&sk->sk_lock.slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 do {
Eric Dumazet5413d1b2016-04-29 14:16:52 -07002169 next = skb->next;
Eric Dumazete4cbb022012-04-30 16:07:09 +00002170 prefetch(next);
Eric Dumazet7fee2262010-05-11 23:19:48 +00002171 WARN_ON_ONCE(skb_dst_is_noref(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 skb->next = NULL;
Peter Zijlstrac57943a2008-10-07 14:18:42 -07002173 sk_backlog_rcv(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Eric Dumazet5413d1b2016-04-29 14:16:52 -07002175 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 skb = next;
2178 } while (skb != NULL);
2179
Eric Dumazet5413d1b2016-04-29 14:16:52 -07002180 spin_lock_bh(&sk->sk_lock.slock);
2181 }
Zhu Yi8eae9392010-03-04 18:01:40 +00002182
2183 /*
2184 * Doing the zeroing here guarantee we can not loop forever
2185 * while a wild producer attempts to flood us.
2186 */
2187 sk->sk_backlog.len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188}
2189
Eric Dumazetd41a69f2016-04-29 14:16:53 -07002190void __sk_flush_backlog(struct sock *sk)
2191{
2192 spin_lock_bh(&sk->sk_lock.slock);
2193 __release_sock(sk);
2194 spin_unlock_bh(&sk->sk_lock.slock);
2195}
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197/**
2198 * sk_wait_data - wait for data to arrive at sk_receive_queue
Pavel Pisa4dc3b162005-05-01 08:59:25 -07002199 * @sk: sock to wait on
2200 * @timeo: for how long
Sabrina Dubrocadfbafc92015-07-24 18:19:25 +02002201 * @skb: last skb seen on sk_receive_queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
2203 * Now socket state including sk->sk_err is changed only under lock,
2204 * hence we may omit checks after joining wait queue.
2205 * We check receive queue before schedule() only as optimization;
2206 * it is very likely that release_sock() added new data.
2207 */
Sabrina Dubrocadfbafc92015-07-24 18:19:25 +02002208int sk_wait_data(struct sock *sk, long *timeo, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
WANG Congd9dc8b02016-11-11 10:20:50 -08002210 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
WANG Congd9dc8b02016-11-11 10:20:50 -08002213 add_wait_queue(sk_sleep(sk), &wait);
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002214 sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk);
WANG Congd9dc8b02016-11-11 10:20:50 -08002215 rc = sk_wait_event(sk, timeo, skb_peek_tail(&sk->sk_receive_queue) != skb, &wait);
Eric Dumazet9cd3e072015-11-29 20:03:10 -08002216 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk);
WANG Congd9dc8b02016-11-11 10:20:50 -08002217 remove_wait_queue(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 return rc;
2219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220EXPORT_SYMBOL(sk_wait_data);
2221
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002222/**
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002223 * __sk_mem_raise_allocated - increase memory_allocated
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002224 * @sk: socket
2225 * @size: memory size to allocate
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002226 * @amt: pages to allocate
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002227 * @kind: allocation type
2228 *
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002229 * Similar to __sk_mem_schedule(), but does not update sk_forward_alloc
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002230 */
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002231int __sk_mem_raise_allocated(struct sock *sk, int size, int amt, int kind)
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002232{
2233 struct proto *prot = sk->sk_prot;
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002234 long allocated = sk_memory_allocated_add(sk, amt);
Johannes Weinere8056052016-01-14 15:21:14 -08002235
Johannes Weinerbaac50b2016-01-14 15:21:17 -08002236 if (mem_cgroup_sockets_enabled && sk->sk_memcg &&
2237 !mem_cgroup_charge_skmem(sk->sk_memcg, amt))
Johannes Weinere8056052016-01-14 15:21:14 -08002238 goto suppress_allocation;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002239
2240 /* Under limit. */
Johannes Weinere8056052016-01-14 15:21:14 -08002241 if (allocated <= sk_prot_mem_limits(sk, 0)) {
Glauber Costa180d8cd2011-12-11 21:47:02 +00002242 sk_leave_memory_pressure(sk);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002243 return 1;
2244 }
2245
Johannes Weinere8056052016-01-14 15:21:14 -08002246 /* Under pressure. */
2247 if (allocated > sk_prot_mem_limits(sk, 1))
Glauber Costa180d8cd2011-12-11 21:47:02 +00002248 sk_enter_memory_pressure(sk);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002249
Johannes Weinere8056052016-01-14 15:21:14 -08002250 /* Over hard limit. */
2251 if (allocated > sk_prot_mem_limits(sk, 2))
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002252 goto suppress_allocation;
2253
2254 /* guarantee minimum buffer size under pressure */
2255 if (kind == SK_MEM_RECV) {
2256 if (atomic_read(&sk->sk_rmem_alloc) < prot->sysctl_rmem[0])
2257 return 1;
Glauber Costa180d8cd2011-12-11 21:47:02 +00002258
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002259 } else { /* SK_MEM_SEND */
2260 if (sk->sk_type == SOCK_STREAM) {
2261 if (sk->sk_wmem_queued < prot->sysctl_wmem[0])
2262 return 1;
2263 } else if (atomic_read(&sk->sk_wmem_alloc) <
2264 prot->sysctl_wmem[0])
2265 return 1;
2266 }
2267
Glauber Costa180d8cd2011-12-11 21:47:02 +00002268 if (sk_has_memory_pressure(sk)) {
Eric Dumazet17483762008-11-25 21:16:35 -08002269 int alloc;
2270
Glauber Costa180d8cd2011-12-11 21:47:02 +00002271 if (!sk_under_memory_pressure(sk))
Eric Dumazet17483762008-11-25 21:16:35 -08002272 return 1;
Glauber Costa180d8cd2011-12-11 21:47:02 +00002273 alloc = sk_sockets_allocated_read_positive(sk);
2274 if (sk_prot_mem_limits(sk, 2) > alloc *
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002275 sk_mem_pages(sk->sk_wmem_queued +
2276 atomic_read(&sk->sk_rmem_alloc) +
2277 sk->sk_forward_alloc))
2278 return 1;
2279 }
2280
2281suppress_allocation:
2282
2283 if (kind == SK_MEM_SEND && sk->sk_type == SOCK_STREAM) {
2284 sk_stream_moderate_sndbuf(sk);
2285
2286 /* Fail only if socket is _under_ its sndbuf.
2287 * In this case we cannot block, so that we have to fail.
2288 */
2289 if (sk->sk_wmem_queued + size >= sk->sk_sndbuf)
2290 return 1;
2291 }
2292
Satoru Moriya3847ce32011-06-17 12:00:03 +00002293 trace_sock_exceed_buf_limit(sk, prot, allocated);
2294
Glauber Costa0e90b312012-01-20 04:57:16 +00002295 sk_memory_allocated_sub(sk, amt);
Glauber Costa180d8cd2011-12-11 21:47:02 +00002296
Johannes Weinerbaac50b2016-01-14 15:21:17 -08002297 if (mem_cgroup_sockets_enabled && sk->sk_memcg)
2298 mem_cgroup_uncharge_skmem(sk->sk_memcg, amt);
Johannes Weinere8056052016-01-14 15:21:14 -08002299
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002300 return 0;
2301}
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002302EXPORT_SYMBOL(__sk_mem_raise_allocated);
2303
2304/**
2305 * __sk_mem_schedule - increase sk_forward_alloc and memory_allocated
2306 * @sk: socket
2307 * @size: memory size to allocate
2308 * @kind: allocation type
2309 *
2310 * If kind is SK_MEM_SEND, it means wmem allocation. Otherwise it means
2311 * rmem allocation. This function assumes that protocols which have
2312 * memory_pressure use sk_wmem_queued as write buffer accounting.
2313 */
2314int __sk_mem_schedule(struct sock *sk, int size, int kind)
2315{
2316 int ret, amt = sk_mem_pages(size);
2317
2318 sk->sk_forward_alloc += amt << SK_MEM_QUANTUM_SHIFT;
2319 ret = __sk_mem_raise_allocated(sk, size, amt, kind);
2320 if (!ret)
2321 sk->sk_forward_alloc -= amt << SK_MEM_QUANTUM_SHIFT;
2322 return ret;
2323}
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002324EXPORT_SYMBOL(__sk_mem_schedule);
2325
2326/**
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002327 * __sk_mem_reduce_allocated - reclaim memory_allocated
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002328 * @sk: socket
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002329 * @amount: number of quanta
2330 *
2331 * Similar to __sk_mem_reclaim(), but does not update sk_forward_alloc
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002332 */
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002333void __sk_mem_reduce_allocated(struct sock *sk, int amount)
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002334{
Eric Dumazet1a24e042015-05-15 12:39:25 -07002335 sk_memory_allocated_sub(sk, amount);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002336
Johannes Weinerbaac50b2016-01-14 15:21:17 -08002337 if (mem_cgroup_sockets_enabled && sk->sk_memcg)
2338 mem_cgroup_uncharge_skmem(sk->sk_memcg, amount);
Johannes Weinere8056052016-01-14 15:21:14 -08002339
Glauber Costa180d8cd2011-12-11 21:47:02 +00002340 if (sk_under_memory_pressure(sk) &&
2341 (sk_memory_allocated(sk) < sk_prot_mem_limits(sk, 0)))
2342 sk_leave_memory_pressure(sk);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002343}
Paolo Abenif8c3bf02016-10-21 13:55:45 +02002344EXPORT_SYMBOL(__sk_mem_reduce_allocated);
2345
2346/**
2347 * __sk_mem_reclaim - reclaim sk_forward_alloc and memory_allocated
2348 * @sk: socket
2349 * @amount: number of bytes (rounded down to a SK_MEM_QUANTUM multiple)
2350 */
2351void __sk_mem_reclaim(struct sock *sk, int amount)
2352{
2353 amount >>= SK_MEM_QUANTUM_SHIFT;
2354 sk->sk_forward_alloc -= amount << SK_MEM_QUANTUM_SHIFT;
2355 __sk_mem_reduce_allocated(sk, amount);
2356}
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002357EXPORT_SYMBOL(__sk_mem_reclaim);
2358
samanthakumar627d2d62016-04-05 12:41:16 -04002359int sk_set_peek_off(struct sock *sk, int val)
2360{
2361 if (val < 0)
2362 return -EINVAL;
2363
2364 sk->sk_peek_off = val;
2365 return 0;
2366}
2367EXPORT_SYMBOL_GPL(sk_set_peek_off);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369/*
2370 * Set of default routines for initialising struct proto_ops when
2371 * the protocol does not support a particular function. In certain
2372 * cases where it makes no sense for a protocol to have a "do nothing"
2373 * function, some default processing is provided.
2374 */
2375
2376int sock_no_bind(struct socket *sock, struct sockaddr *saddr, int len)
2377{
2378 return -EOPNOTSUPP;
2379}
Eric Dumazet2a915252009-05-27 11:30:05 +00002380EXPORT_SYMBOL(sock_no_bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002382int sock_no_connect(struct socket *sock, struct sockaddr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 int len, int flags)
2384{
2385 return -EOPNOTSUPP;
2386}
Eric Dumazet2a915252009-05-27 11:30:05 +00002387EXPORT_SYMBOL(sock_no_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389int sock_no_socketpair(struct socket *sock1, struct socket *sock2)
2390{
2391 return -EOPNOTSUPP;
2392}
Eric Dumazet2a915252009-05-27 11:30:05 +00002393EXPORT_SYMBOL(sock_no_socketpair);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
David Howellscdfbabf2017-03-09 08:09:05 +00002395int sock_no_accept(struct socket *sock, struct socket *newsock, int flags,
2396 bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397{
2398 return -EOPNOTSUPP;
2399}
Eric Dumazet2a915252009-05-27 11:30:05 +00002400EXPORT_SYMBOL(sock_no_accept);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002402int sock_no_getname(struct socket *sock, struct sockaddr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 int *len, int peer)
2404{
2405 return -EOPNOTSUPP;
2406}
Eric Dumazet2a915252009-05-27 11:30:05 +00002407EXPORT_SYMBOL(sock_no_getname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Eric Dumazet2a915252009-05-27 11:30:05 +00002409unsigned int sock_no_poll(struct file *file, struct socket *sock, poll_table *pt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
2411 return 0;
2412}
Eric Dumazet2a915252009-05-27 11:30:05 +00002413EXPORT_SYMBOL(sock_no_poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415int sock_no_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
2416{
2417 return -EOPNOTSUPP;
2418}
Eric Dumazet2a915252009-05-27 11:30:05 +00002419EXPORT_SYMBOL(sock_no_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421int sock_no_listen(struct socket *sock, int backlog)
2422{
2423 return -EOPNOTSUPP;
2424}
Eric Dumazet2a915252009-05-27 11:30:05 +00002425EXPORT_SYMBOL(sock_no_listen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427int sock_no_shutdown(struct socket *sock, int how)
2428{
2429 return -EOPNOTSUPP;
2430}
Eric Dumazet2a915252009-05-27 11:30:05 +00002431EXPORT_SYMBOL(sock_no_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433int sock_no_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002434 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435{
2436 return -EOPNOTSUPP;
2437}
Eric Dumazet2a915252009-05-27 11:30:05 +00002438EXPORT_SYMBOL(sock_no_setsockopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440int sock_no_getsockopt(struct socket *sock, int level, int optname,
2441 char __user *optval, int __user *optlen)
2442{
2443 return -EOPNOTSUPP;
2444}
Eric Dumazet2a915252009-05-27 11:30:05 +00002445EXPORT_SYMBOL(sock_no_getsockopt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Ying Xue1b784142015-03-02 15:37:48 +08002447int sock_no_sendmsg(struct socket *sock, struct msghdr *m, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
2449 return -EOPNOTSUPP;
2450}
Eric Dumazet2a915252009-05-27 11:30:05 +00002451EXPORT_SYMBOL(sock_no_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Ying Xue1b784142015-03-02 15:37:48 +08002453int sock_no_recvmsg(struct socket *sock, struct msghdr *m, size_t len,
2454 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
2456 return -EOPNOTSUPP;
2457}
Eric Dumazet2a915252009-05-27 11:30:05 +00002458EXPORT_SYMBOL(sock_no_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460int sock_no_mmap(struct file *file, struct socket *sock, struct vm_area_struct *vma)
2461{
2462 /* Mirror missing mmap method error code */
2463 return -ENODEV;
2464}
Eric Dumazet2a915252009-05-27 11:30:05 +00002465EXPORT_SYMBOL(sock_no_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467ssize_t sock_no_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
2468{
2469 ssize_t res;
2470 struct msghdr msg = {.msg_flags = flags};
2471 struct kvec iov;
2472 char *kaddr = kmap(page);
2473 iov.iov_base = kaddr + offset;
2474 iov.iov_len = size;
2475 res = kernel_sendmsg(sock, &msg, &iov, 1, size);
2476 kunmap(page);
2477 return res;
2478}
Eric Dumazet2a915252009-05-27 11:30:05 +00002479EXPORT_SYMBOL(sock_no_sendpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481/*
2482 * Default Socket Callbacks
2483 */
2484
2485static void sock_def_wakeup(struct sock *sk)
2486{
Eric Dumazet43815482010-04-29 11:01:49 +00002487 struct socket_wq *wq;
2488
2489 rcu_read_lock();
2490 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08002491 if (skwq_has_sleeper(wq))
Eric Dumazet43815482010-04-29 11:01:49 +00002492 wake_up_interruptible_all(&wq->wait);
2493 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
2496static void sock_def_error_report(struct sock *sk)
2497{
Eric Dumazet43815482010-04-29 11:01:49 +00002498 struct socket_wq *wq;
2499
2500 rcu_read_lock();
2501 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08002502 if (skwq_has_sleeper(wq))
Eric Dumazet43815482010-04-29 11:01:49 +00002503 wake_up_interruptible_poll(&wq->wait, POLLERR);
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08002504 sk_wake_async(sk, SOCK_WAKE_IO, POLL_ERR);
Eric Dumazet43815482010-04-29 11:01:49 +00002505 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
David S. Miller676d2362014-04-11 16:15:36 -04002508static void sock_def_readable(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Eric Dumazet43815482010-04-29 11:01:49 +00002510 struct socket_wq *wq;
2511
2512 rcu_read_lock();
2513 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08002514 if (skwq_has_sleeper(wq))
Eric Dumazet2c6607c2011-01-06 10:54:29 -08002515 wake_up_interruptible_sync_poll(&wq->wait, POLLIN | POLLPRI |
Davide Libenzi37e55402009-03-31 15:24:21 -07002516 POLLRDNORM | POLLRDBAND);
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08002517 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
Eric Dumazet43815482010-04-29 11:01:49 +00002518 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519}
2520
2521static void sock_def_write_space(struct sock *sk)
2522{
Eric Dumazet43815482010-04-29 11:01:49 +00002523 struct socket_wq *wq;
2524
2525 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 /* Do not wake up a writer until he can make "significant"
2528 * progress. --DaveM
2529 */
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002530 if ((atomic_read(&sk->sk_wmem_alloc) << 1) <= sk->sk_sndbuf) {
Eric Dumazet43815482010-04-29 11:01:49 +00002531 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08002532 if (skwq_has_sleeper(wq))
Eric Dumazet43815482010-04-29 11:01:49 +00002533 wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |
Davide Libenzi37e55402009-03-31 15:24:21 -07002534 POLLWRNORM | POLLWRBAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
2536 /* Should agree with poll, otherwise some programs break */
2537 if (sock_writeable(sk))
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08002538 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540
Eric Dumazet43815482010-04-29 11:01:49 +00002541 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
2544static void sock_def_destruct(struct sock *sk)
2545{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
2547
2548void sk_send_sigurg(struct sock *sk)
2549{
2550 if (sk->sk_socket && sk->sk_socket->file)
2551 if (send_sigurg(&sk->sk_socket->file->f_owner))
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08002552 sk_wake_async(sk, SOCK_WAKE_URG, POLL_PRI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
Eric Dumazet2a915252009-05-27 11:30:05 +00002554EXPORT_SYMBOL(sk_send_sigurg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556void sk_reset_timer(struct sock *sk, struct timer_list* timer,
2557 unsigned long expires)
2558{
2559 if (!mod_timer(timer, expires))
2560 sock_hold(sk);
2561}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562EXPORT_SYMBOL(sk_reset_timer);
2563
2564void sk_stop_timer(struct sock *sk, struct timer_list* timer)
2565{
Ying Xue25cc4ae2013-02-03 20:32:57 +00002566 if (del_timer(timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 __sock_put(sk);
2568}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569EXPORT_SYMBOL(sk_stop_timer);
2570
2571void sock_init_data(struct socket *sock, struct sock *sk)
2572{
Paolo Abeni581319c2017-03-09 13:54:08 +01002573 sk_init_common(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 sk->sk_send_head = NULL;
2575
2576 init_timer(&sk->sk_timer);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 sk->sk_allocation = GFP_KERNEL;
2579 sk->sk_rcvbuf = sysctl_rmem_default;
2580 sk->sk_sndbuf = sysctl_wmem_default;
2581 sk->sk_state = TCP_CLOSE;
David S. Miller972692e2008-06-17 22:41:38 -07002582 sk_set_socket(sk, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 sock_set_flag(sk, SOCK_ZAPPED);
2585
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002586 if (sock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 sk->sk_type = sock->type;
Eric Dumazet43815482010-04-29 11:01:49 +00002588 sk->sk_wq = sock->wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 sock->sk = sk;
Lorenzo Colitti86741ec2016-11-04 02:23:41 +09002590 sk->sk_uid = SOCK_INODE(sock)->i_uid;
2591 } else {
Eric Dumazet43815482010-04-29 11:01:49 +00002592 sk->sk_wq = NULL;
Lorenzo Colitti86741ec2016-11-04 02:23:41 +09002593 sk->sk_uid = make_kuid(sock_net(sk)->user_ns, 0);
2594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 rwlock_init(&sk->sk_callback_lock);
David Howellscdfbabf2017-03-09 08:09:05 +00002597 if (sk->sk_kern_sock)
2598 lockdep_set_class_and_name(
2599 &sk->sk_callback_lock,
2600 af_kern_callback_keys + sk->sk_family,
2601 af_family_kern_clock_key_strings[sk->sk_family]);
2602 else
2603 lockdep_set_class_and_name(
2604 &sk->sk_callback_lock,
Peter Zijlstra443aef0e2007-07-19 01:49:00 -07002605 af_callback_keys + sk->sk_family,
2606 af_family_clock_key_strings[sk->sk_family]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
2608 sk->sk_state_change = sock_def_wakeup;
2609 sk->sk_data_ready = sock_def_readable;
2610 sk->sk_write_space = sock_def_write_space;
2611 sk->sk_error_report = sock_def_error_report;
2612 sk->sk_destruct = sock_def_destruct;
2613
Eric Dumazet5640f762012-09-23 23:04:42 +00002614 sk->sk_frag.page = NULL;
2615 sk->sk_frag.offset = 0;
Pavel Emelyanovef64a542012-02-21 07:31:34 +00002616 sk->sk_peek_off = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Eric W. Biederman109f6e32010-06-13 03:30:14 +00002618 sk->sk_peer_pid = NULL;
2619 sk->sk_peer_cred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 sk->sk_write_pending = 0;
2621 sk->sk_rcvlowat = 1;
2622 sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
2623 sk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
2624
Paolo Abeni6c7c98b2017-03-30 14:03:06 +02002625 sk->sk_stamp = SK_DEFAULT_STAMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Cong Wange0d10952013-08-01 11:10:25 +08002627#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir06021292013-06-10 11:39:50 +03002628 sk->sk_napi_id = 0;
Eliezer Tamir64b0dc52013-07-10 17:13:36 +03002629 sk->sk_ll_usec = sysctl_net_busy_read;
Eliezer Tamir06021292013-06-10 11:39:50 +03002630#endif
2631
Eric Dumazet62748f32013-09-24 08:20:52 -07002632 sk->sk_max_pacing_rate = ~0U;
Eric Dumazet7eec4172013-10-08 15:16:00 -07002633 sk->sk_pacing_rate = ~0U;
Eric Dumazet70da2682015-10-08 19:33:21 -07002634 sk->sk_incoming_cpu = -1;
Eric Dumazet4dc6dc72009-07-15 23:13:10 +00002635 /*
2636 * Before updating sk_refcnt, we must commit prior changes to memory
2637 * (Documentation/RCU/rculist_nulls.txt for details)
2638 */
2639 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 atomic_set(&sk->sk_refcnt, 1);
Wang Chen33c732c2007-11-13 20:30:01 -08002641 atomic_set(&sk->sk_drops, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
Eric Dumazet2a915252009-05-27 11:30:05 +00002643EXPORT_SYMBOL(sock_init_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Harvey Harrisonb5606c22008-02-13 15:03:16 -08002645void lock_sock_nested(struct sock *sk, int subclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
2647 might_sleep();
Ingo Molnara5b5bb92006-07-03 00:25:35 -07002648 spin_lock_bh(&sk->sk_lock.slock);
John Heffnerd2e91172007-09-12 10:44:19 +02002649 if (sk->sk_lock.owned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 __lock_sock(sk);
John Heffnerd2e91172007-09-12 10:44:19 +02002651 sk->sk_lock.owned = 1;
Ingo Molnara5b5bb92006-07-03 00:25:35 -07002652 spin_unlock(&sk->sk_lock.slock);
2653 /*
2654 * The sk_lock has mutex_lock() semantics here:
2655 */
Peter Zijlstrafcc70d52006-11-08 22:44:35 -08002656 mutex_acquire(&sk->sk_lock.dep_map, subclass, 0, _RET_IP_);
Ingo Molnara5b5bb92006-07-03 00:25:35 -07002657 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658}
Peter Zijlstrafcc70d52006-11-08 22:44:35 -08002659EXPORT_SYMBOL(lock_sock_nested);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Harvey Harrisonb5606c22008-02-13 15:03:16 -08002661void release_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Ingo Molnara5b5bb92006-07-03 00:25:35 -07002663 spin_lock_bh(&sk->sk_lock.slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 if (sk->sk_backlog.tail)
2665 __release_sock(sk);
Eric Dumazet46d3cea2012-07-11 05:50:31 +00002666
Eric Dumazetc3f9b012014-03-10 09:50:11 -07002667 /* Warning : release_cb() might need to release sk ownership,
2668 * ie call sock_release_ownership(sk) before us.
2669 */
Eric Dumazet46d3cea2012-07-11 05:50:31 +00002670 if (sk->sk_prot->release_cb)
2671 sk->sk_prot->release_cb(sk);
2672
Eric Dumazetc3f9b012014-03-10 09:50:11 -07002673 sock_release_ownership(sk);
Ingo Molnara5b5bb92006-07-03 00:25:35 -07002674 if (waitqueue_active(&sk->sk_lock.wq))
2675 wake_up(&sk->sk_lock.wq);
2676 spin_unlock_bh(&sk->sk_lock.slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678EXPORT_SYMBOL(release_sock);
2679
Eric Dumazet8a74ad62010-05-26 19:20:18 +00002680/**
2681 * lock_sock_fast - fast version of lock_sock
2682 * @sk: socket
2683 *
2684 * This version should be used for very small section, where process wont block
2685 * return false if fast path is taken
2686 * sk_lock.slock locked, owned = 0, BH disabled
2687 * return true if slow path is taken
2688 * sk_lock.slock unlocked, owned = 1, BH enabled
2689 */
2690bool lock_sock_fast(struct sock *sk)
2691{
2692 might_sleep();
2693 spin_lock_bh(&sk->sk_lock.slock);
2694
2695 if (!sk->sk_lock.owned)
2696 /*
2697 * Note : We must disable BH
2698 */
2699 return false;
2700
2701 __lock_sock(sk);
2702 sk->sk_lock.owned = 1;
2703 spin_unlock(&sk->sk_lock.slock);
2704 /*
2705 * The sk_lock has mutex_lock() semantics here:
2706 */
2707 mutex_acquire(&sk->sk_lock.dep_map, 0, 0, _RET_IP_);
2708 local_bh_enable();
2709 return true;
2710}
2711EXPORT_SYMBOL(lock_sock_fast);
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713int sock_get_timestamp(struct sock *sk, struct timeval __user *userstamp)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002714{
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07002715 struct timeval tv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 if (!sock_flag(sk, SOCK_TIMESTAMP))
Patrick Ohly20d49472009-02-12 05:03:38 +00002717 sock_enable_timestamp(sk, SOCK_TIMESTAMP);
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07002718 tv = ktime_to_timeval(sk->sk_stamp);
2719 if (tv.tv_sec == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return -ENOENT;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07002721 if (tv.tv_sec == 0) {
2722 sk->sk_stamp = ktime_get_real();
2723 tv = ktime_to_timeval(sk->sk_stamp);
2724 }
2725 return copy_to_user(userstamp, &tv, sizeof(tv)) ? -EFAULT : 0;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002726}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727EXPORT_SYMBOL(sock_get_timestamp);
2728
Eric Dumazetae40eb12007-03-18 17:33:16 -07002729int sock_get_timestampns(struct sock *sk, struct timespec __user *userstamp)
2730{
2731 struct timespec ts;
2732 if (!sock_flag(sk, SOCK_TIMESTAMP))
Patrick Ohly20d49472009-02-12 05:03:38 +00002733 sock_enable_timestamp(sk, SOCK_TIMESTAMP);
Eric Dumazetae40eb12007-03-18 17:33:16 -07002734 ts = ktime_to_timespec(sk->sk_stamp);
2735 if (ts.tv_sec == -1)
2736 return -ENOENT;
2737 if (ts.tv_sec == 0) {
2738 sk->sk_stamp = ktime_get_real();
2739 ts = ktime_to_timespec(sk->sk_stamp);
2740 }
2741 return copy_to_user(userstamp, &ts, sizeof(ts)) ? -EFAULT : 0;
2742}
2743EXPORT_SYMBOL(sock_get_timestampns);
2744
Patrick Ohly20d49472009-02-12 05:03:38 +00002745void sock_enable_timestamp(struct sock *sk, int flag)
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002746{
Patrick Ohly20d49472009-02-12 05:03:38 +00002747 if (!sock_flag(sk, flag)) {
Eric Dumazet08e29af2011-11-28 12:04:18 +00002748 unsigned long previous_flags = sk->sk_flags;
2749
Patrick Ohly20d49472009-02-12 05:03:38 +00002750 sock_set_flag(sk, flag);
2751 /*
2752 * we just set one of the two flags which require net
2753 * time stamping, but time stamping might have been on
2754 * already because of the other one
2755 */
Hannes Frederic Sowa080a2702015-10-26 13:51:37 +01002756 if (sock_needs_netstamp(sk) &&
2757 !(previous_flags & SK_FLAGS_TIMESTAMP))
Patrick Ohly20d49472009-02-12 05:03:38 +00002758 net_enable_timestamp();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
2760}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Richard Cochrancb820f82013-07-19 19:40:09 +02002762int sock_recv_errqueue(struct sock *sk, struct msghdr *msg, int len,
2763 int level, int type)
2764{
2765 struct sock_exterr_skb *serr;
Willem de Bruijn364a9e92014-08-31 21:30:27 -04002766 struct sk_buff *skb;
Richard Cochrancb820f82013-07-19 19:40:09 +02002767 int copied, err;
2768
2769 err = -EAGAIN;
Willem de Bruijn364a9e92014-08-31 21:30:27 -04002770 skb = sock_dequeue_err_skb(sk);
Richard Cochrancb820f82013-07-19 19:40:09 +02002771 if (skb == NULL)
2772 goto out;
2773
2774 copied = skb->len;
2775 if (copied > len) {
2776 msg->msg_flags |= MSG_TRUNC;
2777 copied = len;
2778 }
David S. Miller51f3d022014-11-05 16:46:40 -05002779 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Richard Cochrancb820f82013-07-19 19:40:09 +02002780 if (err)
2781 goto out_free_skb;
2782
2783 sock_recv_timestamp(msg, sk, skb);
2784
2785 serr = SKB_EXT_ERR(skb);
2786 put_cmsg(msg, level, type, sizeof(serr->ee), &serr->ee);
2787
2788 msg->msg_flags |= MSG_ERRQUEUE;
2789 err = copied;
2790
Richard Cochrancb820f82013-07-19 19:40:09 +02002791out_free_skb:
2792 kfree_skb(skb);
2793out:
2794 return err;
2795}
2796EXPORT_SYMBOL(sock_recv_errqueue);
2797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798/*
2799 * Get a socket option on an socket.
2800 *
2801 * FIX: POSIX 1003.1g is very ambiguous here. It states that
2802 * asynchronous errors should be reported by getsockopt. We assume
2803 * this means if you specify SO_ERROR (otherwise whats the point of it).
2804 */
2805int sock_common_getsockopt(struct socket *sock, int level, int optname,
2806 char __user *optval, int __user *optlen)
2807{
2808 struct sock *sk = sock->sk;
2809
2810 return sk->sk_prot->getsockopt(sk, level, optname, optval, optlen);
2811}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812EXPORT_SYMBOL(sock_common_getsockopt);
2813
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002814#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002815int compat_sock_common_getsockopt(struct socket *sock, int level, int optname,
2816 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002817{
2818 struct sock *sk = sock->sk;
2819
Johannes Berg1e51f952007-03-06 13:44:06 -08002820 if (sk->sk_prot->compat_getsockopt != NULL)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002821 return sk->sk_prot->compat_getsockopt(sk, level, optname,
2822 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002823 return sk->sk_prot->getsockopt(sk, level, optname, optval, optlen);
2824}
2825EXPORT_SYMBOL(compat_sock_common_getsockopt);
2826#endif
2827
Ying Xue1b784142015-03-02 15:37:48 +08002828int sock_common_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
2829 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
2831 struct sock *sk = sock->sk;
2832 int addr_len = 0;
2833 int err;
2834
Ying Xue1b784142015-03-02 15:37:48 +08002835 err = sk->sk_prot->recvmsg(sk, msg, size, flags & MSG_DONTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 flags & ~MSG_DONTWAIT, &addr_len);
2837 if (err >= 0)
2838 msg->msg_namelen = addr_len;
2839 return err;
2840}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841EXPORT_SYMBOL(sock_common_recvmsg);
2842
2843/*
2844 * Set socket options on an inet socket.
2845 */
2846int sock_common_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002847 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
2849 struct sock *sk = sock->sk;
2850
2851 return sk->sk_prot->setsockopt(sk, level, optname, optval, optlen);
2852}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853EXPORT_SYMBOL(sock_common_setsockopt);
2854
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002855#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002856int compat_sock_common_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002857 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002858{
2859 struct sock *sk = sock->sk;
2860
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002861 if (sk->sk_prot->compat_setsockopt != NULL)
2862 return sk->sk_prot->compat_setsockopt(sk, level, optname,
2863 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002864 return sk->sk_prot->setsockopt(sk, level, optname, optval, optlen);
2865}
2866EXPORT_SYMBOL(compat_sock_common_setsockopt);
2867#endif
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869void sk_common_release(struct sock *sk)
2870{
2871 if (sk->sk_prot->destroy)
2872 sk->sk_prot->destroy(sk);
2873
2874 /*
2875 * Observation: when sock_common_release is called, processes have
2876 * no access to socket. But net still has.
2877 * Step one, detach it from networking:
2878 *
2879 * A. Remove from hash tables.
2880 */
2881
2882 sk->sk_prot->unhash(sk);
2883
2884 /*
2885 * In this point socket cannot receive new packets, but it is possible
2886 * that some packets are in flight because some CPU runs receiver and
2887 * did hash table lookup before we unhashed socket. They will achieve
2888 * receive queue and will be purged by socket destructor.
2889 *
2890 * Also we still have packets pending on receive queue and probably,
2891 * our own packets waiting in device queues. sock_destroy will drain
2892 * receive queue, but transmitted packets will delay socket destruction
2893 * until the last reference will be released.
2894 */
2895
2896 sock_orphan(sk);
2897
2898 xfrm_sk_free_policy(sk);
2899
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -07002900 sk_refcnt_debug_release(sk);
Eric Dumazet5640f762012-09-23 23:04:42 +00002901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 sock_put(sk);
2903}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904EXPORT_SYMBOL(sk_common_release);
2905
Josh Hunta2d133b2017-03-20 15:22:03 -04002906void sk_get_meminfo(const struct sock *sk, u32 *mem)
2907{
2908 memset(mem, 0, sizeof(*mem) * SK_MEMINFO_VARS);
2909
2910 mem[SK_MEMINFO_RMEM_ALLOC] = sk_rmem_alloc_get(sk);
2911 mem[SK_MEMINFO_RCVBUF] = sk->sk_rcvbuf;
2912 mem[SK_MEMINFO_WMEM_ALLOC] = sk_wmem_alloc_get(sk);
2913 mem[SK_MEMINFO_SNDBUF] = sk->sk_sndbuf;
2914 mem[SK_MEMINFO_FWD_ALLOC] = sk->sk_forward_alloc;
2915 mem[SK_MEMINFO_WMEM_QUEUED] = sk->sk_wmem_queued;
2916 mem[SK_MEMINFO_OPTMEM] = atomic_read(&sk->sk_omem_alloc);
2917 mem[SK_MEMINFO_BACKLOG] = sk->sk_backlog.len;
2918 mem[SK_MEMINFO_DROPS] = atomic_read(&sk->sk_drops);
2919}
2920
Pavel Emelyanov13ff3d62008-03-28 16:38:17 -07002921#ifdef CONFIG_PROC_FS
2922#define PROTO_INUSE_NR 64 /* should be enough for the first time */
Pavel Emelyanov1338d462008-03-28 16:38:43 -07002923struct prot_inuse {
2924 int val[PROTO_INUSE_NR];
2925};
Pavel Emelyanov13ff3d62008-03-28 16:38:17 -07002926
2927static DECLARE_BITMAP(proto_inuse_idx, PROTO_INUSE_NR);
Pavel Emelyanov70ee1152008-03-31 19:42:16 -07002928
2929#ifdef CONFIG_NET_NS
2930void sock_prot_inuse_add(struct net *net, struct proto *prot, int val)
2931{
Eric Dumazetd6d9ca02010-07-19 10:48:49 +00002932 __this_cpu_add(net->core.inuse->val[prot->inuse_idx], val);
Pavel Emelyanov70ee1152008-03-31 19:42:16 -07002933}
2934EXPORT_SYMBOL_GPL(sock_prot_inuse_add);
2935
2936int sock_prot_inuse_get(struct net *net, struct proto *prot)
2937{
2938 int cpu, idx = prot->inuse_idx;
2939 int res = 0;
2940
2941 for_each_possible_cpu(cpu)
2942 res += per_cpu_ptr(net->core.inuse, cpu)->val[idx];
2943
2944 return res >= 0 ? res : 0;
2945}
2946EXPORT_SYMBOL_GPL(sock_prot_inuse_get);
2947
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002948static int __net_init sock_inuse_init_net(struct net *net)
Pavel Emelyanov70ee1152008-03-31 19:42:16 -07002949{
2950 net->core.inuse = alloc_percpu(struct prot_inuse);
2951 return net->core.inuse ? 0 : -ENOMEM;
2952}
2953
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00002954static void __net_exit sock_inuse_exit_net(struct net *net)
Pavel Emelyanov70ee1152008-03-31 19:42:16 -07002955{
2956 free_percpu(net->core.inuse);
2957}
2958
2959static struct pernet_operations net_inuse_ops = {
2960 .init = sock_inuse_init_net,
2961 .exit = sock_inuse_exit_net,
2962};
2963
2964static __init int net_inuse_init(void)
2965{
2966 if (register_pernet_subsys(&net_inuse_ops))
2967 panic("Cannot initialize net inuse counters");
2968
2969 return 0;
2970}
2971
2972core_initcall(net_inuse_init);
2973#else
Pavel Emelyanov1338d462008-03-28 16:38:43 -07002974static DEFINE_PER_CPU(struct prot_inuse, prot_inuse);
2975
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -07002976void sock_prot_inuse_add(struct net *net, struct proto *prot, int val)
Pavel Emelyanov1338d462008-03-28 16:38:43 -07002977{
Eric Dumazetd6d9ca02010-07-19 10:48:49 +00002978 __this_cpu_add(prot_inuse.val[prot->inuse_idx], val);
Pavel Emelyanov1338d462008-03-28 16:38:43 -07002979}
2980EXPORT_SYMBOL_GPL(sock_prot_inuse_add);
2981
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -07002982int sock_prot_inuse_get(struct net *net, struct proto *prot)
Pavel Emelyanov1338d462008-03-28 16:38:43 -07002983{
2984 int cpu, idx = prot->inuse_idx;
2985 int res = 0;
2986
2987 for_each_possible_cpu(cpu)
2988 res += per_cpu(prot_inuse, cpu).val[idx];
2989
2990 return res >= 0 ? res : 0;
2991}
2992EXPORT_SYMBOL_GPL(sock_prot_inuse_get);
Pavel Emelyanov70ee1152008-03-31 19:42:16 -07002993#endif
Pavel Emelyanov13ff3d62008-03-28 16:38:17 -07002994
2995static void assign_proto_idx(struct proto *prot)
2996{
2997 prot->inuse_idx = find_first_zero_bit(proto_inuse_idx, PROTO_INUSE_NR);
2998
2999 if (unlikely(prot->inuse_idx == PROTO_INUSE_NR - 1)) {
Joe Perchese005d192012-05-16 19:58:40 +00003000 pr_err("PROTO_INUSE_NR exhausted\n");
Pavel Emelyanov13ff3d62008-03-28 16:38:17 -07003001 return;
3002 }
3003
3004 set_bit(prot->inuse_idx, proto_inuse_idx);
3005}
3006
3007static void release_proto_idx(struct proto *prot)
3008{
3009 if (prot->inuse_idx != PROTO_INUSE_NR - 1)
3010 clear_bit(prot->inuse_idx, proto_inuse_idx);
3011}
3012#else
3013static inline void assign_proto_idx(struct proto *prot)
3014{
3015}
3016
3017static inline void release_proto_idx(struct proto *prot)
3018{
3019}
3020#endif
3021
Eric Dumazet0159dfd2015-03-12 16:44:07 -07003022static void req_prot_cleanup(struct request_sock_ops *rsk_prot)
3023{
3024 if (!rsk_prot)
3025 return;
3026 kfree(rsk_prot->slab_name);
3027 rsk_prot->slab_name = NULL;
Julia Lawalladf78ed2015-09-13 14:15:18 +02003028 kmem_cache_destroy(rsk_prot->slab);
3029 rsk_prot->slab = NULL;
Eric Dumazet0159dfd2015-03-12 16:44:07 -07003030}
3031
3032static int req_prot_init(const struct proto *prot)
3033{
3034 struct request_sock_ops *rsk_prot = prot->rsk_prot;
3035
3036 if (!rsk_prot)
3037 return 0;
3038
3039 rsk_prot->slab_name = kasprintf(GFP_KERNEL, "request_sock_%s",
3040 prot->name);
3041 if (!rsk_prot->slab_name)
3042 return -ENOMEM;
3043
3044 rsk_prot->slab = kmem_cache_create(rsk_prot->slab_name,
3045 rsk_prot->obj_size, 0,
Eric Dumazete96f78a2015-10-03 06:27:28 -07003046 prot->slab_flags, NULL);
Eric Dumazet0159dfd2015-03-12 16:44:07 -07003047
3048 if (!rsk_prot->slab) {
3049 pr_crit("%s: Can't create request sock SLAB cache!\n",
3050 prot->name);
3051 return -ENOMEM;
3052 }
3053 return 0;
3054}
3055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056int proto_register(struct proto *prot, int alloc_slab)
3057{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 if (alloc_slab) {
3059 prot->slab = kmem_cache_create(prot->name, prot->obj_size, 0,
Eric Dumazet271b72c2008-10-29 02:11:14 -07003060 SLAB_HWCACHE_ALIGN | prot->slab_flags,
3061 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 if (prot->slab == NULL) {
Joe Perchese005d192012-05-16 19:58:40 +00003064 pr_crit("%s: Can't create sock SLAB cache!\n",
3065 prot->name);
Pavel Emelyanov60e76632008-03-28 16:39:10 -07003066 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 }
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07003068
Eric Dumazet0159dfd2015-03-12 16:44:07 -07003069 if (req_prot_init(prot))
3070 goto out_free_request_sock_slab;
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003071
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003072 if (prot->twsk_prot != NULL) {
Alexey Dobriyanfaf23422010-02-17 09:34:12 +00003073 prot->twsk_prot->twsk_slab_name = kasprintf(GFP_KERNEL, "tw_sock_%s", prot->name);
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003074
Catalin Marinas7e56b5d2008-11-21 16:45:22 -08003075 if (prot->twsk_prot->twsk_slab_name == NULL)
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003076 goto out_free_request_sock_slab;
3077
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003078 prot->twsk_prot->twsk_slab =
Catalin Marinas7e56b5d2008-11-21 16:45:22 -08003079 kmem_cache_create(prot->twsk_prot->twsk_slab_name,
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003080 prot->twsk_prot->twsk_obj_size,
Eric Dumazet3ab5aee2008-11-16 19:40:17 -08003081 0,
Eric Dumazet52db70d2015-04-10 06:07:18 -07003082 prot->slab_flags,
Paul Mundt20c2df82007-07-20 10:11:58 +09003083 NULL);
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003084 if (prot->twsk_prot->twsk_slab == NULL)
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003085 goto out_free_timewait_sock_slab_name;
3086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 }
3088
Glauber Costa36b77a52011-12-16 00:51:59 +00003089 mutex_lock(&proto_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 list_add(&prot->node, &proto_list);
Pavel Emelyanov13ff3d62008-03-28 16:38:17 -07003091 assign_proto_idx(prot);
Glauber Costa36b77a52011-12-16 00:51:59 +00003092 mutex_unlock(&proto_list_mutex);
Pavel Emelyanovb733c002007-11-07 02:23:38 -08003093 return 0;
3094
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003095out_free_timewait_sock_slab_name:
Catalin Marinas7e56b5d2008-11-21 16:45:22 -08003096 kfree(prot->twsk_prot->twsk_slab_name);
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003097out_free_request_sock_slab:
Eric Dumazet0159dfd2015-03-12 16:44:07 -07003098 req_prot_cleanup(prot->rsk_prot);
3099
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07003100 kmem_cache_destroy(prot->slab);
3101 prot->slab = NULL;
Pavel Emelyanovb733c002007-11-07 02:23:38 -08003102out:
3103 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105EXPORT_SYMBOL(proto_register);
3106
3107void proto_unregister(struct proto *prot)
3108{
Glauber Costa36b77a52011-12-16 00:51:59 +00003109 mutex_lock(&proto_list_mutex);
Pavel Emelyanov13ff3d62008-03-28 16:38:17 -07003110 release_proto_idx(prot);
Patrick McHardy0a3f4352005-09-06 19:47:50 -07003111 list_del(&prot->node);
Glauber Costa36b77a52011-12-16 00:51:59 +00003112 mutex_unlock(&proto_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Julia Lawalladf78ed2015-09-13 14:15:18 +02003114 kmem_cache_destroy(prot->slab);
3115 prot->slab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Eric Dumazet0159dfd2015-03-12 16:44:07 -07003117 req_prot_cleanup(prot->rsk_prot);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07003118
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003119 if (prot->twsk_prot != NULL && prot->twsk_prot->twsk_slab != NULL) {
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003120 kmem_cache_destroy(prot->twsk_prot->twsk_slab);
Catalin Marinas7e56b5d2008-11-21 16:45:22 -08003121 kfree(prot->twsk_prot->twsk_slab_name);
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08003122 prot->twsk_prot->twsk_slab = NULL;
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07003123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125EXPORT_SYMBOL(proto_unregister);
3126
3127#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128static void *proto_seq_start(struct seq_file *seq, loff_t *pos)
Glauber Costa36b77a52011-12-16 00:51:59 +00003129 __acquires(proto_list_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Glauber Costa36b77a52011-12-16 00:51:59 +00003131 mutex_lock(&proto_list_mutex);
Pavel Emelianov60f04382007-07-09 13:15:14 -07003132 return seq_list_start_head(&proto_list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133}
3134
3135static void *proto_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3136{
Pavel Emelianov60f04382007-07-09 13:15:14 -07003137 return seq_list_next(v, &proto_list, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138}
3139
3140static void proto_seq_stop(struct seq_file *seq, void *v)
Glauber Costa36b77a52011-12-16 00:51:59 +00003141 __releases(proto_list_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Glauber Costa36b77a52011-12-16 00:51:59 +00003143 mutex_unlock(&proto_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
3145
3146static char proto_method_implemented(const void *method)
3147{
3148 return method == NULL ? 'n' : 'y';
3149}
Glauber Costa180d8cd2011-12-11 21:47:02 +00003150static long sock_prot_memory_allocated(struct proto *proto)
3151{
Jeffrin Josecb75a362012-04-25 19:17:29 +05303152 return proto->memory_allocated != NULL ? proto_memory_allocated(proto) : -1L;
Glauber Costa180d8cd2011-12-11 21:47:02 +00003153}
3154
3155static char *sock_prot_memory_pressure(struct proto *proto)
3156{
3157 return proto->memory_pressure != NULL ?
3158 proto_memory_pressure(proto) ? "yes" : "no" : "NI";
3159}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161static void proto_seq_printf(struct seq_file *seq, struct proto *proto)
3162{
Glauber Costa180d8cd2011-12-11 21:47:02 +00003163
Eric Dumazet8d987e52010-11-09 23:24:26 +00003164 seq_printf(seq, "%-9s %4u %6d %6ld %-3s %6u %-3s %-10s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 "%2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c\n",
3166 proto->name,
3167 proto->obj_size,
Eric Dumazet14e943d2008-11-19 15:14:01 -08003168 sock_prot_inuse_get(seq_file_net(seq), proto),
Glauber Costa180d8cd2011-12-11 21:47:02 +00003169 sock_prot_memory_allocated(proto),
3170 sock_prot_memory_pressure(proto),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 proto->max_header,
3172 proto->slab == NULL ? "no" : "yes",
3173 module_name(proto->owner),
3174 proto_method_implemented(proto->close),
3175 proto_method_implemented(proto->connect),
3176 proto_method_implemented(proto->disconnect),
3177 proto_method_implemented(proto->accept),
3178 proto_method_implemented(proto->ioctl),
3179 proto_method_implemented(proto->init),
3180 proto_method_implemented(proto->destroy),
3181 proto_method_implemented(proto->shutdown),
3182 proto_method_implemented(proto->setsockopt),
3183 proto_method_implemented(proto->getsockopt),
3184 proto_method_implemented(proto->sendmsg),
3185 proto_method_implemented(proto->recvmsg),
3186 proto_method_implemented(proto->sendpage),
3187 proto_method_implemented(proto->bind),
3188 proto_method_implemented(proto->backlog_rcv),
3189 proto_method_implemented(proto->hash),
3190 proto_method_implemented(proto->unhash),
3191 proto_method_implemented(proto->get_port),
3192 proto_method_implemented(proto->enter_memory_pressure));
3193}
3194
3195static int proto_seq_show(struct seq_file *seq, void *v)
3196{
Pavel Emelianov60f04382007-07-09 13:15:14 -07003197 if (v == &proto_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 seq_printf(seq, "%-9s %-4s %-8s %-6s %-5s %-7s %-4s %-10s %s",
3199 "protocol",
3200 "size",
3201 "sockets",
3202 "memory",
3203 "press",
3204 "maxhdr",
3205 "slab",
3206 "module",
3207 "cl co di ac io in de sh ss gs se re sp bi br ha uh gp em\n");
3208 else
Pavel Emelianov60f04382007-07-09 13:15:14 -07003209 proto_seq_printf(seq, list_entry(v, struct proto, node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 return 0;
3211}
3212
Stephen Hemmingerf6908082007-03-12 14:34:29 -07003213static const struct seq_operations proto_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 .start = proto_seq_start,
3215 .next = proto_seq_next,
3216 .stop = proto_seq_stop,
3217 .show = proto_seq_show,
3218};
3219
3220static int proto_seq_open(struct inode *inode, struct file *file)
3221{
Eric Dumazet14e943d2008-11-19 15:14:01 -08003222 return seq_open_net(inode, file, &proto_seq_ops,
3223 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224}
3225
Arjan van de Ven9a321442007-02-12 00:55:35 -08003226static const struct file_operations proto_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 .owner = THIS_MODULE,
3228 .open = proto_seq_open,
3229 .read = seq_read,
3230 .llseek = seq_lseek,
Eric Dumazet14e943d2008-11-19 15:14:01 -08003231 .release = seq_release_net,
3232};
3233
3234static __net_init int proto_init_net(struct net *net)
3235{
Gao fengd4beaa62013-02-18 01:34:54 +00003236 if (!proc_create("protocols", S_IRUGO, net->proc_net, &proto_seq_fops))
Eric Dumazet14e943d2008-11-19 15:14:01 -08003237 return -ENOMEM;
3238
3239 return 0;
3240}
3241
3242static __net_exit void proto_exit_net(struct net *net)
3243{
Gao fengece31ff2013-02-18 01:34:56 +00003244 remove_proc_entry("protocols", net->proc_net);
Eric Dumazet14e943d2008-11-19 15:14:01 -08003245}
3246
3247
3248static __net_initdata struct pernet_operations proto_net_ops = {
3249 .init = proto_init_net,
3250 .exit = proto_exit_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251};
3252
3253static int __init proto_init(void)
3254{
Eric Dumazet14e943d2008-11-19 15:14:01 -08003255 return register_pernet_subsys(&proto_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256}
3257
3258subsys_initcall(proto_init);
3259
3260#endif /* PROC_FS */
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07003261
3262#ifdef CONFIG_NET_RX_BUSY_POLL
3263bool sk_busy_loop_end(void *p, unsigned long start_time)
3264{
3265 struct sock *sk = p;
3266
3267 return !skb_queue_empty(&sk->sk_receive_queue) ||
3268 sk_busy_loop_timeout(sk, start_time);
3269}
3270EXPORT_SYMBOL(sk_busy_loop_end);
3271#endif /* CONFIG_NET_RX_BUSY_POLL */