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