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