root/include/linux/net.h

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

INCLUDED FROM


   1 /*
   2  * NET          An implementation of the SOCKET network access protocol.
   3  *              This is the master header file for the Linux NET layer,
   4  *              or, in plain English: the networking handling part of the
   5  *              kernel.
   6  *
   7  * Version:     @(#)net.h       1.0.3   05/25/93
   8  *
   9  * Authors:     Orest Zborowski, <obz@Kodak.COM>
  10  *              Ross Biro, <bir7@leland.Stanford.Edu>
  11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12  *
  13  *              This program is free software; you can redistribute it and/or
  14  *              modify it under the terms of the GNU General Public License
  15  *              as published by the Free Software Foundation; either version
  16  *              2 of the License, or (at your option) any later version.
  17  */
  18 #ifndef _LINUX_NET_H
  19 #define _LINUX_NET_H
  20 
  21 
  22 #include <linux/wait.h>
  23 #include <linux/socket.h>
  24 
  25 
  26 #define NSOCKETS        128             /* should be dynamic, later...  */
  27 #define NPROTO          16              /* should be enough for now..   */
  28 
  29 
  30 #define SYS_SOCKET      1               /* sys_socket(2)                */
  31 #define SYS_BIND        2               /* sys_bind(2)                  */
  32 #define SYS_CONNECT     3               /* sys_connect(2)               */
  33 #define SYS_LISTEN      4               /* sys_listen(2)                */
  34 #define SYS_ACCEPT      5               /* sys_accept(2)                */
  35 #define SYS_GETSOCKNAME 6               /* sys_getsockname(2)           */
  36 #define SYS_GETPEERNAME 7               /* sys_getpeername(2)           */
  37 #define SYS_SOCKETPAIR  8               /* sys_socketpair(2)            */
  38 #define SYS_SEND        9               /* sys_send(2)                  */
  39 #define SYS_RECV        10              /* sys_recv(2)                  */
  40 #define SYS_SENDTO      11              /* sys_sendto(2)                */
  41 #define SYS_RECVFROM    12              /* sys_recvfrom(2)              */
  42 #define SYS_SHUTDOWN    13              /* sys_shutdown(2)              */
  43 #define SYS_SETSOCKOPT  14              /* sys_setsockopt(2)            */
  44 #define SYS_GETSOCKOPT  15              /* sys_getsockopt(2)            */
  45 
  46 
  47 typedef enum {
  48   SS_FREE = 0,                          /* not allocated                */
  49   SS_UNCONNECTED,                       /* unconnected to any socket    */
  50   SS_CONNECTING,                        /* in process of connecting     */
  51   SS_CONNECTED,                         /* connected to socket          */
  52   SS_DISCONNECTING                      /* in process of disconnecting  */
  53 } socket_state;
  54 
  55 #define SO_ACCEPTCON    (1<<16)         /* performed a listen           */
  56 
  57 
  58 /*
  59  * Internal representation of a socket. not all the fields are used by
  60  * all configurations:
  61  *
  62  *              server                  client
  63  * conn         client connected to     server connected to
  64  * iconn        list of clients         -unused-
  65  *               awaiting connections
  66  * wait         sleep for clients,      sleep for connection,
  67  *              sleep for i/o           sleep for i/o
  68  */
  69 struct socket {
  70   short                 type;           /* SOCK_STREAM, ...             */
  71   socket_state          state;
  72   long                  flags;
  73   struct proto_ops      *ops;           /* protocols do most everything */
  74   void                  *data;          /* protocol data                */
  75   struct socket         *conn;          /* server socket connected to   */
  76   struct socket         *iconn;         /* incomplete client conn.s     */
  77   struct socket         *next;
  78   struct wait_queue     **wait;         /* ptr to place to wait on      */
  79   struct inode          *inode;
  80 };
  81 
  82 #define SOCK_INODE(S)   ((S)->inode)
  83 
  84 struct proto_ops {
  85   int   family;
  86 
  87   int   (*create)       (struct socket *sock, int protocol);
  88   int   (*dup)          (struct socket *newsock, struct socket *oldsock);
  89   int   (*release)      (struct socket *sock, struct socket *peer);
  90   int   (*bind)         (struct socket *sock, struct sockaddr *umyaddr,
  91                          int sockaddr_len);
  92   int   (*connect)      (struct socket *sock, struct sockaddr *uservaddr,
  93                          int sockaddr_len, int flags);
  94   int   (*socketpair)   (struct socket *sock1, struct socket *sock2);
  95   int   (*accept)       (struct socket *sock, struct socket *newsock,
  96                          int flags);
  97   int   (*getname)      (struct socket *sock, struct sockaddr *uaddr,
  98                          int *usockaddr_len, int peer);
  99   int   (*read)         (struct socket *sock, char *ubuf, int size,
 100                          int nonblock);
 101   int   (*write)        (struct socket *sock, char *ubuf, int size,
 102                          int nonblock);
 103   int   (*select)       (struct socket *sock, int sel_type,
 104                          select_table *wait);
 105   int   (*ioctl)        (struct socket *sock, unsigned int cmd,
 106                          unsigned long arg);
 107   int   (*listen)       (struct socket *sock, int len);
 108   int   (*send)         (struct socket *sock, void *buff, int len, int nonblock,
 109                          unsigned flags);
 110   int   (*recv)         (struct socket *sock, void *buff, int len, int nonblock,
 111                          unsigned flags);
 112   int   (*sendto)       (struct socket *sock, void *buff, int len, int nonblock,
 113                          unsigned flags, struct sockaddr *, int addr_len);
 114   int   (*recvfrom)     (struct socket *sock, void *buff, int len, int nonblock,
 115                          unsigned flags, struct sockaddr *, int *addr_len);
 116   int   (*shutdown)     (struct socket *sock, int flags);
 117   int   (*setsockopt)   (struct socket *sock, int level, int optname,
 118                          char *optval, int optlen);
 119   int   (*getsockopt)   (struct socket *sock, int level, int optname,
 120                          char *optval, int *optlen);
 121   int   (*fcntl)        (struct socket *sock, unsigned int cmd,
 122                          unsigned long arg);    
 123 };
 124 
 125 struct net_proto {
 126         char *name;             /* Protocol name */
 127         void (*init_func)(struct net_proto *);  /* Bootstrap */
 128 };
 129 
 130 extern int      sock_awaitconn(struct socket *mysock, struct socket *servsock);
 131 extern int      sock_register(int family, struct proto_ops *ops);
 132 
 133 
 134 #endif  /* _LINUX_NET_H */

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