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 = FMODE_READ | FMODE_WRITE;
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 EXPORT_SYMBOL_GPL(sock_alloc);
498
499 /*
500  *      In theory you can't get an open on this inode, but /proc provides
501  *      a back door. Remember to keep it shut otherwise you'll let the
502  *      creepy crawlies in.
503  */
504   
505 static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
506 {
507         return -ENXIO;
508 }
509
510 struct file_operations bad_sock_fops = {
511         .owner = THIS_MODULE,
512         .open = sock_no_open,
513 };
514
515 /**
516  *      sock_release    -       close a socket
517  *      @sock: socket to close
518  *
519  *      The socket is released from the protocol stack if it has a release
520  *      callback, and the inode is then released if the socket is bound to
521  *      an inode not a file. 
522  */
523  
524 void sock_release(struct socket *sock)
525 {
526         if (sock->ops) {
527                 struct module *owner = sock->ops->owner;
528
529                 sock->ops->release(sock);
530                 sock->ops = NULL;
531                 module_put(owner);
532         }
533
534         if (sock->fasync_list)
535                 printk(KERN_ERR "sock_release: fasync list not empty!\n");
536
537         get_cpu_var(sockets_in_use)--;
538         put_cpu_var(sockets_in_use);
539         if (!sock->file) {
540                 iput(SOCK_INODE(sock));
541                 return;
542         }
543         sock->file=NULL;
544 }
545
546 static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock, 
547                                  struct msghdr *msg, size_t size)
548 {
549         struct sock_iocb *si = kiocb_to_siocb(iocb);
550         int err, len;
551
552         si->sock = sock;
553         si->scm = NULL;
554         si->msg = msg;
555         si->size = size;
556
557         err = security_socket_sendmsg(sock, msg, size);
558         if (err)
559                 return err;
560
561         len = sock->ops->sendmsg(iocb, sock, msg, size);
562         if (sock->sk) {
563                 if (len == size)
564                         vx_sock_send(sock->sk, size);
565                 else
566                         vx_sock_fail(sock->sk, size);
567         }
568         vxdprintk(VXD_CBIT(net, 7),
569                 "__sock_sendmsg: %p[%p,%p,%p;%d]:%d/%d",
570                 sock, sock->sk,
571                 (sock->sk)?sock->sk->sk_nx_info:0,
572                 (sock->sk)?sock->sk->sk_vx_info:0,
573                 (sock->sk)?sock->sk->sk_xid:0,
574                 (unsigned int)size, len);
575         return len;
576 }
577
578 int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
579 {
580         struct kiocb iocb;
581         struct sock_iocb siocb;
582         int ret;
583
584         init_sync_kiocb(&iocb, NULL);
585         iocb.private = &siocb;
586         ret = __sock_sendmsg(&iocb, sock, msg, size);
587         if (-EIOCBQUEUED == ret)
588                 ret = wait_on_sync_kiocb(&iocb);
589         return ret;
590 }
591
592 int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
593                    struct kvec *vec, size_t num, size_t size)
594 {
595         mm_segment_t oldfs = get_fs();
596         int result;
597
598         set_fs(KERNEL_DS);
599         /*
600          * the following is safe, since for compiler definitions of kvec and
601          * iovec are identical, yielding the same in-core layout and alignment
602          */
603         msg->msg_iov = (struct iovec *)vec,
604         msg->msg_iovlen = num;
605         result = sock_sendmsg(sock, msg, size);
606         set_fs(oldfs);
607         return result;
608 }
609
610 static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock, 
611                                  struct msghdr *msg, size_t size, int flags)
612 {
613         int err, len;
614         struct sock_iocb *si = kiocb_to_siocb(iocb);
615
616         si->sock = sock;
617         si->scm = NULL;
618         si->msg = msg;
619         si->size = size;
620         si->flags = flags;
621
622         err = security_socket_recvmsg(sock, msg, size, flags);
623         if (err)
624                 return err;
625
626         len = sock->ops->recvmsg(iocb, sock, msg, size, flags);
627         if ((len >= 0) && sock->sk)
628                 vx_sock_recv(sock->sk, len);
629         vxdprintk(VXD_CBIT(net, 7),
630                 "__sock_recvmsg: %p[%p,%p,%p;%d]:%d/%d",
631                 sock, sock->sk,
632                 (sock->sk)?sock->sk->sk_nx_info:0,
633                 (sock->sk)?sock->sk->sk_vx_info:0,
634                 (sock->sk)?sock->sk->sk_xid:0,
635                 (unsigned int)size, len);
636         return len;
637 }
638
639 int sock_recvmsg(struct socket *sock, struct msghdr *msg, 
640                  size_t size, int flags)
641 {
642         struct kiocb iocb;
643         struct sock_iocb siocb;
644         int ret;
645
646         init_sync_kiocb(&iocb, NULL);
647         iocb.private = &siocb;
648         ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
649         if (-EIOCBQUEUED == ret)
650                 ret = wait_on_sync_kiocb(&iocb);
651         return ret;
652 }
653
654 int kernel_recvmsg(struct socket *sock, struct msghdr *msg, 
655                    struct kvec *vec, size_t num,
656                    size_t size, int flags)
657 {
658         mm_segment_t oldfs = get_fs();
659         int result;
660
661         set_fs(KERNEL_DS);
662         /*
663          * the following is safe, since for compiler definitions of kvec and
664          * iovec are identical, yielding the same in-core layout and alignment
665          */
666         msg->msg_iov = (struct iovec *)vec,
667         msg->msg_iovlen = num;
668         result = sock_recvmsg(sock, msg, size, flags);
669         set_fs(oldfs);
670         return result;
671 }
672
673 static void sock_aio_dtor(struct kiocb *iocb)
674 {
675         kfree(iocb->private);
676 }
677
678 /*
679  *      Read data from a socket. ubuf is a user mode pointer. We make sure the user
680  *      area ubuf...ubuf+size-1 is writable before asking the protocol.
681  */
682
683 static ssize_t sock_aio_read(struct kiocb *iocb, char __user *ubuf,
684                          size_t size, loff_t pos)
685 {
686         struct sock_iocb *x, siocb;
687         struct socket *sock;
688         int flags;
689
690         if (pos != 0)
691                 return -ESPIPE;
692         if (size==0)            /* Match SYS5 behaviour */
693                 return 0;
694
695         if (is_sync_kiocb(iocb))
696                 x = &siocb;
697         else {
698                 x = kmalloc(sizeof(struct sock_iocb), GFP_KERNEL);
699                 if (!x)
700                         return -ENOMEM;
701                 iocb->ki_dtor = sock_aio_dtor;
702         }
703         iocb->private = x;
704         x->kiocb = iocb;
705         sock = SOCKET_I(iocb->ki_filp->f_dentry->d_inode); 
706
707         x->async_msg.msg_name = NULL;
708         x->async_msg.msg_namelen = 0;
709         x->async_msg.msg_iov = &x->async_iov;
710         x->async_msg.msg_iovlen = 1;
711         x->async_msg.msg_control = NULL;
712         x->async_msg.msg_controllen = 0;
713         x->async_iov.iov_base = ubuf;
714         x->async_iov.iov_len = size;
715         flags = !(iocb->ki_filp->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
716
717         return __sock_recvmsg(iocb, sock, &x->async_msg, size, flags);
718 }
719
720
721 /*
722  *      Write data to a socket. We verify that the user area ubuf..ubuf+size-1
723  *      is readable by the user process.
724  */
725
726 static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *ubuf,
727                           size_t size, loff_t pos)
728 {
729         struct sock_iocb *x, siocb;
730         struct socket *sock;
731         
732         if (pos != 0)
733                 return -ESPIPE;
734         if(size==0)             /* Match SYS5 behaviour */
735                 return 0;
736
737         if (is_sync_kiocb(iocb))
738                 x = &siocb;
739         else {
740                 x = kmalloc(sizeof(struct sock_iocb), GFP_KERNEL);
741                 if (!x)
742                         return -ENOMEM;
743                 iocb->ki_dtor = sock_aio_dtor;
744         }
745         iocb->private = x;
746         x->kiocb = iocb;
747         sock = SOCKET_I(iocb->ki_filp->f_dentry->d_inode); 
748
749         x->async_msg.msg_name = NULL;
750         x->async_msg.msg_namelen = 0;
751         x->async_msg.msg_iov = &x->async_iov;
752         x->async_msg.msg_iovlen = 1;
753         x->async_msg.msg_control = NULL;
754         x->async_msg.msg_controllen = 0;
755         x->async_msg.msg_flags = !(iocb->ki_filp->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
756         if (sock->type == SOCK_SEQPACKET)
757                 x->async_msg.msg_flags |= MSG_EOR;
758         x->async_iov.iov_base = (void __user *)ubuf;
759         x->async_iov.iov_len = size;
760         
761         return __sock_sendmsg(iocb, sock, &x->async_msg, size);
762 }
763
764 ssize_t sock_sendpage(struct file *file, struct page *page,
765                       int offset, size_t size, loff_t *ppos, int more)
766 {
767         struct socket *sock;
768         int flags;
769
770         sock = SOCKET_I(file->f_dentry->d_inode);
771
772         flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
773         if (more)
774                 flags |= MSG_MORE;
775
776         return sock->ops->sendpage(sock, page, offset, size, flags);
777 }
778
779 int sock_readv_writev(int type, struct inode * inode, struct file * file,
780                       const struct iovec * iov, long count, size_t size)
781 {
782         struct msghdr msg;
783         struct socket *sock;
784
785         sock = SOCKET_I(inode);
786
787         msg.msg_name = NULL;
788         msg.msg_namelen = 0;
789         msg.msg_control = NULL;
790         msg.msg_controllen = 0;
791         msg.msg_iov = (struct iovec *) iov;
792         msg.msg_iovlen = count;
793         msg.msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
794
795         /* read() does a VERIFY_WRITE */
796         if (type == VERIFY_WRITE)
797                 return sock_recvmsg(sock, &msg, size, msg.msg_flags);
798
799         if (sock->type == SOCK_SEQPACKET)
800                 msg.msg_flags |= MSG_EOR;
801
802         return sock_sendmsg(sock, &msg, size);
803 }
804
805 static ssize_t sock_readv(struct file *file, const struct iovec *vector,
806                           unsigned long count, loff_t *ppos)
807 {
808         size_t tot_len = 0;
809         int i;
810         for (i = 0 ; i < count ; i++)
811                 tot_len += vector[i].iov_len;
812         return sock_readv_writev(VERIFY_WRITE, file->f_dentry->d_inode,
813                                  file, vector, count, tot_len);
814 }
815         
816 static ssize_t sock_writev(struct file *file, const struct iovec *vector,
817                            unsigned long count, loff_t *ppos)
818 {
819         size_t tot_len = 0;
820         int i;
821         for (i = 0 ; i < count ; i++)
822                 tot_len += vector[i].iov_len;
823         return sock_readv_writev(VERIFY_READ, file->f_dentry->d_inode,
824                                  file, vector, count, tot_len);
825 }
826
827
828 /*
829  * Atomic setting of ioctl hooks to avoid race
830  * with module unload.
831  */
832
833 static DECLARE_MUTEX(br_ioctl_mutex);
834 static int (*br_ioctl_hook)(unsigned int cmd, void __user *arg) = NULL;
835
836 void brioctl_set(int (*hook)(unsigned int, void __user *))
837 {
838         down(&br_ioctl_mutex);
839         br_ioctl_hook = hook;
840         up(&br_ioctl_mutex);
841 }
842 EXPORT_SYMBOL(brioctl_set);
843
844 static DECLARE_MUTEX(vlan_ioctl_mutex);
845 static int (*vlan_ioctl_hook)(void __user *arg);
846
847 void vlan_ioctl_set(int (*hook)(void __user *))
848 {
849         down(&vlan_ioctl_mutex);
850         vlan_ioctl_hook = hook;
851         up(&vlan_ioctl_mutex);
852 }
853 EXPORT_SYMBOL(vlan_ioctl_set);
854
855 static DECLARE_MUTEX(dlci_ioctl_mutex);
856 static int (*dlci_ioctl_hook)(unsigned int, void __user *);
857
858 void dlci_ioctl_set(int (*hook)(unsigned int, void __user *))
859 {
860         down(&dlci_ioctl_mutex);
861         dlci_ioctl_hook = hook;
862         up(&dlci_ioctl_mutex);
863 }
864 EXPORT_SYMBOL(dlci_ioctl_set);
865
866 /*
867  *      With an ioctl, arg may well be a user mode pointer, but we don't know
868  *      what to do with it - that's up to the protocol still.
869  */
870
871 static int sock_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
872                       unsigned long arg)
873 {
874         struct socket *sock;
875         void __user *argp = (void __user *)arg;
876         int pid, err;
877
878         unlock_kernel();
879         sock = SOCKET_I(inode);
880         if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
881                 err = dev_ioctl(cmd, argp);
882         } else
883 #ifdef WIRELESS_EXT
884         if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
885                 err = dev_ioctl(cmd, argp);
886         } else
887 #endif  /* WIRELESS_EXT */
888         switch (cmd) {
889                 case FIOSETOWN:
890                 case SIOCSPGRP:
891                         err = -EFAULT;
892                         if (get_user(pid, (int __user *)argp))
893                                 break;
894                         err = f_setown(sock->file, pid, 1);
895                         break;
896                 case FIOGETOWN:
897                 case SIOCGPGRP:
898                         err = put_user(sock->file->f_owner.pid, (int __user *)argp);
899                         break;
900                 case SIOCGIFBR:
901                 case SIOCSIFBR:
902                 case SIOCBRADDBR:
903                 case SIOCBRDELBR:
904                         err = -ENOPKG;
905                         if (!br_ioctl_hook)
906                                 request_module("bridge");
907
908                         down(&br_ioctl_mutex);
909                         if (br_ioctl_hook) 
910                                 err = br_ioctl_hook(cmd, argp);
911                         up(&br_ioctl_mutex);
912                         break;
913                 case SIOCGIFVLAN:
914                 case SIOCSIFVLAN:
915                         err = -ENOPKG;
916                         if (!vlan_ioctl_hook)
917                                 request_module("8021q");
918
919                         down(&vlan_ioctl_mutex);
920                         if (vlan_ioctl_hook)
921                                 err = vlan_ioctl_hook(argp);
922                         up(&vlan_ioctl_mutex);
923                         break;
924                 case SIOCGIFDIVERT:
925                 case SIOCSIFDIVERT:
926                 /* Convert this to call through a hook */
927                         err = divert_ioctl(cmd, argp);
928                         break;
929                 case SIOCADDDLCI:
930                 case SIOCDELDLCI:
931                         err = -ENOPKG;
932                         if (!dlci_ioctl_hook)
933                                 request_module("dlci");
934
935                         if (dlci_ioctl_hook) {
936                                 down(&dlci_ioctl_mutex);
937                                 err = dlci_ioctl_hook(cmd, argp);
938                                 up(&dlci_ioctl_mutex);
939                         }
940                         break;
941                 default:
942                         err = sock->ops->ioctl(sock, cmd, arg);
943                         break;
944         }
945         lock_kernel();
946
947         return err;
948 }
949
950 int sock_create_lite(int family, int type, int protocol, struct socket **res)
951 {
952         int err;
953         struct socket *sock = NULL;
954         
955         err = security_socket_create(family, type, protocol, 1);
956         if (err)
957                 goto out;
958
959         sock = sock_alloc();
960         if (!sock) {
961                 err = -ENOMEM;
962                 goto out;
963         }
964
965         security_socket_post_create(sock, family, type, protocol, 1);
966         sock->type = type;
967 out:
968         *res = sock;
969         return err;
970 }
971
972 /* No kernel lock held - perfect */
973 static unsigned int sock_poll(struct file *file, poll_table * wait)
974 {
975         struct socket *sock;
976
977         /*
978          *      We can't return errors to poll, so it's either yes or no. 
979          */
980         sock = SOCKET_I(file->f_dentry->d_inode);
981         return sock->ops->poll(file, sock, wait);
982 }
983
984 static int sock_mmap(struct file * file, struct vm_area_struct * vma)
985 {
986         struct socket *sock = SOCKET_I(file->f_dentry->d_inode);
987
988         return sock->ops->mmap(file, sock, vma);
989 }
990
991 int sock_close(struct inode *inode, struct file *filp)
992 {
993         /*
994          *      It was possible the inode is NULL we were 
995          *      closing an unfinished socket. 
996          */
997
998         if (!inode)
999         {
1000                 printk(KERN_DEBUG "sock_close: NULL inode\n");
1001                 return 0;
1002         }
1003         sock_fasync(-1, filp, 0);
1004         sock_release(SOCKET_I(inode));
1005         return 0;
1006 }
1007
1008 /*
1009  *      Update the socket async list
1010  *
1011  *      Fasync_list locking strategy.
1012  *
1013  *      1. fasync_list is modified only under process context socket lock
1014  *         i.e. under semaphore.
1015  *      2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1016  *         or under socket lock.
1017  *      3. fasync_list can be used from softirq context, so that
1018  *         modification under socket lock have to be enhanced with
1019  *         write_lock_bh(&sk->sk_callback_lock).
1020  *                                                      --ANK (990710)
1021  */
1022
1023 static int sock_fasync(int fd, struct file *filp, int on)
1024 {
1025         struct fasync_struct *fa, *fna=NULL, **prev;
1026         struct socket *sock;
1027         struct sock *sk;
1028
1029         if (on)
1030         {
1031                 fna=(struct fasync_struct *)kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
1032                 if(fna==NULL)
1033                         return -ENOMEM;
1034         }
1035
1036         sock = SOCKET_I(filp->f_dentry->d_inode);
1037
1038         if ((sk=sock->sk) == NULL) {
1039                 if (fna)
1040                         kfree(fna);
1041                 return -EINVAL;
1042         }
1043
1044         lock_sock(sk);
1045
1046         prev=&(sock->fasync_list);
1047
1048         for (fa=*prev; fa!=NULL; prev=&fa->fa_next,fa=*prev)
1049                 if (fa->fa_file==filp)
1050                         break;
1051
1052         if(on)
1053         {
1054                 if(fa!=NULL)
1055                 {
1056                         write_lock_bh(&sk->sk_callback_lock);
1057                         fa->fa_fd=fd;
1058                         write_unlock_bh(&sk->sk_callback_lock);
1059
1060                         kfree(fna);
1061                         goto out;
1062                 }
1063                 fna->fa_file=filp;
1064                 fna->fa_fd=fd;
1065                 fna->magic=FASYNC_MAGIC;
1066                 fna->fa_next=sock->fasync_list;
1067                 write_lock_bh(&sk->sk_callback_lock);
1068                 sock->fasync_list=fna;
1069                 write_unlock_bh(&sk->sk_callback_lock);
1070         }
1071         else
1072         {
1073                 if (fa!=NULL)
1074                 {
1075                         write_lock_bh(&sk->sk_callback_lock);
1076                         *prev=fa->fa_next;
1077                         write_unlock_bh(&sk->sk_callback_lock);
1078                         kfree(fa);
1079                 }
1080         }
1081
1082 out:
1083         if (sock->sk != sk)
1084                 BUG();
1085         release_sock(sock->sk);
1086         return 0;
1087 }
1088
1089 /* This function may be called only under socket lock or callback_lock */
1090
1091 int sock_wake_async(struct socket *sock, int how, int band)
1092 {
1093         if (!sock || !sock->fasync_list)
1094                 return -1;
1095         switch (how)
1096         {
1097         case 1:
1098                 
1099                 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1100                         break;
1101                 goto call_kill;
1102         case 2:
1103                 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1104                         break;
1105                 /* fall through */
1106         case 0:
1107         call_kill:
1108                 __kill_fasync(sock->fasync_list, SIGIO, band);
1109                 break;
1110         case 3:
1111                 __kill_fasync(sock->fasync_list, SIGURG, band);
1112         }
1113         return 0;
1114 }
1115
1116 static int __sock_create(int family, int type, int protocol, struct socket **res, int kern)
1117 {
1118         int i;
1119         int err;
1120         struct socket *sock;
1121
1122         /*
1123          *      Check protocol is in range
1124          */
1125         if (family < 0 || family >= NPROTO)
1126                 return -EAFNOSUPPORT;
1127         if (type < 0 || type >= SOCK_MAX)
1128                 return -EINVAL;
1129
1130         /* disable IPv6 inside vservers for now */
1131         if (family == PF_INET6 && !vx_check(0, VX_ADMIN))
1132                 return -EAFNOSUPPORT;
1133
1134         /* Compatibility.
1135
1136            This uglymoron is moved from INET layer to here to avoid
1137            deadlock in module load.
1138          */
1139         if (family == PF_INET && type == SOCK_PACKET) {
1140                 static int warned; 
1141                 if (!warned) {
1142                         warned = 1;
1143                         printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n", current->comm);
1144                 }
1145                 family = PF_PACKET;
1146         }
1147
1148         err = security_socket_create(family, type, protocol, kern);
1149         if (err)
1150                 return err;
1151                 
1152 #if defined(CONFIG_KMOD)
1153         /* Attempt to load a protocol module if the find failed. 
1154          * 
1155          * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user 
1156          * requested real, full-featured networking support upon configuration.
1157          * Otherwise module support will break!
1158          */
1159         if (net_families[family]==NULL)
1160         {
1161                 request_module("net-pf-%d",family);
1162         }
1163 #endif
1164
1165         net_family_read_lock();
1166         if (net_families[family] == NULL) {
1167                 i = -EAFNOSUPPORT;
1168                 goto out;
1169         }
1170
1171 /*
1172  *      Allocate the socket and allow the family to set things up. if
1173  *      the protocol is 0, the family is instructed to select an appropriate
1174  *      default.
1175  */
1176
1177         if (!(sock = sock_alloc())) 
1178         {
1179                 printk(KERN_WARNING "socket: no more sockets\n");
1180                 i = -ENFILE;            /* Not exactly a match, but its the
1181                                            closest posix thing */
1182                 goto out;
1183         }
1184
1185         sock->type  = type;
1186
1187         /*
1188          * We will call the ->create function, that possibly is in a loadable
1189          * module, so we have to bump that loadable module refcnt first.
1190          */
1191         i = -EAFNOSUPPORT;
1192         if (!try_module_get(net_families[family]->owner))
1193                 goto out_release;
1194
1195         if ((i = net_families[family]->create(sock, protocol)) < 0)
1196                 goto out_module_put;
1197         /*
1198          * Now to bump the refcnt of the [loadable] module that owns this
1199          * socket at sock_release time we decrement its refcnt.
1200          */
1201         if (!try_module_get(sock->ops->owner)) {
1202                 sock->ops = NULL;
1203                 goto out_module_put;
1204         }
1205         /*
1206          * Now that we're done with the ->create function, the [loadable]
1207          * module can have its refcnt decremented
1208          */
1209         module_put(net_families[family]->owner);
1210         *res = sock;
1211         security_socket_post_create(sock, family, type, protocol, kern);
1212
1213 out:
1214         net_family_read_unlock();
1215         return i;
1216 out_module_put:
1217         module_put(net_families[family]->owner);
1218 out_release:
1219         sock_release(sock);
1220         goto out;
1221 }
1222
1223 int sock_create(int family, int type, int protocol, struct socket **res)
1224 {
1225         return __sock_create(family, type, protocol, res, 0);
1226 }
1227
1228 int sock_create_kern(int family, int type, int protocol, struct socket **res)
1229 {
1230         return __sock_create(family, type, protocol, res, 1);
1231 }
1232
1233 asmlinkage long sys_socket(int family, int type, int protocol)
1234 {
1235         int retval;
1236         struct socket *sock;
1237
1238         retval = sock_create(family, type, protocol, &sock);
1239         if (retval < 0)
1240                 goto out;
1241
1242         set_bit(SOCK_USER_SOCKET, &sock->flags);
1243         retval = sock_map_fd(sock);
1244         if (retval < 0)
1245                 goto out_release;
1246
1247 out:
1248         /* It may be already another descriptor 8) Not kernel problem. */
1249         return retval;
1250
1251 out_release:
1252         sock_release(sock);
1253         return retval;
1254 }
1255
1256 /*
1257  *      Create a pair of connected sockets.
1258  */
1259
1260 asmlinkage long sys_socketpair(int family, int type, int protocol, int __user *usockvec)
1261 {
1262         struct socket *sock1, *sock2;
1263         int fd1, fd2, err;
1264
1265         /*
1266          * Obtain the first socket and check if the underlying protocol
1267          * supports the socketpair call.
1268          */
1269
1270         err = sock_create(family, type, protocol, &sock1);
1271         if (err < 0)
1272                 goto out;
1273         set_bit(SOCK_USER_SOCKET, &sock1->flags);
1274
1275         err = sock_create(family, type, protocol, &sock2);
1276         if (err < 0)
1277                 goto out_release_1;
1278         set_bit(SOCK_USER_SOCKET, &sock2->flags);
1279
1280         err = sock1->ops->socketpair(sock1, sock2);
1281         if (err < 0) 
1282                 goto out_release_both;
1283
1284         fd1 = fd2 = -1;
1285
1286         err = sock_map_fd(sock1);
1287         if (err < 0)
1288                 goto out_release_both;
1289         fd1 = err;
1290
1291         err = sock_map_fd(sock2);
1292         if (err < 0)
1293                 goto out_close_1;
1294         fd2 = err;
1295
1296         /* fd1 and fd2 may be already another descriptors.
1297          * Not kernel problem.
1298          */
1299
1300         err = put_user(fd1, &usockvec[0]); 
1301         if (!err)
1302                 err = put_user(fd2, &usockvec[1]);
1303         if (!err)
1304                 return 0;
1305
1306         sys_close(fd2);
1307         sys_close(fd1);
1308         return err;
1309
1310 out_close_1:
1311         sock_release(sock2);
1312         sys_close(fd1);
1313         return err;
1314
1315 out_release_both:
1316         sock_release(sock2);
1317 out_release_1:
1318         sock_release(sock1);
1319 out:
1320         return err;
1321 }
1322
1323
1324 /*
1325  *      Bind a name to a socket. Nothing much to do here since it's
1326  *      the protocol's responsibility to handle the local address.
1327  *
1328  *      We move the socket address to kernel space before we call
1329  *      the protocol layer (having also checked the address is ok).
1330  */
1331
1332 asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1333 {
1334         struct socket *sock;
1335         char address[MAX_SOCK_ADDR];
1336         int err;
1337
1338         if((sock = sockfd_lookup(fd,&err))!=NULL)
1339         {
1340                 if((err=move_addr_to_kernel(umyaddr,addrlen,address))>=0) {
1341                         err = security_socket_bind(sock, (struct sockaddr *)address, addrlen);
1342                         if (err) {
1343                                 sockfd_put(sock);
1344                                 return err;
1345                         }
1346                         err = sock->ops->bind(sock, (struct sockaddr *)address, addrlen);
1347                 }
1348                 sockfd_put(sock);
1349         }                       
1350         return err;
1351 }
1352
1353
1354 /*
1355  *      Perform a listen. Basically, we allow the protocol to do anything
1356  *      necessary for a listen, and if that works, we mark the socket as
1357  *      ready for listening.
1358  */
1359
1360 int sysctl_somaxconn = SOMAXCONN;
1361
1362 asmlinkage long sys_listen(int fd, int backlog)
1363 {
1364         struct socket *sock;
1365         int err;
1366         
1367         if ((sock = sockfd_lookup(fd, &err)) != NULL) {
1368                 if ((unsigned) backlog > sysctl_somaxconn)
1369                         backlog = sysctl_somaxconn;
1370
1371                 err = security_socket_listen(sock, backlog);
1372                 if (err) {
1373                         sockfd_put(sock);
1374                         return err;
1375                 }
1376
1377                 err=sock->ops->listen(sock, backlog);
1378                 sockfd_put(sock);
1379         }
1380         return err;
1381 }
1382
1383
1384 /*
1385  *      For accept, we attempt to create a new socket, set up the link
1386  *      with the client, wake up the client, then return the new
1387  *      connected fd. We collect the address of the connector in kernel
1388  *      space and move it to user at the very end. This is unclean because
1389  *      we open the socket then return an error.
1390  *
1391  *      1003.1g adds the ability to recvmsg() to query connection pending
1392  *      status to recvmsg. We need to add that support in a way thats
1393  *      clean when we restucture accept also.
1394  */
1395
1396 asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr, int __user *upeer_addrlen)
1397 {
1398         struct socket *sock, *newsock;
1399         int err, len;
1400         char address[MAX_SOCK_ADDR];
1401
1402         sock = sockfd_lookup(fd, &err);
1403         if (!sock)
1404                 goto out;
1405
1406         err = -ENFILE;
1407         if (!(newsock = sock_alloc())) 
1408                 goto out_put;
1409
1410         newsock->type = sock->type;
1411         newsock->ops = sock->ops;
1412
1413         err = security_socket_accept(sock, newsock);
1414         if (err)
1415                 goto out_release;
1416
1417         /*
1418          * We don't need try_module_get here, as the listening socket (sock)
1419          * has the protocol module (sock->ops->owner) held.
1420          */
1421         __module_get(newsock->ops->owner);
1422
1423         err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1424         if (err < 0)
1425                 goto out_release;
1426
1427         if (upeer_sockaddr) {
1428                 if(newsock->ops->getname(newsock, (struct sockaddr *)address, &len, 2)<0) {
1429                         err = -ECONNABORTED;
1430                         goto out_release;
1431                 }
1432                 err = move_addr_to_user(address, len, upeer_sockaddr, upeer_addrlen);
1433                 if (err < 0)
1434                         goto out_release;
1435         }
1436
1437         /* File flags are not inherited via accept() unlike another OSes. */
1438
1439         if ((err = sock_map_fd(newsock)) < 0)
1440                 goto out_release;
1441
1442         security_socket_post_accept(sock, newsock);
1443
1444 out_put:
1445         sockfd_put(sock);
1446 out:
1447         return err;
1448 out_release:
1449         sock_release(newsock);
1450         goto out_put;
1451 }
1452
1453
1454 /*
1455  *      Attempt to connect to a socket with the server address.  The address
1456  *      is in user space so we verify it is OK and move it to kernel space.
1457  *
1458  *      For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1459  *      break bindings
1460  *
1461  *      NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1462  *      other SEQPACKET protocols that take time to connect() as it doesn't
1463  *      include the -EINPROGRESS status for such sockets.
1464  */
1465
1466 asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr, int addrlen)
1467 {
1468         struct socket *sock;
1469         char address[MAX_SOCK_ADDR];
1470         int err;
1471
1472         sock = sockfd_lookup(fd, &err);
1473         if (!sock)
1474                 goto out;
1475         err = move_addr_to_kernel(uservaddr, addrlen, address);
1476         if (err < 0)
1477                 goto out_put;
1478
1479         err = security_socket_connect(sock, (struct sockaddr *)address, addrlen);
1480         if (err)
1481                 goto out_put;
1482
1483         err = sock->ops->connect(sock, (struct sockaddr *) address, addrlen,
1484                                  sock->file->f_flags);
1485 out_put:
1486         sockfd_put(sock);
1487 out:
1488         return err;
1489 }
1490
1491 /*
1492  *      Get the local address ('name') of a socket object. Move the obtained
1493  *      name to user space.
1494  */
1495
1496 asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr, int __user *usockaddr_len)
1497 {
1498         struct socket *sock;
1499         char address[MAX_SOCK_ADDR];
1500         int len, err;
1501         
1502         sock = sockfd_lookup(fd, &err);
1503         if (!sock)
1504                 goto out;
1505
1506         err = security_socket_getsockname(sock);
1507         if (err)
1508                 goto out_put;
1509
1510         err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
1511         if (err)
1512                 goto out_put;
1513         err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
1514
1515 out_put:
1516         sockfd_put(sock);
1517 out:
1518         return err;
1519 }
1520
1521 /*
1522  *      Get the remote address ('name') of a socket object. Move the obtained
1523  *      name to user space.
1524  */
1525
1526 asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr, int __user *usockaddr_len)
1527 {
1528         struct socket *sock;
1529         char address[MAX_SOCK_ADDR];
1530         int len, err;
1531
1532         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1533         {
1534                 err = security_socket_getpeername(sock);
1535                 if (err) {
1536                         sockfd_put(sock);
1537                         return err;
1538                 }
1539
1540                 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 1);
1541                 if (!err)
1542                         err=move_addr_to_user(address,len, usockaddr, usockaddr_len);
1543                 sockfd_put(sock);
1544         }
1545         return err;
1546 }
1547
1548 /*
1549  *      Send a datagram to a given address. We move the address into kernel
1550  *      space and check the user space data area is readable before invoking
1551  *      the protocol.
1552  */
1553
1554 asmlinkage long sys_sendto(int fd, void __user * buff, size_t len, unsigned flags,
1555                            struct sockaddr __user *addr, int addr_len)
1556 {
1557         struct socket *sock;
1558         char address[MAX_SOCK_ADDR];
1559         int err;
1560         struct msghdr msg;
1561         struct iovec iov;
1562         
1563         sock = sockfd_lookup(fd, &err);
1564         if (!sock)
1565                 goto out;
1566         iov.iov_base=buff;
1567         iov.iov_len=len;
1568         msg.msg_name=NULL;
1569         msg.msg_iov=&iov;
1570         msg.msg_iovlen=1;
1571         msg.msg_control=NULL;
1572         msg.msg_controllen=0;
1573         msg.msg_namelen=0;
1574         if(addr)
1575         {
1576                 err = move_addr_to_kernel(addr, addr_len, address);
1577                 if (err < 0)
1578                         goto out_put;
1579                 msg.msg_name=address;
1580                 msg.msg_namelen=addr_len;
1581         }
1582         if (sock->file->f_flags & O_NONBLOCK)
1583                 flags |= MSG_DONTWAIT;
1584         msg.msg_flags = flags;
1585         err = sock_sendmsg(sock, &msg, len);
1586
1587 out_put:                
1588         sockfd_put(sock);
1589 out:
1590         return err;
1591 }
1592
1593 /*
1594  *      Send a datagram down a socket. 
1595  */
1596
1597 asmlinkage long sys_send(int fd, void __user * buff, size_t len, unsigned flags)
1598 {
1599         return sys_sendto(fd, buff, len, flags, NULL, 0);
1600 }
1601
1602 /*
1603  *      Receive a frame from the socket and optionally record the address of the 
1604  *      sender. We verify the buffers are writable and if needed move the
1605  *      sender address from kernel to user space.
1606  */
1607
1608 asmlinkage long sys_recvfrom(int fd, void __user * ubuf, size_t size, unsigned flags,
1609                              struct sockaddr __user *addr, int __user *addr_len)
1610 {
1611         struct socket *sock;
1612         struct iovec iov;
1613         struct msghdr msg;
1614         char address[MAX_SOCK_ADDR];
1615         int err,err2;
1616
1617         sock = sockfd_lookup(fd, &err);
1618         if (!sock)
1619                 goto out;
1620
1621         msg.msg_control=NULL;
1622         msg.msg_controllen=0;
1623         msg.msg_iovlen=1;
1624         msg.msg_iov=&iov;
1625         iov.iov_len=size;
1626         iov.iov_base=ubuf;
1627         msg.msg_name=address;
1628         msg.msg_namelen=MAX_SOCK_ADDR;
1629         if (sock->file->f_flags & O_NONBLOCK)
1630                 flags |= MSG_DONTWAIT;
1631         err=sock_recvmsg(sock, &msg, size, flags);
1632
1633         if(err >= 0 && addr != NULL)
1634         {
1635                 err2=move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
1636                 if(err2<0)
1637                         err=err2;
1638         }
1639         sockfd_put(sock);                       
1640 out:
1641         return err;
1642 }
1643
1644 /*
1645  *      Receive a datagram from a socket. 
1646  */
1647
1648 asmlinkage long sys_recv(int fd, void __user * ubuf, size_t size, unsigned flags)
1649 {
1650         return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1651 }
1652
1653 /*
1654  *      Set a socket option. Because we don't know the option lengths we have
1655  *      to pass the user mode parameter for the protocols to sort out.
1656  */
1657
1658 asmlinkage long sys_setsockopt(int fd, int level, int optname, char __user *optval, int optlen)
1659 {
1660         int err;
1661         struct socket *sock;
1662
1663         if (optlen < 0)
1664                 return -EINVAL;
1665                         
1666         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1667         {
1668                 err = security_socket_setsockopt(sock,level,optname);
1669                 if (err) {
1670                         sockfd_put(sock);
1671                         return err;
1672                 }
1673
1674                 if (level == SOL_SOCKET)
1675                         err=sock_setsockopt(sock,level,optname,optval,optlen);
1676                 else
1677                         err=sock->ops->setsockopt(sock, level, optname, optval, optlen);
1678                 sockfd_put(sock);
1679         }
1680         return err;
1681 }
1682
1683 /*
1684  *      Get a socket option. Because we don't know the option lengths we have
1685  *      to pass a user mode parameter for the protocols to sort out.
1686  */
1687
1688 asmlinkage long sys_getsockopt(int fd, int level, int optname, char __user *optval, int __user *optlen)
1689 {
1690         int err;
1691         struct socket *sock;
1692
1693         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1694         {
1695                 err = security_socket_getsockopt(sock, level, 
1696                                                            optname);
1697                 if (err) {
1698                         sockfd_put(sock);
1699                         return err;
1700                 }
1701
1702                 if (level == SOL_SOCKET)
1703                         err=sock_getsockopt(sock,level,optname,optval,optlen);
1704                 else
1705                         err=sock->ops->getsockopt(sock, level, optname, optval, optlen);
1706                 sockfd_put(sock);
1707         }
1708         return err;
1709 }
1710
1711
1712 /*
1713  *      Shutdown a socket.
1714  */
1715
1716 asmlinkage long sys_shutdown(int fd, int how)
1717 {
1718         int err;
1719         struct socket *sock;
1720
1721         if ((sock = sockfd_lookup(fd, &err))!=NULL)
1722         {
1723                 err = security_socket_shutdown(sock, how);
1724                 if (err) {
1725                         sockfd_put(sock);
1726                         return err;
1727                 }
1728                                 
1729                 err=sock->ops->shutdown(sock, how);
1730                 sockfd_put(sock);
1731         }
1732         return err;
1733 }
1734
1735 /* A couple of helpful macros for getting the address of the 32/64 bit 
1736  * fields which are the same type (int / unsigned) on our platforms.
1737  */
1738 #define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1739 #define COMPAT_NAMELEN(msg)     COMPAT_MSG(msg, msg_namelen)
1740 #define COMPAT_FLAGS(msg)       COMPAT_MSG(msg, msg_flags)
1741
1742
1743 /*
1744  *      BSD sendmsg interface
1745  */
1746
1747 asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1748 {
1749         struct compat_msghdr __user *msg_compat = (struct compat_msghdr __user *)msg;
1750         struct socket *sock;
1751         char address[MAX_SOCK_ADDR];
1752         struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
1753         unsigned char ctl[sizeof(struct cmsghdr) + 20]; /* 20 is size of ipv6_pktinfo */
1754         unsigned char *ctl_buf = ctl;
1755         struct msghdr msg_sys;
1756         int err, ctl_len, iov_size, total_len;
1757         
1758         err = -EFAULT;
1759         if (MSG_CMSG_COMPAT & flags) {
1760                 if (get_compat_msghdr(&msg_sys, msg_compat))
1761                         return -EFAULT;
1762         } else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1763                 return -EFAULT;
1764
1765         sock = sockfd_lookup(fd, &err);
1766         if (!sock) 
1767                 goto out;
1768
1769         /* do not move before msg_sys is valid */
1770         err = -EMSGSIZE;
1771         if (msg_sys.msg_iovlen > UIO_MAXIOV)
1772                 goto out_put;
1773
1774         /* Check whether to allocate the iovec area*/
1775         err = -ENOMEM;
1776         iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1777         if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1778                 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1779                 if (!iov)
1780                         goto out_put;
1781         }
1782
1783         /* This will also move the address data into kernel space */
1784         if (MSG_CMSG_COMPAT & flags) {
1785                 err = verify_compat_iovec(&msg_sys, iov, address, VERIFY_READ);
1786         } else
1787                 err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
1788         if (err < 0) 
1789                 goto out_freeiov;
1790         total_len = err;
1791
1792         err = -ENOBUFS;
1793
1794         if (msg_sys.msg_controllen > INT_MAX)
1795                 goto out_freeiov;
1796         ctl_len = msg_sys.msg_controllen; 
1797         if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
1798                 err = cmsghdr_from_user_compat_to_kern(&msg_sys, ctl, sizeof(ctl));
1799                 if (err)
1800                         goto out_freeiov;
1801                 ctl_buf = msg_sys.msg_control;
1802         } else if (ctl_len) {
1803                 if (ctl_len > sizeof(ctl))
1804                 {
1805                         ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
1806                         if (ctl_buf == NULL) 
1807                                 goto out_freeiov;
1808                 }
1809                 err = -EFAULT;
1810                 /*
1811                  * Careful! Before this, msg_sys.msg_control contains a user pointer.
1812                  * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1813                  * checking falls down on this.
1814                  */
1815                 if (copy_from_user(ctl_buf, (void __user *) msg_sys.msg_control, ctl_len))
1816                         goto out_freectl;
1817                 msg_sys.msg_control = ctl_buf;
1818         }
1819         msg_sys.msg_flags = flags;
1820
1821         if (sock->file->f_flags & O_NONBLOCK)
1822                 msg_sys.msg_flags |= MSG_DONTWAIT;
1823         err = sock_sendmsg(sock, &msg_sys, total_len);
1824
1825 out_freectl:
1826         if (ctl_buf != ctl)    
1827                 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1828 out_freeiov:
1829         if (iov != iovstack)
1830                 sock_kfree_s(sock->sk, iov, iov_size);
1831 out_put:
1832         sockfd_put(sock);
1833 out:       
1834         return err;
1835 }
1836
1837 /*
1838  *      BSD recvmsg interface
1839  */
1840
1841 asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg, unsigned int flags)
1842 {
1843         struct compat_msghdr __user *msg_compat = (struct compat_msghdr __user *)msg;
1844         struct socket *sock;
1845         struct iovec iovstack[UIO_FASTIOV];
1846         struct iovec *iov=iovstack;
1847         struct msghdr msg_sys;
1848         unsigned long cmsg_ptr;
1849         int err, iov_size, total_len, len;
1850
1851         /* kernel mode address */
1852         char addr[MAX_SOCK_ADDR];
1853
1854         /* user mode address pointers */
1855         struct sockaddr __user *uaddr;
1856         int __user *uaddr_len;
1857         
1858         if (MSG_CMSG_COMPAT & flags) {
1859                 if (get_compat_msghdr(&msg_sys, msg_compat))
1860                         return -EFAULT;
1861         } else
1862                 if (copy_from_user(&msg_sys,msg,sizeof(struct msghdr)))
1863                         return -EFAULT;
1864
1865         sock = sockfd_lookup(fd, &err);
1866         if (!sock)
1867                 goto out;
1868
1869         err = -EMSGSIZE;
1870         if (msg_sys.msg_iovlen > UIO_MAXIOV)
1871                 goto out_put;
1872         
1873         /* Check whether to allocate the iovec area*/
1874         err = -ENOMEM;
1875         iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1876         if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1877                 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1878                 if (!iov)
1879                         goto out_put;
1880         }
1881
1882         /*
1883          *      Save the user-mode address (verify_iovec will change the
1884          *      kernel msghdr to use the kernel address space)
1885          */
1886          
1887         uaddr = (void __user *) msg_sys.msg_name;
1888         uaddr_len = COMPAT_NAMELEN(msg);
1889         if (MSG_CMSG_COMPAT & flags) {
1890                 err = verify_compat_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1891         } else
1892                 err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1893         if (err < 0)
1894                 goto out_freeiov;
1895         total_len=err;
1896
1897         cmsg_ptr = (unsigned long)msg_sys.msg_control;
1898         msg_sys.msg_flags = 0;
1899         if (MSG_CMSG_COMPAT & flags)
1900                 msg_sys.msg_flags = MSG_CMSG_COMPAT;
1901         
1902         if (sock->file->f_flags & O_NONBLOCK)
1903                 flags |= MSG_DONTWAIT;
1904         err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1905         if (err < 0)
1906                 goto out_freeiov;
1907         len = err;
1908
1909         if (uaddr != NULL) {
1910                 err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr, uaddr_len);
1911                 if (err < 0)
1912                         goto out_freeiov;
1913         }
1914         err = __put_user(msg_sys.msg_flags, COMPAT_FLAGS(msg));
1915         if (err)
1916                 goto out_freeiov;
1917         if (MSG_CMSG_COMPAT & flags)
1918                 err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr, 
1919                                  &msg_compat->msg_controllen);
1920         else
1921                 err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr, 
1922                                  &msg->msg_controllen);
1923         if (err)
1924                 goto out_freeiov;
1925         err = len;
1926
1927 out_freeiov:
1928         if (iov != iovstack)
1929                 sock_kfree_s(sock->sk, iov, iov_size);
1930 out_put:
1931         sockfd_put(sock);
1932 out:
1933         return err;
1934 }
1935
1936 #ifdef __ARCH_WANT_SYS_SOCKETCALL
1937
1938 /* Argument list sizes for sys_socketcall */
1939 #define AL(x) ((x) * sizeof(unsigned long))
1940 static unsigned char nargs[18]={AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
1941                                 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
1942                                 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)};
1943 #undef AL
1944
1945 /*
1946  *      System call vectors. 
1947  *
1948  *      Argument checking cleaned up. Saved 20% in size.
1949  *  This function doesn't need to set the kernel lock because
1950  *  it is set by the callees. 
1951  */
1952
1953 asmlinkage long sys_socketcall(int call, unsigned long __user *args)
1954 {
1955         unsigned long a[6];
1956         unsigned long a0,a1;
1957         int err;
1958
1959         if(call<1||call>SYS_RECVMSG)
1960                 return -EINVAL;
1961
1962         /* copy_from_user should be SMP safe. */
1963         if (copy_from_user(a, args, nargs[call]))
1964                 return -EFAULT;
1965                 
1966         a0=a[0];
1967         a1=a[1];
1968         
1969         switch(call) 
1970         {
1971                 case SYS_SOCKET:
1972                         err = sys_socket(a0,a1,a[2]);
1973                         break;
1974                 case SYS_BIND:
1975                         err = sys_bind(a0,(struct sockaddr __user *)a1, a[2]);
1976                         break;
1977                 case SYS_CONNECT:
1978                         err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
1979                         break;
1980                 case SYS_LISTEN:
1981                         err = sys_listen(a0,a1);
1982                         break;
1983                 case SYS_ACCEPT:
1984                         err = sys_accept(a0,(struct sockaddr __user *)a1, (int __user *)a[2]);
1985                         break;
1986                 case SYS_GETSOCKNAME:
1987                         err = sys_getsockname(a0,(struct sockaddr __user *)a1, (int __user *)a[2]);
1988                         break;
1989                 case SYS_GETPEERNAME:
1990                         err = sys_getpeername(a0, (struct sockaddr __user *)a1, (int __user *)a[2]);
1991                         break;
1992                 case SYS_SOCKETPAIR:
1993                         err = sys_socketpair(a0,a1, a[2], (int __user *)a[3]);
1994                         break;
1995                 case SYS_SEND:
1996                         err = sys_send(a0, (void __user *)a1, a[2], a[3]);
1997                         break;
1998                 case SYS_SENDTO:
1999                         err = sys_sendto(a0,(void __user *)a1, a[2], a[3],
2000                                          (struct sockaddr __user *)a[4], a[5]);
2001                         break;
2002                 case SYS_RECV:
2003                         err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2004                         break;
2005                 case SYS_RECVFROM:
2006                         err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2007                                            (struct sockaddr __user *)a[4], (int __user *)a[5]);
2008                         break;
2009                 case SYS_SHUTDOWN:
2010                         err = sys_shutdown(a0,a1);
2011                         break;
2012                 case SYS_SETSOCKOPT:
2013                         err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2014                         break;
2015                 case SYS_GETSOCKOPT:
2016                         err = sys_getsockopt(a0, a1, a[2], (char __user *)a[3], (int __user *)a[4]);
2017                         break;
2018                 case SYS_SENDMSG:
2019                         err = sys_sendmsg(a0, (struct msghdr __user *) a1, a[2]);
2020                         break;
2021                 case SYS_RECVMSG:
2022                         err = sys_recvmsg(a0, (struct msghdr __user *) a1, a[2]);
2023                         break;
2024                 default:
2025                         err = -EINVAL;
2026                         break;
2027         }
2028         return err;
2029 }
2030
2031 #endif /* __ARCH_WANT_SYS_SOCKETCALL */
2032
2033 /*
2034  *      This function is called by a protocol handler that wants to
2035  *      advertise its address family, and have it linked into the
2036  *      SOCKET module.
2037  */
2038
2039 int sock_register(struct net_proto_family *ops)
2040 {
2041         int err;
2042
2043         if (ops->family >= NPROTO) {
2044                 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family, NPROTO);
2045                 return -ENOBUFS;
2046         }
2047         net_family_write_lock();
2048         err = -EEXIST;
2049         if (net_families[ops->family] == NULL) {
2050                 net_families[ops->family]=ops;
2051                 err = 0;
2052         }
2053         net_family_write_unlock();
2054         printk(KERN_INFO "NET: Registered protocol family %d\n",
2055                ops->family);
2056         return err;
2057 }
2058
2059 /*
2060  *      This function is called by a protocol handler that wants to
2061  *      remove its address family, and have it unlinked from the
2062  *      SOCKET module.
2063  */
2064
2065 int sock_unregister(int family)
2066 {
2067         if (family < 0 || family >= NPROTO)
2068                 return -1;
2069
2070         net_family_write_lock();
2071         net_families[family]=NULL;
2072         net_family_write_unlock();
2073         printk(KERN_INFO "NET: Unregistered protocol family %d\n",
2074                family);
2075         return 0;
2076 }
2077
2078
2079 extern void sk_init(void);
2080
2081 void __init sock_init(void)
2082 {
2083         int i;
2084
2085         /*
2086          *      Initialize all address (protocol) families. 
2087          */
2088          
2089         for (i = 0; i < NPROTO; i++) 
2090                 net_families[i] = NULL;
2091
2092         /*
2093          *      Initialize sock SLAB cache.
2094          */
2095          
2096         sk_init();
2097
2098 #ifdef SLAB_SKB
2099         /*
2100          *      Initialize skbuff SLAB cache 
2101          */
2102         skb_init();
2103 #endif
2104
2105         /*
2106          *      Initialize the protocols module. 
2107          */
2108
2109         init_inodecache();
2110         register_filesystem(&sock_fs_type);
2111         sock_mnt = kern_mount(&sock_fs_type);
2112         /* The real protocol initialization is performed when
2113          *  do_initcalls is run.  
2114          */
2115
2116 #ifdef CONFIG_NETFILTER
2117         netfilter_init();
2118 #endif
2119 }
2120
2121 int tux_Dprintk;
2122 int tux_TDprintk;
2123
2124 struct module *tux_module = NULL;
2125
2126 #ifdef CONFIG_TUX_MODULE
2127
2128 asmlinkage long (*sys_tux_ptr) (unsigned int action, user_req_t *u_info) = NULL;
2129 spinlock_t tux_module_lock = SPIN_LOCK_UNLOCKED;
2130
2131 asmlinkage long sys_tux (unsigned int action, user_req_t *u_info)
2132 {
2133         int ret;
2134
2135         if (current->tux_info)
2136                 return sys_tux_ptr(action, u_info);
2137
2138         ret = -ENOSYS;
2139         spin_lock(&tux_module_lock);
2140         if (!tux_module)
2141                 goto out_unlock;
2142         if (!try_module_get(tux_module))
2143                 goto out_unlock;
2144         spin_unlock(&tux_module_lock);
2145
2146         if (!sys_tux_ptr)
2147                 TUX_BUG();
2148         ret = sys_tux_ptr(action, u_info);
2149
2150         spin_lock(&tux_module_lock);
2151         module_put(tux_module);
2152 out_unlock:
2153         spin_unlock(&tux_module_lock);
2154
2155         return ret;
2156 }
2157
2158 EXPORT_SYMBOL_GPL(tux_module);
2159 EXPORT_SYMBOL_GPL(tux_module_lock);
2160 EXPORT_SYMBOL_GPL(sys_tux_ptr);
2161
2162 EXPORT_SYMBOL_GPL(tux_Dprintk);
2163 EXPORT_SYMBOL_GPL(tux_TDprintk);
2164
2165 #endif
2166 #ifdef CONFIG_PROC_FS
2167 void socket_seq_show(struct seq_file *seq)
2168 {
2169         int cpu;
2170         int counter = 0;
2171
2172         for (cpu = 0; cpu < NR_CPUS; cpu++)
2173                 counter += per_cpu(sockets_in_use, cpu);
2174
2175         /* It can be negative, by the way. 8) */
2176         if (counter < 0)
2177                 counter = 0;
2178
2179         seq_printf(seq, "sockets: used %d\n", counter);
2180 }
2181 #endif /* CONFIG_PROC_FS */
2182
2183 /* ABI emulation layers need these two */
2184 EXPORT_SYMBOL(move_addr_to_kernel);
2185 EXPORT_SYMBOL(move_addr_to_user);
2186 EXPORT_SYMBOL(sock_create);
2187 EXPORT_SYMBOL(sock_create_kern);
2188 EXPORT_SYMBOL(sock_create_lite);
2189 EXPORT_SYMBOL(sock_map_fd);
2190 EXPORT_SYMBOL(sock_recvmsg);
2191 EXPORT_SYMBOL(sock_register);
2192 EXPORT_SYMBOL(sock_release);
2193 EXPORT_SYMBOL(sock_sendmsg);
2194 EXPORT_SYMBOL(sock_unregister);
2195 EXPORT_SYMBOL(sock_wake_async);
2196 EXPORT_SYMBOL(sockfd_lookup);
2197 EXPORT_SYMBOL(kernel_sendmsg);
2198 EXPORT_SYMBOL(kernel_recvmsg);