vserver 1.9.5.x5
[linux-2.6.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, <bir7@leland.Stanford.Edu>
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/config.h>
62 #include <linux/mm.h>
63 #include <linux/smp_lock.h>
64 #include <linux/socket.h>
65 #include <linux/file.h>
66 #include <linux/net.h>
67 #include <linux/interrupt.h>
68 #include <linux/netdevice.h>
69 #include <linux/proc_fs.h>
70 #include <linux/seq_file.h>
71 #include <linux/wanrouter.h>
72 #include <linux/if_bridge.h>
73 #include <linux/init.h>
74 #include <linux/poll.h>
75 #include <linux/cache.h>
76 #include <linux/module.h>
77 #include <linux/highmem.h>
78 #include <linux/divert.h>
79 #include <linux/mount.h>
80 #include <linux/security.h>
81 #include <linux/syscalls.h>
82 #include <linux/compat.h>
83 #include <linux/kmod.h>
84
85 #ifdef CONFIG_NET_RADIO
86 #include <linux/wireless.h>             /* Note : will define WIRELESS_EXT */
87 #endif  /* CONFIG_NET_RADIO */
88
89 #include <asm/uaccess.h>
90 #include <asm/unistd.h>
91
92 #include <net/compat.h>
93
94 #include <net/sock.h>
95 #include <linux/netfilter.h>
96 #include <linux/vs_socket.h>
97
98 static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
99 static ssize_t sock_aio_read(struct kiocb *iocb, char __user *buf,
100                          size_t size, loff_t pos);
101 static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *buf,
102                           size_t size, loff_t pos);
103 static int sock_mmap(struct file *file, struct vm_area_struct * vma);
104
105 static int sock_close(struct inode *inode, struct file *file);
106 static unsigned int sock_poll(struct file *file,
107                               struct poll_table_struct *wait);
108 static long sock_ioctl(struct file *file,
109                       unsigned int cmd, unsigned long arg);
110 static int sock_fasync(int fd, struct file *filp, int on);
111 static ssize_t sock_readv(struct file *file, const struct iovec *vector,
112                           unsigned long count, loff_t *ppos);
113 static ssize_t sock_writev(struct file *file, const struct iovec *vector,
114                           unsigned long count, loff_t *ppos);
115 static ssize_t sock_sendpage(struct file *file, struct page *page,
116                              int offset, size_t size, loff_t *ppos, int more);
117
118
119 /*
120  *      Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
121  *      in the operation structures but are done directly via the socketcall() multiplexor.
122  */
123
124 static struct file_operations socket_file_ops = {
125         .owner =        THIS_MODULE,
126         .llseek =       no_llseek,
127         .aio_read =     sock_aio_read,
128         .aio_write =    sock_aio_write,
129         .poll =         sock_poll,
130         .unlocked_ioctl = sock_ioctl,
131         .mmap =         sock_mmap,
132         .open =         sock_no_open,   /* special open code to disallow open via /proc */
133         .release =      sock_close,
134         .fasync =       sock_fasync,
135         .readv =        sock_readv,
136         .writev =       sock_writev,
137         .sendpage =     sock_sendpage
138 };
139
140 /*
141  *      The protocol list. Each protocol is registered in here.
142  */
143
144 static struct net_proto_family *net_families[NPROTO];
145
146 #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
147 static atomic_t net_family_lockct = ATOMIC_INIT(0);
148 static DEFINE_SPINLOCK(net_family_lock);
149
150 /* The strategy is: modifications net_family vector are short, do not
151    sleep and veeery rare, but read access should be free of any exclusive
152    locks.
153  */
154
155 static void net_family_write_lock(void)
156 {
157         spin_lock(&net_family_lock);
158         while (atomic_read(&net_family_lockct) != 0) {
159                 spin_unlock(&net_family_lock);
160
161                 yield();
162
163                 spin_lock(&net_family_lock);
164         }
165 }
166
167 static __inline__ void net_family_write_unlock(void)
168 {
169         spin_unlock(&net_family_lock);
170 }
171
172 static __inline__ void net_family_read_lock(void)
173 {
174         atomic_inc(&net_family_lockct);
175         spin_unlock_wait(&net_family_lock);
176 }
177
178 static __inline__ void net_family_read_unlock(void)
179 {
180         atomic_dec(&net_family_lockct);
181 }
182
183 #else
184 #define net_family_write_lock() do { } while(0)
185 #define net_family_write_unlock() do { } while(0)
186 #define net_family_read_lock() do { } while(0)
187 #define net_family_read_unlock() do { } while(0)
188 #endif
189
190
191 /*
192  *      Statistics counters of the socket lists
193  */
194
195 static DEFINE_PER_CPU(int, sockets_in_use) = 0;
196
197 /*
198  *      Support routines. Move socket addresses back and forth across the kernel/user
199  *      divide and look after the messy bits.
200  */
201
202 #define MAX_SOCK_ADDR   128             /* 108 for Unix domain - 
203                                            16 for IP, 16 for IPX,
204                                            24 for IPv6,
205                                            about 80 for AX.25 
206                                            must be at least one bigger than
207                                            the AF_UNIX size (see net/unix/af_unix.c
208                                            :unix_mkname()).  
209                                          */
210                                          
211 /**
212  *      move_addr_to_kernel     -       copy a socket address into kernel space
213  *      @uaddr: Address in user space
214  *      @kaddr: Address in kernel space
215  *      @ulen: Length in user space
216  *
217  *      The address is copied into kernel space. If the provided address is
218  *      too long an error code of -EINVAL is returned. If the copy gives
219  *      invalid addresses -EFAULT is returned. On a success 0 is returned.
220  */
221
222 int move_addr_to_kernel(void __user *uaddr, int ulen, void *kaddr)
223 {
224         if(ulen<0||ulen>MAX_SOCK_ADDR)
225                 return -EINVAL;
226         if(ulen==0)
227                 return 0;
228         if(copy_from_user(kaddr,uaddr,ulen))
229                 return -EFAULT;
230         return 0;
231 }
232
233 /**
234  *      move_addr_to_user       -       copy an address to user space
235  *      @kaddr: kernel space address
236  *      @klen: length of address in kernel
237  *      @uaddr: user space address
238  *      @ulen: pointer to user length field
239  *
240  *      The value pointed to by ulen on entry is the buffer length available.
241  *      This is overwritten with the buffer space used. -EINVAL is returned
242  *      if an overlong buffer is specified or a negative buffer size. -EFAULT
243  *      is returned if either the buffer or the length field are not
244  *      accessible.
245  *      After copying the data up to the limit the user specifies, the true
246  *      length of the data is written over the length limit the user
247  *      specified. Zero is returned for a success.
248  */
249  
250 int move_addr_to_user(void *kaddr, int klen, void __user *uaddr, int __user *ulen)
251 {
252         int err;
253         int len;
254
255         if((err=get_user(len, ulen)))
256                 return err;
257         if(len>klen)
258                 len=klen;
259         if(len<0 || len> MAX_SOCK_ADDR)
260                 return -EINVAL;
261         if(len)
262         {
263                 if(copy_to_user(uaddr,kaddr,len))
264                         return -EFAULT;
265         }
266         /*
267          *      "fromlen shall refer to the value before truncation.."
268          *                      1003.1g
269          */
270         return __put_user(klen, ulen);
271 }
272
273 #define SOCKFS_MAGIC 0x534F434B
274
275 static kmem_cache_t * sock_inode_cachep;
276
277 static struct inode *sock_alloc_inode(struct super_block *sb)
278 {
279         struct socket_alloc *ei;
280         ei = (struct socket_alloc *)kmem_cache_alloc(sock_inode_cachep, SLAB_KERNEL);
281         if (!ei)
282                 return NULL;
283         init_waitqueue_head(&ei->socket.wait);
284         
285         ei->socket.fasync_list = NULL;
286         ei->socket.state = SS_UNCONNECTED;
287         ei->socket.flags = 0;
288         ei->socket.ops = NULL;
289         ei->socket.sk = NULL;
290         ei->socket.file = NULL;
291         ei->socket.flags = 0;
292
293         return &ei->vfs_inode;
294 }
295
296 static void sock_destroy_inode(struct inode *inode)
297 {
298         kmem_cache_free(sock_inode_cachep,
299                         container_of(inode, struct socket_alloc, vfs_inode));
300 }
301
302 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
303 {
304         struct socket_alloc *ei = (struct socket_alloc *) foo;
305
306         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
307             SLAB_CTOR_CONSTRUCTOR)
308                 inode_init_once(&ei->vfs_inode);
309 }
310  
311 static int init_inodecache(void)
312 {
313         sock_inode_cachep = kmem_cache_create("sock_inode_cache",
314                                 sizeof(struct socket_alloc),
315                                 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
316                                 init_once, NULL);
317         if (sock_inode_cachep == NULL)
318                 return -ENOMEM;
319         return 0;
320 }
321
322 static struct super_operations sockfs_ops = {
323         .alloc_inode =  sock_alloc_inode,
324         .destroy_inode =sock_destroy_inode,
325         .statfs =       simple_statfs,
326 };
327
328 static struct super_block *sockfs_get_sb(struct file_system_type *fs_type,
329         int flags, const char *dev_name, void *data)
330 {
331         return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC);
332 }
333
334 static struct vfsmount *sock_mnt;
335
336 static struct file_system_type sock_fs_type = {
337         .name =         "sockfs",
338         .get_sb =       sockfs_get_sb,
339         .kill_sb =      kill_anon_super,
340 };
341 static int sockfs_delete_dentry(struct dentry *dentry)
342 {
343         return 1;
344 }
345 static struct dentry_operations sockfs_dentry_operations = {
346         .d_delete =     sockfs_delete_dentry,
347 };
348
349 /*
350  *      Obtains the first available file descriptor and sets it up for use.
351  *
352  *      This function creates file structure and maps it to fd space
353  *      of current process. On success it returns file descriptor
354  *      and file struct implicitly stored in sock->file.
355  *      Note that another thread may close file descriptor before we return
356  *      from this function. We use the fact that now we do not refer
357  *      to socket after mapping. If one day we will need it, this
358  *      function will increment ref. count on file by 1.
359  *
360  *      In any case returned fd MAY BE not valid!
361  *      This race condition is unavoidable
362  *      with shared fd spaces, we cannot solve it inside kernel,
363  *      but we take care of internal coherence yet.
364  */
365
366 int sock_map_fd(struct socket *sock)
367 {
368         int fd;
369         struct qstr this;
370         char name[32];
371
372         /*
373          *      Find a file descriptor suitable for return to the user. 
374          */
375
376         fd = get_unused_fd();
377         if (fd >= 0) {
378                 struct file *file = get_empty_filp();
379
380                 if (!file) {
381                         put_unused_fd(fd);
382                         fd = -ENFILE;
383                         goto out;
384                 }
385
386                 sprintf(name, "[%lu]", SOCK_INODE(sock)->i_ino);
387                 this.name = name;
388                 this.len = strlen(name);
389                 this.hash = SOCK_INODE(sock)->i_ino;
390
391                 file->f_dentry = d_alloc(sock_mnt->mnt_sb->s_root, &this);
392                 if (!file->f_dentry) {
393                         put_filp(file);
394                         put_unused_fd(fd);
395                         fd = -ENOMEM;
396                         goto out;
397                 }
398                 file->f_dentry->d_op = &sockfs_dentry_operations;
399                 d_add(file->f_dentry, SOCK_INODE(sock));
400                 file->f_vfsmnt = mntget(sock_mnt);
401                 file->f_mapping = file->f_dentry->d_inode->i_mapping;
402
403                 sock->file = file;
404                 file->f_op = SOCK_INODE(sock)->i_fop = &socket_file_ops;
405                 file->f_mode = FMODE_READ | FMODE_WRITE;
406                 file->f_flags = O_RDWR;
407                 file->f_pos = 0;
408                 fd_install(fd, file);
409         }
410
411 out:
412         return fd;
413 }
414
415 /**
416  *      sockfd_lookup   -       Go from a file number to its socket slot
417  *      @fd: file handle
418  *      @err: pointer to an error code return
419  *
420  *      The file handle passed in is locked and the socket it is bound
421  *      too is returned. If an error occurs the err pointer is overwritten
422  *      with a negative errno code and NULL is returned. The function checks
423  *      for both invalid handles and passing a handle which is not a socket.
424  *
425  *      On a success the socket object pointer is returned.
426  */
427
428 struct socket *sockfd_lookup(int fd, int *err)
429 {
430         struct file *file;
431         struct inode *inode;
432         struct socket *sock;
433
434         if (!(file = fget(fd)))
435         {
436                 *err = -EBADF;
437                 return NULL;
438         }
439
440         inode = file->f_dentry->d_inode;
441         if (!inode->i_sock || !(sock = SOCKET_I(inode)))
442         {
443                 *err = -ENOTSOCK;
444                 fput(file);
445                 return NULL;
446         }
447
448         if (sock->file != file) {
449                 printk(KERN_ERR "socki_lookup: socket file changed!\n");
450                 sock->file = file;
451         }
452         return sock;
453 }
454
455 /**
456  *      sock_alloc      -       allocate a socket
457  *      
458  *      Allocate a new inode and socket object. The two are bound together
459  *      and initialised. The socket is then returned. If we are out of inodes
460  *      NULL is returned.
461  */
462
463 static struct socket *sock_alloc(void)
464 {
465         struct inode * inode;
466         struct socket * sock;
467
468         inode = new_inode(sock_mnt->mnt_sb);
469         if (!inode)
470                 return NULL;
471
472         sock = SOCKET_I(inode);
473
474         inode->i_mode = S_IFSOCK|S_IRWXUGO;
475         inode->i_sock = 1;
476         inode->i_uid = current->fsuid;
477         inode->i_gid = current->fsgid;
478
479         get_cpu_var(sockets_in_use)++;
480         put_cpu_var(sockets_in_use);
481         return sock;
482 }
483
484 /*
485  *      In theory you can't get an open on this inode, but /proc provides
486  *      a back door. Remember to keep it shut otherwise you'll let the
487  *      creepy crawlies in.
488  */
489   
490 static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
491 {
492         return -ENXIO;
493 }
494
495 struct file_operations bad_sock_fops = {
496         .owner = THIS_MODULE,
497         .open = sock_no_open,
498 };
499
500 /**
501  *      sock_release    -       close a socket
502  *      @sock: socket to close
503  *
504  *      The socket is released from the protocol stack if it has a release
505  *      callback, and the inode is then released if the socket is bound to
506  *      an inode not a file. 
507  */
508  
509 void sock_release(struct socket *sock)
510 {
511         if (sock->ops) {
512                 struct module *owner = sock->ops->owner;
513
514                 sock->ops->release(sock);
515                 sock->ops = NULL;
516                 module_put(owner);
517         }
518
519         if (sock->fasync_list)
520                 printk(KERN_ERR "sock_release: fasync list not empty!\n");
521
522         get_cpu_var(sockets_in_use)--;
523         put_cpu_var(sockets_in_use);
524         if (!sock->file) {
525                 iput(SOCK_INODE(sock));
526                 return;
527         }
528         sock->file=NULL;
529 }
530
531 static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock, 
532                                  struct msghdr *msg, size_t size)
533 {
534         struct sock_iocb *si = kiocb_to_siocb(iocb);
535         int err, len;
536
537         si->sock = sock;
538         si->scm = NULL;
539         si->msg = msg;
540         si->size = size;
541
542         err = security_socket_sendmsg(sock, msg, size);
543         if (err)
544                 return err;
545
546         len = sock->ops->sendmsg(iocb, sock, msg, size);
547         if (sock->sk) {
548                 if (len == size)
549                         vx_sock_send(sock->sk, size);
550                 else
551                         vx_sock_fail(sock->sk, size);
552         }
553         vxdprintk(VXD_CBIT(net, 7),
554                 "__sock_sendmsg: %p[%p,%p,%p;%d]:%d/%d",
555                 sock, sock->sk,
556                 (sock->sk)?sock->sk->sk_nx_info:0,
557                 (sock->sk)?sock->sk->sk_vx_info:0,
558                 (sock->sk)?sock->sk->sk_xid:0,
559                 (unsigned int)size, len);
560         return len;
561 }
562
563 int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
564 {
565         struct kiocb iocb;
566         struct sock_iocb siocb;
567         int ret;
568
569         init_sync_kiocb(&iocb, NULL);
570         iocb.private = &siocb;
571         ret = __sock_sendmsg(&iocb, sock, msg, size);
572         if (-EIOCBQUEUED == ret)
573                 ret = wait_on_sync_kiocb(&iocb);
574         return ret;
575 }
576
577 int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
578                    struct kvec *vec, size_t num, size_t size)
579 {
580         mm_segment_t oldfs = get_fs();
581         int result;
582
583         set_fs(KERNEL_DS);
584         /*
585          * the following is safe, since for compiler definitions of kvec and
586          * iovec are identical, yielding the same in-core layout and alignment
587          */
588         msg->msg_iov = (struct iovec *)vec,
589         msg->msg_iovlen = num;
590         result = sock_sendmsg(sock, msg, size);
591         set_fs(oldfs);
592         return result;
593 }
594
595 static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock, 
596                                  struct msghdr *msg, size_t size, int flags)
597 {
598         int err, len;
599         struct sock_iocb *si = kiocb_to_siocb(iocb);
600
601         si->sock = sock;
602         si->scm = NULL;
603         si->msg = msg;
604         si->size = size;
605         si->flags = flags;
606
607         err = security_socket_recvmsg(sock, msg, size, flags);
608         if (err)
609                 return err;
610
611         len = sock->ops->recvmsg(iocb, sock, msg, size, flags);
612         if ((len >= 0) && sock->sk)
613                 vx_sock_recv(sock->sk, len);
614         vxdprintk(VXD_CBIT(net, 7),
615                 "__sock_recvmsg: %p[%p,%p,%p;%d]:%d/%d",
616                 sock, sock->sk,
617                 (sock->sk)?sock->sk->sk_nx_info:0,
618                 (sock->sk)?sock->sk->sk_vx_info:0,
619                 (sock->sk)?sock->sk->sk_xid:0,
620                 (unsigned int)size, len);
621         return len;
622 }
623
624 int sock_recvmsg(struct socket *sock, struct msghdr *msg, 
625                  size_t size, int flags)
626 {
627         struct kiocb iocb;
628         struct sock_iocb siocb;
629         int ret;
630
631         init_sync_kiocb(&iocb, NULL);
632         iocb.private = &siocb;
633         ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
634         if (-EIOCBQUEUED == ret)
635                 ret = wait_on_sync_kiocb(&iocb);
636         return ret;
637 }
638
639 int kernel_recvmsg(struct socket *sock, struct msghdr *msg, 
640                    struct kvec *vec, size_t num,
641                    size_t size, int flags)
642 {
643         mm_segment_t oldfs = get_fs();
644         int result;
645
646         set_fs(KERNEL_DS);
647         /*
648          * the following is safe, since for compiler definitions of kvec and
649          * iovec are identical, yielding the same in-core layout and alignment
650          */
651         msg->msg_iov = (struct iovec *)vec,
652         msg->msg_iovlen = num;
653         result = sock_recvmsg(sock, msg, size, flags);
654         set_fs(oldfs);
655         return result;
656 }
657
658 static void sock_aio_dtor(struct kiocb *iocb)
659 {
660         kfree(iocb->private);
661 }
662
663 /*
664  *      Read data from a socket. ubuf is a user mode pointer. We make sure the user
665  *      area ubuf...ubuf+size-1 is writable before asking the protocol.
666  */
667
668 static ssize_t sock_aio_read(struct kiocb *iocb, char __user *ubuf,
669                          size_t size, loff_t pos)
670 {
671         struct sock_iocb *x, siocb;
672         struct socket *sock;
673         int flags;
674
675         if (pos != 0)
676                 return -ESPIPE;
677         if (size==0)            /* Match SYS5 behaviour */
678                 return 0;
679
680         if (is_sync_kiocb(iocb))
681                 x = &siocb;
682         else {
683                 x = kmalloc(sizeof(struct sock_iocb), GFP_KERNEL);
684                 if (!x)
685                         return -ENOMEM;
686                 iocb->ki_dtor = sock_aio_dtor;
687         }
688         iocb->private = x;
689         x->kiocb = iocb;
690         sock = SOCKET_I(iocb->ki_filp->f_dentry->d_inode); 
691
692         x->async_msg.msg_name = NULL;
693         x->async_msg.msg_namelen = 0;
694         x->async_msg.msg_iov = &x->async_iov;
695         x->async_msg.msg_iovlen = 1;
696         x->async_msg.msg_control = NULL;
697         x->async_msg.msg_controllen = 0;
698         x->async_iov.iov_base = ubuf;
699         x->async_iov.iov_len = size;
700         flags = !(iocb->ki_filp->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
701
702         return __sock_recvmsg(iocb, sock, &x->async_msg, size, flags);
703 }
704
705
706 /*
707  *      Write data to a socket. We verify that the user area ubuf..ubuf+size-1
708  *      is readable by the user process.
709  */
710
711 static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *ubuf,
712                           size_t size, loff_t pos)
713 {
714         struct sock_iocb *x, siocb;
715         struct socket *sock;
716         
717         if (pos != 0)
718                 return -ESPIPE;
719         if(size==0)             /* Match SYS5 behaviour */
720                 return 0;
721
722         if (is_sync_kiocb(iocb))
723                 x = &siocb;
724         else {
725                 x = kmalloc(sizeof(struct sock_iocb), GFP_KERNEL);
726                 if (!x)
727                         return -ENOMEM;
728                 iocb->ki_dtor = sock_aio_dtor;
729         }
730         iocb->private = x;
731         x->kiocb = iocb;
732         sock = SOCKET_I(iocb->ki_filp->f_dentry->d_inode); 
733
734         x->async_msg.msg_name = NULL;
735         x->async_msg.msg_namelen = 0;
736         x->async_msg.msg_iov = &x->async_iov;
737         x->async_msg.msg_iovlen = 1;
738         x->async_msg.msg_control = NULL;
739         x->async_msg.msg_controllen = 0;
740         x->async_msg.msg_flags = !(iocb->ki_filp->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
741         if (sock->type == SOCK_SEQPACKET)
742                 x->async_msg.msg_flags |= MSG_EOR;
743         x->async_iov.iov_base = (void __user *)ubuf;
744         x->async_iov.iov_len = size;
745         
746         return __sock_sendmsg(iocb, sock, &x->async_msg, size);
747 }
748
749 ssize_t sock_sendpage(struct file *file, struct page *page,
750                       int offset, size_t size, loff_t *ppos, int more)
751 {
752         struct socket *sock;
753         int flags;
754
755         sock = SOCKET_I(file->f_dentry->d_inode);
756
757         flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
758         if (more)
759                 flags |= MSG_MORE;
760
761         return sock->ops->sendpage(sock, page, offset, size, flags);
762 }
763
764 static int sock_readv_writev(int type, struct inode * inode,
765                              struct file * file, const struct iovec * iov,
766                              long count, size_t size)
767 {
768         struct msghdr msg;
769         struct socket *sock;
770
771         sock = SOCKET_I(inode);
772
773         msg.msg_name = NULL;
774         msg.msg_namelen = 0;
775         msg.msg_control = NULL;
776         msg.msg_controllen = 0;
777         msg.msg_iov = (struct iovec *) iov;
778         msg.msg_iovlen = count;
779         msg.msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
780
781         /* read() does a VERIFY_WRITE */
782         if (type == VERIFY_WRITE)
783                 return sock_recvmsg(sock, &msg, size, msg.msg_flags);
784
785         if (sock->type == SOCK_SEQPACKET)
786                 msg.msg_flags |= MSG_EOR;
787
788         return sock_sendmsg(sock, &msg, size);
789 }
790
791 static ssize_t sock_readv(struct file *file, const struct iovec *vector,
792                           unsigned long count, loff_t *ppos)
793 {
794         size_t tot_len = 0;
795         int i;
796         for (i = 0 ; i < count ; i++)
797                 tot_len += vector[i].iov_len;
798         return sock_readv_writev(VERIFY_WRITE, file->f_dentry->d_inode,
799                                  file, vector, count, tot_len);
800 }
801         
802 static ssize_t sock_writev(struct file *file, const struct iovec *vector,
803                            unsigned long count, loff_t *ppos)
804 {
805         size_t tot_len = 0;
806         int i;
807         for (i = 0 ; i < count ; i++)
808                 tot_len += vector[i].iov_len;
809         return sock_readv_writev(VERIFY_READ, file->f_dentry->d_inode,
810                                  file, vector, count, tot_len);
811 }
812
813
814 /*
815  * Atomic setting of ioctl hooks to avoid race
816  * with module unload.
817  */
818
819 static DECLARE_MUTEX(br_ioctl_mutex);
820 static int (*br_ioctl_hook)(unsigned int cmd, void __user *arg) = NULL;
821
822 void brioctl_set(int (*hook)(unsigned int, void __user *))
823 {
824         down(&br_ioctl_mutex);
825         br_ioctl_hook = hook;
826         up(&br_ioctl_mutex);
827 }
828 EXPORT_SYMBOL(brioctl_set);
829
830 static DECLARE_MUTEX(vlan_ioctl_mutex);
831 static int (*vlan_ioctl_hook)(void __user *arg);
832
833 void vlan_ioctl_set(int (*hook)(void __user *))
834 {
835         down(&vlan_ioctl_mutex);
836         vlan_ioctl_hook = hook;
837         up(&vlan_ioctl_mutex);
838 }
839 EXPORT_SYMBOL(vlan_ioctl_set);
840
841 static DECLARE_MUTEX(dlci_ioctl_mutex);
842 static int (*dlci_ioctl_hook)(unsigned int, void __user *);
843
844 void dlci_ioctl_set(int (*hook)(unsigned int, void __user *))
845 {
846         down(&dlci_ioctl_mutex);
847         dlci_ioctl_hook = hook;
848         up(&dlci_ioctl_mutex);
849 }
850 EXPORT_SYMBOL(dlci_ioctl_set);
851
852 /*
853  *      With an ioctl, arg may well be a user mode pointer, but we don't know
854  *      what to do with it - that's up to the protocol still.
855  */
856
857 static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
858 {
859         struct socket *sock;
860         void __user *argp = (void __user *)arg;
861         int pid, err;
862
863         sock = SOCKET_I(file->f_dentry->d_inode);
864         if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
865                 err = dev_ioctl(cmd, argp);
866         } else
867 #ifdef WIRELESS_EXT
868         if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
869                 err = dev_ioctl(cmd, argp);
870         } else
871 #endif  /* WIRELESS_EXT */
872         switch (cmd) {
873                 case FIOSETOWN:
874                 case SIOCSPGRP:
875                         err = -EFAULT;
876                         if (get_user(pid, (int __user *)argp))
877                                 break;
878                         err = f_setown(sock->file, pid, 1);
879                         break;
880                 case FIOGETOWN:
881                 case SIOCGPGRP:
882                         err = put_user(sock->file->f_owner.pid, (int __user *)argp);
883                         break;
884                 case SIOCGIFBR:
885                 case SIOCSIFBR:
886                 case SIOCBRADDBR:
887                 case SIOCBRDELBR:
888                         err = -ENOPKG;
889                         if (!br_ioctl_hook)
890                                 request_module("bridge");
891
892                         down(&br_ioctl_mutex);
893                         if (br_ioctl_hook) 
894                                 err = br_ioctl_hook(cmd, argp);
895                         up(&br_ioctl_mutex);
896                         break;
897                 case SIOCGIFVLAN:
898                 case SIOCSIFVLAN:
899                         err = -ENOPKG;
900                         if (!vlan_ioctl_hook)
901                                 request_module("8021q");
902
903                         down(&vlan_ioctl_mutex);
904                         if (vlan_ioctl_hook)
905                                 err = vlan_ioctl_hook(argp);
906                         up(&vlan_ioctl_mutex);
907                         break;
908                 case SIOCGIFDIVERT:
909                 case SIOCSIFDIVERT:
910                 /* Convert this to call through a hook */
911                         err = divert_ioctl(cmd, argp);
912                         break;
913                 case SIOCADDDLCI:
914                 case SIOCDELDLCI:
915                         err = -ENOPKG;
916                         if (!dlci_ioctl_hook)
917                                 request_module("dlci");
918
919                         if (dlci_ioctl_hook) {
920                                 down(&dlci_ioctl_mutex);
921                                 err = dlci_ioctl_hook(cmd, argp);
922                                 up(&dlci_ioctl_mutex);
923                         }
924                         break;
925                 default:
926                         err = sock->ops->ioctl(sock, cmd, arg);
927                         break;
928         }
929         return err;
930 }
931
932 int sock_create_lite(int family, int type, int protocol, struct socket **res)
933 {
934         int err;
935         struct socket *sock = NULL;
936         
937         err = security_socket_create(family, type, protocol, 1);
938         if (err)
939                 goto out;
940
941         sock = sock_alloc();
942         if (!sock) {
943                 err = -ENOMEM;
944                 goto out;
945         }
946
947         security_socket_post_create(sock, family, type, protocol, 1);
948         sock->type = type;
949 out:
950         *res = sock;
951         return err;
952 }
953
954 /* No kernel lock held - perfect */
955 static unsigned int sock_poll(struct file *file, poll_table * wait)
956 {
957         struct socket *sock;
958
959         /*
960          *      We can't return errors to poll, so it's either yes or no. 
961          */
962         sock = SOCKET_I(file->f_dentry->d_inode);
963         return sock->ops->poll(file, sock, wait);
964 }
965
966 static int sock_mmap(struct file * file, struct vm_area_struct * vma)
967 {
968         struct socket *sock = SOCKET_I(file->f_dentry->d_inode);
969
970         return sock->ops->mmap(file, sock, vma);
971 }
972
973 int sock_close(struct inode *inode, struct file *filp)
974 {
975         /*
976          *      It was possible the inode is NULL we were 
977          *      closing an unfinished socket. 
978          */
979
980         if (!inode)
981         {
982                 printk(KERN_DEBUG "sock_close: NULL inode\n");
983                 return 0;
984         }
985         sock_fasync(-1, filp, 0);
986         sock_release(SOCKET_I(inode));
987         return 0;
988 }
989
990 /*
991  *      Update the socket async list
992  *
993  *      Fasync_list locking strategy.
994  *
995  *      1. fasync_list is modified only under process context socket lock
996  *         i.e. under semaphore.
997  *      2. fasync_list is used under read_lock(&sk->sk_callback_lock)
998  *         or under socket lock.
999  *      3. fasync_list can be used from softirq context, so that
1000  *         modification under socket lock have to be enhanced with
1001  *         write_lock_bh(&sk->sk_callback_lock).
1002  *                                                      --ANK (990710)
1003  */
1004
1005 static int sock_fasync(int fd, struct file *filp, int on)
1006 {
1007         struct fasync_struct *fa, *fna=NULL, **prev;
1008         struct socket *sock;
1009         struct sock *sk;
1010
1011         if (on)
1012         {
1013                 fna=(struct fasync_struct *)kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
1014                 if(fna==NULL)
1015                         return -ENOMEM;
1016         }
1017
1018         sock = SOCKET_I(filp->f_dentry->d_inode);
1019
1020         if ((sk=sock->sk) == NULL) {
1021                 if (fna)
1022                         kfree(fna);
1023                 return -EINVAL;
1024         }
1025
1026         lock_sock(sk);
1027
1028         prev=&(sock->fasync_list);
1029
1030         for (fa=*prev; fa!=NULL; prev=&fa->fa_next,fa=*prev)
1031                 if (fa->fa_file==filp)
1032                         break;
1033
1034         if(on)
1035         {
1036                 if(fa!=NULL)
1037                 {
1038                         write_lock_bh(&sk->sk_callback_lock);
1039                         fa->fa_fd=fd;
1040                         write_unlock_bh(&sk->sk_callback_lock);
1041
1042                         kfree(fna);
1043                         goto out;
1044                 }
1045                 fna->fa_file=filp;
1046                 fna->fa_fd=fd;
1047                 fna->magic=FASYNC_MAGIC;
1048                 fna->fa_next=sock->fasync_list;
1049                 write_lock_bh(&sk->sk_callback_lock);
1050                 sock->fasync_list=fna;
1051                 write_unlock_bh(&sk->sk_callback_lock);
1052         }
1053         else
1054         {
1055                 if (fa!=NULL)
1056                 {
1057                         write_lock_bh(&sk->sk_callback_lock);
1058                         *prev=fa->fa_next;
1059                         write_unlock_bh(&sk->sk_callback_lock);
1060                         kfree(fa);
1061                 }
1062         }
1063
1064 out:
1065         release_sock(sock->sk);
1066         return 0;
1067 }
1068
1069 /* This function may be called only under socket lock or callback_lock */
1070
1071 int sock_wake_async(struct socket *sock, int how, int band)
1072 {
1073         if (!sock || !sock->fasync_list)
1074                 return -1;
1075         switch (how)
1076         {
1077         case 1:
1078                 
1079                 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1080                         break;
1081                 goto call_kill;
1082         case 2:
1083                 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1084                         break;
1085                 /* fall through */
1086         case 0:
1087         call_kill:
1088                 __kill_fasync(sock->fasync_list, SIGIO, band);
1089                 break;
1090         case 3:
1091                 __kill_fasync(sock->fasync_list, SIGURG, band);
1092         }
1093         return 0;
1094 }
1095
1096 static int __sock_create(int family, int type, int protocol, struct socket **res, int kern)
1097 {
1098         int err;
1099         struct socket *sock;
1100
1101         /*
1102          *      Check protocol is in range
1103          */
1104         if (family < 0 || family >= NPROTO)
1105                 return -EAFNOSUPPORT;
1106         if (type < 0 || type >= SOCK_MAX)
1107                 return -EINVAL;
1108
1109         /* disable IPv6 inside vservers for now */
1110         if (family == PF_INET6 && !vx_check(0, VX_ADMIN))
1111                 return -EAFNOSUPPORT;
1112
1113         /* Compatibility.
1114
1115            This uglymoron is moved from INET layer to here to avoid
1116            deadlock in module load.
1117          */
1118         if (family == PF_INET && type == SOCK_PACKET) {
1119                 static int warned; 
1120                 if (!warned) {
1121                         warned = 1;
1122                         printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n", current->comm);
1123                 }
1124                 family = PF_PACKET;
1125         }
1126
1127         err = security_socket_create(family, type, protocol, kern);
1128         if (err)
1129                 return err;
1130                 
1131 #if defined(CONFIG_KMOD)
1132         /* Attempt to load a protocol module if the find failed. 
1133          * 
1134          * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user 
1135          * requested real, full-featured networking support upon configuration.
1136          * Otherwise module support will break!
1137          */
1138         if (net_families[family]==NULL)
1139         {
1140                 request_module("net-pf-%d",family);
1141         }
1142 #endif
1143
1144         net_family_read_lock();
1145         if (net_families[family] == NULL) {
1146                 err = -EAFNOSUPPORT;
1147                 goto out;
1148         }
1149
1150 /*
1151  *      Allocate the socket and allow the family to set things up. if
1152  *      the protocol is 0, the family is instructed to select an appropriate
1153  *      default.
1154  */
1155
1156         if (!(sock = sock_alloc())) {
1157                 printk(KERN_WARNING "socket: no more sockets\n");
1158                 err = -ENFILE;          /* Not exactly a match, but its the
1159                                            closest posix thing */
1160                 goto out;
1161         }
1162
1163         sock->type  = type;
1164
1165         /*
1166          * We will call the ->create function, that possibly is in a loadable
1167          * module, so we have to bump that loadable module refcnt first.
1168          */
1169         err = -EAFNOSUPPORT;
1170         if (!try_module_get(net_families[family]->owner))
1171                 goto out_release;
1172
1173         if ((err = net_families[family]->create(sock, protocol)) < 0)
1174                 goto out_module_put;
1175         /*
1176          * Now to bump the refcnt of the [loadable] module that owns this
1177          * socket at sock_release time we decrement its refcnt.
1178          */
1179         if (!try_module_get(sock->ops->owner)) {
1180                 sock->ops = NULL;
1181                 goto out_module_put;
1182         }
1183         /*
1184          * Now that we're done with the ->create function, the [loadable]
1185          * module can have its refcnt decremented
1186          */
1187         module_put(net_families[family]->owner);
1188         *res = sock;
1189         security_socket_post_create(sock, family, type, protocol, kern);
1190
1191 out:
1192         net_family_read_unlock();
1193         return err;
1194 out_module_put:
1195         module_put(net_families[family]->owner);
1196 out_release:
1197         sock_release(sock);
1198         goto out;
1199 }
1200
1201 int sock_create(int family, int type, int protocol, struct socket **res)
1202 {
1203         return __sock_create(family, type, protocol, res, 0);
1204 }
1205
1206 int sock_create_kern(int family, int type, int protocol, struct socket **res)
1207 {
1208         return __sock_create(family, type, protocol, res, 1);
1209 }
1210
1211 asmlinkage long sys_socket(int family, int type, int protocol)
1212 {
1213         int retval;
1214         struct socket *sock;
1215
1216         retval = sock_create(family, type, protocol, &sock);
1217         if (retval < 0)
1218                 goto out;
1219
1220         set_bit(SOCK_USER_SOCKET, &sock->flags);
1221         retval = sock_map_fd(sock);
1222         if (retval < 0)
1223                 goto out_release;
1224
1225 out:
1226         /* It may be already another descriptor 8) Not kernel problem. */
1227         return retval;
1228
1229 out_release:
1230         sock_release(sock);
1231         return retval;
1232 }
1233
1234 /*
1235  *      Create a pair of connected sockets.
1236  */
1237
1238 asmlinkage long sys_socketpair(int family, int type, int protocol, int __user *usockvec)
1239 {
1240         struct socket *sock1, *sock2;
1241         int fd1, fd2, err;
1242
1243         /*
1244          * Obtain the first socket and check if the underlying protocol
1245          * supports the socketpair call.
1246          */
1247
1248         err = sock_create(family, type, protocol, &sock1);
1249         if (err < 0)
1250                 goto out;
1251         set_bit(SOCK_USER_SOCKET, &sock1->flags);
1252
1253         err = sock_create(family, type, protocol, &sock2);
1254         if (err < 0)
1255                 goto out_release_1;
1256         set_bit(SOCK_USER_SOCKET, &sock2->flags);
1257
1258         err = sock1->ops->socketpair(sock1, sock2);
1259         if (err < 0) 
1260                 goto out_release_both;
1261
1262         fd1 = fd2 = -1;
1263
1264         err = sock_map_fd(sock1);
1265         if (err < 0)
1266                 goto out_release_both;
1267         fd1 = err;
1268
1269         err = sock_map_fd(sock2);
1270         if (err < 0)
1271                 goto out_close_1;
1272         fd2 = err;
1273
1274         /* fd1 and fd2 may be already another descriptors.
1275          * Not kernel problem.
1276          */
1277
1278         err = put_user(fd1, &usockvec[0]); 
1279         if (!err)
1280                 err = put_user(fd2, &usockvec[1]);
1281         if (!err)
1282                 return 0;
1283
1284         sys_close(fd2);
1285         sys_close(fd1);
1286         return err;
1287
1288 out_close_1:
1289         sock_release(sock2);
1290         sys_close(fd1);
1291         return err;
1292
1293 out_release_both:
1294         sock_release(sock2);
1295 out_release_1:
1296         sock_release(sock1);
1297 out:
1298         return err;
1299 }
1300
1301
1302 /*
1303  *      Bind a name to a socket. Nothing much to do here since it's
1304  *      the protocol's responsibility to handle the local address.
1305  *
1306  *      We move the socket address to kernel space before we call
1307  *      the protocol layer (having also checked the address is ok).
1308  */
1309
1310 asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1311 {
1312         struct socket *sock;
1313         char address[MAX_SOCK_ADDR];
1314         int err;
1315
1316         if((sock = sockfd_lookup(fd,&err))!=NULL)
1317         {
1318                 if((err=move_addr_to_kernel(umyaddr,addrlen,address))>=0) {
1319                         err = security_socket_bind(sock, (struct sockaddr *)address, addrlen);
1320                         if (err) {
1321                                 sockfd_put(sock);
1322                                 return err;
1323                         }
1324                         err = sock->ops->bind(sock, (struct sockaddr *)address, addrlen);
1325                 }
1326                 sockfd_put(sock);
1327         }                       
1328         return err;
1329 }
1330
1331
1332 /*
1333  *      Perform a listen. Basically, we allow the protocol to do anything
1334  *      necessary for a listen, and if that works, we mark the socket as
1335  *      ready for listening.
1336  */
1337
1338 int sysctl_somaxconn = SOMAXCONN;
1339
1340 asmlinkage long sys_listen(int fd, int backlog)
1341 {
1342         struct socket *sock;
1343         int err;
1344         
1345         if ((sock = sockfd_lookup(fd, &err)) != NULL) {
1346                 if ((unsigned) backlog > sysctl_somaxconn)
1347                         backlog = sysctl_somaxconn;
1348
1349                 err = security_socket_listen(sock, backlog);
1350                 if (err) {
1351                         sockfd_put(sock);
1352                         return err;
1353                 }
1354
1355                 err=sock->ops->listen(sock, backlog);
1356                 sockfd_put(sock);
1357         }
1358         return err;
1359 }
1360
1361
1362 /*
1363  *      For accept, we attempt to create a new socket, set up the link
1364  *      with the client, wake up the client, then return the new
1365  *      connected fd. We collect the address of the connector in kernel
1366  *      space and move it to user at the very end. This is unclean because
1367  *      we open the socket then return an error.
1368  *
1369  *      1003.1g adds the ability to recvmsg() to query connection pending
1370  *      status to recvmsg. We need to add that support in a way thats
1371  *      clean when we restucture accept also.
1372  */
1373
1374 asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr, int __user *upeer_addrlen)
1375 {
1376         struct socket *sock, *newsock;
1377         int err, len;
1378         char address[MAX_SOCK_ADDR];
1379
1380         sock = sockfd_lookup(fd, &err);
1381         if (!sock)
1382                 goto out;
1383
1384         err = -ENFILE;
1385         if (!(newsock = sock_alloc())) 
1386                 goto out_put;
1387
1388         newsock->type = sock->type;
1389         newsock->ops = sock->ops;
1390
1391         err = security_socket_accept(sock, newsock);
1392         if (err)
1393                 goto out_release;
1394
1395         /*
1396          * We don't need try_module_get here, as the listening socket (sock)
1397          * has the protocol module (sock->ops->owner) held.
1398          */
1399         __module_get(newsock->ops->owner);
1400
1401         err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1402         if (err < 0)
1403                 goto out_release;
1404
1405         if (upeer_sockaddr) {
1406                 if(newsock->ops->getname(newsock, (struct sockaddr *)address, &len, 2)<0) {
1407                         err = -ECONNABORTED;
1408                         goto out_release;
1409                 }
1410                 err = move_addr_to_user(address, len, upeer_sockaddr, upeer_addrlen);
1411                 if (err < 0)
1412                         goto out_release;
1413         }
1414
1415         /* File flags are not inherited via accept() unlike another OSes. */
1416
1417         if ((err = sock_map_fd(newsock)) < 0)
1418                 goto out_release;
1419
1420         security_socket_post_accept(sock, newsock);
1421
1422 out_put:
1423         sockfd_put(sock);
1424 out:
1425         return err;
1426 out_release:
1427         sock_release(newsock);
1428         goto out_put;
1429 }
1430
1431
1432 /*
1433  *      Attempt to connect to a socket with the server address.  The address
1434  *      is in user space so we verify it is OK and move it to kernel space.
1435  *
1436  *      For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1437  *      break bindings
1438  *
1439  *      NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1440  *      other SEQPACKET protocols that take time to connect() as it doesn't
1441  *      include the -EINPROGRESS status for such sockets.
1442  */
1443
1444 asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1445 {
1446         struct socket *sock;
1447         char address[MAX_SOCK_ADDR];
1448         int err;
1449
1450         sock = sockfd_lookup(fd, &err);
1451         if (!sock)
1452                 goto out;
1453         err = move_addr_to_kernel(uservaddr, addrlen, address);
1454         if (err < 0)
1455                 goto out_put;
1456
1457         err = security_socket_connect(sock, (struct sockaddr *)address, addrlen);
1458         if (err)
1459                 goto out_put;
1460
1461         err = sock->ops->connect(sock, (struct sockaddr *) address, addrlen,
1462                                  sock->file->f_flags);
1463 out_put:
1464         sockfd_put(sock);
1465 out:
1466         return err;
1467 }
1468
1469 /*
1470  *      Get the local address ('name') of a socket object. Move the obtained
1471  *      name to user space.
1472  */
1473
1474 asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr, int __user *usockaddr_len)
1475 {
1476         struct socket *sock;
1477         char address[MAX_SOCK_ADDR];
1478         int len, err;
1479         
1480         sock = sockfd_lookup(fd, &err);
1481         if (!sock)
1482                 goto out;
1483
1484         err = security_socket_getsockname(sock);
1485         if (err)
1486                 goto out_put;
1487
1488         err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
1489         if (err)
1490                 goto out_put;
1491         err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
1492
1493 out_put:
1494         sockfd_put(sock);
1495 out:
1496         return err;
1497 }
1498
1499 /*
1500  *      Get the remote address ('name') of a socket object. Move the obtained
1501  *      name to user space.
1502  */
1503
1504 asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr, int __user *usockaddr_len)
1505 {
1506         struct socket *sock;
1507         char address[MAX_SOCK_ADDR];
1508         int len, err;
1509
1510         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1511         {
1512                 err = security_socket_getpeername(sock);
1513                 if (err) {
1514                         sockfd_put(sock);
1515                         return err;
1516                 }
1517
1518                 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 1);
1519                 if (!err)
1520                         err=move_addr_to_user(address,len, usockaddr, usockaddr_len);
1521                 sockfd_put(sock);
1522         }
1523         return err;
1524 }
1525
1526 /*
1527  *      Send a datagram to a given address. We move the address into kernel
1528  *      space and check the user space data area is readable before invoking
1529  *      the protocol.
1530  */
1531
1532 asmlinkage long sys_sendto(int fd, void __user * buff, size_t len, unsigned flags,
1533                            struct sockaddr __user *addr, int addr_len)
1534 {
1535         struct socket *sock;
1536         char address[MAX_SOCK_ADDR];
1537         int err;
1538         struct msghdr msg;
1539         struct iovec iov;
1540         
1541         sock = sockfd_lookup(fd, &err);
1542         if (!sock)
1543                 goto out;
1544         iov.iov_base=buff;
1545         iov.iov_len=len;
1546         msg.msg_name=NULL;
1547         msg.msg_iov=&iov;
1548         msg.msg_iovlen=1;
1549         msg.msg_control=NULL;
1550         msg.msg_controllen=0;
1551         msg.msg_namelen=0;
1552         if(addr)
1553         {
1554                 err = move_addr_to_kernel(addr, addr_len, address);
1555                 if (err < 0)
1556                         goto out_put;
1557                 msg.msg_name=address;
1558                 msg.msg_namelen=addr_len;
1559         }
1560         if (sock->file->f_flags & O_NONBLOCK)
1561                 flags |= MSG_DONTWAIT;
1562         msg.msg_flags = flags;
1563         err = sock_sendmsg(sock, &msg, len);
1564
1565 out_put:                
1566         sockfd_put(sock);
1567 out:
1568         return err;
1569 }
1570
1571 /*
1572  *      Send a datagram down a socket. 
1573  */
1574
1575 asmlinkage long sys_send(int fd, void __user * buff, size_t len, unsigned flags)
1576 {
1577         return sys_sendto(fd, buff, len, flags, NULL, 0);
1578 }
1579
1580 /*
1581  *      Receive a frame from the socket and optionally record the address of the 
1582  *      sender. We verify the buffers are writable and if needed move the
1583  *      sender address from kernel to user space.
1584  */
1585
1586 asmlinkage long sys_recvfrom(int fd, void __user * ubuf, size_t size, unsigned flags,
1587                              struct sockaddr __user *addr, int __user *addr_len)
1588 {
1589         struct socket *sock;
1590         struct iovec iov;
1591         struct msghdr msg;
1592         char address[MAX_SOCK_ADDR];
1593         int err,err2;
1594
1595         sock = sockfd_lookup(fd, &err);
1596         if (!sock)
1597                 goto out;
1598
1599         msg.msg_control=NULL;
1600         msg.msg_controllen=0;
1601         msg.msg_iovlen=1;
1602         msg.msg_iov=&iov;
1603         iov.iov_len=size;
1604         iov.iov_base=ubuf;
1605         msg.msg_name=address;
1606         msg.msg_namelen=MAX_SOCK_ADDR;
1607         if (sock->file->f_flags & O_NONBLOCK)
1608                 flags |= MSG_DONTWAIT;
1609         err=sock_recvmsg(sock, &msg, size, flags);
1610
1611         if(err >= 0 && addr != NULL)
1612         {
1613                 err2=move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
1614                 if(err2<0)
1615                         err=err2;
1616         }
1617         sockfd_put(sock);                       
1618 out:
1619         return err;
1620 }
1621
1622 /*
1623  *      Receive a datagram from a socket. 
1624  */
1625
1626 asmlinkage long sys_recv(int fd, void __user * ubuf, size_t size, unsigned flags)
1627 {
1628         return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1629 }
1630
1631 /*
1632  *      Set a socket option. Because we don't know the option lengths we have
1633  *      to pass the user mode parameter for the protocols to sort out.
1634  */
1635
1636 asmlinkage long sys_setsockopt(int fd, int level, int optname, char __user *optval, int optlen)
1637 {
1638         int err;
1639         struct socket *sock;
1640
1641         if (optlen < 0)
1642                 return -EINVAL;
1643                         
1644         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1645         {
1646                 err = security_socket_setsockopt(sock,level,optname);
1647                 if (err) {
1648                         sockfd_put(sock);
1649                         return err;
1650                 }
1651
1652                 if (level == SOL_SOCKET)
1653                         err=sock_setsockopt(sock,level,optname,optval,optlen);
1654                 else
1655                         err=sock->ops->setsockopt(sock, level, optname, optval, optlen);
1656                 sockfd_put(sock);
1657         }
1658         return err;
1659 }
1660
1661 /*
1662  *      Get a socket option. Because we don't know the option lengths we have
1663  *      to pass a user mode parameter for the protocols to sort out.
1664  */
1665
1666 asmlinkage long sys_getsockopt(int fd, int level, int optname, char __user *optval, int __user *optlen)
1667 {
1668         int err;
1669         struct socket *sock;
1670
1671         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1672         {
1673                 err = security_socket_getsockopt(sock, level, 
1674                                                            optname);
1675                 if (err) {
1676                         sockfd_put(sock);
1677                         return err;
1678                 }
1679
1680                 if (level == SOL_SOCKET)
1681                         err=sock_getsockopt(sock,level,optname,optval,optlen);
1682                 else
1683                         err=sock->ops->getsockopt(sock, level, optname, optval, optlen);
1684                 sockfd_put(sock);
1685         }
1686         return err;
1687 }
1688
1689
1690 /*
1691  *      Shutdown a socket.
1692  */
1693
1694 asmlinkage long sys_shutdown(int fd, int how)
1695 {
1696         int err;
1697         struct socket *sock;
1698
1699         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1700         {
1701                 err = security_socket_shutdown(sock, how);
1702                 if (err) {
1703                         sockfd_put(sock);
1704                         return err;
1705                 }
1706                                 
1707                 err=sock->ops->shutdown(sock, how);
1708                 sockfd_put(sock);
1709         }
1710         return err;
1711 }
1712
1713 /* A couple of helpful macros for getting the address of the 32/64 bit 
1714  * fields which are the same type (int / unsigned) on our platforms.
1715  */
1716 #define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1717 #define COMPAT_NAMELEN(msg)     COMPAT_MSG(msg, msg_namelen)
1718 #define COMPAT_FLAGS(msg)       COMPAT_MSG(msg, msg_flags)
1719
1720
1721 /*
1722  *      BSD sendmsg interface
1723  */
1724
1725 asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1726 {
1727         struct compat_msghdr __user *msg_compat = (struct compat_msghdr __user *)msg;
1728         struct socket *sock;
1729         char address[MAX_SOCK_ADDR];
1730         struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
1731         unsigned char ctl[sizeof(struct cmsghdr) + 20]; /* 20 is size of ipv6_pktinfo */
1732         unsigned char *ctl_buf = ctl;
1733         struct msghdr msg_sys;
1734         int err, ctl_len, iov_size, total_len;
1735         
1736         err = -EFAULT;
1737         if (MSG_CMSG_COMPAT & flags) {
1738                 if (get_compat_msghdr(&msg_sys, msg_compat))
1739                         return -EFAULT;
1740         } else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1741                 return -EFAULT;
1742
1743         sock = sockfd_lookup(fd, &err);
1744         if (!sock) 
1745                 goto out;
1746
1747         /* do not move before msg_sys is valid */
1748         err = -EMSGSIZE;
1749         if (msg_sys.msg_iovlen > UIO_MAXIOV)
1750                 goto out_put;
1751
1752         /* Check whether to allocate the iovec area*/
1753         err = -ENOMEM;
1754         iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1755         if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1756                 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1757                 if (!iov)
1758                         goto out_put;
1759         }
1760
1761         /* This will also move the address data into kernel space */
1762         if (MSG_CMSG_COMPAT & flags) {
1763                 err = verify_compat_iovec(&msg_sys, iov, address, VERIFY_READ);
1764         } else
1765                 err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
1766         if (err < 0) 
1767                 goto out_freeiov;
1768         total_len = err;
1769
1770         err = -ENOBUFS;
1771
1772         if (msg_sys.msg_controllen > INT_MAX)
1773                 goto out_freeiov;
1774         ctl_len = msg_sys.msg_controllen; 
1775         if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
1776                 err = cmsghdr_from_user_compat_to_kern(&msg_sys, ctl, sizeof(ctl));
1777                 if (err)
1778                         goto out_freeiov;
1779                 ctl_buf = msg_sys.msg_control;
1780         } else if (ctl_len) {
1781                 if (ctl_len > sizeof(ctl))
1782                 {
1783                         ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
1784                         if (ctl_buf == NULL) 
1785                                 goto out_freeiov;
1786                 }
1787                 err = -EFAULT;
1788                 /*
1789                  * Careful! Before this, msg_sys.msg_control contains a user pointer.
1790                  * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1791                  * checking falls down on this.
1792                  */
1793                 if (copy_from_user(ctl_buf, (void __user *) msg_sys.msg_control, ctl_len))
1794                         goto out_freectl;
1795                 msg_sys.msg_control = ctl_buf;
1796         }
1797         msg_sys.msg_flags = flags;
1798
1799         if (sock->file->f_flags & O_NONBLOCK)
1800                 msg_sys.msg_flags |= MSG_DONTWAIT;
1801         err = sock_sendmsg(sock, &msg_sys, total_len);
1802
1803 out_freectl:
1804         if (ctl_buf != ctl)    
1805                 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1806 out_freeiov:
1807         if (iov != iovstack)
1808                 sock_kfree_s(sock->sk, iov, iov_size);
1809 out_put:
1810         sockfd_put(sock);
1811 out:       
1812         return err;
1813 }
1814
1815 /*
1816  *      BSD recvmsg interface
1817  */
1818
1819 asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg, unsigned int flags)
1820 {
1821         struct compat_msghdr __user *msg_compat = (struct compat_msghdr __user *)msg;
1822         struct socket *sock;
1823         struct iovec iovstack[UIO_FASTIOV];
1824         struct iovec *iov=iovstack;
1825         struct msghdr msg_sys;
1826         unsigned long cmsg_ptr;
1827         int err, iov_size, total_len, len;
1828
1829         /* kernel mode address */
1830         char addr[MAX_SOCK_ADDR];
1831
1832         /* user mode address pointers */
1833         struct sockaddr __user *uaddr;
1834         int __user *uaddr_len;
1835         
1836         if (MSG_CMSG_COMPAT & flags) {
1837                 if (get_compat_msghdr(&msg_sys, msg_compat))
1838                         return -EFAULT;
1839         } else
1840                 if (copy_from_user(&msg_sys,msg,sizeof(struct msghdr)))
1841                         return -EFAULT;
1842
1843         sock = sockfd_lookup(fd, &err);
1844         if (!sock)
1845                 goto out;
1846
1847         err = -EMSGSIZE;
1848         if (msg_sys.msg_iovlen > UIO_MAXIOV)
1849                 goto out_put;
1850         
1851         /* Check whether to allocate the iovec area*/
1852         err = -ENOMEM;
1853         iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1854         if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1855                 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1856                 if (!iov)
1857                         goto out_put;
1858         }
1859
1860         /*
1861          *      Save the user-mode address (verify_iovec will change the
1862          *      kernel msghdr to use the kernel address space)
1863          */
1864          
1865         uaddr = (void __user *) msg_sys.msg_name;
1866         uaddr_len = COMPAT_NAMELEN(msg);
1867         if (MSG_CMSG_COMPAT & flags) {
1868                 err = verify_compat_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1869         } else
1870                 err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1871         if (err < 0)
1872                 goto out_freeiov;
1873         total_len=err;
1874
1875         cmsg_ptr = (unsigned long)msg_sys.msg_control;
1876         msg_sys.msg_flags = 0;
1877         if (MSG_CMSG_COMPAT & flags)
1878                 msg_sys.msg_flags = MSG_CMSG_COMPAT;
1879         
1880         if (sock->file->f_flags & O_NONBLOCK)
1881                 flags |= MSG_DONTWAIT;
1882         err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1883         if (err < 0)
1884                 goto out_freeiov;
1885         len = err;
1886
1887         if (uaddr != NULL) {
1888                 err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr, uaddr_len);
1889                 if (err < 0)
1890                         goto out_freeiov;
1891         }
1892         err = __put_user(msg_sys.msg_flags, COMPAT_FLAGS(msg));
1893         if (err)
1894                 goto out_freeiov;
1895         if (MSG_CMSG_COMPAT & flags)
1896                 err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr, 
1897                                  &msg_compat->msg_controllen);
1898         else
1899                 err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr, 
1900                                  &msg->msg_controllen);
1901         if (err)
1902                 goto out_freeiov;
1903         err = len;
1904
1905 out_freeiov:
1906         if (iov != iovstack)
1907                 sock_kfree_s(sock->sk, iov, iov_size);
1908 out_put:
1909         sockfd_put(sock);
1910 out:
1911         return err;
1912 }
1913
1914 #ifdef __ARCH_WANT_SYS_SOCKETCALL
1915
1916 /* Argument list sizes for sys_socketcall */
1917 #define AL(x) ((x) * sizeof(unsigned long))
1918 static unsigned char nargs[18]={AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
1919                                 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
1920                                 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)};
1921 #undef AL
1922
1923 /*
1924  *      System call vectors. 
1925  *
1926  *      Argument checking cleaned up. Saved 20% in size.
1927  *  This function doesn't need to set the kernel lock because
1928  *  it is set by the callees. 
1929  */
1930
1931 asmlinkage long sys_socketcall(int call, unsigned long __user *args)
1932 {
1933         unsigned long a[6];
1934         unsigned long a0,a1;
1935         int err;
1936
1937         if(call<1||call>SYS_RECVMSG)
1938                 return -EINVAL;
1939
1940         /* copy_from_user should be SMP safe. */
1941         if (copy_from_user(a, args, nargs[call]))
1942                 return -EFAULT;
1943                 
1944         a0=a[0];
1945         a1=a[1];
1946         
1947         switch(call) 
1948         {
1949                 case SYS_SOCKET:
1950                         err = sys_socket(a0,a1,a[2]);
1951                         break;
1952                 case SYS_BIND:
1953                         err = sys_bind(a0,(struct sockaddr __user *)a1, a[2]);
1954                         break;
1955                 case SYS_CONNECT:
1956                         err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
1957                         break;
1958                 case SYS_LISTEN:
1959                         err = sys_listen(a0,a1);
1960                         break;
1961                 case SYS_ACCEPT:
1962                         err = sys_accept(a0,(struct sockaddr __user *)a1, (int __user *)a[2]);
1963                         break;
1964                 case SYS_GETSOCKNAME:
1965                         err = sys_getsockname(a0,(struct sockaddr __user *)a1, (int __user *)a[2]);
1966                         break;
1967                 case SYS_GETPEERNAME:
1968                         err = sys_getpeername(a0, (struct sockaddr __user *)a1, (int __user *)a[2]);
1969                         break;
1970                 case SYS_SOCKETPAIR:
1971                         err = sys_socketpair(a0,a1, a[2], (int __user *)a[3]);
1972                         break;
1973                 case SYS_SEND:
1974                         err = sys_send(a0, (void __user *)a1, a[2], a[3]);
1975                         break;
1976                 case SYS_SENDTO:
1977                         err = sys_sendto(a0,(void __user *)a1, a[2], a[3],
1978                                          (struct sockaddr __user *)a[4], a[5]);
1979                         break;
1980                 case SYS_RECV:
1981                         err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
1982                         break;
1983                 case SYS_RECVFROM:
1984                         err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
1985                                            (struct sockaddr __user *)a[4], (int __user *)a[5]);
1986                         break;
1987                 case SYS_SHUTDOWN:
1988                         err = sys_shutdown(a0,a1);
1989                         break;
1990                 case SYS_SETSOCKOPT:
1991                         err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
1992                         break;
1993                 case SYS_GETSOCKOPT:
1994                         err = sys_getsockopt(a0, a1, a[2], (char __user *)a[3], (int __user *)a[4]);
1995                         break;
1996                 case SYS_SENDMSG:
1997                         err = sys_sendmsg(a0, (struct msghdr __user *) a1, a[2]);
1998                         break;
1999                 case SYS_RECVMSG:
2000                         err = sys_recvmsg(a0, (struct msghdr __user *) a1, a[2]);
2001                         break;
2002                 default:
2003                         err = -EINVAL;
2004                         break;
2005         }
2006         return err;
2007 }
2008
2009 #endif /* __ARCH_WANT_SYS_SOCKETCALL */
2010
2011 /*
2012  *      This function is called by a protocol handler that wants to
2013  *      advertise its address family, and have it linked into the
2014  *      SOCKET module.
2015  */
2016
2017 int sock_register(struct net_proto_family *ops)
2018 {
2019         int err;
2020
2021         if (ops->family >= NPROTO) {
2022                 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
2023                 return -ENOBUFS;
2024         }
2025         net_family_write_lock();
2026         err = -EEXIST;
2027         if (net_families[ops->family] == NULL) {
2028                 net_families[ops->family]=ops;
2029                 err = 0;
2030         }
2031         net_family_write_unlock();
2032         printk(KERN_INFO "NET: Registered protocol family %d\n",
2033                ops->family);
2034         return err;
2035 }
2036
2037 /*
2038  *      This function is called by a protocol handler that wants to
2039  *      remove its address family, and have it unlinked from the
2040  *      SOCKET module.
2041  */
2042
2043 int sock_unregister(int family)
2044 {
2045         if (family < 0 || family >= NPROTO)
2046                 return -1;
2047
2048         net_family_write_lock();
2049         net_families[family]=NULL;
2050         net_family_write_unlock();
2051         printk(KERN_INFO "NET: Unregistered protocol family %d\n",
2052                family);
2053         return 0;
2054 }
2055
2056
2057 extern void sk_init(void);
2058
2059 void __init sock_init(void)
2060 {
2061         /*
2062          *      Initialize sock SLAB cache.
2063          */
2064          
2065         sk_init();
2066
2067 #ifdef SLAB_SKB
2068         /*
2069          *      Initialize skbuff SLAB cache 
2070          */
2071         skb_init();
2072 #endif
2073
2074         /*
2075          *      Initialize the protocols module. 
2076          */
2077
2078         init_inodecache();
2079         register_filesystem(&sock_fs_type);
2080         sock_mnt = kern_mount(&sock_fs_type);
2081         /* The real protocol initialization is performed when
2082          *  do_initcalls is run.  
2083          */
2084
2085 #ifdef CONFIG_NETFILTER
2086         netfilter_init();
2087 #endif
2088 }
2089
2090 #ifdef CONFIG_PROC_FS
2091 void socket_seq_show(struct seq_file *seq)
2092 {
2093         int cpu;
2094         int counter = 0;
2095
2096         for (cpu = 0; cpu < NR_CPUS; cpu++)
2097                 counter += per_cpu(sockets_in_use, cpu);
2098
2099         /* It can be negative, by the way. 8) */
2100         if (counter < 0)
2101                 counter = 0;
2102
2103         seq_printf(seq, "sockets: used %d\n", counter);
2104 }
2105 #endif /* CONFIG_PROC_FS */
2106
2107 /* ABI emulation layers need these two */
2108 EXPORT_SYMBOL(move_addr_to_kernel);
2109 EXPORT_SYMBOL(move_addr_to_user);
2110 EXPORT_SYMBOL(sock_create);
2111 EXPORT_SYMBOL(sock_create_kern);
2112 EXPORT_SYMBOL(sock_create_lite);
2113 EXPORT_SYMBOL(sock_map_fd);
2114 EXPORT_SYMBOL(sock_recvmsg);
2115 EXPORT_SYMBOL(sock_register);
2116 EXPORT_SYMBOL(sock_release);
2117 EXPORT_SYMBOL(sock_sendmsg);
2118 EXPORT_SYMBOL(sock_unregister);
2119 EXPORT_SYMBOL(sock_wake_async);
2120 EXPORT_SYMBOL(sockfd_lookup);
2121 EXPORT_SYMBOL(kernel_sendmsg);
2122 EXPORT_SYMBOL(kernel_recvmsg);