root/net/socket.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. move_addr_to_kernel
  2. move_addr_to_user
  3. get_fd
  4. socki_lookup
  5. sockfd_lookup
  6. sock_alloc
  7. sock_release_peer
  8. sock_release
  9. sock_lseek
  10. sock_read
  11. sock_write
  12. sock_ioctl
  13. sock_select
  14. sock_close
  15. sock_fasync
  16. sock_wake_async
  17. sock_awaitconn
  18. sys_socket
  19. sys_socketpair
  20. sys_bind
  21. sys_listen
  22. sys_accept
  23. sys_connect
  24. sys_getsockname
  25. sys_getpeername
  26. sys_send
  27. sys_sendto
  28. sys_recv
  29. sys_recvfrom
  30. sys_setsockopt
  31. sys_getsockopt
  32. sys_shutdown
  33. sock_fcntl
  34. sys_socketcall
  35. sock_register
  36. sock_unregister
  37. proto_init
  38. sock_init
  39. socket_get_info

   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  *
  36  *
  37  *              This program is free software; you can redistribute it and/or
  38  *              modify it under the terms of the GNU General Public License
  39  *              as published by the Free Software Foundation; either version
  40  *              2 of the License, or (at your option) any later version.
  41  *
  42  *
  43  *      This module is effectively the top level interface to the BSD socket
  44  *      paradigm. Because it is very simple it works well for Unix domain sockets,
  45  *      but requires a whole layer of substructure for the other protocols.
  46  *
  47  *      In addition it lacks an effective kernel -> kernel interface to go with
  48  *      the user one.
  49  */
  50 
  51 #include <linux/config.h>
  52 #include <linux/signal.h>
  53 #include <linux/errno.h>
  54 #include <linux/sched.h>
  55 #include <linux/mm.h>
  56 #include <linux/kernel.h>
  57 #include <linux/major.h>
  58 #include <linux/stat.h>
  59 #include <linux/socket.h>
  60 #include <linux/fcntl.h>
  61 #include <linux/net.h>
  62 #include <linux/interrupt.h>
  63 #include <linux/netdevice.h>
  64 
  65 #include <asm/system.h>
  66 #include <asm/segment.h>
  67 
  68 static int sock_lseek(struct inode *inode, struct file *file, off_t offset,
  69                       int whence);
  70 static int sock_read(struct inode *inode, struct file *file, char *buf,
  71                      int size);
  72 static int sock_write(struct inode *inode, struct file *file, char *buf,
  73                       int size);
  74 
  75 static void sock_close(struct inode *inode, struct file *file);
  76 static int sock_select(struct inode *inode, struct file *file, int which, select_table *seltable);
  77 static int sock_ioctl(struct inode *inode, struct file *file,
  78                       unsigned int cmd, unsigned long arg);
  79 static int sock_fasync(struct inode *inode, struct file *filp, int on);
  80                    
  81 
  82 
  83 /*
  84  *      Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
  85  *      in the operation structures but are done directly via the socketcall() multiplexor.
  86  */
  87 
  88 static struct file_operations socket_file_ops = {
  89         sock_lseek,
  90         sock_read,
  91         sock_write,
  92         NULL,                   /* readdir */
  93         sock_select,
  94         sock_ioctl,
  95         NULL,                   /* mmap */
  96         NULL,                   /* no special open code... */
  97         sock_close,
  98         NULL,                   /* no fsync */
  99         sock_fasync
 100 };
 101 
 102 /*
 103  *      The protocol list. Each protocol is registered in here.
 104  */
 105 static struct proto_ops *pops[NPROTO];
 106 /*
 107  *      Statistics counters of the socket lists
 108  */
 109 static int sockets_in_use  = 0;
 110 
 111 /*
 112  *      Support routines. Move socket addresses back and forth across the kernel/user
 113  *      divide and look after the messy bits.
 114  */
 115 
 116 #define MAX_SOCK_ADDR   128             /* 108 for Unix domain - 16 for IP, 16 for IPX, about 80 for AX.25 */
 117  
 118 static int move_addr_to_kernel(void *uaddr, int ulen, void *kaddr)
     /* [previous][next][first][last][top][bottom][index][help] */
 119 {
 120         int err;
 121         if(ulen<0||ulen>MAX_SOCK_ADDR)
 122                 return -EINVAL;
 123         if(ulen==0)
 124                 return 0;
 125         if((err=verify_area(VERIFY_READ,uaddr,ulen))<0)
 126                 return err;
 127         memcpy_fromfs(kaddr,uaddr,ulen);
 128         return 0;
 129 }
 130 
 131 static int move_addr_to_user(void *kaddr, int klen, void *uaddr, int *ulen)
     /* [previous][next][first][last][top][bottom][index][help] */
 132 {
 133         int err;
 134         int len;
 135 
 136                 
 137         if((err=verify_area(VERIFY_WRITE,ulen,sizeof(*ulen)))<0)
 138                 return err;
 139         len=get_fs_long(ulen);
 140         if(len>klen)
 141                 len=klen;
 142         if(len<0 || len> MAX_SOCK_ADDR)
 143                 return -EINVAL;
 144         if(len)
 145         {
 146                 if((err=verify_area(VERIFY_WRITE,uaddr,len))<0)
 147                         return err;
 148                 memcpy_tofs(uaddr,kaddr,len);
 149         }
 150         put_fs_long(len,ulen);
 151         return 0;
 152 }
 153 
 154 /*
 155  *      Obtains the first available file descriptor and sets it up for use. 
 156  */
 157 
 158 static int get_fd(struct inode *inode)
     /* [previous][next][first][last][top][bottom][index][help] */
 159 {
 160         int fd;
 161         struct file *file;
 162 
 163         /*
 164          *      Find a file descriptor suitable for return to the user. 
 165          */
 166 
 167         file = get_empty_filp();
 168         if (!file) 
 169                 return(-1);
 170 
 171         for (fd = 0; fd < NR_OPEN; ++fd)
 172                 if (!current->files->fd[fd]) 
 173                         break;
 174         if (fd == NR_OPEN) 
 175         {
 176                 file->f_count = 0;
 177                 return(-1);
 178         }
 179 
 180         FD_CLR(fd, &current->files->close_on_exec);
 181                 current->files->fd[fd] = file;
 182         file->f_op = &socket_file_ops;
 183         file->f_mode = 3;
 184         file->f_flags = O_RDWR;
 185         file->f_count = 1;
 186         file->f_inode = inode;
 187         if (inode) 
 188                 inode->i_count++;
 189         file->f_pos = 0;
 190         return(fd);
 191 }
 192 
 193 
 194 /*
 195  *      Go from an inode to its socket slot.
 196  *
 197  * The original socket implementation wasn't very clever, which is
 198  * why this exists at all..
 199  */
 200 inline struct socket *socki_lookup(struct inode *inode)
     /* [previous][next][first][last][top][bottom][index][help] */
 201 {
 202         return &inode->u.socket_i;
 203 }
 204 
 205 /*
 206  *      Go from a file number to its socket slot.
 207  */
 208 
 209 static inline struct socket *sockfd_lookup(int fd, struct file **pfile)
     /* [previous][next][first][last][top][bottom][index][help] */
 210 {
 211         struct file *file;
 212         struct inode *inode;
 213 
 214         if (fd < 0 || fd >= NR_OPEN || !(file = current->files->fd[fd])) 
 215                 return NULL;
 216 
 217         inode = file->f_inode;
 218         if (!inode || !inode->i_sock)
 219                 return NULL;
 220 
 221         if (pfile) 
 222                 *pfile = file;
 223 
 224         return socki_lookup(inode);
 225 }
 226 
 227 /*
 228  *      Allocate a socket.
 229  */
 230 
 231 struct socket *sock_alloc(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 232 {
 233         struct inode * inode;
 234         struct socket * sock;
 235 
 236         inode = get_empty_inode();
 237         if (!inode)
 238                 return NULL;
 239 
 240         inode->i_mode = S_IFSOCK;
 241         inode->i_sock = 1;
 242         inode->i_uid = current->uid;
 243         inode->i_gid = current->gid;
 244 
 245         sock = &inode->u.socket_i;
 246         sock->state = SS_UNCONNECTED;
 247         sock->flags = 0;
 248         sock->ops = NULL;
 249         sock->data = NULL;
 250         sock->conn = NULL;
 251         sock->iconn = NULL;
 252         sock->next = NULL;
 253         sock->wait = &inode->i_wait;
 254         sock->inode = inode;            /* "backlink": we could use pointer arithmetic instead */
 255         sock->fasync_list = NULL;
 256         sockets_in_use++;
 257         return sock;
 258 }
 259 
 260 /*
 261  *      Release a socket.
 262  */
 263 
 264 static inline void sock_release_peer(struct socket *peer)
     /* [previous][next][first][last][top][bottom][index][help] */
 265 {
 266         peer->state = SS_DISCONNECTING;
 267         wake_up_interruptible(peer->wait);
 268         sock_wake_async(peer, 1);
 269 }
 270 
 271 void sock_release(struct socket *sock)
     /* [previous][next][first][last][top][bottom][index][help] */
 272 {
 273         int oldstate;
 274         struct socket *peersock, *nextsock;
 275 
 276         if ((oldstate = sock->state) != SS_UNCONNECTED)
 277                 sock->state = SS_DISCONNECTING;
 278 
 279         /*
 280          *      Wake up anyone waiting for connections. 
 281          */
 282 
 283         for (peersock = sock->iconn; peersock; peersock = nextsock) 
 284         {
 285                 nextsock = peersock->next;
 286                 sock_release_peer(peersock);
 287         }
 288 
 289         /*
 290          * Wake up anyone we're connected to. First, we release the
 291          * protocol, to give it a chance to flush data, etc.
 292          */
 293 
 294         peersock = (oldstate == SS_CONNECTED) ? sock->conn : NULL;
 295         if (sock->ops) 
 296                 sock->ops->release(sock, peersock);
 297         if (peersock)
 298                 sock_release_peer(peersock);
 299         --sockets_in_use;       /* Bookkeeping.. */
 300         iput(SOCK_INODE(sock));
 301 }
 302 
 303 /*
 304  *      Sockets are not seekable.
 305  */
 306 
 307 static int sock_lseek(struct inode *inode, struct file *file, off_t offset, int whence)
     /* [previous][next][first][last][top][bottom][index][help] */
 308 {
 309         return(-ESPIPE);
 310 }
 311 
 312 /*
 313  *      Read data from a socket. ubuf is a user mode pointer. We make sure the user
 314  *      area ubuf...ubuf+size-1 is writable before asking the protocol.
 315  */
 316 
 317 static int sock_read(struct inode *inode, struct file *file, char *ubuf, int size)
     /* [previous][next][first][last][top][bottom][index][help] */
 318 {
 319         struct socket *sock;
 320         int err;
 321   
 322         sock = socki_lookup(inode); 
 323         if (sock->flags & SO_ACCEPTCON) 
 324                 return(-EINVAL);
 325 
 326         if(size<0)
 327                 return -EINVAL;
 328         if(size==0)             /* Match SYS5 behaviour */
 329                 return 0;
 330         if ((err=verify_area(VERIFY_WRITE,ubuf,size))<0)
 331                 return err;
 332         return(sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK)));
 333 }
 334 
 335 /*
 336  *      Write data to a socket. We verify that the user area ubuf..ubuf+size-1 is
 337  *      readable by the user process.
 338  */
 339 
 340 static int sock_write(struct inode *inode, struct file *file, char *ubuf, int size)
     /* [previous][next][first][last][top][bottom][index][help] */
 341 {
 342         struct socket *sock;
 343         int err;
 344         
 345         sock = socki_lookup(inode); 
 346 
 347         if (sock->flags & SO_ACCEPTCON) 
 348                 return(-EINVAL);
 349         
 350         if(size<0)
 351                 return -EINVAL;
 352         if(size==0)             /* Match SYS5 behaviour */
 353                 return 0;
 354                 
 355         if ((err=verify_area(VERIFY_READ,ubuf,size))<0)
 356                 return err;
 357         return(sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK)));
 358 }
 359 
 360 /*
 361  *      With an ioctl arg may well be a user mode pointer, but we don't know what to do
 362  *      with it - thats up to the protocol still.
 363  */
 364 
 365 int sock_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
     /* [previous][next][first][last][top][bottom][index][help] */
 366            unsigned long arg)
 367 {
 368         struct socket *sock;
 369         sock = socki_lookup(inode); 
 370         return(sock->ops->ioctl(sock, cmd, arg));
 371 }
 372 
 373 
 374 static int sock_select(struct inode *inode, struct file *file, int sel_type, select_table * wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 375 {
 376         struct socket *sock;
 377 
 378         sock = socki_lookup(inode);
 379 
 380         /*
 381          *      We can't return errors to select, so it's either yes or no. 
 382          */
 383 
 384         if (sock->ops->select)
 385                 return(sock->ops->select(sock, sel_type, wait));
 386         return(0);
 387 }
 388 
 389 
 390 void sock_close(struct inode *inode, struct file *filp)
     /* [previous][next][first][last][top][bottom][index][help] */
 391 {
 392         /*
 393          *      It's possible the inode is NULL if we're closing an unfinished socket. 
 394          */
 395 
 396         if (!inode) 
 397                 return;
 398         sock_fasync(inode, filp, 0);
 399         sock_release(socki_lookup(inode));
 400 }
 401 
 402 /*
 403  *      Update the socket async list
 404  */
 405  
 406 static int sock_fasync(struct inode *inode, struct file *filp, int on)
     /* [previous][next][first][last][top][bottom][index][help] */
 407 {
 408         struct fasync_struct *fa, *fna=NULL, **prev;
 409         struct socket *sock;
 410         unsigned long flags;
 411         
 412         if (on)
 413         {
 414                 fna=(struct fasync_struct *)kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
 415                 if(fna==NULL)
 416                         return -ENOMEM;
 417         }
 418 
 419         sock = socki_lookup(inode);
 420         
 421         prev=&(sock->fasync_list);
 422         
 423         save_flags(flags);
 424         cli();
 425         
 426         for(fa=*prev; fa!=NULL; prev=&fa->fa_next,fa=*prev)
 427                 if(fa->fa_file==filp)
 428                         break;
 429         
 430         if(on)
 431         {
 432                 if(fa!=NULL)
 433                 {
 434                         kfree_s(fna,sizeof(struct fasync_struct));
 435                         restore_flags(flags);
 436                         return 0;
 437                 }
 438                 fna->fa_file=filp;
 439                 fna->magic=FASYNC_MAGIC;
 440                 fna->fa_next=sock->fasync_list;
 441                 sock->fasync_list=fna;
 442         }
 443         else
 444         {
 445                 if(fa!=NULL)
 446                 {
 447                         *prev=fa->fa_next;
 448                         kfree_s(fa,sizeof(struct fasync_struct));
 449                 }
 450         }
 451         restore_flags(flags);
 452         return 0;
 453 }
 454 
 455 int sock_wake_async(struct socket *sock, int how)
     /* [previous][next][first][last][top][bottom][index][help] */
 456 {
 457         if (!sock || !sock->fasync_list)
 458                 return -1;
 459         switch (how)
 460         {
 461                 case 0:
 462                         kill_fasync(sock->fasync_list, SIGIO);
 463                         break;
 464                 case 1:
 465                         if (!(sock->flags & SO_WAITDATA))
 466                                 kill_fasync(sock->fasync_list, SIGIO);
 467                         break;
 468                 case 2:
 469                         if (sock->flags & SO_NOSPACE)
 470                         {
 471                                 kill_fasync(sock->fasync_list, SIGIO);
 472                                 sock->flags &= ~SO_NOSPACE;
 473                         }
 474                         break;
 475         }
 476         return 0;
 477 }
 478 
 479         
 480 /*
 481  *      Wait for a connection.
 482  */
 483 
 484 int sock_awaitconn(struct socket *mysock, struct socket *servsock, int flags)
     /* [previous][next][first][last][top][bottom][index][help] */
 485 {
 486         struct socket *last;
 487 
 488         /*
 489          *      We must be listening
 490          */
 491         if (!(servsock->flags & SO_ACCEPTCON)) 
 492         {
 493                 return(-EINVAL);
 494         }
 495 
 496         /*
 497          *      Put ourselves on the server's incomplete connection queue. 
 498          */
 499          
 500         mysock->next = NULL;
 501         cli();
 502         if (!(last = servsock->iconn)) 
 503                 servsock->iconn = mysock;
 504         else 
 505         {
 506                 while (last->next) 
 507                         last = last->next;
 508                 last->next = mysock;
 509         }
 510         mysock->state = SS_CONNECTING;
 511         mysock->conn = servsock;
 512         sti();
 513 
 514         /*
 515          * Wake up server, then await connection. server will set state to
 516          * SS_CONNECTED if we're connected.
 517          */
 518         wake_up_interruptible(servsock->wait);
 519         sock_wake_async(servsock, 0);
 520 
 521         if (mysock->state != SS_CONNECTED) 
 522         {
 523                 if (flags & O_NONBLOCK)
 524                         return -EINPROGRESS;
 525 
 526                 interruptible_sleep_on(mysock->wait);
 527                 if (mysock->state != SS_CONNECTED &&
 528                     mysock->state != SS_DISCONNECTING) 
 529                 {
 530                 /*
 531                  * if we're not connected we could have been
 532                  * 1) interrupted, so we need to remove ourselves
 533                  *    from the server list
 534                  * 2) rejected (mysock->conn == NULL), and have
 535                  *    already been removed from the list
 536                  */
 537                         if (mysock->conn == servsock) 
 538                         {
 539                                 cli();
 540                                 if ((last = servsock->iconn) == mysock)
 541                                         servsock->iconn = mysock->next;
 542                                 else 
 543                                 {
 544                                         while (last->next != mysock) 
 545                                                 last = last->next;
 546                                         last->next = mysock->next;
 547                                 }
 548                                 sti();
 549                         }
 550                         return(mysock->conn ? -EINTR : -EACCES);
 551                 }
 552         }
 553         return(0);
 554 }
 555 
 556 
 557 /*
 558  *      Perform the socket system call. we locate the appropriate
 559  *      family, then create a fresh socket.
 560  */
 561 
 562 asmlinkage int sys_socket(int family, int type, int protocol)
     /* [previous][next][first][last][top][bottom][index][help] */
 563 {
 564         int i, fd;
 565         struct socket *sock;
 566         struct proto_ops *ops;
 567 
 568         /* Locate the correct protocol family. */
 569         for (i = 0; i < NPROTO; ++i) 
 570         {
 571                 if (pops[i] == NULL) continue;
 572                 if (pops[i]->family == family) 
 573                         break;
 574         }
 575 
 576         if (i == NPROTO) 
 577         {
 578                 return -EINVAL;
 579         }
 580 
 581         ops = pops[i];
 582 
 583 /*
 584  *      Check that this is a type that we know how to manipulate and
 585  *      the protocol makes sense here. The family can still reject the
 586  *      protocol later.
 587  */
 588   
 589         if ((type != SOCK_STREAM && type != SOCK_DGRAM &&
 590                 type != SOCK_SEQPACKET && type != SOCK_RAW &&
 591                 type != SOCK_PACKET) || protocol < 0)
 592                         return(-EINVAL);
 593 
 594 /*
 595  *      Allocate the socket and allow the family to set things up. if
 596  *      the protocol is 0, the family is instructed to select an appropriate
 597  *      default.
 598  */
 599 
 600         if (!(sock = sock_alloc())) 
 601         {
 602                 printk("NET: sys_socket: no more sockets\n");
 603                 return(-ENOSR); /* Was: EAGAIN, but we are out of
 604                                    system resources! */
 605         }
 606 
 607         sock->type = type;
 608         sock->ops = ops;
 609         if ((i = sock->ops->create(sock, protocol)) < 0) 
 610         {
 611                 sock_release(sock);
 612                 return(i);
 613         }
 614 
 615         if ((fd = get_fd(SOCK_INODE(sock))) < 0) 
 616         {
 617                 sock_release(sock);
 618                 return(-EINVAL);
 619         }
 620 
 621         return(fd);
 622 }
 623 
 624 /*
 625  *      Create a pair of connected sockets.
 626  */
 627 
 628 asmlinkage int sys_socketpair(int family, int type, int protocol, unsigned long usockvec[2])
     /* [previous][next][first][last][top][bottom][index][help] */
 629 {
 630         int fd1, fd2, i;
 631         struct socket *sock1, *sock2;
 632         int er;
 633 
 634         /*
 635          * Obtain the first socket and check if the underlying protocol
 636          * supports the socketpair call.
 637          */
 638 
 639         if ((fd1 = sys_socket(family, type, protocol)) < 0) 
 640                 return(fd1);
 641         sock1 = sockfd_lookup(fd1, NULL);
 642         if (!sock1->ops->socketpair) 
 643         {
 644                 sys_close(fd1);
 645                 return(-EINVAL);
 646         }
 647 
 648         /*
 649          *      Now grab another socket and try to connect the two together. 
 650          */
 651 
 652         if ((fd2 = sys_socket(family, type, protocol)) < 0) 
 653         {
 654                 sys_close(fd1);
 655                 return(-EINVAL);
 656         }
 657 
 658         sock2 = sockfd_lookup(fd2, NULL);
 659         if ((i = sock1->ops->socketpair(sock1, sock2)) < 0) 
 660         {
 661                 sys_close(fd1);
 662                 sys_close(fd2);
 663                 return(i);
 664         }
 665 
 666         sock1->conn = sock2;
 667         sock2->conn = sock1;
 668         sock1->state = SS_CONNECTED;
 669         sock2->state = SS_CONNECTED;
 670 
 671         er=verify_area(VERIFY_WRITE, usockvec, 2 * sizeof(int));
 672         if(er)
 673         {
 674                 sys_close(fd1);
 675                 sys_close(fd2);
 676                 return er;
 677         }
 678         put_fs_long(fd1, &usockvec[0]);
 679         put_fs_long(fd2, &usockvec[1]);
 680 
 681         return(0);
 682 }
 683 
 684 
 685 /*
 686  *      Bind a name to a socket. Nothing much to do here since it's
 687  *      the protocol's responsibility to handle the local address.
 688  *
 689  *      We move the socket address to kernel space before we call
 690  *      the protocol layer (having also checked the address is ok).
 691  */
 692  
 693 asmlinkage int sys_bind(int fd, struct sockaddr *umyaddr, int addrlen)
     /* [previous][next][first][last][top][bottom][index][help] */
 694 {
 695         struct socket *sock;
 696         int i;
 697         char address[MAX_SOCK_ADDR];
 698         int err;
 699 
 700         if (fd < 0 || fd >= NR_OPEN || current->files->fd[fd] == NULL)
 701                 return(-EBADF);
 702         
 703         if (!(sock = sockfd_lookup(fd, NULL))) 
 704                 return(-ENOTSOCK);
 705   
 706         if((err=move_addr_to_kernel(umyaddr,addrlen,address))<0)
 707                 return err;
 708   
 709         if ((i = sock->ops->bind(sock, (struct sockaddr *)address, addrlen)) < 0) 
 710         {
 711                 return(i);
 712         }
 713         return(0);
 714 }
 715 
 716 
 717 /*
 718  *      Perform a listen. Basically, we allow the protocol to do anything
 719  *      necessary for a listen, and if that works, we mark the socket as
 720  *      ready for listening.
 721  */
 722 
 723 asmlinkage int sys_listen(int fd, int backlog)
     /* [previous][next][first][last][top][bottom][index][help] */
 724 {
 725         struct socket *sock;
 726 
 727         if (fd < 0 || fd >= NR_OPEN || current->files->fd[fd] == NULL)
 728                 return(-EBADF);
 729         if (!(sock = sockfd_lookup(fd, NULL))) 
 730                 return(-ENOTSOCK);
 731 
 732         if (sock->state != SS_UNCONNECTED) 
 733         {
 734                 return(-EINVAL);
 735         }
 736 
 737         if (sock->ops && sock->ops->listen)
 738                 sock->ops->listen(sock, backlog);
 739         sock->flags |= SO_ACCEPTCON;
 740         return(0);
 741 }
 742 
 743 
 744 /*
 745  *      For accept, we attempt to create a new socket, set up the link
 746  *      with the client, wake up the client, then return the new
 747  *      connected fd. We collect the address of the connector in kernel
 748  *      space and move it to user at the very end. This is buggy because
 749  *      we open the socket then return an error.
 750  */
 751 
 752 asmlinkage int sys_accept(int fd, struct sockaddr *upeer_sockaddr, int *upeer_addrlen)
     /* [previous][next][first][last][top][bottom][index][help] */
 753 {
 754         struct file *file;
 755         struct socket *sock, *newsock;
 756         int i;
 757         char address[MAX_SOCK_ADDR];
 758         int len;
 759 
 760         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
 761                 return(-EBADF);
 762         if (!(sock = sockfd_lookup(fd, &file))) 
 763                 return(-ENOTSOCK);
 764         if (sock->state != SS_UNCONNECTED) 
 765         {
 766                 return(-EINVAL);
 767         }
 768         if (!(sock->flags & SO_ACCEPTCON)) 
 769         {
 770                 return(-EINVAL);
 771         }
 772 
 773         if (!(newsock = sock_alloc())) 
 774         {
 775                 printk("NET: sock_accept: no more sockets\n");
 776                 return(-ENOSR); /* Was: EAGAIN, but we are out of system
 777                                    resources! */
 778         }
 779         newsock->type = sock->type;
 780         newsock->ops = sock->ops;
 781         if ((i = sock->ops->dup(newsock, sock)) < 0) 
 782         {
 783                 sock_release(newsock);
 784                 return(i);
 785         }
 786 
 787         i = newsock->ops->accept(sock, newsock, file->f_flags);
 788         if ( i < 0) 
 789         {
 790                 sock_release(newsock);
 791                 return(i);
 792         }
 793 
 794         if ((fd = get_fd(SOCK_INODE(newsock))) < 0) 
 795         {
 796                 sock_release(newsock);
 797                 return(-EINVAL);
 798         }
 799 
 800         if (upeer_sockaddr)
 801         {
 802                 newsock->ops->getname(newsock, (struct sockaddr *)address, &len, 1);
 803                 move_addr_to_user(address,len, upeer_sockaddr, upeer_addrlen);
 804         }
 805         return(fd);
 806 }
 807 
 808 
 809 /*
 810  *      Attempt to connect to a socket with the server address.  The address
 811  *      is in user space so we verify it is OK and move it to kernel space.
 812  */
 813  
 814 asmlinkage int sys_connect(int fd, struct sockaddr *uservaddr, int addrlen)
     /* [previous][next][first][last][top][bottom][index][help] */
 815 {
 816         struct socket *sock;
 817         struct file *file;
 818         int i;
 819         char address[MAX_SOCK_ADDR];
 820         int err;
 821 
 822         if (fd < 0 || fd >= NR_OPEN || (file=current->files->fd[fd]) == NULL)
 823                 return(-EBADF);
 824         if (!(sock = sockfd_lookup(fd, &file)))
 825                 return(-ENOTSOCK);
 826 
 827         if((err=move_addr_to_kernel(uservaddr,addrlen,address))<0)
 828                 return err;
 829   
 830         switch(sock->state) 
 831         {
 832                 case SS_UNCONNECTED:
 833                         /* This is ok... continue with connect */
 834                         break;
 835                 case SS_CONNECTED:
 836                         /* Socket is already connected */
 837                         if(sock->type == SOCK_DGRAM) /* Hack for now - move this all into the protocol */
 838                                 break;
 839                         return -EISCONN;
 840                 case SS_CONNECTING:
 841                         /* Not yet connected... we will check this. */
 842                 
 843                         /*
 844                          *      FIXME:  for all protocols what happens if you start
 845                          *      an async connect fork and both children connect. Clean
 846                          *      this up in the protocols!
 847                          */
 848                         break;
 849                 default:
 850                         return(-EINVAL);
 851         }
 852         i = sock->ops->connect(sock, (struct sockaddr *)address, addrlen, file->f_flags);
 853         if (i < 0) 
 854         {
 855                 return(i);
 856         }
 857         return(0);
 858 }
 859 
 860 /*
 861  *      Get the local address ('name') of a socket object. Move the obtained
 862  *      name to user space.
 863  */
 864 
 865 asmlinkage int sys_getsockname(int fd, struct sockaddr *usockaddr, int *usockaddr_len)
     /* [previous][next][first][last][top][bottom][index][help] */
 866 {
 867         struct socket *sock;
 868         char address[MAX_SOCK_ADDR];
 869         int len;
 870         int err;
 871         
 872         if (fd < 0 || fd >= NR_OPEN || current->files->fd[fd] == NULL)
 873                 return(-EBADF);
 874         if (!(sock = sockfd_lookup(fd, NULL)))
 875                 return(-ENOTSOCK);
 876 
 877         err=sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
 878         if(err)
 879                 return err;
 880         if((err=move_addr_to_user(address,len, usockaddr, usockaddr_len))<0)
 881                 return err;
 882         return 0;
 883 }
 884 
 885 /*
 886  *      Get the remote address ('name') of a socket object. Move the obtained
 887  *      name to user space.
 888  */
 889  
 890 asmlinkage int sys_getpeername(int fd, struct sockaddr *usockaddr, int *usockaddr_len)
     /* [previous][next][first][last][top][bottom][index][help] */
 891 {
 892         struct socket *sock;
 893         char address[MAX_SOCK_ADDR];
 894         int len;
 895         int err;
 896 
 897         if (fd < 0 || fd >= NR_OPEN || current->files->fd[fd] == NULL)
 898                 return(-EBADF);
 899         if (!(sock = sockfd_lookup(fd, NULL)))
 900                 return(-ENOTSOCK);
 901 
 902         err=sock->ops->getname(sock, (struct sockaddr *)address, &len, 1);
 903         if(err)
 904                 return err;
 905         if((err=move_addr_to_user(address,len, usockaddr, usockaddr_len))<0)
 906                 return err;
 907         return 0;
 908 }
 909 
 910 /*
 911  *      Send a datagram down a socket. The datagram as with write() is
 912  *      in user space. We check it can be read.
 913  */
 914 
 915 asmlinkage int sys_send(int fd, void * buff, int len, unsigned flags)
     /* [previous][next][first][last][top][bottom][index][help] */
 916 {
 917         struct socket *sock;
 918         struct file *file;
 919         int err;
 920 
 921         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
 922                 return(-EBADF);
 923         if (!(sock = sockfd_lookup(fd, NULL))) 
 924                 return(-ENOTSOCK);
 925 
 926         if(len<0)
 927                 return -EINVAL;
 928         err=verify_area(VERIFY_READ, buff, len);
 929         if(err)
 930                 return err;
 931         return(sock->ops->send(sock, buff, len, (file->f_flags & O_NONBLOCK), flags));
 932 }
 933 
 934 /*
 935  *      Send a datagram to a given address. We move the address into kernel
 936  *      space and check the user space data area is readable before invoking
 937  *      the protocol.
 938  */
 939 
 940 asmlinkage int sys_sendto(int fd, void * buff, int len, unsigned flags,
     /* [previous][next][first][last][top][bottom][index][help] */
 941            struct sockaddr *addr, int addr_len)
 942 {
 943         struct socket *sock;
 944         struct file *file;
 945         char address[MAX_SOCK_ADDR];
 946         int err;
 947         
 948         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
 949                 return(-EBADF);
 950         if (!(sock = sockfd_lookup(fd, NULL)))
 951                 return(-ENOTSOCK);
 952 
 953         if(len<0)
 954                 return -EINVAL;
 955         err=verify_area(VERIFY_READ,buff,len);
 956         if(err)
 957                 return err;
 958         
 959         if((err=move_addr_to_kernel(addr,addr_len,address))<0)
 960                 return err;
 961 
 962         return(sock->ops->sendto(sock, buff, len, (file->f_flags & O_NONBLOCK),
 963                 flags, (struct sockaddr *)address, addr_len));
 964 }
 965 
 966 
 967 /*
 968  *      Receive a datagram from a socket. This isn't really right. The BSD manual
 969  *      pages explicitly state that recv is recvfrom with a NULL to argument. The
 970  *      Linux stack gets the right results for the wrong reason and this need to
 971  *      be tidied in the inet layer and removed from here.
 972  *      We check the buffer is writable and valid.
 973  */
 974 
 975 asmlinkage int sys_recv(int fd, void * buff, int len, unsigned flags)
     /* [previous][next][first][last][top][bottom][index][help] */
 976 {
 977         struct socket *sock;
 978         struct file *file;
 979         int err;
 980 
 981         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
 982                 return(-EBADF);
 983 
 984         if (!(sock = sockfd_lookup(fd, NULL))) 
 985                 return(-ENOTSOCK);
 986                 
 987         if(len<0)
 988                 return -EINVAL;
 989         if(len==0)
 990                 return 0;
 991         err=verify_area(VERIFY_WRITE, buff, len);
 992         if(err)
 993                 return err;
 994 
 995         return(sock->ops->recv(sock, buff, len,(file->f_flags & O_NONBLOCK), flags));
 996 }
 997 
 998 /*
 999  *      Receive a frame from the socket and optionally record the address of the 
1000  *      sender. We verify the buffers are writable and if needed move the
1001  *      sender address from kernel to user space.
1002  */
1003 
1004 asmlinkage int sys_recvfrom(int fd, void * buff, int len, unsigned flags,
     /* [previous][next][first][last][top][bottom][index][help] */
1005              struct sockaddr *addr, int *addr_len)
1006 {
1007         struct socket *sock;
1008         struct file *file;
1009         char address[MAX_SOCK_ADDR];
1010         int err;
1011         int alen;
1012         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
1013                 return(-EBADF);
1014         if (!(sock = sockfd_lookup(fd, NULL))) 
1015                 return(-ENOTSOCK);
1016         if(len<0)
1017                 return -EINVAL;
1018         if(len==0)
1019                 return 0;
1020 
1021         err=verify_area(VERIFY_WRITE,buff,len);
1022         if(err)
1023                 return err;
1024   
1025         len=sock->ops->recvfrom(sock, buff, len, (file->f_flags & O_NONBLOCK),
1026                      flags, (struct sockaddr *)address, &alen);
1027 
1028         if(len<0)
1029                 return len;
1030         if(addr!=NULL && (err=move_addr_to_user(address,alen, addr, addr_len))<0)
1031                 return err;
1032 
1033         return len;
1034 }
1035 
1036 /*
1037  *      Set a socket option. Because we don't know the option lengths we have
1038  *      to pass the user mode parameter for the protocols to sort out.
1039  */
1040  
1041 asmlinkage int sys_setsockopt(int fd, int level, int optname, char *optval, int optlen)
     /* [previous][next][first][last][top][bottom][index][help] */
1042 {
1043         struct socket *sock;
1044         struct file *file;
1045         
1046         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
1047                 return(-EBADF);
1048         if (!(sock = sockfd_lookup(fd, NULL))) 
1049                 return(-ENOTSOCK);
1050 
1051         return(sock->ops->setsockopt(sock, level, optname, optval, optlen));
1052 }
1053 
1054 /*
1055  *      Get a socket option. Because we don't know the option lengths we have
1056  *      to pass a user mode parameter for the protocols to sort out.
1057  */
1058 
1059 asmlinkage int sys_getsockopt(int fd, int level, int optname, char *optval, int *optlen)
     /* [previous][next][first][last][top][bottom][index][help] */
1060 {
1061         struct socket *sock;
1062         struct file *file;
1063 
1064         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
1065                 return(-EBADF);
1066         if (!(sock = sockfd_lookup(fd, NULL)))
1067                 return(-ENOTSOCK);
1068             
1069         if (!sock->ops->getsockopt) 
1070                 return(0);
1071         return(sock->ops->getsockopt(sock, level, optname, optval, optlen));
1072 }
1073 
1074 
1075 /*
1076  *      Shutdown a socket.
1077  */
1078  
1079 asmlinkage int sys_shutdown(int fd, int how)
     /* [previous][next][first][last][top][bottom][index][help] */
1080 {
1081         struct socket *sock;
1082         struct file *file;
1083 
1084         if (fd < 0 || fd >= NR_OPEN || ((file = current->files->fd[fd]) == NULL))
1085                 return(-EBADF);
1086         if (!(sock = sockfd_lookup(fd, NULL))) 
1087                 return(-ENOTSOCK);
1088 
1089         return(sock->ops->shutdown(sock, how));
1090 }
1091 
1092 
1093 /*
1094  *      Perform a file control on a socket file descriptor.
1095  */
1096 
1097 int sock_fcntl(struct file *filp, unsigned int cmd, unsigned long arg)
     /* [previous][next][first][last][top][bottom][index][help] */
1098 {
1099         struct socket *sock;
1100 
1101         sock = socki_lookup (filp->f_inode);
1102         if (sock != NULL && sock->ops != NULL && sock->ops->fcntl != NULL)
1103                 return(sock->ops->fcntl(sock, cmd, arg));
1104         return(-EINVAL);
1105 }
1106 
1107 
1108 /*
1109  *      System call vectors. Since I (RIB) want to rewrite sockets as streams,
1110  *      we have this level of indirection. Not a lot of overhead, since more of
1111  *      the work is done via read/write/select directly.
1112  *
1113  *      I'm now expanding this up to a higher level to separate the assorted
1114  *      kernel/user space manipulations and global assumptions from the protocol
1115  *      layers proper - AC.
1116  *
1117  *      Argument checking cleaned up. Saved 20% in size.
1118  */
1119 
1120 asmlinkage int sys_socketcall(int call, unsigned long *args)
     /* [previous][next][first][last][top][bottom][index][help] */
1121 {
1122         int er;
1123         unsigned char nargs[16]={0,3,3,3,2,3,3,3,
1124                                  4,4,4,6,6,2,5,5};
1125 
1126         unsigned long a0,a1;
1127                                  
1128         if(call<1||call>SYS_GETSOCKOPT)
1129                 return -EINVAL;
1130                 
1131         er=verify_area(VERIFY_READ, args, nargs[call] * sizeof(unsigned long));
1132         if(er)
1133                 return er;
1134                 
1135         a0=get_fs_long(args);
1136         a1=get_fs_long(args+1);
1137         
1138                 
1139         switch(call) 
1140         {
1141                 case SYS_SOCKET:
1142                         return(sys_socket(a0,a1,get_fs_long(args+2)));
1143                 case SYS_BIND:
1144                         return(sys_bind(a0,(struct sockaddr *)a1,
1145                                 get_fs_long(args+2)));
1146                 case SYS_CONNECT:
1147                         return(sys_connect(a0, (struct sockaddr *)a1,
1148                                 get_fs_long(args+2)));
1149                 case SYS_LISTEN:
1150                         return(sys_listen(a0,a1));
1151                 case SYS_ACCEPT:
1152                         return(sys_accept(a0,(struct sockaddr *)a1,
1153                                 (int *)get_fs_long(args+2)));
1154                 case SYS_GETSOCKNAME:
1155                         return(sys_getsockname(a0,(struct sockaddr *)a1,
1156                                 (int *)get_fs_long(args+2)));
1157                 case SYS_GETPEERNAME:
1158                         return(sys_getpeername(a0, (struct sockaddr *)a1,
1159                                 (int *)get_fs_long(args+2)));
1160                 case SYS_SOCKETPAIR:
1161                         return(sys_socketpair(a0,a1,
1162                                 get_fs_long(args+2),
1163                                 (unsigned long *)get_fs_long(args+3)));
1164                 case SYS_SEND:
1165                         return(sys_send(a0,
1166                                 (void *)a1,
1167                                 get_fs_long(args+2),
1168                                 get_fs_long(args+3)));
1169                 case SYS_SENDTO:
1170                         return(sys_sendto(a0,(void *)a1,
1171                                 get_fs_long(args+2),
1172                                 get_fs_long(args+3),
1173                                 (struct sockaddr *)get_fs_long(args+4),
1174                                 get_fs_long(args+5)));
1175                 case SYS_RECV:
1176                         return(sys_recv(a0,
1177                                 (void *)a1,
1178                                 get_fs_long(args+2),
1179                                 get_fs_long(args+3)));
1180                 case SYS_RECVFROM:
1181                         return(sys_recvfrom(a0,
1182                                 (void *)a1,
1183                                 get_fs_long(args+2),
1184                                 get_fs_long(args+3),
1185                                 (struct sockaddr *)get_fs_long(args+4),
1186                                 (int *)get_fs_long(args+5)));
1187                 case SYS_SHUTDOWN:
1188                         return(sys_shutdown(a0,a1));
1189                 case SYS_SETSOCKOPT:
1190                         return(sys_setsockopt(a0,
1191                                 a1,
1192                                 get_fs_long(args+2),
1193                                 (char *)get_fs_long(args+3),
1194                                 get_fs_long(args+4)));
1195                 case SYS_GETSOCKOPT:
1196                         return(sys_getsockopt(a0,
1197                                 a1,
1198                                 get_fs_long(args+2),
1199                                 (char *)get_fs_long(args+3),
1200                                 (int *)get_fs_long(args+4)));
1201         }
1202         return -EINVAL; /* to keep gcc happy */
1203 }
1204 
1205 /*
1206  *      This function is called by a protocol handler that wants to
1207  *      advertise its address family, and have it linked into the
1208  *      SOCKET module.
1209  */
1210  
1211 int sock_register(int family, struct proto_ops *ops)
     /* [previous][next][first][last][top][bottom][index][help] */
1212 {
1213         int i;
1214 
1215         cli();
1216         for(i = 0; i < NPROTO; i++) 
1217         {
1218                 if (pops[i] != NULL) 
1219                         continue;
1220                 pops[i] = ops;
1221                 pops[i]->family = family;
1222                 sti();
1223                 return(i);
1224         }
1225         sti();
1226         return(-ENOMEM);
1227 }
1228 
1229 /*
1230  *      This function is called by a protocol handler that wants to
1231  *      remove its address family, and have it unlinked from the
1232  *      SOCKET module.
1233  */
1234  
1235 int sock_unregister(int family)
     /* [previous][next][first][last][top][bottom][index][help] */
1236 {
1237         int i;
1238 
1239         cli();
1240         for(i = 0; i < NPROTO; i++) 
1241         {
1242                 if (pops[i] == NULL) 
1243                         continue;
1244                 if(pops[i]->family == family)
1245                 {
1246                         pops[i]=NULL;
1247                         sti();
1248                         return(i);
1249                 }
1250         }
1251         sti();
1252         return(-ENOENT);
1253 }
1254 
1255 void proto_init(void)
     /* [previous][next][first][last][top][bottom][index][help] */
1256 {
1257         extern struct net_proto protocols[];    /* Network protocols */
1258         struct net_proto *pro;
1259 
1260         /* Kick all configured protocols. */
1261         pro = protocols;
1262         while (pro->name != NULL) 
1263         {
1264                 (*pro->init_func)(pro);
1265                 pro++;
1266         }
1267         /* We're all done... */
1268 }
1269 
1270 
1271 void sock_init(void)
     /* [previous][next][first][last][top][bottom][index][help] */
1272 {
1273         int i;
1274 
1275         printk("Swansea University Computer Society NET3.029 Snap #6 for Linux 1.3.0\n");
1276 
1277         /*
1278          *      Initialize all address (protocol) families. 
1279          */
1280          
1281         for (i = 0; i < NPROTO; ++i) pops[i] = NULL;
1282 
1283         /*
1284          *      Initialize the protocols module. 
1285          */
1286 
1287         proto_init();
1288 
1289 #ifdef CONFIG_NET
1290         /* 
1291          *      Initialize the DEV module. 
1292          */
1293 
1294         dev_init();
1295   
1296         /*
1297          *      And the bottom half handler 
1298          */
1299 
1300         bh_base[NET_BH].routine= net_bh;
1301         enable_bh(NET_BH);
1302 #endif  
1303 }
1304 
1305 int socket_get_info(char *buffer, char **start, off_t offset, int length)
     /* [previous][next][first][last][top][bottom][index][help] */
1306 {
1307         int len = sprintf(buffer, "sockets: used %d\n", sockets_in_use);
1308         if (offset >= len)
1309         {
1310                 *start = buffer;
1311                 return 0;
1312         }
1313         *start = buffer + offset;
1314         len -= offset;
1315         if (len > length)
1316                 len = length;
1317         return len;
1318 }

/* [previous][next][first][last][top][bottom][index][help] */