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