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