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