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