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