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