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