The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/protosw.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * SPDX-License-Identifier: BSD-3-Clause
    3  *
    4  * Copyright (c) 1982, 1986, 1993
    5  *      The Regents of the University of California.  All rights reserved.
    6  *
    7  * Redistribution and use in source and binary forms, with or without
    8  * modification, are permitted provided that the following conditions
    9  * are met:
   10  * 1. Redistributions of source code must retain the above copyright
   11  *    notice, this list of conditions and the following disclaimer.
   12  * 2. Redistributions in binary form must reproduce the above copyright
   13  *    notice, this list of conditions and the following disclaimer in the
   14  *    documentation and/or other materials provided with the distribution.
   15  * 3. Neither the name of the University nor the names of its contributors
   16  *    may be used to endorse or promote products derived from this software
   17  *    without specific prior written permission.
   18  *
   19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   29  * SUCH DAMAGE.
   30  *
   31  *      @(#)protosw.h   8.1 (Berkeley) 6/2/93
   32  * $FreeBSD$
   33  */
   34 
   35 #ifndef _SYS_PROTOSW_H_
   36 #define _SYS_PROTOSW_H_
   37 
   38 #include <sys/queue.h>
   39 
   40 /* Forward declare these structures referenced from prototypes below. */
   41 struct kaiocb;
   42 struct mbuf;
   43 struct thread;
   44 struct sockaddr;
   45 struct socket;
   46 struct sockopt;
   47 
   48 /*#ifdef _KERNEL*/
   49 /*
   50  * Protocol switch table.
   51  *
   52  * Each protocol has a handle initializing one of these structures,
   53  * which is used for protocol-protocol and system-protocol communication.
   54  *
   55  * In retrospect, it would be a lot nicer to use an interface
   56  * similar to the vnode VOP interface.
   57  */
   58 struct ifnet;
   59 struct stat;
   60 struct ucred;
   61 struct uio;
   62 
   63 /* USE THESE FOR YOUR PROTOTYPES ! */
   64 typedef int     pr_ctloutput_t(struct socket *, struct sockopt *);
   65 typedef int     pr_setsbopt_t(struct socket *, struct sockopt *);
   66 typedef void    pr_abort_t(struct socket *);
   67 typedef int     pr_accept_t(struct socket *, struct sockaddr **);
   68 typedef int     pr_attach_t(struct socket *, int, struct thread *);
   69 typedef int     pr_bind_t(struct socket *, struct sockaddr *, struct thread *);
   70 typedef int     pr_connect_t(struct socket *, struct sockaddr *,
   71                     struct thread *);
   72 typedef int     pr_connect2_t(struct socket *, struct socket *);
   73 typedef int     pr_control_t(struct socket *, unsigned long, void *,
   74                     struct ifnet *, struct thread *);
   75 typedef void    pr_detach_t(struct socket *);
   76 typedef int     pr_disconnect_t(struct socket *);
   77 typedef int     pr_listen_t(struct socket *, int, struct thread *);
   78 typedef int     pr_peeraddr_t(struct socket *, struct sockaddr **);
   79 typedef int     pr_rcvd_t(struct socket *, int);
   80 typedef int     pr_rcvoob_t(struct socket *, struct mbuf *, int);
   81 typedef enum {
   82         PRUS_OOB =              0x1,
   83         PRUS_EOF =              0x2,
   84         PRUS_MORETOCOME =       0x4,
   85         PRUS_NOTREADY =         0x8,
   86         PRUS_IPV6 =             0x10,
   87 } pr_send_flags_t;
   88 typedef int     pr_send_t(struct socket *, int, struct mbuf *,
   89                     struct sockaddr *, struct mbuf *, struct thread *);
   90 typedef int     pr_ready_t(struct socket *, struct mbuf *, int);
   91 typedef int     pr_sense_t(struct socket *, struct stat *);
   92 typedef int     pr_shutdown_t(struct socket *);
   93 typedef int     pr_flush_t(struct socket *, int);
   94 typedef int     pr_sockaddr_t(struct socket *, struct sockaddr **);
   95 typedef int     pr_sosend_t(struct socket *, struct sockaddr *, struct uio *,
   96                     struct mbuf *, struct mbuf *, int, struct thread *);
   97 typedef int     pr_soreceive_t(struct socket *, struct sockaddr **,
   98                     struct uio *, struct mbuf **, struct mbuf **, int *);
   99 typedef int     pr_sopoll_t(struct socket *, int, struct ucred *,
  100                     struct thread *);
  101 typedef void    pr_sosetlabel_t(struct socket *);
  102 typedef void    pr_close_t(struct socket *);
  103 typedef int     pr_bindat_t(int, struct socket *, struct sockaddr *,
  104                     struct thread *);
  105 typedef int     pr_connectat_t(int, struct socket *, struct sockaddr *,
  106                     struct thread *);
  107 typedef int     pr_aio_queue_t(struct socket *, struct kaiocb *);
  108 
  109 struct protosw {
  110         short   pr_type;                /* socket type used for */
  111         short   pr_protocol;            /* protocol number */
  112         short   pr_flags;               /* see below */
  113         short   pr_unused;
  114         struct  domain  *pr_domain;     /* domain protocol a member of */
  115 
  116         pr_soreceive_t  *pr_soreceive;  /* recv(2) */
  117         pr_rcvd_t       *pr_rcvd;       /* soreceive_generic() if PR_WANTRCVD */
  118         pr_sosend_t     *pr_sosend;     /* send(2) */
  119         pr_send_t       *pr_send;       /* send(2) via sosend_generic() */
  120         pr_ready_t      *pr_ready;      /* sendfile/ktls readyness */
  121         pr_sopoll_t     *pr_sopoll;     /* poll(2) */
  122 /* Cache line #2 */
  123         pr_attach_t     *pr_attach;     /* creation: socreate(), sonewconn() */
  124         pr_detach_t     *pr_detach;     /* destruction: sofree() */
  125         pr_connect_t    *pr_connect;    /* connect(2) */
  126         pr_disconnect_t *pr_disconnect; /* sodisconnect() */
  127         pr_close_t      *pr_close;      /* close(2) */
  128         pr_shutdown_t   *pr_shutdown;   /* shutdown(2) */
  129         pr_abort_t      *pr_abort;      /* abrupt tear down: soabort() */
  130         pr_aio_queue_t  *pr_aio_queue;  /* aio(9) */
  131 /* Cache line #3 */
  132         pr_bind_t       *pr_bind;       /* bind(2) */
  133         pr_bindat_t     *pr_bindat;     /* bindat(2) */
  134         pr_listen_t     *pr_listen;     /* listen(2) */
  135         pr_accept_t     *pr_accept;     /* accept(2) */
  136         pr_connectat_t  *pr_connectat;  /* connectat(2) */
  137         pr_connect2_t   *pr_connect2;   /* socketpair(2) */
  138         pr_control_t    *pr_control;    /* ioctl(2) */
  139         pr_rcvoob_t     *pr_rcvoob;     /* soreceive_rcvoob() */
  140 /* Cache line #4 */
  141         pr_ctloutput_t  *pr_ctloutput;  /* control output (from above) */
  142         pr_peeraddr_t   *pr_peeraddr;   /* getpeername(2) */
  143         pr_sockaddr_t   *pr_sockaddr;   /* getsockname(2) */
  144         pr_sense_t      *pr_sense;      /* stat(2) */
  145         pr_flush_t      *pr_flush;      /* XXXGL: merge with pr_shutdown_t! */
  146         pr_sosetlabel_t *pr_sosetlabel; /* MAC, XXXGL: remove */
  147         pr_setsbopt_t   *pr_setsbopt;   /* Socket buffer ioctls */
  148 };
  149 /*#endif*/
  150 
  151 /*
  152  * Values for pr_flags.
  153  * PR_ADDR requires PR_ATOMIC;
  154  * PR_ADDR and PR_CONNREQUIRED are mutually exclusive.
  155  * PR_IMPLOPCL means that the protocol allows sendto without prior connect,
  156  *      and the protocol understands the MSG_EOF flag.  The first property is
  157  *      is only relevant if PR_CONNREQUIRED is set (otherwise sendto is allowed
  158  *      anyhow).
  159  * PR_SOCKBUF requires protocol to initialize and destroy its socket buffers
  160  * in its pr_attach and pr_detach.
  161  */
  162 #define PR_ATOMIC       0x01            /* exchange atomic messages only */
  163 #define PR_ADDR         0x02            /* addresses given with messages */
  164 #define PR_CONNREQUIRED 0x04            /* connection required by protocol */
  165 #define PR_WANTRCVD     0x08            /* want PRU_RCVD calls */
  166 #define PR_RIGHTS       0x10            /* passes capabilities */
  167 #define PR_IMPLOPCL     0x20            /* implied open/close */
  168 /* was  PR_LASTHDR      0x40               enforce ipsec policy; last header */
  169 #define PR_CAPATTACH    0x80            /* socket can attach in cap mode */
  170 #define PR_SOCKBUF      0x100           /* private implementation of buffers */
  171 
  172 /*
  173  * The arguments to ctloutput are:
  174  *      (*protosw[].pr_ctloutput)(req, so, level, optname, optval, p);
  175  * req is one of the actions listed below, so is a (struct socket *),
  176  * level is an indication of which protocol layer the option is intended.
  177  * optname is a protocol dependent socket option request,
  178  * optval is a pointer to a mbuf-chain pointer, for value-return results.
  179  * The protocol is responsible for disposal of the mbuf chain *optval
  180  * if supplied,
  181  * the caller is responsible for any space held by *optval, when returned.
  182  * A non-zero return from ctloutput gives an
  183  * UNIX error number which should be passed to higher level software.
  184  */
  185 #define PRCO_GETOPT     0
  186 #define PRCO_SETOPT     1
  187 
  188 #define PRCO_NCMDS      2
  189 
  190 #ifdef PRCOREQUESTS
  191 char    *prcorequests[] = {
  192         "GETOPT", "SETOPT",
  193 };
  194 #endif
  195 
  196 #ifdef _KERNEL
  197 struct domain *pffinddomain(int family);
  198 struct protosw *pffindproto(int family, int type, int proto);
  199 int protosw_register(struct domain *, struct protosw *);
  200 int protosw_unregister(struct protosw *);
  201 
  202 /* Domains that are known to be avaliable for protosw_register(). */
  203 extern struct domain inetdomain;
  204 extern struct domain inet6domain;
  205 #endif
  206 
  207 #endif

Cache object: 08d9cbda10173d8d63042e222c77b74a


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.