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