| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * NET		An implementation of the SOCKET network access protocol. | 
|  | 3 | * | 
|  | 4 | * Version:	@(#)socket.c	1.1.93	18/02/95 | 
|  | 5 | * | 
|  | 6 | * Authors:	Orest Zborowski, <obz@Kodak.COM> | 
| Jesper Juhl | 02c30a8 | 2005-05-05 16:16:16 -0700 | [diff] [blame] | 7 | *		Ross Biro | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> | 
|  | 9 | * | 
|  | 10 | * Fixes: | 
|  | 11 | *		Anonymous	:	NOTSOCK/BADF cleanup. Error fix in | 
|  | 12 | *					shutdown() | 
|  | 13 | *		Alan Cox	:	verify_area() fixes | 
|  | 14 | *		Alan Cox	:	Removed DDI | 
|  | 15 | *		Jonathan Kamens	:	SOCK_DGRAM reconnect bug | 
|  | 16 | *		Alan Cox	:	Moved a load of checks to the very | 
|  | 17 | *					top level. | 
|  | 18 | *		Alan Cox	:	Move address structures to/from user | 
|  | 19 | *					mode above the protocol layers. | 
|  | 20 | *		Rob Janssen	:	Allow 0 length sends. | 
|  | 21 | *		Alan Cox	:	Asynchronous I/O support (cribbed from the | 
|  | 22 | *					tty drivers). | 
|  | 23 | *		Niibe Yutaka	:	Asynchronous I/O for writes (4.4BSD style) | 
|  | 24 | *		Jeff Uphoff	:	Made max number of sockets command-line | 
|  | 25 | *					configurable. | 
|  | 26 | *		Matti Aarnio	:	Made the number of sockets dynamic, | 
|  | 27 | *					to be allocated when needed, and mr. | 
|  | 28 | *					Uphoff's max is used as max to be | 
|  | 29 | *					allowed to allocate. | 
|  | 30 | *		Linus		:	Argh. removed all the socket allocation | 
|  | 31 | *					altogether: it's in the inode now. | 
|  | 32 | *		Alan Cox	:	Made sock_alloc()/sock_release() public | 
|  | 33 | *					for NetROM and future kernel nfsd type | 
|  | 34 | *					stuff. | 
|  | 35 | *		Alan Cox	:	sendmsg/recvmsg basics. | 
|  | 36 | *		Tom Dyas	:	Export net symbols. | 
|  | 37 | *		Marcin Dalecki	:	Fixed problems with CONFIG_NET="n". | 
|  | 38 | *		Alan Cox	:	Added thread locking to sys_* calls | 
|  | 39 | *					for sockets. May have errors at the | 
|  | 40 | *					moment. | 
|  | 41 | *		Kevin Buhr	:	Fixed the dumb errors in the above. | 
|  | 42 | *		Andi Kleen	:	Some small cleanups, optimizations, | 
|  | 43 | *					and fixed a copy_from_user() bug. | 
|  | 44 | *		Tigran Aivazian	:	sys_send(args) calls sys_sendto(args, NULL, 0) | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 45 | *		Tigran Aivazian	:	Made listen(2) backlog sanity checks | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | *					protocol-independent | 
|  | 47 | * | 
|  | 48 | * | 
|  | 49 | *		This program is free software; you can redistribute it and/or | 
|  | 50 | *		modify it under the terms of the GNU General Public License | 
|  | 51 | *		as published by the Free Software Foundation; either version | 
|  | 52 | *		2 of the License, or (at your option) any later version. | 
|  | 53 | * | 
|  | 54 | * | 
|  | 55 | *	This module is effectively the top level interface to the BSD socket | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 56 | *	paradigm. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | * | 
|  | 58 | *	Based upon Swansea University Computer Society NET3.039 | 
|  | 59 | */ | 
|  | 60 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/mm.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include <linux/socket.h> | 
|  | 63 | #include <linux/file.h> | 
|  | 64 | #include <linux/net.h> | 
|  | 65 | #include <linux/interrupt.h> | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 66 | #include <linux/thread_info.h> | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 67 | #include <linux/rcupdate.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/netdevice.h> | 
|  | 69 | #include <linux/proc_fs.h> | 
|  | 70 | #include <linux/seq_file.h> | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 71 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #include <linux/if_bridge.h> | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 73 | #include <linux/if_frad.h> | 
|  | 74 | #include <linux/if_vlan.h> | 
| Daniel Borkmann | 408eccc | 2014-04-01 16:20:23 +0200 | [diff] [blame] | 75 | #include <linux/ptp_classify.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include <linux/init.h> | 
|  | 77 | #include <linux/poll.h> | 
|  | 78 | #include <linux/cache.h> | 
|  | 79 | #include <linux/module.h> | 
|  | 80 | #include <linux/highmem.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #include <linux/mount.h> | 
|  | 82 | #include <linux/security.h> | 
|  | 83 | #include <linux/syscalls.h> | 
|  | 84 | #include <linux/compat.h> | 
|  | 85 | #include <linux/kmod.h> | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 86 | #include <linux/audit.h> | 
| Adrian Bunk | d86b5e0 | 2006-01-21 00:46:55 +0100 | [diff] [blame] | 87 | #include <linux/wireless.h> | 
| Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 88 | #include <linux/nsproxy.h> | 
| Nick Black | 1fd7317d | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 89 | #include <linux/magic.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 90 | #include <linux/slab.h> | 
| Masatake YAMATO | 600e177 | 2012-08-29 10:44:29 +0000 | [diff] [blame] | 91 | #include <linux/xattr.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 |  | 
|  | 93 | #include <asm/uaccess.h> | 
|  | 94 | #include <asm/unistd.h> | 
|  | 95 |  | 
|  | 96 | #include <net/compat.h> | 
| David S. Miller | 87de87d | 2008-06-03 09:14:03 -0700 | [diff] [blame] | 97 | #include <net/wext.h> | 
| Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 98 | #include <net/cls_cgroup.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
|  | 100 | #include <net/sock.h> | 
|  | 101 | #include <linux/netfilter.h> | 
|  | 102 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 103 | #include <linux/if_tun.h> | 
|  | 104 | #include <linux/ipv6_route.h> | 
|  | 105 | #include <linux/route.h> | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 106 | #include <linux/sockios.h> | 
|  | 107 | #include <linux/atalk.h> | 
| Eliezer Tamir | 076bb0c | 2013-07-10 17:13:17 +0300 | [diff] [blame] | 108 | #include <net/busy_poll.h> | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 109 | #include <linux/errqueue.h> | 
| Eliezer Tamir | 0602129 | 2013-06-10 11:39:50 +0300 | [diff] [blame] | 110 |  | 
| Cong Wang | e0d1095 | 2013-08-01 11:10:25 +0800 | [diff] [blame] | 111 | #ifdef CONFIG_NET_RX_BUSY_POLL | 
| Eliezer Tamir | 64b0dc5 | 2013-07-10 17:13:36 +0300 | [diff] [blame] | 112 | unsigned int sysctl_net_busy_read __read_mostly; | 
|  | 113 | unsigned int sysctl_net_busy_poll __read_mostly; | 
| Eliezer Tamir | 0602129 | 2013-06-10 11:39:50 +0300 | [diff] [blame] | 114 | #endif | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 115 |  | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 116 | static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to); | 
|  | 117 | static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 118 | static int sock_mmap(struct file *file, struct vm_area_struct *vma); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 |  | 
|  | 120 | static int sock_close(struct inode *inode, struct file *file); | 
|  | 121 | static unsigned int sock_poll(struct file *file, | 
|  | 122 | struct poll_table_struct *wait); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 123 | static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg); | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 124 | #ifdef CONFIG_COMPAT | 
|  | 125 | static long compat_sock_ioctl(struct file *file, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 126 | unsigned int cmd, unsigned long arg); | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 127 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | static int sock_fasync(int fd, struct file *filp, int on); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | static ssize_t sock_sendpage(struct file *file, struct page *page, | 
|  | 130 | int offset, size_t size, loff_t *ppos, int more); | 
| Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 131 | static ssize_t sock_splice_read(struct file *file, loff_t *ppos, | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 132 | struct pipe_inode_info *pipe, size_t len, | 
| Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 133 | unsigned int flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | /* | 
|  | 136 | *	Socket files have a set of 'special' operations as well as the generic file ones. These don't appear | 
|  | 137 | *	in the operation structures but are done directly via the socketcall() multiplexor. | 
|  | 138 | */ | 
|  | 139 |  | 
| Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 140 | static const struct file_operations socket_file_ops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | .owner =	THIS_MODULE, | 
|  | 142 | .llseek =	no_llseek, | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 143 | .read_iter =	sock_read_iter, | 
|  | 144 | .write_iter =	sock_write_iter, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | .poll =		sock_poll, | 
|  | 146 | .unlocked_ioctl = sock_ioctl, | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 147 | #ifdef CONFIG_COMPAT | 
|  | 148 | .compat_ioctl = compat_sock_ioctl, | 
|  | 149 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | .mmap =		sock_mmap, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | .release =	sock_close, | 
|  | 152 | .fasync =	sock_fasync, | 
| Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 153 | .sendpage =	sock_sendpage, | 
|  | 154 | .splice_write = generic_splice_sendpage, | 
| Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 155 | .splice_read =	sock_splice_read, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | }; | 
|  | 157 |  | 
|  | 158 | /* | 
|  | 159 | *	The protocol list. Each protocol is registered in here. | 
|  | 160 | */ | 
|  | 161 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | static DEFINE_SPINLOCK(net_family_lock); | 
| Eric Dumazet | 190683a | 2010-11-10 10:50:44 +0000 | [diff] [blame] | 163 | static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | /* | 
|  | 166 | *	Statistics counters of the socket lists | 
|  | 167 | */ | 
|  | 168 |  | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 169 | static DEFINE_PER_CPU(int, sockets_in_use); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 |  | 
|  | 171 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 172 | * Support routines. | 
|  | 173 | * Move socket addresses back and forth across the kernel/user | 
|  | 174 | * divide and look after the messy bits. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | */ | 
|  | 176 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | /** | 
|  | 178 | *	move_addr_to_kernel	-	copy a socket address into kernel space | 
|  | 179 | *	@uaddr: Address in user space | 
|  | 180 | *	@kaddr: Address in kernel space | 
|  | 181 | *	@ulen: Length in user space | 
|  | 182 | * | 
|  | 183 | *	The address is copied into kernel space. If the provided address is | 
|  | 184 | *	too long an error code of -EINVAL is returned. If the copy gives | 
|  | 185 | *	invalid addresses -EFAULT is returned. On a success 0 is returned. | 
|  | 186 | */ | 
|  | 187 |  | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 188 | int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 190 | if (ulen < 0 || ulen > sizeof(struct sockaddr_storage)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | return -EINVAL; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 192 | if (ulen == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | return 0; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 194 | if (copy_from_user(kaddr, uaddr, ulen)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | return -EFAULT; | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 196 | return audit_sockaddr(ulen, kaddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } | 
|  | 198 |  | 
|  | 199 | /** | 
|  | 200 | *	move_addr_to_user	-	copy an address to user space | 
|  | 201 | *	@kaddr: kernel space address | 
|  | 202 | *	@klen: length of address in kernel | 
|  | 203 | *	@uaddr: user space address | 
|  | 204 | *	@ulen: pointer to user length field | 
|  | 205 | * | 
|  | 206 | *	The value pointed to by ulen on entry is the buffer length available. | 
|  | 207 | *	This is overwritten with the buffer space used. -EINVAL is returned | 
|  | 208 | *	if an overlong buffer is specified or a negative buffer size. -EFAULT | 
|  | 209 | *	is returned if either the buffer or the length field are not | 
|  | 210 | *	accessible. | 
|  | 211 | *	After copying the data up to the limit the user specifies, the true | 
|  | 212 | *	length of the data is written over the length limit the user | 
|  | 213 | *	specified. Zero is returned for a success. | 
|  | 214 | */ | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 215 |  | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 216 | static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen, | 
| stephen hemminger | 11165f1 | 2010-10-18 14:27:29 +0000 | [diff] [blame] | 217 | void __user *uaddr, int __user *ulen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { | 
|  | 219 | int err; | 
|  | 220 | int len; | 
|  | 221 |  | 
| Hannes Frederic Sowa | 68c6beb | 2013-11-21 03:14:34 +0100 | [diff] [blame] | 222 | BUG_ON(klen > sizeof(struct sockaddr_storage)); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 223 | err = get_user(len, ulen); | 
|  | 224 | if (err) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | return err; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 226 | if (len > klen) | 
|  | 227 | len = klen; | 
| Hannes Frederic Sowa | 68c6beb | 2013-11-21 03:14:34 +0100 | [diff] [blame] | 228 | if (len < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return -EINVAL; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 230 | if (len) { | 
| Steve Grubb | d6fe394 | 2006-03-30 12:20:22 -0500 | [diff] [blame] | 231 | if (audit_sockaddr(klen, kaddr)) | 
|  | 232 | return -ENOMEM; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 233 | if (copy_to_user(uaddr, kaddr, len)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | return -EFAULT; | 
|  | 235 | } | 
|  | 236 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 237 | *      "fromlen shall refer to the value before truncation.." | 
|  | 238 | *                      1003.1g | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | */ | 
|  | 240 | return __put_user(klen, ulen); | 
|  | 241 | } | 
|  | 242 |  | 
| Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 243 | static struct kmem_cache *sock_inode_cachep __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 |  | 
|  | 245 | static struct inode *sock_alloc_inode(struct super_block *sb) | 
|  | 246 | { | 
|  | 247 | struct socket_alloc *ei; | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 248 | struct socket_wq *wq; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 249 |  | 
| Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 250 | ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | if (!ei) | 
|  | 252 | return NULL; | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 253 | wq = kmalloc(sizeof(*wq), GFP_KERNEL); | 
|  | 254 | if (!wq) { | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 255 | kmem_cache_free(sock_inode_cachep, ei); | 
|  | 256 | return NULL; | 
|  | 257 | } | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 258 | init_waitqueue_head(&wq->wait); | 
|  | 259 | wq->fasync_list = NULL; | 
| Nicolai Stange | 574aab1 | 2015-12-29 13:29:55 +0100 | [diff] [blame] | 260 | wq->flags = 0; | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 261 | RCU_INIT_POINTER(ei->socket.wq, wq); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 262 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | ei->socket.state = SS_UNCONNECTED; | 
|  | 264 | ei->socket.flags = 0; | 
|  | 265 | ei->socket.ops = NULL; | 
|  | 266 | ei->socket.sk = NULL; | 
|  | 267 | ei->socket.file = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 |  | 
|  | 269 | return &ei->vfs_inode; | 
|  | 270 | } | 
|  | 271 |  | 
|  | 272 | static void sock_destroy_inode(struct inode *inode) | 
|  | 273 | { | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 274 | struct socket_alloc *ei; | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 275 | struct socket_wq *wq; | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 276 |  | 
|  | 277 | ei = container_of(inode, struct socket_alloc, vfs_inode); | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 278 | wq = rcu_dereference_protected(ei->socket.wq, 1); | 
| Lai Jiangshan | 6184522 | 2011-03-18 12:10:25 +0800 | [diff] [blame] | 279 | kfree_rcu(wq, rcu); | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 280 | kmem_cache_free(sock_inode_cachep, ei); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } | 
|  | 282 |  | 
| Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 283 | static void init_once(void *foo) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 285 | struct socket_alloc *ei = (struct socket_alloc *)foo; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 |  | 
| Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 287 | inode_init_once(&ei->vfs_inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 289 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | static int init_inodecache(void) | 
|  | 291 | { | 
|  | 292 | sock_inode_cachep = kmem_cache_create("sock_inode_cache", | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 293 | sizeof(struct socket_alloc), | 
|  | 294 | 0, | 
|  | 295 | (SLAB_HWCACHE_ALIGN | | 
|  | 296 | SLAB_RECLAIM_ACCOUNT | | 
| Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 297 | SLAB_MEM_SPREAD | SLAB_ACCOUNT), | 
| Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 298 | init_once); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | if (sock_inode_cachep == NULL) | 
|  | 300 | return -ENOMEM; | 
|  | 301 | return 0; | 
|  | 302 | } | 
|  | 303 |  | 
| Alexey Dobriyan | b87221d | 2009-09-21 17:01:09 -0700 | [diff] [blame] | 304 | static const struct super_operations sockfs_ops = { | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 305 | .alloc_inode	= sock_alloc_inode, | 
|  | 306 | .destroy_inode	= sock_destroy_inode, | 
|  | 307 | .statfs		= simple_statfs, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | }; | 
|  | 309 |  | 
| Eric Dumazet | c23fbb6 | 2007-05-08 00:26:18 -0700 | [diff] [blame] | 310 | /* | 
|  | 311 | * sockfs_dname() is called from d_path(). | 
|  | 312 | */ | 
|  | 313 | static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen) | 
|  | 314 | { | 
|  | 315 | return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]", | 
| David Howells | c5ef603 | 2015-03-17 22:26:16 +0000 | [diff] [blame] | 316 | d_inode(dentry)->i_ino); | 
| Eric Dumazet | c23fbb6 | 2007-05-08 00:26:18 -0700 | [diff] [blame] | 317 | } | 
|  | 318 |  | 
| Al Viro | 3ba13d1 | 2009-02-20 06:02:22 +0000 | [diff] [blame] | 319 | static const struct dentry_operations sockfs_dentry_operations = { | 
| Eric Dumazet | c23fbb6 | 2007-05-08 00:26:18 -0700 | [diff] [blame] | 320 | .d_dname  = sockfs_dname, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | }; | 
|  | 322 |  | 
| Al Viro | c74a1cb | 2011-01-12 16:59:34 -0500 | [diff] [blame] | 323 | static struct dentry *sockfs_mount(struct file_system_type *fs_type, | 
|  | 324 | int flags, const char *dev_name, void *data) | 
|  | 325 | { | 
|  | 326 | return mount_pseudo(fs_type, "socket:", &sockfs_ops, | 
|  | 327 | &sockfs_dentry_operations, SOCKFS_MAGIC); | 
|  | 328 | } | 
|  | 329 |  | 
|  | 330 | static struct vfsmount *sock_mnt __read_mostly; | 
|  | 331 |  | 
|  | 332 | static struct file_system_type sock_fs_type = { | 
|  | 333 | .name =		"sockfs", | 
|  | 334 | .mount =	sockfs_mount, | 
|  | 335 | .kill_sb =	kill_anon_super, | 
|  | 336 | }; | 
|  | 337 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | /* | 
|  | 339 | *	Obtains the first available file descriptor and sets it up for use. | 
|  | 340 | * | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 341 | *	These functions create file structures and maps them to fd space | 
|  | 342 | *	of the current process. On success it returns file descriptor | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | *	and file struct implicitly stored in sock->file. | 
|  | 344 | *	Note that another thread may close file descriptor before we return | 
|  | 345 | *	from this function. We use the fact that now we do not refer | 
|  | 346 | *	to socket after mapping. If one day we will need it, this | 
|  | 347 | *	function will increment ref. count on file by 1. | 
|  | 348 | * | 
|  | 349 | *	In any case returned fd MAY BE not valid! | 
|  | 350 | *	This race condition is unavoidable | 
|  | 351 | *	with shared fd spaces, we cannot solve it inside kernel, | 
|  | 352 | *	but we take care of internal coherence yet. | 
|  | 353 | */ | 
|  | 354 |  | 
| Linus Torvalds | aab174f | 2012-10-02 20:25:04 -0700 | [diff] [blame] | 355 | struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { | 
| Al Viro | 7cbe66b | 2009-08-05 19:59:08 +0400 | [diff] [blame] | 357 | struct qstr name = { .name = "" }; | 
| Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 358 | struct path path; | 
| Al Viro | 7cbe66b | 2009-08-05 19:59:08 +0400 | [diff] [blame] | 359 | struct file *file; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 360 |  | 
| Masatake YAMATO | 600e177 | 2012-08-29 10:44:29 +0000 | [diff] [blame] | 361 | if (dname) { | 
|  | 362 | name.name = dname; | 
|  | 363 | name.len = strlen(name.name); | 
|  | 364 | } else if (sock->sk) { | 
|  | 365 | name.name = sock->sk->sk_prot_creator->name; | 
|  | 366 | name.len = strlen(name.name); | 
|  | 367 | } | 
| Nick Piggin | 4b93688 | 2011-01-07 17:50:07 +1100 | [diff] [blame] | 368 | path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name); | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 369 | if (unlikely(!path.dentry)) | 
|  | 370 | return ERR_PTR(-ENOMEM); | 
| Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 371 | path.mnt = mntget(sock_mnt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 |  | 
| Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 373 | d_instantiate(path.dentry, SOCK_INODE(sock)); | 
| Al Viro | cc3808f | 2009-08-06 09:43:59 +0400 | [diff] [blame] | 374 |  | 
| Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 375 | file = alloc_file(&path, FMODE_READ | FMODE_WRITE, | 
| Al Viro | cc3808f | 2009-08-06 09:43:59 +0400 | [diff] [blame] | 376 | &socket_file_ops); | 
| Viresh Kumar | b5ffe63 | 2015-08-12 15:59:47 +0530 | [diff] [blame] | 377 | if (IS_ERR(file)) { | 
| Al Viro | cc3808f | 2009-08-06 09:43:59 +0400 | [diff] [blame] | 378 | /* drop dentry, keep inode */ | 
| David Howells | c5ef603 | 2015-03-17 22:26:16 +0000 | [diff] [blame] | 379 | ihold(d_inode(path.dentry)); | 
| Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 380 | path_put(&path); | 
| Anatol Pomozov | 39b6525 | 2012-09-12 20:11:55 -0700 | [diff] [blame] | 381 | return file; | 
| Al Viro | cc3808f | 2009-08-06 09:43:59 +0400 | [diff] [blame] | 382 | } | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 383 |  | 
|  | 384 | sock->file = file; | 
| Ulrich Drepper | 77d2720 | 2008-07-23 21:29:35 -0700 | [diff] [blame] | 385 | file->f_flags = O_RDWR | (flags & O_NONBLOCK); | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 386 | file->private_data = sock; | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 387 | return file; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 388 | } | 
| Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 389 | EXPORT_SYMBOL(sock_alloc_file); | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 390 |  | 
| Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 391 | static int sock_map_fd(struct socket *sock, int flags) | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 392 | { | 
|  | 393 | struct file *newfile; | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 394 | int fd = get_unused_fd_flags(flags); | 
|  | 395 | if (unlikely(fd < 0)) | 
|  | 396 | return fd; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 397 |  | 
| Linus Torvalds | aab174f | 2012-10-02 20:25:04 -0700 | [diff] [blame] | 398 | newfile = sock_alloc_file(sock, flags, NULL); | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 399 | if (likely(!IS_ERR(newfile))) { | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 400 | fd_install(fd, newfile); | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 401 | return fd; | 
|  | 402 | } | 
| Al Viro | 7cbe66b | 2009-08-05 19:59:08 +0400 | [diff] [blame] | 403 |  | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 404 | put_unused_fd(fd); | 
|  | 405 | return PTR_ERR(newfile); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } | 
|  | 407 |  | 
| John Fastabend | 406a3c6 | 2012-07-20 10:39:25 +0000 | [diff] [blame] | 408 | struct socket *sock_from_file(struct file *file, int *err) | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 409 | { | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 410 | if (file->f_op == &socket_file_ops) | 
|  | 411 | return file->private_data;	/* set in sock_map_fd */ | 
|  | 412 |  | 
| Eric Dumazet | 23bb80d | 2007-02-08 14:59:57 -0800 | [diff] [blame] | 413 | *err = -ENOTSOCK; | 
|  | 414 | return NULL; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 415 | } | 
| John Fastabend | 406a3c6 | 2012-07-20 10:39:25 +0000 | [diff] [blame] | 416 | EXPORT_SYMBOL(sock_from_file); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 417 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | /** | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 419 | *	sockfd_lookup - Go from a file number to its socket slot | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | *	@fd: file handle | 
|  | 421 | *	@err: pointer to an error code return | 
|  | 422 | * | 
|  | 423 | *	The file handle passed in is locked and the socket it is bound | 
|  | 424 | *	too is returned. If an error occurs the err pointer is overwritten | 
|  | 425 | *	with a negative errno code and NULL is returned. The function checks | 
|  | 426 | *	for both invalid handles and passing a handle which is not a socket. | 
|  | 427 | * | 
|  | 428 | *	On a success the socket object pointer is returned. | 
|  | 429 | */ | 
|  | 430 |  | 
|  | 431 | struct socket *sockfd_lookup(int fd, int *err) | 
|  | 432 | { | 
|  | 433 | struct file *file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | struct socket *sock; | 
|  | 435 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 436 | file = fget(fd); | 
|  | 437 | if (!file) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | *err = -EBADF; | 
|  | 439 | return NULL; | 
|  | 440 | } | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 441 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 442 | sock = sock_from_file(file, err); | 
|  | 443 | if (!sock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | fput(file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | return sock; | 
|  | 446 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 447 | EXPORT_SYMBOL(sockfd_lookup); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 449 | static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed) | 
|  | 450 | { | 
| Al Viro | 00e188e | 2014-03-03 23:48:18 -0500 | [diff] [blame] | 451 | struct fd f = fdget(fd); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 452 | struct socket *sock; | 
|  | 453 |  | 
| Hua Zhong | 3672558 | 2006-04-19 15:25:02 -0700 | [diff] [blame] | 454 | *err = -EBADF; | 
| Al Viro | 00e188e | 2014-03-03 23:48:18 -0500 | [diff] [blame] | 455 | if (f.file) { | 
|  | 456 | sock = sock_from_file(f.file, err); | 
|  | 457 | if (likely(sock)) { | 
|  | 458 | *fput_needed = f.flags; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 459 | return sock; | 
| Al Viro | 00e188e | 2014-03-03 23:48:18 -0500 | [diff] [blame] | 460 | } | 
|  | 461 | fdput(f); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 462 | } | 
|  | 463 | return NULL; | 
|  | 464 | } | 
|  | 465 |  | 
| Masatake YAMATO | 600e177 | 2012-08-29 10:44:29 +0000 | [diff] [blame] | 466 | #define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname" | 
|  | 467 | #define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX) | 
|  | 468 | #define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1) | 
|  | 469 | static ssize_t sockfs_getxattr(struct dentry *dentry, | 
|  | 470 | const char *name, void *value, size_t size) | 
|  | 471 | { | 
|  | 472 | const char *proto_name; | 
|  | 473 | size_t proto_size; | 
|  | 474 | int error; | 
|  | 475 |  | 
|  | 476 | error = -ENODATA; | 
|  | 477 | if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) { | 
|  | 478 | proto_name = dentry->d_name.name; | 
|  | 479 | proto_size = strlen(proto_name); | 
|  | 480 |  | 
|  | 481 | if (value) { | 
|  | 482 | error = -ERANGE; | 
|  | 483 | if (proto_size + 1 > size) | 
|  | 484 | goto out; | 
|  | 485 |  | 
|  | 486 | strncpy(value, proto_name, proto_size + 1); | 
|  | 487 | } | 
|  | 488 | error = proto_size + 1; | 
|  | 489 | } | 
|  | 490 |  | 
|  | 491 | out: | 
|  | 492 | return error; | 
|  | 493 | } | 
|  | 494 |  | 
|  | 495 | static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer, | 
|  | 496 | size_t size) | 
|  | 497 | { | 
|  | 498 | ssize_t len; | 
|  | 499 | ssize_t used = 0; | 
|  | 500 |  | 
| David Howells | c5ef603 | 2015-03-17 22:26:16 +0000 | [diff] [blame] | 501 | len = security_inode_listsecurity(d_inode(dentry), buffer, size); | 
| Masatake YAMATO | 600e177 | 2012-08-29 10:44:29 +0000 | [diff] [blame] | 502 | if (len < 0) | 
|  | 503 | return len; | 
|  | 504 | used += len; | 
|  | 505 | if (buffer) { | 
|  | 506 | if (size < used) | 
|  | 507 | return -ERANGE; | 
|  | 508 | buffer += len; | 
|  | 509 | } | 
|  | 510 |  | 
|  | 511 | len = (XATTR_NAME_SOCKPROTONAME_LEN + 1); | 
|  | 512 | used += len; | 
|  | 513 | if (buffer) { | 
|  | 514 | if (size < used) | 
|  | 515 | return -ERANGE; | 
|  | 516 | memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len); | 
|  | 517 | buffer += len; | 
|  | 518 | } | 
|  | 519 |  | 
|  | 520 | return used; | 
|  | 521 | } | 
|  | 522 |  | 
|  | 523 | static const struct inode_operations sockfs_inode_ops = { | 
|  | 524 | .getxattr = sockfs_getxattr, | 
|  | 525 | .listxattr = sockfs_listxattr, | 
|  | 526 | }; | 
|  | 527 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | /** | 
|  | 529 | *	sock_alloc	-	allocate a socket | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 530 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | *	Allocate a new inode and socket object. The two are bound together | 
|  | 532 | *	and initialised. The socket is then returned. If we are out of inodes | 
|  | 533 | *	NULL is returned. | 
|  | 534 | */ | 
|  | 535 |  | 
|  | 536 | static struct socket *sock_alloc(void) | 
|  | 537 | { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 538 | struct inode *inode; | 
|  | 539 | struct socket *sock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 |  | 
| Eric Dumazet | a209dfc | 2011-07-26 11:36:34 +0200 | [diff] [blame] | 541 | inode = new_inode_pseudo(sock_mnt->mnt_sb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | if (!inode) | 
|  | 543 | return NULL; | 
|  | 544 |  | 
|  | 545 | sock = SOCKET_I(inode); | 
|  | 546 |  | 
| Eric Dumazet | 29a020d | 2009-09-15 02:39:20 -0700 | [diff] [blame] | 547 | kmemcheck_annotate_bitfield(sock, type); | 
| Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 548 | inode->i_ino = get_next_ino(); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 549 | inode->i_mode = S_IFSOCK | S_IRWXUGO; | 
| David Howells | 8192b0c | 2008-11-14 10:39:10 +1100 | [diff] [blame] | 550 | inode->i_uid = current_fsuid(); | 
|  | 551 | inode->i_gid = current_fsgid(); | 
| Masatake YAMATO | 600e177 | 2012-08-29 10:44:29 +0000 | [diff] [blame] | 552 | inode->i_op = &sockfs_inode_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 |  | 
| Alex Shi | 19e8d69 | 2012-05-14 14:15:31 -0700 | [diff] [blame] | 554 | this_cpu_add(sockets_in_use, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | return sock; | 
|  | 556 | } | 
|  | 557 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | /** | 
|  | 559 | *	sock_release	-	close a socket | 
|  | 560 | *	@sock: socket to close | 
|  | 561 | * | 
|  | 562 | *	The socket is released from the protocol stack if it has a release | 
|  | 563 | *	callback, and the inode is then released if the socket is bound to | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 564 | *	an inode not a file. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | */ | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 566 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | void sock_release(struct socket *sock) | 
|  | 568 | { | 
|  | 569 | if (sock->ops) { | 
|  | 570 | struct module *owner = sock->ops->owner; | 
|  | 571 |  | 
|  | 572 | sock->ops->release(sock); | 
|  | 573 | sock->ops = NULL; | 
|  | 574 | module_put(owner); | 
|  | 575 | } | 
|  | 576 |  | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 577 | if (rcu_dereference_protected(sock->wq, 1)->fasync_list) | 
| Yang Yingliang | 3410f22 | 2014-02-12 17:09:55 +0800 | [diff] [blame] | 578 | pr_err("%s: fasync list not empty!\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 |  | 
| Alex Shi | 19e8d69 | 2012-05-14 14:15:31 -0700 | [diff] [blame] | 580 | this_cpu_sub(sockets_in_use, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | if (!sock->file) { | 
|  | 582 | iput(SOCK_INODE(sock)); | 
|  | 583 | return; | 
|  | 584 | } | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 585 | sock->file = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 587 | EXPORT_SYMBOL(sock_release); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 |  | 
| Willem de Bruijn | 67cc0d4 | 2014-09-08 19:58:58 -0400 | [diff] [blame] | 589 | void __sock_tx_timestamp(const struct sock *sk, __u8 *tx_flags) | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 590 | { | 
| Eric Dumazet | 140c55d | 2014-08-06 11:49:29 +0200 | [diff] [blame] | 591 | u8 flags = *tx_flags; | 
|  | 592 |  | 
| Willem de Bruijn | b9f40e2 | 2014-08-04 22:11:46 -0400 | [diff] [blame] | 593 | if (sk->sk_tsflags & SOF_TIMESTAMPING_TX_HARDWARE) | 
| Eric Dumazet | 140c55d | 2014-08-06 11:49:29 +0200 | [diff] [blame] | 594 | flags |= SKBTX_HW_TSTAMP; | 
|  | 595 |  | 
| Willem de Bruijn | b9f40e2 | 2014-08-04 22:11:46 -0400 | [diff] [blame] | 596 | if (sk->sk_tsflags & SOF_TIMESTAMPING_TX_SOFTWARE) | 
| Eric Dumazet | 140c55d | 2014-08-06 11:49:29 +0200 | [diff] [blame] | 597 | flags |= SKBTX_SW_TSTAMP; | 
|  | 598 |  | 
| Willem de Bruijn | e7fd288 | 2014-08-04 22:11:48 -0400 | [diff] [blame] | 599 | if (sk->sk_tsflags & SOF_TIMESTAMPING_TX_SCHED) | 
| Eric Dumazet | 140c55d | 2014-08-06 11:49:29 +0200 | [diff] [blame] | 600 | flags |= SKBTX_SCHED_TSTAMP; | 
|  | 601 |  | 
| Willem de Bruijn | e1c8a60 | 2014-08-04 22:11:50 -0400 | [diff] [blame] | 602 | if (sk->sk_tsflags & SOF_TIMESTAMPING_TX_ACK) | 
| Eric Dumazet | 140c55d | 2014-08-06 11:49:29 +0200 | [diff] [blame] | 603 | flags |= SKBTX_ACK_TSTAMP; | 
| Willem de Bruijn | e7fd288 | 2014-08-04 22:11:48 -0400 | [diff] [blame] | 604 |  | 
| Eric Dumazet | 140c55d | 2014-08-06 11:49:29 +0200 | [diff] [blame] | 605 | *tx_flags = flags; | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 606 | } | 
| Willem de Bruijn | 67cc0d4 | 2014-09-08 19:58:58 -0400 | [diff] [blame] | 607 | EXPORT_SYMBOL(__sock_tx_timestamp); | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 608 |  | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 609 | static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | { | 
| Al Viro | 01e97e6 | 2014-12-15 21:39:31 -0500 | [diff] [blame] | 611 | int ret = sock->ops->sendmsg(sock, msg, msg_data_left(msg)); | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 612 | BUG_ON(ret == -EIOCBQUEUED); | 
|  | 613 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } | 
| Gu Zheng | 0cf00c6 | 2014-12-05 15:14:23 +0800 | [diff] [blame] | 615 |  | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 616 | int sock_sendmsg(struct socket *sock, struct msghdr *msg) | 
| Gu Zheng | 0cf00c6 | 2014-12-05 15:14:23 +0800 | [diff] [blame] | 617 | { | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 618 | int err = security_socket_sendmsg(sock, msg, | 
| Al Viro | 01e97e6 | 2014-12-15 21:39:31 -0500 | [diff] [blame] | 619 | msg_data_left(msg)); | 
| Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 620 |  | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 621 | return err ?: sock_sendmsg_nosec(sock, msg); | 
| Gu Zheng | 0cf00c6 | 2014-12-05 15:14:23 +0800 | [diff] [blame] | 622 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 623 | EXPORT_SYMBOL(sock_sendmsg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 |  | 
|  | 625 | int kernel_sendmsg(struct socket *sock, struct msghdr *msg, | 
|  | 626 | struct kvec *vec, size_t num, size_t size) | 
|  | 627 | { | 
| Al Viro | 6aa2481 | 2015-03-21 19:56:16 -0400 | [diff] [blame] | 628 | iov_iter_kvec(&msg->msg_iter, WRITE | ITER_KVEC, vec, num, size); | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 629 | return sock_sendmsg(sock, msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 631 | EXPORT_SYMBOL(kernel_sendmsg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 |  | 
| Eric Dumazet | 92f37fd | 2007-03-25 22:14:49 -0700 | [diff] [blame] | 633 | /* | 
|  | 634 | * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP) | 
|  | 635 | */ | 
|  | 636 | void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk, | 
|  | 637 | struct sk_buff *skb) | 
|  | 638 | { | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 639 | int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP); | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 640 | struct scm_timestamping tss; | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 641 | int empty = 1; | 
|  | 642 | struct skb_shared_hwtstamps *shhwtstamps = | 
|  | 643 | skb_hwtstamps(skb); | 
| Eric Dumazet | 92f37fd | 2007-03-25 22:14:49 -0700 | [diff] [blame] | 644 |  | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 645 | /* Race occurred between timestamp enabling and packet | 
|  | 646 | receiving.  Fill in the current time for now. */ | 
|  | 647 | if (need_software_tstamp && skb->tstamp.tv64 == 0) | 
|  | 648 | __net_timestamp(skb); | 
|  | 649 |  | 
|  | 650 | if (need_software_tstamp) { | 
|  | 651 | if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) { | 
|  | 652 | struct timeval tv; | 
|  | 653 | skb_get_timestamp(skb, &tv); | 
|  | 654 | put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP, | 
|  | 655 | sizeof(tv), &tv); | 
|  | 656 | } else { | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 657 | struct timespec ts; | 
|  | 658 | skb_get_timestampns(skb, &ts); | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 659 | put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS, | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 660 | sizeof(ts), &ts); | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 661 | } | 
| Eric Dumazet | 92f37fd | 2007-03-25 22:14:49 -0700 | [diff] [blame] | 662 | } | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 663 |  | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 664 | memset(&tss, 0, sizeof(tss)); | 
| Willem de Bruijn | c199105 | 2014-09-03 12:01:18 -0400 | [diff] [blame] | 665 | if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) && | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 666 | ktime_to_timespec_cond(skb->tstamp, tss.ts + 0)) | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 667 | empty = 0; | 
| Willem de Bruijn | 4d276eb | 2014-07-25 18:01:32 -0400 | [diff] [blame] | 668 | if (shhwtstamps && | 
| Willem de Bruijn | b9f40e2 | 2014-08-04 22:11:46 -0400 | [diff] [blame] | 669 | (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) && | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 670 | ktime_to_timespec_cond(shhwtstamps->hwtstamp, tss.ts + 2)) | 
| Willem de Bruijn | 4d276eb | 2014-07-25 18:01:32 -0400 | [diff] [blame] | 671 | empty = 0; | 
| Patrick Ohly | 20d4947 | 2009-02-12 05:03:38 +0000 | [diff] [blame] | 672 | if (!empty) | 
|  | 673 | put_cmsg(msg, SOL_SOCKET, | 
| Willem de Bruijn | f24b9be | 2014-08-04 22:11:45 -0400 | [diff] [blame] | 674 | SCM_TIMESTAMPING, sizeof(tss), &tss); | 
| Eric Dumazet | 92f37fd | 2007-03-25 22:14:49 -0700 | [diff] [blame] | 675 | } | 
| Arnaldo Carvalho de Melo | 7c81fd8 | 2007-03-10 00:39:35 -0300 | [diff] [blame] | 676 | EXPORT_SYMBOL_GPL(__sock_recv_timestamp); | 
|  | 677 |  | 
| Johannes Berg | 6e3e939 | 2011-11-09 10:15:42 +0100 | [diff] [blame] | 678 | void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk, | 
|  | 679 | struct sk_buff *skb) | 
|  | 680 | { | 
|  | 681 | int ack; | 
|  | 682 |  | 
|  | 683 | if (!sock_flag(sk, SOCK_WIFI_STATUS)) | 
|  | 684 | return; | 
|  | 685 | if (!skb->wifi_acked_valid) | 
|  | 686 | return; | 
|  | 687 |  | 
|  | 688 | ack = skb->wifi_acked; | 
|  | 689 |  | 
|  | 690 | put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack); | 
|  | 691 | } | 
|  | 692 | EXPORT_SYMBOL_GPL(__sock_recv_wifi_status); | 
|  | 693 |  | 
| stephen hemminger | 11165f1 | 2010-10-18 14:27:29 +0000 | [diff] [blame] | 694 | static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk, | 
|  | 695 | struct sk_buff *skb) | 
| Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 696 | { | 
| Eyal Birger | 744d5a3 | 2015-03-01 14:58:31 +0200 | [diff] [blame] | 697 | if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && SOCK_SKB_CB(skb)->dropcount) | 
| Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 698 | put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL, | 
| Eyal Birger | 744d5a3 | 2015-03-01 14:58:31 +0200 | [diff] [blame] | 699 | sizeof(__u32), &SOCK_SKB_CB(skb)->dropcount); | 
| Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 700 | } | 
|  | 701 |  | 
| Eric Dumazet | 767dd03 | 2010-04-28 19:14:43 +0000 | [diff] [blame] | 702 | void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk, | 
| Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 703 | struct sk_buff *skb) | 
|  | 704 | { | 
|  | 705 | sock_recv_timestamp(msg, sk, skb); | 
|  | 706 | sock_recv_drops(msg, sk, skb); | 
|  | 707 | } | 
| Eric Dumazet | 767dd03 | 2010-04-28 19:14:43 +0000 | [diff] [blame] | 708 | EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops); | 
| Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 709 |  | 
| Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 710 | static inline int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg, | 
|  | 711 | size_t size, int flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | { | 
| Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 713 | return sock->ops->recvmsg(sock, msg, size, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | } | 
|  | 715 |  | 
| Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 716 | int sock_recvmsg(struct socket *sock, struct msghdr *msg, size_t size, | 
|  | 717 | int flags) | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 718 | { | 
|  | 719 | int err = security_socket_recvmsg(sock, msg, size, flags); | 
|  | 720 |  | 
| Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 721 | return err ?: sock_recvmsg_nosec(sock, msg, size, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 723 | EXPORT_SYMBOL(sock_recvmsg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 |  | 
| Martin Lucina | c1249c0 | 2010-12-10 00:04:05 +0000 | [diff] [blame] | 725 | /** | 
|  | 726 | * kernel_recvmsg - Receive a message from a socket (kernel space) | 
|  | 727 | * @sock:       The socket to receive the message from | 
|  | 728 | * @msg:        Received message | 
|  | 729 | * @vec:        Input s/g array for message data | 
|  | 730 | * @num:        Size of input s/g array | 
|  | 731 | * @size:       Number of bytes to read | 
|  | 732 | * @flags:      Message flags (MSG_DONTWAIT, etc...) | 
|  | 733 | * | 
|  | 734 | * On return the msg structure contains the scatter/gather array passed in the | 
|  | 735 | * vec argument. The array is modified so that it consists of the unfilled | 
|  | 736 | * portion of the original array. | 
|  | 737 | * | 
|  | 738 | * The returned value is the total number of bytes received, or an error. | 
|  | 739 | */ | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 740 | int kernel_recvmsg(struct socket *sock, struct msghdr *msg, | 
|  | 741 | struct kvec *vec, size_t num, size_t size, int flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { | 
|  | 743 | mm_segment_t oldfs = get_fs(); | 
|  | 744 | int result; | 
|  | 745 |  | 
| Al Viro | 6aa2481 | 2015-03-21 19:56:16 -0400 | [diff] [blame] | 746 | iov_iter_kvec(&msg->msg_iter, READ | ITER_KVEC, vec, num, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | set_fs(KERNEL_DS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | result = sock_recvmsg(sock, msg, size, flags); | 
|  | 749 | set_fs(oldfs); | 
|  | 750 | return result; | 
|  | 751 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 752 | EXPORT_SYMBOL(kernel_recvmsg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 |  | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 754 | static ssize_t sock_sendpage(struct file *file, struct page *page, | 
|  | 755 | int offset, size_t size, loff_t *ppos, int more) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | { | 
|  | 757 | struct socket *sock; | 
|  | 758 | int flags; | 
|  | 759 |  | 
| Eric Dumazet | b69aee0 | 2005-09-06 14:42:45 -0700 | [diff] [blame] | 760 | sock = file->private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 |  | 
| Eric Dumazet | 35f9c09 | 2012-04-05 03:05:35 +0000 | [diff] [blame] | 762 | flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0; | 
|  | 763 | /* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */ | 
|  | 764 | flags |= more; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 |  | 
| Linus Torvalds | e694958 | 2009-08-13 08:28:36 -0700 | [diff] [blame] | 766 | return kernel_sendpage(sock, page, offset, size, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } | 
|  | 768 |  | 
| Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 769 | static ssize_t sock_splice_read(struct file *file, loff_t *ppos, | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 770 | struct pipe_inode_info *pipe, size_t len, | 
| Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 771 | unsigned int flags) | 
|  | 772 | { | 
|  | 773 | struct socket *sock = file->private_data; | 
|  | 774 |  | 
| Rémi Denis-Courmont | 997b37d | 2008-02-15 02:35:45 -0800 | [diff] [blame] | 775 | if (unlikely(!sock->ops->splice_read)) | 
|  | 776 | return -EINVAL; | 
|  | 777 |  | 
| Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 778 | return sock->ops->splice_read(sock, ppos, pipe, len, flags); | 
|  | 779 | } | 
|  | 780 |  | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 781 | static ssize_t sock_read_iter(struct kiocb *iocb, struct iov_iter *to) | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 782 | { | 
| Al Viro | 6d65233 | 2015-01-30 16:12:56 -0500 | [diff] [blame] | 783 | struct file *file = iocb->ki_filp; | 
|  | 784 | struct socket *sock = file->private_data; | 
| tadeusz.struk@intel.com | 0345f93 | 2015-03-19 12:31:25 -0700 | [diff] [blame] | 785 | struct msghdr msg = {.msg_iter = *to, | 
|  | 786 | .msg_iocb = iocb}; | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 787 | ssize_t res; | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 788 |  | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 789 | if (file->f_flags & O_NONBLOCK) | 
|  | 790 | msg.msg_flags = MSG_DONTWAIT; | 
|  | 791 |  | 
|  | 792 | if (iocb->ki_pos != 0) | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 793 | return -ESPIPE; | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 794 |  | 
| Christoph Hellwig | 66ee59a | 2015-02-11 19:56:46 +0100 | [diff] [blame] | 795 | if (!iov_iter_count(to))	/* Match SYS5 behaviour */ | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 796 | return 0; | 
|  | 797 |  | 
| Al Viro | 237dae8 | 2015-04-09 00:00:30 -0400 | [diff] [blame] | 798 | res = sock_recvmsg(sock, &msg, iov_iter_count(to), msg.msg_flags); | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 799 | *to = msg.msg_iter; | 
|  | 800 | return res; | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 801 | } | 
|  | 802 |  | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 803 | static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | { | 
| Al Viro | 6d65233 | 2015-01-30 16:12:56 -0500 | [diff] [blame] | 805 | struct file *file = iocb->ki_filp; | 
|  | 806 | struct socket *sock = file->private_data; | 
| tadeusz.struk@intel.com | 0345f93 | 2015-03-19 12:31:25 -0700 | [diff] [blame] | 807 | struct msghdr msg = {.msg_iter = *from, | 
|  | 808 | .msg_iocb = iocb}; | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 809 | ssize_t res; | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 810 |  | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 811 | if (iocb->ki_pos != 0) | 
| Christoph Hellwig | ce1d4d3 | 2005-12-22 21:08:46 -0800 | [diff] [blame] | 812 | return -ESPIPE; | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 813 |  | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 814 | if (file->f_flags & O_NONBLOCK) | 
|  | 815 | msg.msg_flags = MSG_DONTWAIT; | 
|  | 816 |  | 
| Al Viro | 6d65233 | 2015-01-30 16:12:56 -0500 | [diff] [blame] | 817 | if (sock->type == SOCK_SEQPACKET) | 
|  | 818 | msg.msg_flags |= MSG_EOR; | 
|  | 819 |  | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 820 | res = sock_sendmsg(sock, &msg); | 
| Al Viro | 8ae5e03 | 2014-11-28 19:40:50 -0500 | [diff] [blame] | 821 | *from = msg.msg_iter; | 
|  | 822 | return res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } | 
|  | 824 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* | 
|  | 826 | * Atomic setting of ioctl hooks to avoid race | 
|  | 827 | * with module unload. | 
|  | 828 | */ | 
|  | 829 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 830 | static DEFINE_MUTEX(br_ioctl_mutex); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 831 | static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 |  | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 833 | void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 835 | mutex_lock(&br_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | br_ioctl_hook = hook; | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 837 | mutex_unlock(&br_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } | 
|  | 839 | EXPORT_SYMBOL(brioctl_set); | 
|  | 840 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 841 | static DEFINE_MUTEX(vlan_ioctl_mutex); | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 842 | static int (*vlan_ioctl_hook) (struct net *, void __user *arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 |  | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 844 | void vlan_ioctl_set(int (*hook) (struct net *, void __user *)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 846 | mutex_lock(&vlan_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | vlan_ioctl_hook = hook; | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 848 | mutex_unlock(&vlan_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } | 
|  | 850 | EXPORT_SYMBOL(vlan_ioctl_set); | 
|  | 851 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 852 | static DEFINE_MUTEX(dlci_ioctl_mutex); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 853 | static int (*dlci_ioctl_hook) (unsigned int, void __user *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 855 | void dlci_ioctl_set(int (*hook) (unsigned int, void __user *)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | { | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 857 | mutex_lock(&dlci_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | dlci_ioctl_hook = hook; | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 859 | mutex_unlock(&dlci_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } | 
|  | 861 | EXPORT_SYMBOL(dlci_ioctl_set); | 
|  | 862 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 863 | static long sock_do_ioctl(struct net *net, struct socket *sock, | 
|  | 864 | unsigned int cmd, unsigned long arg) | 
|  | 865 | { | 
|  | 866 | int err; | 
|  | 867 | void __user *argp = (void __user *)arg; | 
|  | 868 |  | 
|  | 869 | err = sock->ops->ioctl(sock, cmd, arg); | 
|  | 870 |  | 
|  | 871 | /* | 
|  | 872 | * If this ioctl is unknown try to hand it down | 
|  | 873 | * to the NIC driver. | 
|  | 874 | */ | 
|  | 875 | if (err == -ENOIOCTLCMD) | 
|  | 876 | err = dev_ioctl(net, cmd, argp); | 
|  | 877 |  | 
|  | 878 | return err; | 
|  | 879 | } | 
|  | 880 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | /* | 
|  | 882 | *	With an ioctl, arg may well be a user mode pointer, but we don't know | 
|  | 883 | *	what to do with it - that's up to the protocol still. | 
|  | 884 | */ | 
|  | 885 |  | 
|  | 886 | static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg) | 
|  | 887 | { | 
|  | 888 | struct socket *sock; | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 889 | struct sock *sk; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | void __user *argp = (void __user *)arg; | 
|  | 891 | int pid, err; | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 892 | struct net *net; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 |  | 
| Eric Dumazet | b69aee0 | 2005-09-06 14:42:45 -0700 | [diff] [blame] | 894 | sock = file->private_data; | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 895 | sk = sock->sk; | 
| YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 896 | net = sock_net(sk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) { | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 898 | err = dev_ioctl(net, cmd, argp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } else | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 900 | #ifdef CONFIG_WEXT_CORE | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) { | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 902 | err = dev_ioctl(net, cmd, argp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } else | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 904 | #endif | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 905 | switch (cmd) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | case FIOSETOWN: | 
|  | 907 | case SIOCSPGRP: | 
|  | 908 | err = -EFAULT; | 
|  | 909 | if (get_user(pid, (int __user *)argp)) | 
|  | 910 | break; | 
| Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 911 | f_setown(sock->file, pid, 1); | 
|  | 912 | err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | break; | 
|  | 914 | case FIOGETOWN: | 
|  | 915 | case SIOCGPGRP: | 
| Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 916 | err = put_user(f_getown(sock->file), | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 917 | (int __user *)argp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | break; | 
|  | 919 | case SIOCGIFBR: | 
|  | 920 | case SIOCSIFBR: | 
|  | 921 | case SIOCBRADDBR: | 
|  | 922 | case SIOCBRDELBR: | 
|  | 923 | err = -ENOPKG; | 
|  | 924 | if (!br_ioctl_hook) | 
|  | 925 | request_module("bridge"); | 
|  | 926 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 927 | mutex_lock(&br_ioctl_mutex); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 928 | if (br_ioctl_hook) | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 929 | err = br_ioctl_hook(net, cmd, argp); | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 930 | mutex_unlock(&br_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | break; | 
|  | 932 | case SIOCGIFVLAN: | 
|  | 933 | case SIOCSIFVLAN: | 
|  | 934 | err = -ENOPKG; | 
|  | 935 | if (!vlan_ioctl_hook) | 
|  | 936 | request_module("8021q"); | 
|  | 937 |  | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 938 | mutex_lock(&vlan_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | if (vlan_ioctl_hook) | 
| Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 940 | err = vlan_ioctl_hook(net, argp); | 
| Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 941 | mutex_unlock(&vlan_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | case SIOCADDDLCI: | 
|  | 944 | case SIOCDELDLCI: | 
|  | 945 | err = -ENOPKG; | 
|  | 946 | if (!dlci_ioctl_hook) | 
|  | 947 | request_module("dlci"); | 
|  | 948 |  | 
| Pavel Emelyanov | 7512cbf | 2008-03-21 15:58:52 -0700 | [diff] [blame] | 949 | mutex_lock(&dlci_ioctl_mutex); | 
|  | 950 | if (dlci_ioctl_hook) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | err = dlci_ioctl_hook(cmd, argp); | 
| Pavel Emelyanov | 7512cbf | 2008-03-21 15:58:52 -0700 | [diff] [blame] | 952 | mutex_unlock(&dlci_ioctl_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | break; | 
|  | 954 | default: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 955 | err = sock_do_ioctl(net, sock, cmd, arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | break; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 957 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | return err; | 
|  | 959 | } | 
|  | 960 |  | 
|  | 961 | int sock_create_lite(int family, int type, int protocol, struct socket **res) | 
|  | 962 | { | 
|  | 963 | int err; | 
|  | 964 | struct socket *sock = NULL; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 965 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | err = security_socket_create(family, type, protocol, 1); | 
|  | 967 | if (err) | 
|  | 968 | goto out; | 
|  | 969 |  | 
|  | 970 | sock = sock_alloc(); | 
|  | 971 | if (!sock) { | 
|  | 972 | err = -ENOMEM; | 
|  | 973 | goto out; | 
|  | 974 | } | 
|  | 975 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | sock->type = type; | 
| Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 977 | err = security_socket_post_create(sock, family, type, protocol, 1); | 
|  | 978 | if (err) | 
|  | 979 | goto out_release; | 
|  | 980 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | out: | 
|  | 982 | *res = sock; | 
|  | 983 | return err; | 
| Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 984 | out_release: | 
|  | 985 | sock_release(sock); | 
|  | 986 | sock = NULL; | 
|  | 987 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 989 | EXPORT_SYMBOL(sock_create_lite); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 |  | 
|  | 991 | /* No kernel lock held - perfect */ | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 992 | static unsigned int sock_poll(struct file *file, poll_table *wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | { | 
| Eliezer Tamir | cbf5500 | 2013-07-08 16:20:34 +0300 | [diff] [blame] | 994 | unsigned int busy_flag = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | struct socket *sock; | 
|  | 996 |  | 
|  | 997 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 998 | *      We can't return errors to poll, so it's either yes or no. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | */ | 
| Eric Dumazet | b69aee0 | 2005-09-06 14:42:45 -0700 | [diff] [blame] | 1000 | sock = file->private_data; | 
| Eliezer Tamir | 2d48d67 | 2013-06-24 10:28:03 +0300 | [diff] [blame] | 1001 |  | 
| Eliezer Tamir | cbf5500 | 2013-07-08 16:20:34 +0300 | [diff] [blame] | 1002 | if (sk_can_busy_loop(sock->sk)) { | 
| Eliezer Tamir | 2d48d67 | 2013-06-24 10:28:03 +0300 | [diff] [blame] | 1003 | /* this socket can poll_ll so tell the system call */ | 
| Eliezer Tamir | cbf5500 | 2013-07-08 16:20:34 +0300 | [diff] [blame] | 1004 | busy_flag = POLL_BUSY_LOOP; | 
| Eliezer Tamir | 2d48d67 | 2013-06-24 10:28:03 +0300 | [diff] [blame] | 1005 |  | 
|  | 1006 | /* once, only if requested by syscall */ | 
| Eliezer Tamir | cbf5500 | 2013-07-08 16:20:34 +0300 | [diff] [blame] | 1007 | if (wait && (wait->_key & POLL_BUSY_LOOP)) | 
|  | 1008 | sk_busy_loop(sock->sk, 1); | 
| Eliezer Tamir | 2d48d67 | 2013-06-24 10:28:03 +0300 | [diff] [blame] | 1009 | } | 
|  | 1010 |  | 
| Eliezer Tamir | cbf5500 | 2013-07-08 16:20:34 +0300 | [diff] [blame] | 1011 | return busy_flag | sock->ops->poll(file, sock, wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | } | 
|  | 1013 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1014 | static int sock_mmap(struct file *file, struct vm_area_struct *vma) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | { | 
| Eric Dumazet | b69aee0 | 2005-09-06 14:42:45 -0700 | [diff] [blame] | 1016 | struct socket *sock = file->private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 |  | 
|  | 1018 | return sock->ops->mmap(file, sock, vma); | 
|  | 1019 | } | 
|  | 1020 |  | 
| Arnaldo Carvalho de Melo | 2038073 | 2005-08-16 02:18:02 -0300 | [diff] [blame] | 1021 | static int sock_close(struct inode *inode, struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | sock_release(SOCKET_I(inode)); | 
|  | 1024 | return 0; | 
|  | 1025 | } | 
|  | 1026 |  | 
|  | 1027 | /* | 
|  | 1028 | *	Update the socket async list | 
|  | 1029 | * | 
|  | 1030 | *	Fasync_list locking strategy. | 
|  | 1031 | * | 
|  | 1032 | *	1. fasync_list is modified only under process context socket lock | 
|  | 1033 | *	   i.e. under semaphore. | 
|  | 1034 | *	2. fasync_list is used under read_lock(&sk->sk_callback_lock) | 
| Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1035 | *	   or under socket lock | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | */ | 
|  | 1037 |  | 
|  | 1038 | static int sock_fasync(int fd, struct file *filp, int on) | 
|  | 1039 | { | 
| Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1040 | struct socket *sock = filp->private_data; | 
|  | 1041 | struct sock *sk = sock->sk; | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 1042 | struct socket_wq *wq; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 |  | 
| Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1044 | if (sk == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 |  | 
|  | 1047 | lock_sock(sk); | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 1048 | wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk)); | 
|  | 1049 | fasync_helper(fd, filp, on, &wq->fasync_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 |  | 
| Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 1051 | if (!wq->fasync_list) | 
| Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1052 | sock_reset_flag(sk, SOCK_FASYNC); | 
| Jonathan Corbet | 7639842 | 2009-02-01 14:26:59 -0700 | [diff] [blame] | 1053 | else | 
| Eric Dumazet | bcdce71 | 2009-10-06 17:28:29 -0700 | [diff] [blame] | 1054 | sock_set_flag(sk, SOCK_FASYNC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 |  | 
| Eric Dumazet | 989a297 | 2010-04-14 09:55:35 +0000 | [diff] [blame] | 1056 | release_sock(sk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | return 0; | 
|  | 1058 | } | 
|  | 1059 |  | 
| Eric Dumazet | ceb5d58 | 2015-11-29 20:03:11 -0800 | [diff] [blame] | 1060 | /* This function may be called only under rcu_lock */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 |  | 
| Eric Dumazet | ceb5d58 | 2015-11-29 20:03:11 -0800 | [diff] [blame] | 1062 | int sock_wake_async(struct socket_wq *wq, int how, int band) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | { | 
| Eric Dumazet | ceb5d58 | 2015-11-29 20:03:11 -0800 | [diff] [blame] | 1064 | if (!wq || !wq->fasync_list) | 
|  | 1065 | return -1; | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 1066 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1067 | switch (how) { | 
| Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 1068 | case SOCK_WAKE_WAITD: | 
| Eric Dumazet | ceb5d58 | 2015-11-29 20:03:11 -0800 | [diff] [blame] | 1069 | if (test_bit(SOCKWQ_ASYNC_WAITDATA, &wq->flags)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | break; | 
|  | 1071 | goto call_kill; | 
| Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 1072 | case SOCK_WAKE_SPACE: | 
| Eric Dumazet | ceb5d58 | 2015-11-29 20:03:11 -0800 | [diff] [blame] | 1073 | if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | break; | 
|  | 1075 | /* fall through */ | 
| Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 1076 | case SOCK_WAKE_IO: | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1077 | call_kill: | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 1078 | kill_fasync(&wq->fasync_list, SIGIO, band); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | break; | 
| Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 1080 | case SOCK_WAKE_URG: | 
| Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 1081 | kill_fasync(&wq->fasync_list, SIGURG, band); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | } | 
| Eric Dumazet | ceb5d58 | 2015-11-29 20:03:11 -0800 | [diff] [blame] | 1083 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | return 0; | 
|  | 1085 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 1086 | EXPORT_SYMBOL(sock_wake_async); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 |  | 
| Pavel Emelyanov | 721db93 | 2010-09-29 16:06:32 +0400 | [diff] [blame] | 1088 | int __sock_create(struct net *net, int family, int type, int protocol, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1089 | struct socket **res, int kern) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | { | 
|  | 1091 | int err; | 
|  | 1092 | struct socket *sock; | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1093 | const struct net_proto_family *pf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 |  | 
|  | 1095 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1096 | *      Check protocol is in range | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | */ | 
|  | 1098 | if (family < 0 || family >= NPROTO) | 
|  | 1099 | return -EAFNOSUPPORT; | 
|  | 1100 | if (type < 0 || type >= SOCK_MAX) | 
|  | 1101 | return -EINVAL; | 
|  | 1102 |  | 
|  | 1103 | /* Compatibility. | 
|  | 1104 |  | 
|  | 1105 | This uglymoron is moved from INET layer to here to avoid | 
|  | 1106 | deadlock in module load. | 
|  | 1107 | */ | 
|  | 1108 | if (family == PF_INET && type == SOCK_PACKET) { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1109 | static int warned; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | if (!warned) { | 
|  | 1111 | warned = 1; | 
| Yang Yingliang | 3410f22 | 2014-02-12 17:09:55 +0800 | [diff] [blame] | 1112 | pr_info("%s uses obsolete (PF_INET,SOCK_PACKET)\n", | 
|  | 1113 | current->comm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | } | 
|  | 1115 | family = PF_PACKET; | 
|  | 1116 | } | 
|  | 1117 |  | 
|  | 1118 | err = security_socket_create(family, type, protocol, kern); | 
|  | 1119 | if (err) | 
|  | 1120 | return err; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1121 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1122 | /* | 
|  | 1123 | *	Allocate the socket and allow the family to set things up. if | 
|  | 1124 | *	the protocol is 0, the family is instructed to select an appropriate | 
|  | 1125 | *	default. | 
|  | 1126 | */ | 
|  | 1127 | sock = sock_alloc(); | 
|  | 1128 | if (!sock) { | 
| Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 1129 | net_warn_ratelimited("socket: no more sockets\n"); | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1130 | return -ENFILE;	/* Not exactly a match, but its the | 
|  | 1131 | closest posix thing */ | 
|  | 1132 | } | 
|  | 1133 |  | 
|  | 1134 | sock->type = type; | 
|  | 1135 |  | 
| Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 1136 | #ifdef CONFIG_MODULES | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1137 | /* Attempt to load a protocol module if the find failed. | 
|  | 1138 | * | 
|  | 1139 | * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | * requested real, full-featured networking support upon configuration. | 
|  | 1141 | * Otherwise module support will break! | 
|  | 1142 | */ | 
| Eric Dumazet | 190683a | 2010-11-10 10:50:44 +0000 | [diff] [blame] | 1143 | if (rcu_access_pointer(net_families[family]) == NULL) | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1144 | request_module("net-pf-%d", family); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | #endif | 
|  | 1146 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1147 | rcu_read_lock(); | 
|  | 1148 | pf = rcu_dereference(net_families[family]); | 
|  | 1149 | err = -EAFNOSUPPORT; | 
|  | 1150 | if (!pf) | 
|  | 1151 | goto out_release; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 |  | 
|  | 1153 | /* | 
|  | 1154 | * We will call the ->create function, that possibly is in a loadable | 
|  | 1155 | * module, so we have to bump that loadable module refcnt first. | 
|  | 1156 | */ | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1157 | if (!try_module_get(pf->owner)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | goto out_release; | 
|  | 1159 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1160 | /* Now protected by module ref count */ | 
|  | 1161 | rcu_read_unlock(); | 
|  | 1162 |  | 
| Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 1163 | err = pf->create(net, sock, protocol, kern); | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1164 | if (err < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | goto out_module_put; | 
| Frank Filz | a79af59 | 2005-09-27 15:23:38 -0700 | [diff] [blame] | 1166 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | /* | 
|  | 1168 | * Now to bump the refcnt of the [loadable] module that owns this | 
|  | 1169 | * socket at sock_release time we decrement its refcnt. | 
|  | 1170 | */ | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1171 | if (!try_module_get(sock->ops->owner)) | 
|  | 1172 | goto out_module_busy; | 
|  | 1173 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | /* | 
|  | 1175 | * Now that we're done with the ->create function, the [loadable] | 
|  | 1176 | * module can have its refcnt decremented | 
|  | 1177 | */ | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1178 | module_put(pf->owner); | 
| Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 1179 | err = security_socket_post_create(sock, family, type, protocol, kern); | 
|  | 1180 | if (err) | 
| Herbert Xu | 3b18552 | 2007-08-15 14:46:02 -0700 | [diff] [blame] | 1181 | goto out_sock_release; | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1182 | *res = sock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1184 | return 0; | 
|  | 1185 |  | 
|  | 1186 | out_module_busy: | 
|  | 1187 | err = -EAFNOSUPPORT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | out_module_put: | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1189 | sock->ops = NULL; | 
|  | 1190 | module_put(pf->owner); | 
|  | 1191 | out_sock_release: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | sock_release(sock); | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 1193 | return err; | 
|  | 1194 |  | 
|  | 1195 | out_release: | 
|  | 1196 | rcu_read_unlock(); | 
|  | 1197 | goto out_sock_release; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | } | 
| Pavel Emelyanov | 721db93 | 2010-09-29 16:06:32 +0400 | [diff] [blame] | 1199 | EXPORT_SYMBOL(__sock_create); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 |  | 
|  | 1201 | int sock_create(int family, int type, int protocol, struct socket **res) | 
|  | 1202 | { | 
| Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 1203 | return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 1205 | EXPORT_SYMBOL(sock_create); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 |  | 
| Eric W. Biederman | eeb1bd5 | 2015-05-08 21:08:05 -0500 | [diff] [blame] | 1207 | int sock_create_kern(struct net *net, int family, int type, int protocol, struct socket **res) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | { | 
| Eric W. Biederman | eeb1bd5 | 2015-05-08 21:08:05 -0500 | [diff] [blame] | 1209 | return __sock_create(net, family, type, protocol, res, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 1211 | EXPORT_SYMBOL(sock_create_kern); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1213 | SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | { | 
|  | 1215 | int retval; | 
|  | 1216 | struct socket *sock; | 
| Ulrich Drepper | a677a03 | 2008-07-23 21:29:17 -0700 | [diff] [blame] | 1217 | int flags; | 
|  | 1218 |  | 
| Ulrich Drepper | e38b36f | 2008-07-23 21:29:42 -0700 | [diff] [blame] | 1219 | /* Check the SOCK_* constants for consistency.  */ | 
|  | 1220 | BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC); | 
|  | 1221 | BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK); | 
|  | 1222 | BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK); | 
|  | 1223 | BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK); | 
|  | 1224 |  | 
| Ulrich Drepper | a677a03 | 2008-07-23 21:29:17 -0700 | [diff] [blame] | 1225 | flags = type & ~SOCK_TYPE_MASK; | 
| Ulrich Drepper | 77d2720 | 2008-07-23 21:29:35 -0700 | [diff] [blame] | 1226 | if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) | 
| Ulrich Drepper | a677a03 | 2008-07-23 21:29:17 -0700 | [diff] [blame] | 1227 | return -EINVAL; | 
|  | 1228 | type &= SOCK_TYPE_MASK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 |  | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 1230 | if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) | 
|  | 1231 | flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; | 
|  | 1232 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | retval = sock_create(family, type, protocol, &sock); | 
|  | 1234 | if (retval < 0) | 
|  | 1235 | goto out; | 
|  | 1236 |  | 
| Ulrich Drepper | 77d2720 | 2008-07-23 21:29:35 -0700 | [diff] [blame] | 1237 | retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | if (retval < 0) | 
|  | 1239 | goto out_release; | 
|  | 1240 |  | 
|  | 1241 | out: | 
|  | 1242 | /* It may be already another descriptor 8) Not kernel problem. */ | 
|  | 1243 | return retval; | 
|  | 1244 |  | 
|  | 1245 | out_release: | 
|  | 1246 | sock_release(sock); | 
|  | 1247 | return retval; | 
|  | 1248 | } | 
|  | 1249 |  | 
|  | 1250 | /* | 
|  | 1251 | *	Create a pair of connected sockets. | 
|  | 1252 | */ | 
|  | 1253 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1254 | SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol, | 
|  | 1255 | int __user *, usockvec) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | { | 
|  | 1257 | struct socket *sock1, *sock2; | 
|  | 1258 | int fd1, fd2, err; | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 1259 | struct file *newfile1, *newfile2; | 
| Ulrich Drepper | a677a03 | 2008-07-23 21:29:17 -0700 | [diff] [blame] | 1260 | int flags; | 
|  | 1261 |  | 
|  | 1262 | flags = type & ~SOCK_TYPE_MASK; | 
| Ulrich Drepper | 77d2720 | 2008-07-23 21:29:35 -0700 | [diff] [blame] | 1263 | if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) | 
| Ulrich Drepper | a677a03 | 2008-07-23 21:29:17 -0700 | [diff] [blame] | 1264 | return -EINVAL; | 
|  | 1265 | type &= SOCK_TYPE_MASK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 |  | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 1267 | if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) | 
|  | 1268 | flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; | 
|  | 1269 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | /* | 
|  | 1271 | * Obtain the first socket and check if the underlying protocol | 
|  | 1272 | * supports the socketpair call. | 
|  | 1273 | */ | 
|  | 1274 |  | 
|  | 1275 | err = sock_create(family, type, protocol, &sock1); | 
|  | 1276 | if (err < 0) | 
|  | 1277 | goto out; | 
|  | 1278 |  | 
|  | 1279 | err = sock_create(family, type, protocol, &sock2); | 
|  | 1280 | if (err < 0) | 
|  | 1281 | goto out_release_1; | 
|  | 1282 |  | 
|  | 1283 | err = sock1->ops->socketpair(sock1, sock2); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1284 | if (err < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | goto out_release_both; | 
|  | 1286 |  | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1287 | fd1 = get_unused_fd_flags(flags); | 
| David S. Miller | bf3c23d | 2007-10-29 21:54:02 -0700 | [diff] [blame] | 1288 | if (unlikely(fd1 < 0)) { | 
|  | 1289 | err = fd1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | goto out_release_both; | 
| David S. Miller | bf3c23d | 2007-10-29 21:54:02 -0700 | [diff] [blame] | 1291 | } | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1292 |  | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1293 | fd2 = get_unused_fd_flags(flags); | 
| Al Viro | 198de4d | 2009-08-05 19:29:23 +0400 | [diff] [blame] | 1294 | if (unlikely(fd2 < 0)) { | 
|  | 1295 | err = fd2; | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1296 | goto out_put_unused_1; | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1297 | } | 
|  | 1298 |  | 
| Linus Torvalds | aab174f | 2012-10-02 20:25:04 -0700 | [diff] [blame] | 1299 | newfile1 = sock_alloc_file(sock1, flags, NULL); | 
| Viresh Kumar | b5ffe63 | 2015-08-12 15:59:47 +0530 | [diff] [blame] | 1300 | if (IS_ERR(newfile1)) { | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1301 | err = PTR_ERR(newfile1); | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1302 | goto out_put_unused_both; | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1303 | } | 
|  | 1304 |  | 
| Linus Torvalds | aab174f | 2012-10-02 20:25:04 -0700 | [diff] [blame] | 1305 | newfile2 = sock_alloc_file(sock2, flags, NULL); | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1306 | if (IS_ERR(newfile2)) { | 
|  | 1307 | err = PTR_ERR(newfile2); | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1308 | goto out_fput_1; | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 1309 | } | 
|  | 1310 |  | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1311 | err = put_user(fd1, &usockvec[0]); | 
|  | 1312 | if (err) | 
|  | 1313 | goto out_fput_both; | 
|  | 1314 |  | 
|  | 1315 | err = put_user(fd2, &usockvec[1]); | 
|  | 1316 | if (err) | 
|  | 1317 | goto out_fput_both; | 
|  | 1318 |  | 
| Al Viro | 157cf64 | 2008-12-14 04:57:47 -0500 | [diff] [blame] | 1319 | audit_fd_pair(fd1, fd2); | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1320 |  | 
| Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame] | 1321 | fd_install(fd1, newfile1); | 
|  | 1322 | fd_install(fd2, newfile2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | /* fd1 and fd2 may be already another descriptors. | 
|  | 1324 | * Not kernel problem. | 
|  | 1325 | */ | 
|  | 1326 |  | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1327 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 |  | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1329 | out_fput_both: | 
|  | 1330 | fput(newfile2); | 
|  | 1331 | fput(newfile1); | 
|  | 1332 | put_unused_fd(fd2); | 
|  | 1333 | put_unused_fd(fd1); | 
|  | 1334 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 |  | 
| Yann Droneaud | d73aa28 | 2013-12-09 22:42:20 +0100 | [diff] [blame] | 1336 | out_fput_1: | 
|  | 1337 | fput(newfile1); | 
|  | 1338 | put_unused_fd(fd2); | 
|  | 1339 | put_unused_fd(fd1); | 
|  | 1340 | sock_release(sock2); | 
|  | 1341 | goto out; | 
|  | 1342 |  | 
|  | 1343 | out_put_unused_both: | 
|  | 1344 | put_unused_fd(fd2); | 
|  | 1345 | out_put_unused_1: | 
|  | 1346 | put_unused_fd(fd1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | out_release_both: | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1348 | sock_release(sock2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | out_release_1: | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1350 | sock_release(sock1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | out: | 
|  | 1352 | return err; | 
|  | 1353 | } | 
|  | 1354 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | /* | 
|  | 1356 | *	Bind a name to a socket. Nothing much to do here since it's | 
|  | 1357 | *	the protocol's responsibility to handle the local address. | 
|  | 1358 | * | 
|  | 1359 | *	We move the socket address to kernel space before we call | 
|  | 1360 | *	the protocol layer (having also checked the address is ok). | 
|  | 1361 | */ | 
|  | 1362 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1363 | SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | { | 
|  | 1365 | struct socket *sock; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1366 | struct sockaddr_storage address; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1367 | int err, fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1369 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 1370 | if (sock) { | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1371 | err = move_addr_to_kernel(umyaddr, addrlen, &address); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1372 | if (err >= 0) { | 
|  | 1373 | err = security_socket_bind(sock, | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1374 | (struct sockaddr *)&address, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1375 | addrlen); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1376 | if (!err) | 
|  | 1377 | err = sock->ops->bind(sock, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1378 | (struct sockaddr *) | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1379 | &address, addrlen); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | } | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1381 | fput_light(sock->file, fput_needed); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1382 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | return err; | 
|  | 1384 | } | 
|  | 1385 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | /* | 
|  | 1387 | *	Perform a listen. Basically, we allow the protocol to do anything | 
|  | 1388 | *	necessary for a listen, and if that works, we mark the socket as | 
|  | 1389 | *	ready for listening. | 
|  | 1390 | */ | 
|  | 1391 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1392 | SYSCALL_DEFINE2(listen, int, fd, int, backlog) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | { | 
|  | 1394 | struct socket *sock; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1395 | int err, fput_needed; | 
| Pavel Emelyanov | b8e1f9b | 2007-12-08 00:12:33 -0800 | [diff] [blame] | 1396 | int somaxconn; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1397 |  | 
|  | 1398 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 1399 | if (sock) { | 
| Pavel Emelyanov | 8efa6e9 | 2008-03-31 19:41:14 -0700 | [diff] [blame] | 1400 | somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn; | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1401 | if ((unsigned int)backlog > somaxconn) | 
| Pavel Emelyanov | b8e1f9b | 2007-12-08 00:12:33 -0800 | [diff] [blame] | 1402 | backlog = somaxconn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 |  | 
|  | 1404 | err = security_socket_listen(sock, backlog); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1405 | if (!err) | 
|  | 1406 | err = sock->ops->listen(sock, backlog); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1408 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | } | 
|  | 1410 | return err; | 
|  | 1411 | } | 
|  | 1412 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | /* | 
|  | 1414 | *	For accept, we attempt to create a new socket, set up the link | 
|  | 1415 | *	with the client, wake up the client, then return the new | 
|  | 1416 | *	connected fd. We collect the address of the connector in kernel | 
|  | 1417 | *	space and move it to user at the very end. This is unclean because | 
|  | 1418 | *	we open the socket then return an error. | 
|  | 1419 | * | 
|  | 1420 | *	1003.1g adds the ability to recvmsg() to query connection pending | 
|  | 1421 | *	status to recvmsg. We need to add that support in a way thats | 
|  | 1422 | *	clean when we restucture accept also. | 
|  | 1423 | */ | 
|  | 1424 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1425 | SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr, | 
|  | 1426 | int __user *, upeer_addrlen, int, flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | { | 
|  | 1428 | struct socket *sock, *newsock; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1429 | struct file *newfile; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1430 | int err, len, newfd, fput_needed; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1431 | struct sockaddr_storage address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 |  | 
| Ulrich Drepper | 77d2720 | 2008-07-23 21:29:35 -0700 | [diff] [blame] | 1433 | if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 1434 | return -EINVAL; | 
|  | 1435 |  | 
|  | 1436 | if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) | 
|  | 1437 | flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; | 
|  | 1438 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1439 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | if (!sock) | 
|  | 1441 | goto out; | 
|  | 1442 |  | 
|  | 1443 | err = -ENFILE; | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 1444 | newsock = sock_alloc(); | 
|  | 1445 | if (!newsock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | goto out_put; | 
|  | 1447 |  | 
|  | 1448 | newsock->type = sock->type; | 
|  | 1449 | newsock->ops = sock->ops; | 
|  | 1450 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | /* | 
|  | 1452 | * We don't need try_module_get here, as the listening socket (sock) | 
|  | 1453 | * has the protocol module (sock->ops->owner) held. | 
|  | 1454 | */ | 
|  | 1455 | __module_get(newsock->ops->owner); | 
|  | 1456 |  | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1457 | newfd = get_unused_fd_flags(flags); | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1458 | if (unlikely(newfd < 0)) { | 
|  | 1459 | err = newfd; | 
| David S. Miller | 9a1875e | 2006-04-01 12:48:36 -0800 | [diff] [blame] | 1460 | sock_release(newsock); | 
|  | 1461 | goto out_put; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1462 | } | 
| Linus Torvalds | aab174f | 2012-10-02 20:25:04 -0700 | [diff] [blame] | 1463 | newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name); | 
| Viresh Kumar | b5ffe63 | 2015-08-12 15:59:47 +0530 | [diff] [blame] | 1464 | if (IS_ERR(newfile)) { | 
| Al Viro | 2840763 | 2012-08-17 23:54:15 -0400 | [diff] [blame] | 1465 | err = PTR_ERR(newfile); | 
|  | 1466 | put_unused_fd(newfd); | 
|  | 1467 | sock_release(newsock); | 
|  | 1468 | goto out_put; | 
|  | 1469 | } | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1470 |  | 
| Frank Filz | a79af59 | 2005-09-27 15:23:38 -0700 | [diff] [blame] | 1471 | err = security_socket_accept(sock, newsock); | 
|  | 1472 | if (err) | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1473 | goto out_fd; | 
| Frank Filz | a79af59 | 2005-09-27 15:23:38 -0700 | [diff] [blame] | 1474 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | err = sock->ops->accept(sock, newsock, sock->file->f_flags); | 
|  | 1476 | if (err < 0) | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1477 | goto out_fd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 |  | 
|  | 1479 | if (upeer_sockaddr) { | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1480 | if (newsock->ops->getname(newsock, (struct sockaddr *)&address, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1481 | &len, 2) < 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | err = -ECONNABORTED; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1483 | goto out_fd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | } | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1485 | err = move_addr_to_user(&address, | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1486 | len, upeer_sockaddr, upeer_addrlen); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if (err < 0) | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1488 | goto out_fd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | } | 
|  | 1490 |  | 
|  | 1491 | /* File flags are not inherited via accept() unlike another OSes. */ | 
|  | 1492 |  | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1493 | fd_install(newfd, newfile); | 
|  | 1494 | err = newfd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | out_put: | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1497 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | out: | 
|  | 1499 | return err; | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1500 | out_fd: | 
| David S. Miller | 9606a21 | 2006-04-01 01:00:14 -0800 | [diff] [blame] | 1501 | fput(newfile); | 
| David S. Miller | 39d8c1b | 2006-03-20 17:13:49 -0800 | [diff] [blame] | 1502 | put_unused_fd(newfd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | goto out_put; | 
|  | 1504 | } | 
|  | 1505 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1506 | SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr, | 
|  | 1507 | int __user *, upeer_addrlen) | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 1508 | { | 
| Ulrich Drepper | de11def | 2008-11-19 15:36:14 -0800 | [diff] [blame] | 1509 | return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0); | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 1510 | } | 
|  | 1511 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | /* | 
|  | 1513 | *	Attempt to connect to a socket with the server address.  The address | 
|  | 1514 | *	is in user space so we verify it is OK and move it to kernel space. | 
|  | 1515 | * | 
|  | 1516 | *	For 1003.1g we need to add clean support for a bind to AF_UNSPEC to | 
|  | 1517 | *	break bindings | 
|  | 1518 | * | 
|  | 1519 | *	NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and | 
|  | 1520 | *	other SEQPACKET protocols that take time to connect() as it doesn't | 
|  | 1521 | *	include the -EINPROGRESS status for such sockets. | 
|  | 1522 | */ | 
|  | 1523 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1524 | SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr, | 
|  | 1525 | int, addrlen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | { | 
|  | 1527 | struct socket *sock; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1528 | struct sockaddr_storage address; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1529 | int err, fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1531 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | if (!sock) | 
|  | 1533 | goto out; | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1534 | err = move_addr_to_kernel(uservaddr, addrlen, &address); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | if (err < 0) | 
|  | 1536 | goto out_put; | 
|  | 1537 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1538 | err = | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1539 | security_socket_connect(sock, (struct sockaddr *)&address, addrlen); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | if (err) | 
|  | 1541 | goto out_put; | 
|  | 1542 |  | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1543 | err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | sock->file->f_flags); | 
|  | 1545 | out_put: | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1546 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | out: | 
|  | 1548 | return err; | 
|  | 1549 | } | 
|  | 1550 |  | 
|  | 1551 | /* | 
|  | 1552 | *	Get the local address ('name') of a socket object. Move the obtained | 
|  | 1553 | *	name to user space. | 
|  | 1554 | */ | 
|  | 1555 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1556 | SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr, | 
|  | 1557 | int __user *, usockaddr_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | { | 
|  | 1559 | struct socket *sock; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1560 | struct sockaddr_storage address; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1561 | int len, err, fput_needed; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1562 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1563 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | if (!sock) | 
|  | 1565 | goto out; | 
|  | 1566 |  | 
|  | 1567 | err = security_socket_getsockname(sock); | 
|  | 1568 | if (err) | 
|  | 1569 | goto out_put; | 
|  | 1570 |  | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1571 | err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | if (err) | 
|  | 1573 | goto out_put; | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1574 | err = move_addr_to_user(&address, len, usockaddr, usockaddr_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 |  | 
|  | 1576 | out_put: | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1577 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | out: | 
|  | 1579 | return err; | 
|  | 1580 | } | 
|  | 1581 |  | 
|  | 1582 | /* | 
|  | 1583 | *	Get the remote address ('name') of a socket object. Move the obtained | 
|  | 1584 | *	name to user space. | 
|  | 1585 | */ | 
|  | 1586 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1587 | SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr, | 
|  | 1588 | int __user *, usockaddr_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | { | 
|  | 1590 | struct socket *sock; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1591 | struct sockaddr_storage address; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1592 | int len, err, fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1594 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 1595 | if (sock != NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | err = security_socket_getpeername(sock); | 
|  | 1597 | if (err) { | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1598 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | return err; | 
|  | 1600 | } | 
|  | 1601 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1602 | err = | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1603 | sock->ops->getname(sock, (struct sockaddr *)&address, &len, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1604 | 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | if (!err) | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1606 | err = move_addr_to_user(&address, len, usockaddr, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1607 | usockaddr_len); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1608 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | } | 
|  | 1610 | return err; | 
|  | 1611 | } | 
|  | 1612 |  | 
|  | 1613 | /* | 
|  | 1614 | *	Send a datagram to a given address. We move the address into kernel | 
|  | 1615 | *	space and check the user space data area is readable before invoking | 
|  | 1616 | *	the protocol. | 
|  | 1617 | */ | 
|  | 1618 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1619 | SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len, | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1620 | unsigned int, flags, struct sockaddr __user *, addr, | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1621 | int, addr_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | { | 
|  | 1623 | struct socket *sock; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1624 | struct sockaddr_storage address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | int err; | 
|  | 1626 | struct msghdr msg; | 
|  | 1627 | struct iovec iov; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1628 | int fput_needed; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1629 |  | 
| Al Viro | 602bd0e | 2015-03-21 19:12:32 -0400 | [diff] [blame] | 1630 | err = import_single_range(WRITE, buff, len, &iov, &msg.msg_iter); | 
|  | 1631 | if (unlikely(err)) | 
|  | 1632 | return err; | 
| Pavel Emelyanov | de0fa95 | 2007-11-14 16:01:43 -0800 | [diff] [blame] | 1633 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 1634 | if (!sock) | 
| David S. Miller | 4387ff7 | 2007-02-08 15:06:08 -0800 | [diff] [blame] | 1635 | goto out; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1636 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1637 | msg.msg_name = NULL; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1638 | msg.msg_control = NULL; | 
|  | 1639 | msg.msg_controllen = 0; | 
|  | 1640 | msg.msg_namelen = 0; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1641 | if (addr) { | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1642 | err = move_addr_to_kernel(addr, addr_len, &address); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | if (err < 0) | 
|  | 1644 | goto out_put; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1645 | msg.msg_name = (struct sockaddr *)&address; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1646 | msg.msg_namelen = addr_len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | } | 
|  | 1648 | if (sock->file->f_flags & O_NONBLOCK) | 
|  | 1649 | flags |= MSG_DONTWAIT; | 
|  | 1650 | msg.msg_flags = flags; | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 1651 | err = sock_sendmsg(sock, &msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1653 | out_put: | 
| Pavel Emelyanov | de0fa95 | 2007-11-14 16:01:43 -0800 | [diff] [blame] | 1654 | fput_light(sock->file, fput_needed); | 
| David S. Miller | 4387ff7 | 2007-02-08 15:06:08 -0800 | [diff] [blame] | 1655 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | return err; | 
|  | 1657 | } | 
|  | 1658 |  | 
|  | 1659 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1660 | *	Send a datagram down a socket. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | */ | 
|  | 1662 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1663 | SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len, | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1664 | unsigned int, flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | { | 
|  | 1666 | return sys_sendto(fd, buff, len, flags, NULL, 0); | 
|  | 1667 | } | 
|  | 1668 |  | 
|  | 1669 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1670 | *	Receive a frame from the socket and optionally record the address of the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | *	sender. We verify the buffers are writable and if needed move the | 
|  | 1672 | *	sender address from kernel to user space. | 
|  | 1673 | */ | 
|  | 1674 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1675 | SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size, | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1676 | unsigned int, flags, struct sockaddr __user *, addr, | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 1677 | int __user *, addr_len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | { | 
|  | 1679 | struct socket *sock; | 
|  | 1680 | struct iovec iov; | 
|  | 1681 | struct msghdr msg; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1682 | struct sockaddr_storage address; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1683 | int err, err2; | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1684 | int fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 |  | 
| Al Viro | 602bd0e | 2015-03-21 19:12:32 -0400 | [diff] [blame] | 1686 | err = import_single_range(READ, ubuf, size, &iov, &msg.msg_iter); | 
|  | 1687 | if (unlikely(err)) | 
|  | 1688 | return err; | 
| Pavel Emelyanov | de0fa95 | 2007-11-14 16:01:43 -0800 | [diff] [blame] | 1689 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | if (!sock) | 
| Pavel Emelyanov | de0fa95 | 2007-11-14 16:01:43 -0800 | [diff] [blame] | 1691 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1693 | msg.msg_control = NULL; | 
|  | 1694 | msg.msg_controllen = 0; | 
| Hannes Frederic Sowa | f3d3342 | 2013-11-21 03:14:22 +0100 | [diff] [blame] | 1695 | /* Save some cycles and don't copy the address if not needed */ | 
|  | 1696 | msg.msg_name = addr ? (struct sockaddr *)&address : NULL; | 
|  | 1697 | /* We assume all kernel code knows the size of sockaddr_storage */ | 
|  | 1698 | msg.msg_namelen = 0; | 
| tadeusz.struk@intel.com | 130ed5d | 2015-12-15 10:46:17 -0800 | [diff] [blame] | 1699 | msg.msg_iocb = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | if (sock->file->f_flags & O_NONBLOCK) | 
|  | 1701 | flags |= MSG_DONTWAIT; | 
| Al Viro | 602bd0e | 2015-03-21 19:12:32 -0400 | [diff] [blame] | 1702 | err = sock_recvmsg(sock, &msg, iov_iter_count(&msg.msg_iter), flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1704 | if (err >= 0 && addr != NULL) { | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 1705 | err2 = move_addr_to_user(&address, | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1706 | msg.msg_namelen, addr, addr_len); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1707 | if (err2 < 0) | 
|  | 1708 | err = err2; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | } | 
| Pavel Emelyanov | de0fa95 | 2007-11-14 16:01:43 -0800 | [diff] [blame] | 1710 |  | 
|  | 1711 | fput_light(sock->file, fput_needed); | 
| David S. Miller | 4387ff7 | 2007-02-08 15:06:08 -0800 | [diff] [blame] | 1712 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | return err; | 
|  | 1714 | } | 
|  | 1715 |  | 
|  | 1716 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1717 | *	Receive a datagram from a socket. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | */ | 
|  | 1719 |  | 
| Jan Glauber | b7c0ddf | 2014-04-16 09:32:48 +0200 | [diff] [blame] | 1720 | SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size, | 
|  | 1721 | unsigned int, flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | { | 
|  | 1723 | return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL); | 
|  | 1724 | } | 
|  | 1725 |  | 
|  | 1726 | /* | 
|  | 1727 | *	Set a socket option. Because we don't know the option lengths we have | 
|  | 1728 | *	to pass the user mode parameter for the protocols to sort out. | 
|  | 1729 | */ | 
|  | 1730 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1731 | SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname, | 
|  | 1732 | char __user *, optval, int, optlen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | { | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1734 | int err, fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | struct socket *sock; | 
|  | 1736 |  | 
|  | 1737 | if (optlen < 0) | 
|  | 1738 | return -EINVAL; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1739 |  | 
|  | 1740 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 1741 | if (sock != NULL) { | 
|  | 1742 | err = security_socket_setsockopt(sock, level, optname); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1743 | if (err) | 
|  | 1744 | goto out_put; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 |  | 
|  | 1746 | if (level == SOL_SOCKET) | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1747 | err = | 
|  | 1748 | sock_setsockopt(sock, level, optname, optval, | 
|  | 1749 | optlen); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | else | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1751 | err = | 
|  | 1752 | sock->ops->setsockopt(sock, level, optname, optval, | 
|  | 1753 | optlen); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1754 | out_put: | 
|  | 1755 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | } | 
|  | 1757 | return err; | 
|  | 1758 | } | 
|  | 1759 |  | 
|  | 1760 | /* | 
|  | 1761 | *	Get a socket option. Because we don't know the option lengths we have | 
|  | 1762 | *	to pass a user mode parameter for the protocols to sort out. | 
|  | 1763 | */ | 
|  | 1764 |  | 
| Heiko Carstens | 20f3703 | 2009-01-14 14:14:23 +0100 | [diff] [blame] | 1765 | SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname, | 
|  | 1766 | char __user *, optval, int __user *, optlen) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | { | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1768 | int err, fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | struct socket *sock; | 
|  | 1770 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1771 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 1772 | if (sock != NULL) { | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1773 | err = security_socket_getsockopt(sock, level, optname); | 
|  | 1774 | if (err) | 
|  | 1775 | goto out_put; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 |  | 
|  | 1777 | if (level == SOL_SOCKET) | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1778 | err = | 
|  | 1779 | sock_getsockopt(sock, level, optname, optval, | 
|  | 1780 | optlen); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | else | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1782 | err = | 
|  | 1783 | sock->ops->getsockopt(sock, level, optname, optval, | 
|  | 1784 | optlen); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1785 | out_put: | 
|  | 1786 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | } | 
|  | 1788 | return err; | 
|  | 1789 | } | 
|  | 1790 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | /* | 
|  | 1792 | *	Shutdown a socket. | 
|  | 1793 | */ | 
|  | 1794 |  | 
| Heiko Carstens | 754fe8d | 2009-01-14 14:14:09 +0100 | [diff] [blame] | 1795 | SYSCALL_DEFINE2(shutdown, int, fd, int, how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | { | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1797 | int err, fput_needed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | struct socket *sock; | 
|  | 1799 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1800 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 1801 | if (sock != NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | err = security_socket_shutdown(sock, how); | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1803 | if (!err) | 
|  | 1804 | err = sock->ops->shutdown(sock, how); | 
|  | 1805 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | } | 
|  | 1807 | return err; | 
|  | 1808 | } | 
|  | 1809 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1810 | /* A couple of helpful macros for getting the address of the 32/64 bit | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | * fields which are the same type (int / unsigned) on our platforms. | 
|  | 1812 | */ | 
|  | 1813 | #define COMPAT_MSG(msg, member)	((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member) | 
|  | 1814 | #define COMPAT_NAMELEN(msg)	COMPAT_MSG(msg, msg_namelen) | 
|  | 1815 | #define COMPAT_FLAGS(msg)	COMPAT_MSG(msg, msg_flags) | 
|  | 1816 |  | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1817 | struct used_address { | 
|  | 1818 | struct sockaddr_storage name; | 
|  | 1819 | unsigned int name_len; | 
|  | 1820 | }; | 
|  | 1821 |  | 
| Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 1822 | static int copy_msghdr_from_user(struct msghdr *kmsg, | 
|  | 1823 | struct user_msghdr __user *umsg, | 
|  | 1824 | struct sockaddr __user **save_addr, | 
|  | 1825 | struct iovec **iov) | 
| Dan Carpenter | 1661bf3 | 2013-10-03 00:27:20 +0300 | [diff] [blame] | 1826 | { | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1827 | struct sockaddr __user *uaddr; | 
|  | 1828 | struct iovec __user *uiov; | 
| Al Viro | c0371da | 2014-11-24 10:42:55 -0500 | [diff] [blame] | 1829 | size_t nr_segs; | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1830 | ssize_t err; | 
|  | 1831 |  | 
|  | 1832 | if (!access_ok(VERIFY_READ, umsg, sizeof(*umsg)) || | 
|  | 1833 | __get_user(uaddr, &umsg->msg_name) || | 
|  | 1834 | __get_user(kmsg->msg_namelen, &umsg->msg_namelen) || | 
|  | 1835 | __get_user(uiov, &umsg->msg_iov) || | 
| Al Viro | c0371da | 2014-11-24 10:42:55 -0500 | [diff] [blame] | 1836 | __get_user(nr_segs, &umsg->msg_iovlen) || | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1837 | __get_user(kmsg->msg_control, &umsg->msg_control) || | 
|  | 1838 | __get_user(kmsg->msg_controllen, &umsg->msg_controllen) || | 
|  | 1839 | __get_user(kmsg->msg_flags, &umsg->msg_flags)) | 
| Dan Carpenter | 1661bf3 | 2013-10-03 00:27:20 +0300 | [diff] [blame] | 1840 | return -EFAULT; | 
| Matthew Leach | dbb490b | 2014-03-11 11:58:27 +0000 | [diff] [blame] | 1841 |  | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1842 | if (!uaddr) | 
| Ani Sinha | 6a2a2b3 | 2014-09-08 14:49:59 -0700 | [diff] [blame] | 1843 | kmsg->msg_namelen = 0; | 
|  | 1844 |  | 
| Matthew Leach | dbb490b | 2014-03-11 11:58:27 +0000 | [diff] [blame] | 1845 | if (kmsg->msg_namelen < 0) | 
|  | 1846 | return -EINVAL; | 
|  | 1847 |  | 
| Dan Carpenter | 1661bf3 | 2013-10-03 00:27:20 +0300 | [diff] [blame] | 1848 | if (kmsg->msg_namelen > sizeof(struct sockaddr_storage)) | 
| Dan Carpenter | db31c55 | 2013-11-27 15:40:21 +0300 | [diff] [blame] | 1849 | kmsg->msg_namelen = sizeof(struct sockaddr_storage); | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1850 |  | 
|  | 1851 | if (save_addr) | 
|  | 1852 | *save_addr = uaddr; | 
|  | 1853 |  | 
|  | 1854 | if (uaddr && kmsg->msg_namelen) { | 
|  | 1855 | if (!save_addr) { | 
|  | 1856 | err = move_addr_to_kernel(uaddr, kmsg->msg_namelen, | 
|  | 1857 | kmsg->msg_name); | 
|  | 1858 | if (err < 0) | 
|  | 1859 | return err; | 
|  | 1860 | } | 
|  | 1861 | } else { | 
|  | 1862 | kmsg->msg_name = NULL; | 
|  | 1863 | kmsg->msg_namelen = 0; | 
|  | 1864 | } | 
|  | 1865 |  | 
| Al Viro | c0371da | 2014-11-24 10:42:55 -0500 | [diff] [blame] | 1866 | if (nr_segs > UIO_MAXIOV) | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1867 | return -EMSGSIZE; | 
|  | 1868 |  | 
| tadeusz.struk@intel.com | 0345f93 | 2015-03-19 12:31:25 -0700 | [diff] [blame] | 1869 | kmsg->msg_iocb = NULL; | 
|  | 1870 |  | 
| Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 1871 | return import_iovec(save_addr ? READ : WRITE, uiov, nr_segs, | 
|  | 1872 | UIO_FASTIOV, iov, &kmsg->msg_iter); | 
| Dan Carpenter | 1661bf3 | 2013-10-03 00:27:20 +0300 | [diff] [blame] | 1873 | } | 
|  | 1874 |  | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 1875 | static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg, | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1876 | struct msghdr *msg_sys, unsigned int flags, | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1877 | struct used_address *used_address) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1879 | struct compat_msghdr __user *msg_compat = | 
|  | 1880 | (struct compat_msghdr __user *)msg; | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 1881 | struct sockaddr_storage address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | struct iovec iovstack[UIO_FASTIOV], *iov = iovstack; | 
| Alex Williamson | b9d717a | 2005-09-26 14:28:02 -0700 | [diff] [blame] | 1883 | unsigned char ctl[sizeof(struct cmsghdr) + 20] | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1884 | __attribute__ ((aligned(sizeof(__kernel_size_t)))); | 
|  | 1885 | /* 20 is size of ipv6_pktinfo */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | unsigned char *ctl_buf = ctl; | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 1887 | int ctl_len; | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1888 | ssize_t err; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1889 |  | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1890 | msg_sys->msg_name = &address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 |  | 
| Al Viro | 0844932 | 2014-11-09 22:33:45 -0500 | [diff] [blame] | 1892 | if (MSG_CMSG_COMPAT & flags) | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1893 | err = get_compat_msghdr(msg_sys, msg_compat, NULL, &iov); | 
| Al Viro | 0844932 | 2014-11-09 22:33:45 -0500 | [diff] [blame] | 1894 | else | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 1895 | err = copy_msghdr_from_user(msg_sys, msg, NULL, &iov); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1896 | if (err < 0) | 
| Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 1897 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 |  | 
|  | 1899 | err = -ENOBUFS; | 
|  | 1900 |  | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1901 | if (msg_sys->msg_controllen > INT_MAX) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | goto out_freeiov; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1903 | ctl_len = msg_sys->msg_controllen; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | if ((MSG_CMSG_COMPAT & flags) && ctl_len) { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1905 | err = | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1906 | cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1907 | sizeof(ctl)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | if (err) | 
|  | 1909 | goto out_freeiov; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1910 | ctl_buf = msg_sys->msg_control; | 
|  | 1911 | ctl_len = msg_sys->msg_controllen; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | } else if (ctl_len) { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1913 | if (ctl_len > sizeof(ctl)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1915 | if (ctl_buf == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | goto out_freeiov; | 
|  | 1917 | } | 
|  | 1918 | err = -EFAULT; | 
|  | 1919 | /* | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1920 | * Careful! Before this, msg_sys->msg_control contains a user pointer. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | * Afterwards, it will be a kernel pointer. Thus the compiler-assisted | 
|  | 1922 | * checking falls down on this. | 
|  | 1923 | */ | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 1924 | if (copy_from_user(ctl_buf, | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1925 | (void __user __force *)msg_sys->msg_control, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1926 | ctl_len)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | goto out_freectl; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1928 | msg_sys->msg_control = ctl_buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | } | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1930 | msg_sys->msg_flags = flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 |  | 
|  | 1932 | if (sock->file->f_flags & O_NONBLOCK) | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1933 | msg_sys->msg_flags |= MSG_DONTWAIT; | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1934 | /* | 
|  | 1935 | * If this is sendmmsg() and current destination address is same as | 
|  | 1936 | * previously succeeded address, omit asking LSM's decision. | 
|  | 1937 | * used_address->name_len is initialized to UINT_MAX so that the first | 
|  | 1938 | * destination address never matches. | 
|  | 1939 | */ | 
| Mathieu Desnoyers | bc909d9 | 2011-08-24 19:45:03 -0700 | [diff] [blame] | 1940 | if (used_address && msg_sys->msg_name && | 
|  | 1941 | used_address->name_len == msg_sys->msg_namelen && | 
|  | 1942 | !memcmp(&used_address->name, msg_sys->msg_name, | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1943 | used_address->name_len)) { | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 1944 | err = sock_sendmsg_nosec(sock, msg_sys); | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1945 | goto out_freectl; | 
|  | 1946 | } | 
| Al Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 1947 | err = sock_sendmsg(sock, msg_sys); | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1948 | /* | 
|  | 1949 | * If this is sendmmsg() and sending to current destination address was | 
|  | 1950 | * successful, remember it. | 
|  | 1951 | */ | 
|  | 1952 | if (used_address && err >= 0) { | 
|  | 1953 | used_address->name_len = msg_sys->msg_namelen; | 
| Mathieu Desnoyers | bc909d9 | 2011-08-24 19:45:03 -0700 | [diff] [blame] | 1954 | if (msg_sys->msg_name) | 
|  | 1955 | memcpy(&used_address->name, msg_sys->msg_name, | 
|  | 1956 | used_address->name_len); | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 1957 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 |  | 
|  | 1959 | out_freectl: | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1960 | if (ctl_buf != ctl) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | sock_kfree_s(sock->sk, ctl_buf, ctl_len); | 
|  | 1962 | out_freeiov: | 
| Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 1963 | kfree(iov); | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1964 | return err; | 
|  | 1965 | } | 
|  | 1966 |  | 
|  | 1967 | /* | 
|  | 1968 | *	BSD sendmsg interface | 
|  | 1969 | */ | 
|  | 1970 |  | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 1971 | long __sys_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags) | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1972 | { | 
|  | 1973 | int fput_needed, err; | 
|  | 1974 | struct msghdr msg_sys; | 
| Andy Lutomirski | 1be374a | 2013-05-22 14:07:44 -0700 | [diff] [blame] | 1975 | struct socket *sock; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1976 |  | 
| Andy Lutomirski | 1be374a | 2013-05-22 14:07:44 -0700 | [diff] [blame] | 1977 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1978 | if (!sock) | 
|  | 1979 | goto out; | 
|  | 1980 |  | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 1981 | err = ___sys_sendmsg(sock, msg, &msg_sys, flags, NULL); | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1982 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 1983 | fput_light(sock->file, fput_needed); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 1984 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | return err; | 
|  | 1986 | } | 
|  | 1987 |  | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 1988 | SYSCALL_DEFINE3(sendmsg, int, fd, struct user_msghdr __user *, msg, unsigned int, flags) | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 1989 | { | 
|  | 1990 | if (flags & MSG_CMSG_COMPAT) | 
|  | 1991 | return -EINVAL; | 
|  | 1992 | return __sys_sendmsg(fd, msg, flags); | 
|  | 1993 | } | 
|  | 1994 |  | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 1995 | /* | 
|  | 1996 | *	Linux sendmmsg interface | 
|  | 1997 | */ | 
|  | 1998 |  | 
|  | 1999 | int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen, | 
|  | 2000 | unsigned int flags) | 
|  | 2001 | { | 
|  | 2002 | int fput_needed, err, datagrams; | 
|  | 2003 | struct socket *sock; | 
|  | 2004 | struct mmsghdr __user *entry; | 
|  | 2005 | struct compat_mmsghdr __user *compat_entry; | 
|  | 2006 | struct msghdr msg_sys; | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 2007 | struct used_address used_address; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2008 |  | 
| Anton Blanchard | 98382f4 | 2011-08-04 14:07:39 +0000 | [diff] [blame] | 2009 | if (vlen > UIO_MAXIOV) | 
|  | 2010 | vlen = UIO_MAXIOV; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2011 |  | 
|  | 2012 | datagrams = 0; | 
|  | 2013 |  | 
|  | 2014 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 2015 | if (!sock) | 
|  | 2016 | return err; | 
|  | 2017 |  | 
| Tetsuo Handa | c71d8eb | 2011-08-04 14:07:40 +0000 | [diff] [blame] | 2018 | used_address.name_len = UINT_MAX; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2019 | entry = mmsg; | 
|  | 2020 | compat_entry = (struct compat_mmsghdr __user *)mmsg; | 
| Anton Blanchard | 728ffb8 | 2011-08-04 14:07:38 +0000 | [diff] [blame] | 2021 | err = 0; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2022 |  | 
|  | 2023 | while (datagrams < vlen) { | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2024 | if (MSG_CMSG_COMPAT & flags) { | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2025 | err = ___sys_sendmsg(sock, (struct user_msghdr __user *)compat_entry, | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2026 | &msg_sys, flags, &used_address); | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2027 | if (err < 0) | 
|  | 2028 | break; | 
|  | 2029 | err = __put_user(err, &compat_entry->msg_len); | 
|  | 2030 | ++compat_entry; | 
|  | 2031 | } else { | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2032 | err = ___sys_sendmsg(sock, | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2033 | (struct user_msghdr __user *)entry, | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2034 | &msg_sys, flags, &used_address); | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2035 | if (err < 0) | 
|  | 2036 | break; | 
|  | 2037 | err = put_user(err, &entry->msg_len); | 
|  | 2038 | ++entry; | 
|  | 2039 | } | 
|  | 2040 |  | 
|  | 2041 | if (err) | 
|  | 2042 | break; | 
|  | 2043 | ++datagrams; | 
| Eric Dumazet | a78cb84 | 2016-01-08 08:37:20 -0800 | [diff] [blame] | 2044 | cond_resched(); | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2045 | } | 
|  | 2046 |  | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2047 | fput_light(sock->file, fput_needed); | 
|  | 2048 |  | 
| Anton Blanchard | 728ffb8 | 2011-08-04 14:07:38 +0000 | [diff] [blame] | 2049 | /* We only return an error if no datagrams were able to be sent */ | 
|  | 2050 | if (datagrams != 0) | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2051 | return datagrams; | 
|  | 2052 |  | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2053 | return err; | 
|  | 2054 | } | 
|  | 2055 |  | 
|  | 2056 | SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg, | 
|  | 2057 | unsigned int, vlen, unsigned int, flags) | 
|  | 2058 | { | 
| Andy Lutomirski | 1be374a | 2013-05-22 14:07:44 -0700 | [diff] [blame] | 2059 | if (flags & MSG_CMSG_COMPAT) | 
|  | 2060 | return -EINVAL; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2061 | return __sys_sendmmsg(fd, mmsg, vlen, flags); | 
|  | 2062 | } | 
|  | 2063 |  | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2064 | static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg, | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 2065 | struct msghdr *msg_sys, unsigned int flags, int nosec) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | { | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2067 | struct compat_msghdr __user *msg_compat = | 
|  | 2068 | (struct compat_msghdr __user *)msg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | struct iovec iovstack[UIO_FASTIOV]; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2070 | struct iovec *iov = iovstack; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | unsigned long cmsg_ptr; | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 2072 | int total_len, len; | 
|  | 2073 | ssize_t err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 |  | 
|  | 2075 | /* kernel mode address */ | 
| YOSHIFUJI Hideaki | 230b183 | 2008-07-19 22:35:47 -0700 | [diff] [blame] | 2076 | struct sockaddr_storage addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 |  | 
|  | 2078 | /* user mode address pointers */ | 
|  | 2079 | struct sockaddr __user *uaddr; | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 2080 | int __user *uaddr_len = COMPAT_NAMELEN(msg); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2081 |  | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 2082 | msg_sys->msg_name = &addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 |  | 
| Hannes Frederic Sowa | f3d3342 | 2013-11-21 03:14:22 +0100 | [diff] [blame] | 2084 | if (MSG_CMSG_COMPAT & flags) | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 2085 | err = get_compat_msghdr(msg_sys, msg_compat, &uaddr, &iov); | 
| Hannes Frederic Sowa | f3d3342 | 2013-11-21 03:14:22 +0100 | [diff] [blame] | 2086 | else | 
| Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 2087 | err = copy_msghdr_from_user(msg_sys, msg, &uaddr, &iov); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | if (err < 0) | 
| Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 2089 | return err; | 
|  | 2090 | total_len = iov_iter_count(&msg_sys->msg_iter); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 |  | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2092 | cmsg_ptr = (unsigned long)msg_sys->msg_control; | 
|  | 2093 | msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2094 |  | 
| Hannes Frederic Sowa | f3d3342 | 2013-11-21 03:14:22 +0100 | [diff] [blame] | 2095 | /* We assume all kernel code knows the size of sockaddr_storage */ | 
|  | 2096 | msg_sys->msg_namelen = 0; | 
|  | 2097 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | if (sock->file->f_flags & O_NONBLOCK) | 
|  | 2099 | flags |= MSG_DONTWAIT; | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2100 | err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys, | 
|  | 2101 | total_len, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | if (err < 0) | 
|  | 2103 | goto out_freeiov; | 
|  | 2104 | len = err; | 
|  | 2105 |  | 
|  | 2106 | if (uaddr != NULL) { | 
| Maciej Żenczykowski | 43db362 | 2012-03-11 12:51:50 +0000 | [diff] [blame] | 2107 | err = move_addr_to_user(&addr, | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2108 | msg_sys->msg_namelen, uaddr, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2109 | uaddr_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | if (err < 0) | 
|  | 2111 | goto out_freeiov; | 
|  | 2112 | } | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2113 | err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT), | 
| David S. Miller | 37f7f42 | 2005-09-16 16:51:01 -0700 | [diff] [blame] | 2114 | COMPAT_FLAGS(msg)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | if (err) | 
|  | 2116 | goto out_freeiov; | 
|  | 2117 | if (MSG_CMSG_COMPAT & flags) | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2118 | err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | &msg_compat->msg_controllen); | 
|  | 2120 | else | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2121 | err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | &msg->msg_controllen); | 
|  | 2123 | if (err) | 
|  | 2124 | goto out_freeiov; | 
|  | 2125 | err = len; | 
|  | 2126 |  | 
|  | 2127 | out_freeiov: | 
| Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 2128 | kfree(iov); | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2129 | return err; | 
|  | 2130 | } | 
|  | 2131 |  | 
|  | 2132 | /* | 
|  | 2133 | *	BSD recvmsg interface | 
|  | 2134 | */ | 
|  | 2135 |  | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2136 | long __sys_recvmsg(int fd, struct user_msghdr __user *msg, unsigned flags) | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2137 | { | 
|  | 2138 | int fput_needed, err; | 
|  | 2139 | struct msghdr msg_sys; | 
| Andy Lutomirski | 1be374a | 2013-05-22 14:07:44 -0700 | [diff] [blame] | 2140 | struct socket *sock; | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2141 |  | 
| Andy Lutomirski | 1be374a | 2013-05-22 14:07:44 -0700 | [diff] [blame] | 2142 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2143 | if (!sock) | 
|  | 2144 | goto out; | 
|  | 2145 |  | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2146 | err = ___sys_recvmsg(sock, msg, &msg_sys, flags, 0); | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2147 |  | 
| Benjamin LaHaise | 6cb153c | 2006-03-20 22:27:12 -0800 | [diff] [blame] | 2148 | fput_light(sock->file, fput_needed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | out: | 
|  | 2150 | return err; | 
|  | 2151 | } | 
|  | 2152 |  | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2153 | SYSCALL_DEFINE3(recvmsg, int, fd, struct user_msghdr __user *, msg, | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2154 | unsigned int, flags) | 
|  | 2155 | { | 
|  | 2156 | if (flags & MSG_CMSG_COMPAT) | 
|  | 2157 | return -EINVAL; | 
|  | 2158 | return __sys_recvmsg(fd, msg, flags); | 
|  | 2159 | } | 
|  | 2160 |  | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2161 | /* | 
|  | 2162 | *     Linux recvmmsg interface | 
|  | 2163 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 |  | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2165 | int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen, | 
|  | 2166 | unsigned int flags, struct timespec *timeout) | 
|  | 2167 | { | 
|  | 2168 | int fput_needed, err, datagrams; | 
|  | 2169 | struct socket *sock; | 
|  | 2170 | struct mmsghdr __user *entry; | 
| Jean-Mickael Guerin | d7256d0 | 2009-12-01 08:47:26 +0000 | [diff] [blame] | 2171 | struct compat_mmsghdr __user *compat_entry; | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2172 | struct msghdr msg_sys; | 
|  | 2173 | struct timespec end_time; | 
|  | 2174 |  | 
|  | 2175 | if (timeout && | 
|  | 2176 | poll_select_set_timeout(&end_time, timeout->tv_sec, | 
|  | 2177 | timeout->tv_nsec)) | 
|  | 2178 | return -EINVAL; | 
|  | 2179 |  | 
|  | 2180 | datagrams = 0; | 
|  | 2181 |  | 
|  | 2182 | sock = sockfd_lookup_light(fd, &err, &fput_needed); | 
|  | 2183 | if (!sock) | 
|  | 2184 | return err; | 
|  | 2185 |  | 
|  | 2186 | err = sock_error(sock->sk); | 
|  | 2187 | if (err) | 
|  | 2188 | goto out_put; | 
|  | 2189 |  | 
|  | 2190 | entry = mmsg; | 
| Jean-Mickael Guerin | d7256d0 | 2009-12-01 08:47:26 +0000 | [diff] [blame] | 2191 | compat_entry = (struct compat_mmsghdr __user *)mmsg; | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2192 |  | 
|  | 2193 | while (datagrams < vlen) { | 
|  | 2194 | /* | 
|  | 2195 | * No need to ask LSM for more than the first datagram. | 
|  | 2196 | */ | 
| Jean-Mickael Guerin | d7256d0 | 2009-12-01 08:47:26 +0000 | [diff] [blame] | 2197 | if (MSG_CMSG_COMPAT & flags) { | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2198 | err = ___sys_recvmsg(sock, (struct user_msghdr __user *)compat_entry, | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2199 | &msg_sys, flags & ~MSG_WAITFORONE, | 
|  | 2200 | datagrams); | 
| Jean-Mickael Guerin | d7256d0 | 2009-12-01 08:47:26 +0000 | [diff] [blame] | 2201 | if (err < 0) | 
|  | 2202 | break; | 
|  | 2203 | err = __put_user(err, &compat_entry->msg_len); | 
|  | 2204 | ++compat_entry; | 
|  | 2205 | } else { | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2206 | err = ___sys_recvmsg(sock, | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2207 | (struct user_msghdr __user *)entry, | 
| Andy Lutomirski | a7526eb | 2013-06-05 19:38:26 +0000 | [diff] [blame] | 2208 | &msg_sys, flags & ~MSG_WAITFORONE, | 
|  | 2209 | datagrams); | 
| Jean-Mickael Guerin | d7256d0 | 2009-12-01 08:47:26 +0000 | [diff] [blame] | 2210 | if (err < 0) | 
|  | 2211 | break; | 
|  | 2212 | err = put_user(err, &entry->msg_len); | 
|  | 2213 | ++entry; | 
|  | 2214 | } | 
|  | 2215 |  | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2216 | if (err) | 
|  | 2217 | break; | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2218 | ++datagrams; | 
|  | 2219 |  | 
| Brandon L Black | 71c5c15 | 2010-03-26 16:18:03 +0000 | [diff] [blame] | 2220 | /* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */ | 
|  | 2221 | if (flags & MSG_WAITFORONE) | 
|  | 2222 | flags |= MSG_DONTWAIT; | 
|  | 2223 |  | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2224 | if (timeout) { | 
|  | 2225 | ktime_get_ts(timeout); | 
|  | 2226 | *timeout = timespec_sub(end_time, *timeout); | 
|  | 2227 | if (timeout->tv_sec < 0) { | 
|  | 2228 | timeout->tv_sec = timeout->tv_nsec = 0; | 
|  | 2229 | break; | 
|  | 2230 | } | 
|  | 2231 |  | 
|  | 2232 | /* Timeout, return less than vlen datagrams */ | 
|  | 2233 | if (timeout->tv_nsec == 0 && timeout->tv_sec == 0) | 
|  | 2234 | break; | 
|  | 2235 | } | 
|  | 2236 |  | 
|  | 2237 | /* Out of band data, return right away */ | 
|  | 2238 | if (msg_sys.msg_flags & MSG_OOB) | 
|  | 2239 | break; | 
| Eric Dumazet | a78cb84 | 2016-01-08 08:37:20 -0800 | [diff] [blame] | 2240 | cond_resched(); | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2241 | } | 
|  | 2242 |  | 
|  | 2243 | out_put: | 
|  | 2244 | fput_light(sock->file, fput_needed); | 
|  | 2245 |  | 
|  | 2246 | if (err == 0) | 
|  | 2247 | return datagrams; | 
|  | 2248 |  | 
|  | 2249 | if (datagrams != 0) { | 
|  | 2250 | /* | 
|  | 2251 | * We may return less entries than requested (vlen) if the | 
|  | 2252 | * sock is non block and there aren't enough datagrams... | 
|  | 2253 | */ | 
|  | 2254 | if (err != -EAGAIN) { | 
|  | 2255 | /* | 
|  | 2256 | * ... or  if recvmsg returns an error after we | 
|  | 2257 | * received some datagrams, where we record the | 
|  | 2258 | * error to return on the next call or if the | 
|  | 2259 | * app asks about it using getsockopt(SO_ERROR). | 
|  | 2260 | */ | 
|  | 2261 | sock->sk->sk_err = -err; | 
|  | 2262 | } | 
|  | 2263 |  | 
|  | 2264 | return datagrams; | 
|  | 2265 | } | 
|  | 2266 |  | 
|  | 2267 | return err; | 
|  | 2268 | } | 
|  | 2269 |  | 
|  | 2270 | SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg, | 
|  | 2271 | unsigned int, vlen, unsigned int, flags, | 
|  | 2272 | struct timespec __user *, timeout) | 
|  | 2273 | { | 
|  | 2274 | int datagrams; | 
|  | 2275 | struct timespec timeout_sys; | 
|  | 2276 |  | 
| Andy Lutomirski | 1be374a | 2013-05-22 14:07:44 -0700 | [diff] [blame] | 2277 | if (flags & MSG_CMSG_COMPAT) | 
|  | 2278 | return -EINVAL; | 
|  | 2279 |  | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2280 | if (!timeout) | 
|  | 2281 | return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL); | 
|  | 2282 |  | 
|  | 2283 | if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys))) | 
|  | 2284 | return -EFAULT; | 
|  | 2285 |  | 
|  | 2286 | datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys); | 
|  | 2287 |  | 
|  | 2288 | if (datagrams > 0 && | 
|  | 2289 | copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys))) | 
|  | 2290 | datagrams = -EFAULT; | 
|  | 2291 |  | 
|  | 2292 | return datagrams; | 
|  | 2293 | } | 
|  | 2294 |  | 
|  | 2295 | #ifdef __ARCH_WANT_SYS_SOCKETCALL | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | /* Argument list sizes for sys_socketcall */ | 
|  | 2297 | #define AL(x) ((x) * sizeof(unsigned long)) | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2298 | static const unsigned char nargs[21] = { | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2299 | AL(0), AL(3), AL(3), AL(3), AL(2), AL(3), | 
|  | 2300 | AL(3), AL(3), AL(4), AL(4), AL(4), AL(6), | 
|  | 2301 | AL(6), AL(2), AL(5), AL(5), AL(3), AL(3), | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2302 | AL(4), AL(5), AL(4) | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2303 | }; | 
|  | 2304 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | #undef AL | 
|  | 2306 |  | 
|  | 2307 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2308 | *	System call vectors. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | * | 
|  | 2310 | *	Argument checking cleaned up. Saved 20% in size. | 
|  | 2311 | *  This function doesn't need to set the kernel lock because | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2312 | *  it is set by the callees. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2313 | */ | 
|  | 2314 |  | 
| Heiko Carstens | 3e0fa65 | 2009-01-14 14:14:24 +0100 | [diff] [blame] | 2315 | SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | { | 
| Chen Gang | 2950fa9 | 2013-04-07 16:55:23 +0800 | [diff] [blame] | 2317 | unsigned long a[AUDITSC_ARGS]; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2318 | unsigned long a0, a1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | int err; | 
| Arjan van de Ven | 4737905 | 2009-09-28 12:57:44 -0700 | [diff] [blame] | 2320 | unsigned int len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 |  | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2322 | if (call < 1 || call > SYS_SENDMMSG) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | return -EINVAL; | 
|  | 2324 |  | 
| Arjan van de Ven | 4737905 | 2009-09-28 12:57:44 -0700 | [diff] [blame] | 2325 | len = nargs[call]; | 
|  | 2326 | if (len > sizeof(a)) | 
|  | 2327 | return -EINVAL; | 
|  | 2328 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | /* copy_from_user should be SMP safe. */ | 
| Arjan van de Ven | 4737905 | 2009-09-28 12:57:44 -0700 | [diff] [blame] | 2330 | if (copy_from_user(a, args, len)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | return -EFAULT; | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2332 |  | 
| Chen Gang | 2950fa9 | 2013-04-07 16:55:23 +0800 | [diff] [blame] | 2333 | err = audit_socketcall(nargs[call] / sizeof(unsigned long), a); | 
|  | 2334 | if (err) | 
|  | 2335 | return err; | 
| David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 2336 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2337 | a0 = a[0]; | 
|  | 2338 | a1 = a[1]; | 
|  | 2339 |  | 
|  | 2340 | switch (call) { | 
|  | 2341 | case SYS_SOCKET: | 
|  | 2342 | err = sys_socket(a0, a1, a[2]); | 
|  | 2343 | break; | 
|  | 2344 | case SYS_BIND: | 
|  | 2345 | err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]); | 
|  | 2346 | break; | 
|  | 2347 | case SYS_CONNECT: | 
|  | 2348 | err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]); | 
|  | 2349 | break; | 
|  | 2350 | case SYS_LISTEN: | 
|  | 2351 | err = sys_listen(a0, a1); | 
|  | 2352 | break; | 
|  | 2353 | case SYS_ACCEPT: | 
| Ulrich Drepper | de11def | 2008-11-19 15:36:14 -0800 | [diff] [blame] | 2354 | err = sys_accept4(a0, (struct sockaddr __user *)a1, | 
|  | 2355 | (int __user *)a[2], 0); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2356 | break; | 
|  | 2357 | case SYS_GETSOCKNAME: | 
|  | 2358 | err = | 
|  | 2359 | sys_getsockname(a0, (struct sockaddr __user *)a1, | 
|  | 2360 | (int __user *)a[2]); | 
|  | 2361 | break; | 
|  | 2362 | case SYS_GETPEERNAME: | 
|  | 2363 | err = | 
|  | 2364 | sys_getpeername(a0, (struct sockaddr __user *)a1, | 
|  | 2365 | (int __user *)a[2]); | 
|  | 2366 | break; | 
|  | 2367 | case SYS_SOCKETPAIR: | 
|  | 2368 | err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]); | 
|  | 2369 | break; | 
|  | 2370 | case SYS_SEND: | 
|  | 2371 | err = sys_send(a0, (void __user *)a1, a[2], a[3]); | 
|  | 2372 | break; | 
|  | 2373 | case SYS_SENDTO: | 
|  | 2374 | err = sys_sendto(a0, (void __user *)a1, a[2], a[3], | 
|  | 2375 | (struct sockaddr __user *)a[4], a[5]); | 
|  | 2376 | break; | 
|  | 2377 | case SYS_RECV: | 
|  | 2378 | err = sys_recv(a0, (void __user *)a1, a[2], a[3]); | 
|  | 2379 | break; | 
|  | 2380 | case SYS_RECVFROM: | 
|  | 2381 | err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3], | 
|  | 2382 | (struct sockaddr __user *)a[4], | 
|  | 2383 | (int __user *)a[5]); | 
|  | 2384 | break; | 
|  | 2385 | case SYS_SHUTDOWN: | 
|  | 2386 | err = sys_shutdown(a0, a1); | 
|  | 2387 | break; | 
|  | 2388 | case SYS_SETSOCKOPT: | 
|  | 2389 | err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]); | 
|  | 2390 | break; | 
|  | 2391 | case SYS_GETSOCKOPT: | 
|  | 2392 | err = | 
|  | 2393 | sys_getsockopt(a0, a1, a[2], (char __user *)a[3], | 
|  | 2394 | (int __user *)a[4]); | 
|  | 2395 | break; | 
|  | 2396 | case SYS_SENDMSG: | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2397 | err = sys_sendmsg(a0, (struct user_msghdr __user *)a1, a[2]); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2398 | break; | 
| Anton Blanchard | 228e548 | 2011-05-02 20:21:35 +0000 | [diff] [blame] | 2399 | case SYS_SENDMMSG: | 
|  | 2400 | err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]); | 
|  | 2401 | break; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2402 | case SYS_RECVMSG: | 
| Al Viro | 666547f | 2014-04-06 14:03:05 -0400 | [diff] [blame] | 2403 | err = sys_recvmsg(a0, (struct user_msghdr __user *)a1, a[2]); | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2404 | break; | 
| Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 2405 | case SYS_RECVMMSG: | 
|  | 2406 | err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3], | 
|  | 2407 | (struct timespec __user *)a[4]); | 
|  | 2408 | break; | 
| Ulrich Drepper | de11def | 2008-11-19 15:36:14 -0800 | [diff] [blame] | 2409 | case SYS_ACCEPT4: | 
|  | 2410 | err = sys_accept4(a0, (struct sockaddr __user *)a1, | 
|  | 2411 | (int __user *)a[2], a[3]); | 
| Ulrich Drepper | aaca0bd | 2008-07-23 21:29:20 -0700 | [diff] [blame] | 2412 | break; | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2413 | default: | 
|  | 2414 | err = -EINVAL; | 
|  | 2415 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | } | 
|  | 2417 | return err; | 
|  | 2418 | } | 
|  | 2419 |  | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2420 | #endif				/* __ARCH_WANT_SYS_SOCKETCALL */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2422 | /** | 
|  | 2423 | *	sock_register - add a socket protocol handler | 
|  | 2424 | *	@ops: description of protocol | 
|  | 2425 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | *	This function is called by a protocol handler that wants to | 
|  | 2427 | *	advertise its address family, and have it linked into the | 
| Masanari Iida | e793c0f | 2014-09-04 23:44:36 +0900 | [diff] [blame] | 2428 | *	socket interface. The value ops->family corresponds to the | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2429 | *	socket system call protocol family. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | */ | 
| Stephen Hemminger | f0fd27d | 2006-08-09 21:03:17 -0700 | [diff] [blame] | 2431 | int sock_register(const struct net_proto_family *ops) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2432 | { | 
|  | 2433 | int err; | 
|  | 2434 |  | 
|  | 2435 | if (ops->family >= NPROTO) { | 
| Yang Yingliang | 3410f22 | 2014-02-12 17:09:55 +0800 | [diff] [blame] | 2436 | pr_crit("protocol %d >= NPROTO(%d)\n", ops->family, NPROTO); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | return -ENOBUFS; | 
|  | 2438 | } | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2439 |  | 
|  | 2440 | spin_lock(&net_family_lock); | 
| Eric Dumazet | 190683a | 2010-11-10 10:50:44 +0000 | [diff] [blame] | 2441 | if (rcu_dereference_protected(net_families[ops->family], | 
|  | 2442 | lockdep_is_held(&net_family_lock))) | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2443 | err = -EEXIST; | 
|  | 2444 | else { | 
| Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 2445 | rcu_assign_pointer(net_families[ops->family], ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | err = 0; | 
|  | 2447 | } | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2448 | spin_unlock(&net_family_lock); | 
|  | 2449 |  | 
| Yang Yingliang | 3410f22 | 2014-02-12 17:09:55 +0800 | [diff] [blame] | 2450 | pr_info("NET: Registered protocol family %d\n", ops->family); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | return err; | 
|  | 2452 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2453 | EXPORT_SYMBOL(sock_register); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2455 | /** | 
|  | 2456 | *	sock_unregister - remove a protocol handler | 
|  | 2457 | *	@family: protocol family to remove | 
|  | 2458 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | *	This function is called by a protocol handler that wants to | 
|  | 2460 | *	remove its address family, and have it unlinked from the | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2461 | *	new socket creation. | 
|  | 2462 | * | 
|  | 2463 | *	If protocol handler is a module, then it can use module reference | 
|  | 2464 | *	counts to protect against new references. If protocol handler is not | 
|  | 2465 | *	a module then it needs to provide its own protection in | 
|  | 2466 | *	the ops->create routine. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | */ | 
| Stephen Hemminger | f0fd27d | 2006-08-09 21:03:17 -0700 | [diff] [blame] | 2468 | void sock_unregister(int family) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | { | 
| Stephen Hemminger | f0fd27d | 2006-08-09 21:03:17 -0700 | [diff] [blame] | 2470 | BUG_ON(family < 0 || family >= NPROTO); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 |  | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2472 | spin_lock(&net_family_lock); | 
| Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 2473 | RCU_INIT_POINTER(net_families[family], NULL); | 
| Stephen Hemminger | 55737fd | 2006-09-01 00:23:39 -0700 | [diff] [blame] | 2474 | spin_unlock(&net_family_lock); | 
|  | 2475 |  | 
|  | 2476 | synchronize_rcu(); | 
|  | 2477 |  | 
| Yang Yingliang | 3410f22 | 2014-02-12 17:09:55 +0800 | [diff] [blame] | 2478 | pr_info("NET: Unregistered protocol family %d\n", family); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2479 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2480 | EXPORT_SYMBOL(sock_unregister); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2481 |  | 
| Andi Kleen | 77d76ea | 2005-12-22 12:43:42 -0800 | [diff] [blame] | 2482 | static int __init sock_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2483 | { | 
| Nick Piggin | b3e19d9 | 2011-01-07 17:50:11 +1100 | [diff] [blame] | 2484 | int err; | 
| Eric W. Biederman | 2ca794e | 2012-04-19 13:20:32 +0000 | [diff] [blame] | 2485 | /* | 
|  | 2486 | *      Initialize the network sysctl infrastructure. | 
|  | 2487 | */ | 
|  | 2488 | err = net_sysctl_init(); | 
|  | 2489 | if (err) | 
|  | 2490 | goto out; | 
| Nick Piggin | b3e19d9 | 2011-01-07 17:50:11 +1100 | [diff] [blame] | 2491 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2493 | *      Initialize skbuff SLAB cache | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | */ | 
|  | 2495 | skb_init(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 |  | 
|  | 2497 | /* | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2498 | *      Initialize the protocols module. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | */ | 
|  | 2500 |  | 
|  | 2501 | init_inodecache(); | 
| Nick Piggin | b3e19d9 | 2011-01-07 17:50:11 +1100 | [diff] [blame] | 2502 |  | 
|  | 2503 | err = register_filesystem(&sock_fs_type); | 
|  | 2504 | if (err) | 
|  | 2505 | goto out_fs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | sock_mnt = kern_mount(&sock_fs_type); | 
| Nick Piggin | b3e19d9 | 2011-01-07 17:50:11 +1100 | [diff] [blame] | 2507 | if (IS_ERR(sock_mnt)) { | 
|  | 2508 | err = PTR_ERR(sock_mnt); | 
|  | 2509 | goto out_mount; | 
|  | 2510 | } | 
| Andi Kleen | 77d76ea | 2005-12-22 12:43:42 -0800 | [diff] [blame] | 2511 |  | 
|  | 2512 | /* The real protocol initialization is performed in later initcalls. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | */ | 
|  | 2514 |  | 
|  | 2515 | #ifdef CONFIG_NETFILTER | 
| Pablo Neira Ayuso | 6d11cfd | 2013-05-22 22:42:36 +0000 | [diff] [blame] | 2516 | err = netfilter_init(); | 
|  | 2517 | if (err) | 
|  | 2518 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | #endif | 
| David S. Miller | cbeb321 | 2005-12-22 12:58:55 -0800 | [diff] [blame] | 2520 |  | 
| Daniel Borkmann | 408eccc | 2014-04-01 16:20:23 +0200 | [diff] [blame] | 2521 | ptp_classifier_init(); | 
| Richard Cochran | c1f19b5 | 2010-07-17 08:49:36 +0000 | [diff] [blame] | 2522 |  | 
| Nick Piggin | b3e19d9 | 2011-01-07 17:50:11 +1100 | [diff] [blame] | 2523 | out: | 
|  | 2524 | return err; | 
|  | 2525 |  | 
|  | 2526 | out_mount: | 
|  | 2527 | unregister_filesystem(&sock_fs_type); | 
|  | 2528 | out_fs: | 
|  | 2529 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | } | 
|  | 2531 |  | 
| Andi Kleen | 77d76ea | 2005-12-22 12:43:42 -0800 | [diff] [blame] | 2532 | core_initcall(sock_init);	/* early initcall */ | 
|  | 2533 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | #ifdef CONFIG_PROC_FS | 
|  | 2535 | void socket_seq_show(struct seq_file *seq) | 
|  | 2536 | { | 
|  | 2537 | int cpu; | 
|  | 2538 | int counter = 0; | 
|  | 2539 |  | 
| KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 2540 | for_each_possible_cpu(cpu) | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2541 | counter += per_cpu(sockets_in_use, cpu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 |  | 
|  | 2543 | /* It can be negative, by the way. 8) */ | 
|  | 2544 | if (counter < 0) | 
|  | 2545 | counter = 0; | 
|  | 2546 |  | 
|  | 2547 | seq_printf(seq, "sockets: used %d\n", counter); | 
|  | 2548 | } | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 2549 | #endif				/* CONFIG_PROC_FS */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2550 |  | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 2551 | #ifdef CONFIG_COMPAT | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2552 | static int do_siocgstamp(struct net *net, struct socket *sock, | 
| H. Peter Anvin | 644595f | 2012-02-19 17:51:59 -0800 | [diff] [blame] | 2553 | unsigned int cmd, void __user *up) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2554 | { | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2555 | mm_segment_t old_fs = get_fs(); | 
|  | 2556 | struct timeval ktv; | 
|  | 2557 | int err; | 
|  | 2558 |  | 
|  | 2559 | set_fs(KERNEL_DS); | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2560 | err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2561 | set_fs(old_fs); | 
| H. Peter Anvin | 644595f | 2012-02-19 17:51:59 -0800 | [diff] [blame] | 2562 | if (!err) | 
| Mikulas Patocka | ed6fe9d | 2012-09-01 12:34:07 -0400 | [diff] [blame] | 2563 | err = compat_put_timeval(&ktv, up); | 
| H. Peter Anvin | 644595f | 2012-02-19 17:51:59 -0800 | [diff] [blame] | 2564 |  | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2565 | return err; | 
|  | 2566 | } | 
|  | 2567 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2568 | static int do_siocgstampns(struct net *net, struct socket *sock, | 
| H. Peter Anvin | 644595f | 2012-02-19 17:51:59 -0800 | [diff] [blame] | 2569 | unsigned int cmd, void __user *up) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2570 | { | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2571 | mm_segment_t old_fs = get_fs(); | 
|  | 2572 | struct timespec kts; | 
|  | 2573 | int err; | 
|  | 2574 |  | 
|  | 2575 | set_fs(KERNEL_DS); | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2576 | err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2577 | set_fs(old_fs); | 
| H. Peter Anvin | 644595f | 2012-02-19 17:51:59 -0800 | [diff] [blame] | 2578 | if (!err) | 
| Mikulas Patocka | ed6fe9d | 2012-09-01 12:34:07 -0400 | [diff] [blame] | 2579 | err = compat_put_timespec(&kts, up); | 
| H. Peter Anvin | 644595f | 2012-02-19 17:51:59 -0800 | [diff] [blame] | 2580 |  | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2581 | return err; | 
|  | 2582 | } | 
|  | 2583 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2584 | static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2585 | { | 
|  | 2586 | struct ifreq __user *uifr; | 
|  | 2587 | int err; | 
|  | 2588 |  | 
|  | 2589 | uifr = compat_alloc_user_space(sizeof(struct ifreq)); | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2590 | if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2591 | return -EFAULT; | 
|  | 2592 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2593 | err = dev_ioctl(net, SIOCGIFNAME, uifr); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2594 | if (err) | 
|  | 2595 | return err; | 
|  | 2596 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2597 | if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2598 | return -EFAULT; | 
|  | 2599 |  | 
|  | 2600 | return 0; | 
|  | 2601 | } | 
|  | 2602 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2603 | static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2604 | { | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2605 | struct compat_ifconf ifc32; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2606 | struct ifconf ifc; | 
|  | 2607 | struct ifconf __user *uifc; | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2608 | struct compat_ifreq __user *ifr32; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2609 | struct ifreq __user *ifr; | 
|  | 2610 | unsigned int i, j; | 
|  | 2611 | int err; | 
|  | 2612 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2613 | if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2614 | return -EFAULT; | 
|  | 2615 |  | 
| Mathias Krause | 43da5f2 | 2012-08-15 11:31:57 +0000 | [diff] [blame] | 2616 | memset(&ifc, 0, sizeof(ifc)); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2617 | if (ifc32.ifcbuf == 0) { | 
|  | 2618 | ifc32.ifc_len = 0; | 
|  | 2619 | ifc.ifc_len = 0; | 
|  | 2620 | ifc.ifc_req = NULL; | 
|  | 2621 | uifc = compat_alloc_user_space(sizeof(struct ifconf)); | 
|  | 2622 | } else { | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2623 | size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) * | 
|  | 2624 | sizeof(struct ifreq); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2625 | uifc = compat_alloc_user_space(sizeof(struct ifconf) + len); | 
|  | 2626 | ifc.ifc_len = len; | 
|  | 2627 | ifr = ifc.ifc_req = (void __user *)(uifc + 1); | 
|  | 2628 | ifr32 = compat_ptr(ifc32.ifcbuf); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2629 | for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) { | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2630 | if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2631 | return -EFAULT; | 
|  | 2632 | ifr++; | 
|  | 2633 | ifr32++; | 
|  | 2634 | } | 
|  | 2635 | } | 
|  | 2636 | if (copy_to_user(uifc, &ifc, sizeof(struct ifconf))) | 
|  | 2637 | return -EFAULT; | 
|  | 2638 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2639 | err = dev_ioctl(net, SIOCGIFCONF, uifc); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2640 | if (err) | 
|  | 2641 | return err; | 
|  | 2642 |  | 
|  | 2643 | if (copy_from_user(&ifc, uifc, sizeof(struct ifconf))) | 
|  | 2644 | return -EFAULT; | 
|  | 2645 |  | 
|  | 2646 | ifr = ifc.ifc_req; | 
|  | 2647 | ifr32 = compat_ptr(ifc32.ifcbuf); | 
|  | 2648 | for (i = 0, j = 0; | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2649 | i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len; | 
|  | 2650 | i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) { | 
|  | 2651 | if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2652 | return -EFAULT; | 
|  | 2653 | ifr32++; | 
|  | 2654 | ifr++; | 
|  | 2655 | } | 
|  | 2656 |  | 
|  | 2657 | if (ifc32.ifcbuf == 0) { | 
|  | 2658 | /* Translate from 64-bit structure multiple to | 
|  | 2659 | * a 32-bit one. | 
|  | 2660 | */ | 
|  | 2661 | i = ifc.ifc_len; | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2662 | i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq)); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2663 | ifc32.ifc_len = i; | 
|  | 2664 | } else { | 
|  | 2665 | ifc32.ifc_len = i; | 
|  | 2666 | } | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2667 | if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2668 | return -EFAULT; | 
|  | 2669 |  | 
|  | 2670 | return 0; | 
|  | 2671 | } | 
|  | 2672 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2673 | static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2674 | { | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2675 | struct compat_ethtool_rxnfc __user *compat_rxnfc; | 
|  | 2676 | bool convert_in = false, convert_out = false; | 
|  | 2677 | size_t buf_size = ALIGN(sizeof(struct ifreq), 8); | 
|  | 2678 | struct ethtool_rxnfc __user *rxnfc; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2679 | struct ifreq __user *ifr; | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2680 | u32 rule_cnt = 0, actual_rule_cnt; | 
|  | 2681 | u32 ethcmd; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2682 | u32 data; | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2683 | int ret; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2684 |  | 
|  | 2685 | if (get_user(data, &ifr32->ifr_ifru.ifru_data)) | 
|  | 2686 | return -EFAULT; | 
|  | 2687 |  | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2688 | compat_rxnfc = compat_ptr(data); | 
|  | 2689 |  | 
|  | 2690 | if (get_user(ethcmd, &compat_rxnfc->cmd)) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2691 | return -EFAULT; | 
|  | 2692 |  | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2693 | /* Most ethtool structures are defined without padding. | 
|  | 2694 | * Unfortunately struct ethtool_rxnfc is an exception. | 
|  | 2695 | */ | 
|  | 2696 | switch (ethcmd) { | 
|  | 2697 | default: | 
|  | 2698 | break; | 
|  | 2699 | case ETHTOOL_GRXCLSRLALL: | 
|  | 2700 | /* Buffer size is variable */ | 
|  | 2701 | if (get_user(rule_cnt, &compat_rxnfc->rule_cnt)) | 
|  | 2702 | return -EFAULT; | 
|  | 2703 | if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32)) | 
|  | 2704 | return -ENOMEM; | 
|  | 2705 | buf_size += rule_cnt * sizeof(u32); | 
|  | 2706 | /* fall through */ | 
|  | 2707 | case ETHTOOL_GRXRINGS: | 
|  | 2708 | case ETHTOOL_GRXCLSRLCNT: | 
|  | 2709 | case ETHTOOL_GRXCLSRULE: | 
| Ben Hutchings | 55664f3 | 2012-01-03 12:04:51 +0000 | [diff] [blame] | 2710 | case ETHTOOL_SRXCLSRLINS: | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2711 | convert_out = true; | 
|  | 2712 | /* fall through */ | 
|  | 2713 | case ETHTOOL_SRXCLSRLDEL: | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2714 | buf_size += sizeof(struct ethtool_rxnfc); | 
|  | 2715 | convert_in = true; | 
|  | 2716 | break; | 
|  | 2717 | } | 
|  | 2718 |  | 
|  | 2719 | ifr = compat_alloc_user_space(buf_size); | 
| Stephen Hemminger | 954b124 | 2013-02-11 06:22:28 +0000 | [diff] [blame] | 2720 | rxnfc = (void __user *)ifr + ALIGN(sizeof(struct ifreq), 8); | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2721 |  | 
|  | 2722 | if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ)) | 
|  | 2723 | return -EFAULT; | 
|  | 2724 |  | 
|  | 2725 | if (put_user(convert_in ? rxnfc : compat_ptr(data), | 
|  | 2726 | &ifr->ifr_ifru.ifru_data)) | 
|  | 2727 | return -EFAULT; | 
|  | 2728 |  | 
|  | 2729 | if (convert_in) { | 
| Alexander Duyck | 127fe53 | 2011-04-08 18:01:59 +0000 | [diff] [blame] | 2730 | /* We expect there to be holes between fs.m_ext and | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2731 | * fs.ring_cookie and at the end of fs, but nowhere else. | 
|  | 2732 | */ | 
| Alexander Duyck | 127fe53 | 2011-04-08 18:01:59 +0000 | [diff] [blame] | 2733 | BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) + | 
|  | 2734 | sizeof(compat_rxnfc->fs.m_ext) != | 
|  | 2735 | offsetof(struct ethtool_rxnfc, fs.m_ext) + | 
|  | 2736 | sizeof(rxnfc->fs.m_ext)); | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2737 | BUILD_BUG_ON( | 
|  | 2738 | offsetof(struct compat_ethtool_rxnfc, fs.location) - | 
|  | 2739 | offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) != | 
|  | 2740 | offsetof(struct ethtool_rxnfc, fs.location) - | 
|  | 2741 | offsetof(struct ethtool_rxnfc, fs.ring_cookie)); | 
|  | 2742 |  | 
|  | 2743 | if (copy_in_user(rxnfc, compat_rxnfc, | 
| Stephen Hemminger | 954b124 | 2013-02-11 06:22:28 +0000 | [diff] [blame] | 2744 | (void __user *)(&rxnfc->fs.m_ext + 1) - | 
|  | 2745 | (void __user *)rxnfc) || | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2746 | copy_in_user(&rxnfc->fs.ring_cookie, | 
|  | 2747 | &compat_rxnfc->fs.ring_cookie, | 
| Stephen Hemminger | 954b124 | 2013-02-11 06:22:28 +0000 | [diff] [blame] | 2748 | (void __user *)(&rxnfc->fs.location + 1) - | 
|  | 2749 | (void __user *)&rxnfc->fs.ring_cookie) || | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2750 | copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt, | 
|  | 2751 | sizeof(rxnfc->rule_cnt))) | 
|  | 2752 | return -EFAULT; | 
|  | 2753 | } | 
|  | 2754 |  | 
|  | 2755 | ret = dev_ioctl(net, SIOCETHTOOL, ifr); | 
|  | 2756 | if (ret) | 
|  | 2757 | return ret; | 
|  | 2758 |  | 
|  | 2759 | if (convert_out) { | 
|  | 2760 | if (copy_in_user(compat_rxnfc, rxnfc, | 
| Stephen Hemminger | 954b124 | 2013-02-11 06:22:28 +0000 | [diff] [blame] | 2761 | (const void __user *)(&rxnfc->fs.m_ext + 1) - | 
|  | 2762 | (const void __user *)rxnfc) || | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2763 | copy_in_user(&compat_rxnfc->fs.ring_cookie, | 
|  | 2764 | &rxnfc->fs.ring_cookie, | 
| Stephen Hemminger | 954b124 | 2013-02-11 06:22:28 +0000 | [diff] [blame] | 2765 | (const void __user *)(&rxnfc->fs.location + 1) - | 
|  | 2766 | (const void __user *)&rxnfc->fs.ring_cookie) || | 
| Ben Hutchings | 3a7da39 | 2011-03-17 07:34:32 +0000 | [diff] [blame] | 2767 | copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt, | 
|  | 2768 | sizeof(rxnfc->rule_cnt))) | 
|  | 2769 | return -EFAULT; | 
|  | 2770 |  | 
|  | 2771 | if (ethcmd == ETHTOOL_GRXCLSRLALL) { | 
|  | 2772 | /* As an optimisation, we only copy the actual | 
|  | 2773 | * number of rules that the underlying | 
|  | 2774 | * function returned.  Since Mallory might | 
|  | 2775 | * change the rule count in user memory, we | 
|  | 2776 | * check that it is less than the rule count | 
|  | 2777 | * originally given (as the user buffer size), | 
|  | 2778 | * which has been range-checked. | 
|  | 2779 | */ | 
|  | 2780 | if (get_user(actual_rule_cnt, &rxnfc->rule_cnt)) | 
|  | 2781 | return -EFAULT; | 
|  | 2782 | if (actual_rule_cnt < rule_cnt) | 
|  | 2783 | rule_cnt = actual_rule_cnt; | 
|  | 2784 | if (copy_in_user(&compat_rxnfc->rule_locs[0], | 
|  | 2785 | &rxnfc->rule_locs[0], | 
|  | 2786 | rule_cnt * sizeof(u32))) | 
|  | 2787 | return -EFAULT; | 
|  | 2788 | } | 
|  | 2789 | } | 
|  | 2790 |  | 
|  | 2791 | return 0; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2792 | } | 
|  | 2793 |  | 
| Arnd Bergmann | 7a50a24 | 2009-11-08 20:57:03 -0800 | [diff] [blame] | 2794 | static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32) | 
|  | 2795 | { | 
|  | 2796 | void __user *uptr; | 
|  | 2797 | compat_uptr_t uptr32; | 
|  | 2798 | struct ifreq __user *uifr; | 
|  | 2799 |  | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2800 | uifr = compat_alloc_user_space(sizeof(*uifr)); | 
| Arnd Bergmann | 7a50a24 | 2009-11-08 20:57:03 -0800 | [diff] [blame] | 2801 | if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq))) | 
|  | 2802 | return -EFAULT; | 
|  | 2803 |  | 
|  | 2804 | if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu)) | 
|  | 2805 | return -EFAULT; | 
|  | 2806 |  | 
|  | 2807 | uptr = compat_ptr(uptr32); | 
|  | 2808 |  | 
|  | 2809 | if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc)) | 
|  | 2810 | return -EFAULT; | 
|  | 2811 |  | 
|  | 2812 | return dev_ioctl(net, SIOCWANDEV, uifr); | 
|  | 2813 | } | 
|  | 2814 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2815 | static int bond_ioctl(struct net *net, unsigned int cmd, | 
|  | 2816 | struct compat_ifreq __user *ifr32) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2817 | { | 
|  | 2818 | struct ifreq kifr; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2819 | mm_segment_t old_fs; | 
|  | 2820 | int err; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2821 |  | 
|  | 2822 | switch (cmd) { | 
|  | 2823 | case SIOCBONDENSLAVE: | 
|  | 2824 | case SIOCBONDRELEASE: | 
|  | 2825 | case SIOCBONDSETHWADDR: | 
|  | 2826 | case SIOCBONDCHANGEACTIVE: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2827 | if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2828 | return -EFAULT; | 
|  | 2829 |  | 
|  | 2830 | old_fs = get_fs(); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2831 | set_fs(KERNEL_DS); | 
| stephen hemminger | c3f52ae | 2011-02-23 09:06:48 +0000 | [diff] [blame] | 2832 | err = dev_ioctl(net, cmd, | 
|  | 2833 | (struct ifreq __user __force *) &kifr); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2834 | set_fs(old_fs); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2835 |  | 
|  | 2836 | return err; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2837 | default: | 
| Linus Torvalds | 07d106d | 2012-01-05 15:40:12 -0800 | [diff] [blame] | 2838 | return -ENOIOCTLCMD; | 
| Joe Perches | ccbd6a5 | 2010-05-14 10:58:26 +0000 | [diff] [blame] | 2839 | } | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2840 | } | 
|  | 2841 |  | 
| Ben Hutchings | 590d469 | 2013-11-18 17:04:13 +0000 | [diff] [blame] | 2842 | /* Handle ioctls that use ifreq::ifr_data and just need struct ifreq converted */ | 
|  | 2843 | static int compat_ifr_data_ioctl(struct net *net, unsigned int cmd, | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2844 | struct compat_ifreq __user *u_ifreq32) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2845 | { | 
|  | 2846 | struct ifreq __user *u_ifreq64; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2847 | char tmp_buf[IFNAMSIZ]; | 
|  | 2848 | void __user *data64; | 
|  | 2849 | u32 data32; | 
|  | 2850 |  | 
|  | 2851 | if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]), | 
|  | 2852 | IFNAMSIZ)) | 
|  | 2853 | return -EFAULT; | 
| Ben Hutchings | 417c352 | 2013-11-18 17:04:58 +0000 | [diff] [blame] | 2854 | if (get_user(data32, &u_ifreq32->ifr_ifru.ifru_data)) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2855 | return -EFAULT; | 
|  | 2856 | data64 = compat_ptr(data32); | 
|  | 2857 |  | 
|  | 2858 | u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64)); | 
|  | 2859 |  | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2860 | if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0], | 
|  | 2861 | IFNAMSIZ)) | 
|  | 2862 | return -EFAULT; | 
| Ben Hutchings | 417c352 | 2013-11-18 17:04:58 +0000 | [diff] [blame] | 2863 | if (put_user(data64, &u_ifreq64->ifr_ifru.ifru_data)) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2864 | return -EFAULT; | 
|  | 2865 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2866 | return dev_ioctl(net, cmd, u_ifreq64); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2867 | } | 
|  | 2868 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2869 | static int dev_ifsioc(struct net *net, struct socket *sock, | 
|  | 2870 | unsigned int cmd, struct compat_ifreq __user *uifr32) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2871 | { | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2872 | struct ifreq __user *uifr; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2873 | int err; | 
|  | 2874 |  | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2875 | uifr = compat_alloc_user_space(sizeof(*uifr)); | 
|  | 2876 | if (copy_in_user(uifr, uifr32, sizeof(*uifr32))) | 
|  | 2877 | return -EFAULT; | 
|  | 2878 |  | 
|  | 2879 | err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr); | 
|  | 2880 |  | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2881 | if (!err) { | 
|  | 2882 | switch (cmd) { | 
|  | 2883 | case SIOCGIFFLAGS: | 
|  | 2884 | case SIOCGIFMETRIC: | 
|  | 2885 | case SIOCGIFMTU: | 
|  | 2886 | case SIOCGIFMEM: | 
|  | 2887 | case SIOCGIFHWADDR: | 
|  | 2888 | case SIOCGIFINDEX: | 
|  | 2889 | case SIOCGIFADDR: | 
|  | 2890 | case SIOCGIFBRDADDR: | 
|  | 2891 | case SIOCGIFDSTADDR: | 
|  | 2892 | case SIOCGIFNETMASK: | 
| Arnd Bergmann | fab2532 | 2009-11-08 20:56:21 -0800 | [diff] [blame] | 2893 | case SIOCGIFPFLAGS: | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2894 | case SIOCGIFTXQLEN: | 
| Arnd Bergmann | fab2532 | 2009-11-08 20:56:21 -0800 | [diff] [blame] | 2895 | case SIOCGMIIPHY: | 
|  | 2896 | case SIOCGMIIREG: | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2897 | if (copy_in_user(uifr32, uifr, sizeof(*uifr32))) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2898 | err = -EFAULT; | 
|  | 2899 | break; | 
|  | 2900 | } | 
|  | 2901 | } | 
|  | 2902 | return err; | 
|  | 2903 | } | 
|  | 2904 |  | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2905 | static int compat_sioc_ifmap(struct net *net, unsigned int cmd, | 
|  | 2906 | struct compat_ifreq __user *uifr32) | 
|  | 2907 | { | 
|  | 2908 | struct ifreq ifr; | 
|  | 2909 | struct compat_ifmap __user *uifmap32; | 
|  | 2910 | mm_segment_t old_fs; | 
|  | 2911 | int err; | 
|  | 2912 |  | 
|  | 2913 | uifmap32 = &uifr32->ifr_ifru.ifru_map; | 
|  | 2914 | err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name)); | 
| Mathieu Desnoyers | 3ddc5b4 | 2013-09-11 14:23:18 -0700 | [diff] [blame] | 2915 | err |= get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start); | 
|  | 2916 | err |= get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end); | 
|  | 2917 | err |= get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr); | 
|  | 2918 | err |= get_user(ifr.ifr_map.irq, &uifmap32->irq); | 
|  | 2919 | err |= get_user(ifr.ifr_map.dma, &uifmap32->dma); | 
|  | 2920 | err |= get_user(ifr.ifr_map.port, &uifmap32->port); | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2921 | if (err) | 
|  | 2922 | return -EFAULT; | 
|  | 2923 |  | 
|  | 2924 | old_fs = get_fs(); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2925 | set_fs(KERNEL_DS); | 
| stephen hemminger | c3f52ae | 2011-02-23 09:06:48 +0000 | [diff] [blame] | 2926 | err = dev_ioctl(net, cmd, (void  __user __force *)&ifr); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2927 | set_fs(old_fs); | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2928 |  | 
|  | 2929 | if (cmd == SIOCGIFMAP && !err) { | 
|  | 2930 | err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name)); | 
| Mathieu Desnoyers | 3ddc5b4 | 2013-09-11 14:23:18 -0700 | [diff] [blame] | 2931 | err |= put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start); | 
|  | 2932 | err |= put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end); | 
|  | 2933 | err |= put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr); | 
|  | 2934 | err |= put_user(ifr.ifr_map.irq, &uifmap32->irq); | 
|  | 2935 | err |= put_user(ifr.ifr_map.dma, &uifmap32->dma); | 
|  | 2936 | err |= put_user(ifr.ifr_map.port, &uifmap32->port); | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 2937 | if (err) | 
|  | 2938 | err = -EFAULT; | 
|  | 2939 | } | 
|  | 2940 | return err; | 
|  | 2941 | } | 
|  | 2942 |  | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2943 | struct rtentry32 { | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2944 | u32		rt_pad1; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2945 | struct sockaddr rt_dst;         /* target address               */ | 
|  | 2946 | struct sockaddr rt_gateway;     /* gateway addr (RTF_GATEWAY)   */ | 
|  | 2947 | struct sockaddr rt_genmask;     /* target network mask (IP)     */ | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2948 | unsigned short	rt_flags; | 
|  | 2949 | short		rt_pad2; | 
|  | 2950 | u32		rt_pad3; | 
|  | 2951 | unsigned char	rt_tos; | 
|  | 2952 | unsigned char	rt_class; | 
|  | 2953 | short		rt_pad4; | 
|  | 2954 | short		rt_metric;      /* +1 for binary compatibility! */ | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2955 | /* char * */ u32 rt_dev;        /* forcing the device at add    */ | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2956 | u32		rt_mtu;         /* per route MTU/Window         */ | 
|  | 2957 | u32		rt_window;      /* Window clamping              */ | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2958 | unsigned short  rt_irtt;        /* Initial RTT                  */ | 
|  | 2959 | }; | 
|  | 2960 |  | 
|  | 2961 | struct in6_rtmsg32 { | 
|  | 2962 | struct in6_addr		rtmsg_dst; | 
|  | 2963 | struct in6_addr		rtmsg_src; | 
|  | 2964 | struct in6_addr		rtmsg_gateway; | 
|  | 2965 | u32			rtmsg_type; | 
|  | 2966 | u16			rtmsg_dst_len; | 
|  | 2967 | u16			rtmsg_src_len; | 
|  | 2968 | u32			rtmsg_metric; | 
|  | 2969 | u32			rtmsg_info; | 
|  | 2970 | u32			rtmsg_flags; | 
|  | 2971 | s32			rtmsg_ifindex; | 
|  | 2972 | }; | 
|  | 2973 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2974 | static int routing_ioctl(struct net *net, struct socket *sock, | 
|  | 2975 | unsigned int cmd, void __user *argp) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2976 | { | 
|  | 2977 | int ret; | 
|  | 2978 | void *r = NULL; | 
|  | 2979 | struct in6_rtmsg r6; | 
|  | 2980 | struct rtentry r4; | 
|  | 2981 | char devname[16]; | 
|  | 2982 | u32 rtdev; | 
|  | 2983 | mm_segment_t old_fs = get_fs(); | 
|  | 2984 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2985 | if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */ | 
|  | 2986 | struct in6_rtmsg32 __user *ur6 = argp; | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 2987 | ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst), | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2988 | 3 * sizeof(struct in6_addr)); | 
| Mathieu Desnoyers | 3ddc5b4 | 2013-09-11 14:23:18 -0700 | [diff] [blame] | 2989 | ret |= get_user(r6.rtmsg_type, &(ur6->rtmsg_type)); | 
|  | 2990 | ret |= get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len)); | 
|  | 2991 | ret |= get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len)); | 
|  | 2992 | ret |= get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric)); | 
|  | 2993 | ret |= get_user(r6.rtmsg_info, &(ur6->rtmsg_info)); | 
|  | 2994 | ret |= get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags)); | 
|  | 2995 | ret |= get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex)); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 2996 |  | 
|  | 2997 | r = (void *) &r6; | 
|  | 2998 | } else { /* ipv4 */ | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 2999 | struct rtentry32 __user *ur4 = argp; | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3000 | ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst), | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3001 | 3 * sizeof(struct sockaddr)); | 
| Mathieu Desnoyers | 3ddc5b4 | 2013-09-11 14:23:18 -0700 | [diff] [blame] | 3002 | ret |= get_user(r4.rt_flags, &(ur4->rt_flags)); | 
|  | 3003 | ret |= get_user(r4.rt_metric, &(ur4->rt_metric)); | 
|  | 3004 | ret |= get_user(r4.rt_mtu, &(ur4->rt_mtu)); | 
|  | 3005 | ret |= get_user(r4.rt_window, &(ur4->rt_window)); | 
|  | 3006 | ret |= get_user(r4.rt_irtt, &(ur4->rt_irtt)); | 
|  | 3007 | ret |= get_user(rtdev, &(ur4->rt_dev)); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3008 | if (rtdev) { | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3009 | ret |= copy_from_user(devname, compat_ptr(rtdev), 15); | 
| stephen hemminger | c3f52ae | 2011-02-23 09:06:48 +0000 | [diff] [blame] | 3010 | r4.rt_dev = (char __user __force *)devname; | 
|  | 3011 | devname[15] = 0; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3012 | } else | 
|  | 3013 | r4.rt_dev = NULL; | 
|  | 3014 |  | 
|  | 3015 | r = (void *) &r4; | 
|  | 3016 | } | 
|  | 3017 |  | 
|  | 3018 | if (ret) { | 
|  | 3019 | ret = -EFAULT; | 
|  | 3020 | goto out; | 
|  | 3021 | } | 
|  | 3022 |  | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3023 | set_fs(KERNEL_DS); | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3024 | ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r); | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3025 | set_fs(old_fs); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3026 |  | 
|  | 3027 | out: | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3028 | return ret; | 
|  | 3029 | } | 
|  | 3030 |  | 
|  | 3031 | /* Since old style bridge ioctl's endup using SIOCDEVPRIVATE | 
|  | 3032 | * for some operations; this forces use of the newer bridge-utils that | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3033 | * use compatible ioctls | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3034 | */ | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3035 | static int old_bridge_ioctl(compat_ulong_t __user *argp) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3036 | { | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3037 | compat_ulong_t tmp; | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3038 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3039 | if (get_user(tmp, argp)) | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3040 | return -EFAULT; | 
|  | 3041 | if (tmp == BRCTL_GET_VERSION) | 
|  | 3042 | return BRCTL_VERSION + 1; | 
|  | 3043 | return -EINVAL; | 
|  | 3044 | } | 
|  | 3045 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3046 | static int compat_sock_ioctl_trans(struct file *file, struct socket *sock, | 
|  | 3047 | unsigned int cmd, unsigned long arg) | 
|  | 3048 | { | 
|  | 3049 | void __user *argp = compat_ptr(arg); | 
|  | 3050 | struct sock *sk = sock->sk; | 
|  | 3051 | struct net *net = sock_net(sk); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3052 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3053 | if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) | 
| Ben Hutchings | 590d469 | 2013-11-18 17:04:13 +0000 | [diff] [blame] | 3054 | return compat_ifr_data_ioctl(net, cmd, argp); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3055 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3056 | switch (cmd) { | 
|  | 3057 | case SIOCSIFBR: | 
|  | 3058 | case SIOCGIFBR: | 
|  | 3059 | return old_bridge_ioctl(argp); | 
|  | 3060 | case SIOCGIFNAME: | 
|  | 3061 | return dev_ifname32(net, argp); | 
|  | 3062 | case SIOCGIFCONF: | 
|  | 3063 | return dev_ifconf(net, argp); | 
|  | 3064 | case SIOCETHTOOL: | 
|  | 3065 | return ethtool_ioctl(net, argp); | 
| Arnd Bergmann | 7a50a24 | 2009-11-08 20:57:03 -0800 | [diff] [blame] | 3066 | case SIOCWANDEV: | 
|  | 3067 | return compat_siocwandev(net, argp); | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 3068 | case SIOCGIFMAP: | 
|  | 3069 | case SIOCSIFMAP: | 
|  | 3070 | return compat_sioc_ifmap(net, cmd, argp); | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3071 | case SIOCBONDENSLAVE: | 
|  | 3072 | case SIOCBONDRELEASE: | 
|  | 3073 | case SIOCBONDSETHWADDR: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3074 | case SIOCBONDCHANGEACTIVE: | 
|  | 3075 | return bond_ioctl(net, cmd, argp); | 
|  | 3076 | case SIOCADDRT: | 
|  | 3077 | case SIOCDELRT: | 
|  | 3078 | return routing_ioctl(net, sock, cmd, argp); | 
|  | 3079 | case SIOCGSTAMP: | 
|  | 3080 | return do_siocgstamp(net, sock, cmd, argp); | 
|  | 3081 | case SIOCGSTAMPNS: | 
|  | 3082 | return do_siocgstampns(net, sock, cmd, argp); | 
| Ben Hutchings | 590d469 | 2013-11-18 17:04:13 +0000 | [diff] [blame] | 3083 | case SIOCBONDSLAVEINFOQUERY: | 
|  | 3084 | case SIOCBONDINFOQUERY: | 
| Arnd Bergmann | a2116ed | 2009-11-11 03:39:40 +0000 | [diff] [blame] | 3085 | case SIOCSHWTSTAMP: | 
| Ben Hutchings | fd468c7 | 2013-11-14 01:19:29 +0000 | [diff] [blame] | 3086 | case SIOCGHWTSTAMP: | 
| Ben Hutchings | 590d469 | 2013-11-18 17:04:13 +0000 | [diff] [blame] | 3087 | return compat_ifr_data_ioctl(net, cmd, argp); | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3088 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3089 | case FIOSETOWN: | 
|  | 3090 | case SIOCSPGRP: | 
|  | 3091 | case FIOGETOWN: | 
|  | 3092 | case SIOCGPGRP: | 
|  | 3093 | case SIOCBRADDBR: | 
|  | 3094 | case SIOCBRDELBR: | 
|  | 3095 | case SIOCGIFVLAN: | 
|  | 3096 | case SIOCSIFVLAN: | 
|  | 3097 | case SIOCADDDLCI: | 
|  | 3098 | case SIOCDELDLCI: | 
|  | 3099 | return sock_ioctl(file, cmd, arg); | 
|  | 3100 |  | 
|  | 3101 | case SIOCGIFFLAGS: | 
|  | 3102 | case SIOCSIFFLAGS: | 
|  | 3103 | case SIOCGIFMETRIC: | 
|  | 3104 | case SIOCSIFMETRIC: | 
|  | 3105 | case SIOCGIFMTU: | 
|  | 3106 | case SIOCSIFMTU: | 
|  | 3107 | case SIOCGIFMEM: | 
|  | 3108 | case SIOCSIFMEM: | 
|  | 3109 | case SIOCGIFHWADDR: | 
|  | 3110 | case SIOCSIFHWADDR: | 
|  | 3111 | case SIOCADDMULTI: | 
|  | 3112 | case SIOCDELMULTI: | 
|  | 3113 | case SIOCGIFINDEX: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3114 | case SIOCGIFADDR: | 
|  | 3115 | case SIOCSIFADDR: | 
|  | 3116 | case SIOCSIFHWBROADCAST: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3117 | case SIOCDIFADDR: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3118 | case SIOCGIFBRDADDR: | 
|  | 3119 | case SIOCSIFBRDADDR: | 
|  | 3120 | case SIOCGIFDSTADDR: | 
|  | 3121 | case SIOCSIFDSTADDR: | 
|  | 3122 | case SIOCGIFNETMASK: | 
|  | 3123 | case SIOCSIFNETMASK: | 
|  | 3124 | case SIOCSIFPFLAGS: | 
|  | 3125 | case SIOCGIFPFLAGS: | 
|  | 3126 | case SIOCGIFTXQLEN: | 
|  | 3127 | case SIOCSIFTXQLEN: | 
|  | 3128 | case SIOCBRADDIF: | 
|  | 3129 | case SIOCBRDELIF: | 
| Arnd Bergmann | 9177efd | 2009-11-06 08:09:09 +0000 | [diff] [blame] | 3130 | case SIOCSIFNAME: | 
|  | 3131 | case SIOCGMIIPHY: | 
|  | 3132 | case SIOCGMIIREG: | 
|  | 3133 | case SIOCSMIIREG: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3134 | return dev_ifsioc(net, sock, cmd, argp); | 
| Arnd Bergmann | 9177efd | 2009-11-06 08:09:09 +0000 | [diff] [blame] | 3135 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3136 | case SIOCSARP: | 
|  | 3137 | case SIOCGARP: | 
|  | 3138 | case SIOCDARP: | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3139 | case SIOCATMARK: | 
| Arnd Bergmann | 9177efd | 2009-11-06 08:09:09 +0000 | [diff] [blame] | 3140 | return sock_do_ioctl(net, sock, cmd, arg); | 
|  | 3141 | } | 
|  | 3142 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3143 | return -ENOIOCTLCMD; | 
|  | 3144 | } | 
| Arnd Bergmann | 7a22938 | 2009-11-06 23:00:29 -0800 | [diff] [blame] | 3145 |  | 
| Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 3146 | static long compat_sock_ioctl(struct file *file, unsigned int cmd, | 
| Stephen Hemminger | 89bddce | 2006-09-01 00:19:31 -0700 | [diff] [blame] | 3147 | unsigned long arg) | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 3148 | { | 
|  | 3149 | struct socket *sock = file->private_data; | 
|  | 3150 | int ret = -ENOIOCTLCMD; | 
| David S. Miller | 87de87d | 2008-06-03 09:14:03 -0700 | [diff] [blame] | 3151 | struct sock *sk; | 
|  | 3152 | struct net *net; | 
|  | 3153 |  | 
|  | 3154 | sk = sock->sk; | 
|  | 3155 | net = sock_net(sk); | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 3156 |  | 
|  | 3157 | if (sock->ops->compat_ioctl) | 
|  | 3158 | ret = sock->ops->compat_ioctl(sock, cmd, arg); | 
|  | 3159 |  | 
| David S. Miller | 87de87d | 2008-06-03 09:14:03 -0700 | [diff] [blame] | 3160 | if (ret == -ENOIOCTLCMD && | 
|  | 3161 | (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST)) | 
|  | 3162 | ret = compat_wext_handle_ioctl(net, cmd, arg); | 
|  | 3163 |  | 
| Arnd Bergmann | 6b96018 | 2009-11-06 23:10:54 -0800 | [diff] [blame] | 3164 | if (ret == -ENOIOCTLCMD) | 
|  | 3165 | ret = compat_sock_ioctl_trans(file, sock, cmd, arg); | 
|  | 3166 |  | 
| Shaun Pereira | 89bbfc9 | 2006-03-21 23:58:08 -0800 | [diff] [blame] | 3167 | return ret; | 
|  | 3168 | } | 
|  | 3169 | #endif | 
|  | 3170 |  | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3171 | int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen) | 
|  | 3172 | { | 
|  | 3173 | return sock->ops->bind(sock, addr, addrlen); | 
|  | 3174 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3175 | EXPORT_SYMBOL(kernel_bind); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3176 |  | 
|  | 3177 | int kernel_listen(struct socket *sock, int backlog) | 
|  | 3178 | { | 
|  | 3179 | return sock->ops->listen(sock, backlog); | 
|  | 3180 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3181 | EXPORT_SYMBOL(kernel_listen); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3182 |  | 
|  | 3183 | int kernel_accept(struct socket *sock, struct socket **newsock, int flags) | 
|  | 3184 | { | 
|  | 3185 | struct sock *sk = sock->sk; | 
|  | 3186 | int err; | 
|  | 3187 |  | 
|  | 3188 | err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol, | 
|  | 3189 | newsock); | 
|  | 3190 | if (err < 0) | 
|  | 3191 | goto done; | 
|  | 3192 |  | 
|  | 3193 | err = sock->ops->accept(sock, *newsock, flags); | 
|  | 3194 | if (err < 0) { | 
|  | 3195 | sock_release(*newsock); | 
| Tony Battersby | fa8705b | 2007-10-10 21:09:04 -0700 | [diff] [blame] | 3196 | *newsock = NULL; | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3197 | goto done; | 
|  | 3198 | } | 
|  | 3199 |  | 
|  | 3200 | (*newsock)->ops = sock->ops; | 
| Wei Yongjun | 1b08534 | 2008-12-18 19:35:10 -0800 | [diff] [blame] | 3201 | __module_get((*newsock)->ops->owner); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3202 |  | 
|  | 3203 | done: | 
|  | 3204 | return err; | 
|  | 3205 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3206 | EXPORT_SYMBOL(kernel_accept); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3207 |  | 
|  | 3208 | int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen, | 
| YOSHIFUJI Hideaki | 4768fbc | 2007-02-09 23:25:31 +0900 | [diff] [blame] | 3209 | int flags) | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3210 | { | 
|  | 3211 | return sock->ops->connect(sock, addr, addrlen, flags); | 
|  | 3212 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3213 | EXPORT_SYMBOL(kernel_connect); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3214 |  | 
|  | 3215 | int kernel_getsockname(struct socket *sock, struct sockaddr *addr, | 
|  | 3216 | int *addrlen) | 
|  | 3217 | { | 
|  | 3218 | return sock->ops->getname(sock, addr, addrlen, 0); | 
|  | 3219 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3220 | EXPORT_SYMBOL(kernel_getsockname); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3221 |  | 
|  | 3222 | int kernel_getpeername(struct socket *sock, struct sockaddr *addr, | 
|  | 3223 | int *addrlen) | 
|  | 3224 | { | 
|  | 3225 | return sock->ops->getname(sock, addr, addrlen, 1); | 
|  | 3226 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3227 | EXPORT_SYMBOL(kernel_getpeername); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3228 |  | 
|  | 3229 | int kernel_getsockopt(struct socket *sock, int level, int optname, | 
|  | 3230 | char *optval, int *optlen) | 
|  | 3231 | { | 
|  | 3232 | mm_segment_t oldfs = get_fs(); | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3233 | char __user *uoptval; | 
|  | 3234 | int __user *uoptlen; | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3235 | int err; | 
|  | 3236 |  | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3237 | uoptval = (char __user __force *) optval; | 
|  | 3238 | uoptlen = (int __user __force *) optlen; | 
|  | 3239 |  | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3240 | set_fs(KERNEL_DS); | 
|  | 3241 | if (level == SOL_SOCKET) | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3242 | err = sock_getsockopt(sock, level, optname, uoptval, uoptlen); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3243 | else | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3244 | err = sock->ops->getsockopt(sock, level, optname, uoptval, | 
|  | 3245 | uoptlen); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3246 | set_fs(oldfs); | 
|  | 3247 | return err; | 
|  | 3248 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3249 | EXPORT_SYMBOL(kernel_getsockopt); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3250 |  | 
|  | 3251 | int kernel_setsockopt(struct socket *sock, int level, int optname, | 
| David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3252 | char *optval, unsigned int optlen) | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3253 | { | 
|  | 3254 | mm_segment_t oldfs = get_fs(); | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3255 | char __user *uoptval; | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3256 | int err; | 
|  | 3257 |  | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3258 | uoptval = (char __user __force *) optval; | 
|  | 3259 |  | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3260 | set_fs(KERNEL_DS); | 
|  | 3261 | if (level == SOL_SOCKET) | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3262 | err = sock_setsockopt(sock, level, optname, uoptval, optlen); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3263 | else | 
| Namhyung Kim | fb8621b | 2010-09-07 03:55:00 +0000 | [diff] [blame] | 3264 | err = sock->ops->setsockopt(sock, level, optname, uoptval, | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3265 | optlen); | 
|  | 3266 | set_fs(oldfs); | 
|  | 3267 | return err; | 
|  | 3268 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3269 | EXPORT_SYMBOL(kernel_setsockopt); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3270 |  | 
|  | 3271 | int kernel_sendpage(struct socket *sock, struct page *page, int offset, | 
|  | 3272 | size_t size, int flags) | 
|  | 3273 | { | 
|  | 3274 | if (sock->ops->sendpage) | 
|  | 3275 | return sock->ops->sendpage(sock, page, offset, size, flags); | 
|  | 3276 |  | 
|  | 3277 | return sock_no_sendpage(sock, page, offset, size, flags); | 
|  | 3278 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3279 | EXPORT_SYMBOL(kernel_sendpage); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3280 |  | 
|  | 3281 | int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg) | 
|  | 3282 | { | 
|  | 3283 | mm_segment_t oldfs = get_fs(); | 
|  | 3284 | int err; | 
|  | 3285 |  | 
|  | 3286 | set_fs(KERNEL_DS); | 
|  | 3287 | err = sock->ops->ioctl(sock, cmd, arg); | 
|  | 3288 | set_fs(oldfs); | 
|  | 3289 |  | 
|  | 3290 | return err; | 
|  | 3291 | } | 
| Eric Dumazet | c6d409c | 2010-06-03 20:03:40 -0700 | [diff] [blame] | 3292 | EXPORT_SYMBOL(kernel_sock_ioctl); | 
| Sridhar Samudrala | ac5a488 | 2006-08-07 20:57:31 -0700 | [diff] [blame] | 3293 |  | 
| Trond Myklebust | 91cf45f | 2007-11-12 18:10:39 -0800 | [diff] [blame] | 3294 | int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how) | 
|  | 3295 | { | 
|  | 3296 | return sock->ops->shutdown(sock, how); | 
|  | 3297 | } | 
| Trond Myklebust | 91cf45f | 2007-11-12 18:10:39 -0800 | [diff] [blame] | 3298 | EXPORT_SYMBOL(kernel_sock_shutdown); |