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