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/net/net_osdep.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 /*      $NetBSD: net_osdep.h,v 1.15 2006/09/23 15:17:58 elad Exp $      */
    2 /*      $KAME: net_osdep.h,v 1.51 2001/07/06 06:21:43 itojun Exp $      */
    3 
    4 /*
    5  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
    6  * All rights reserved.
    7  *
    8  * Redistribution and use in source and binary forms, with or without
    9  * modification, are permitted provided that the following conditions
   10  * are met:
   11  * 1. Redistributions of source code must retain the above copyright
   12  *    notice, this list of conditions and the following disclaimer.
   13  * 2. Redistributions in binary form must reproduce the above copyright
   14  *    notice, this list of conditions and the following disclaimer in the
   15  *    documentation and/or other materials provided with the distribution.
   16  * 3. Neither the name of the project nor the names of its contributors
   17  *    may be used to endorse or promote products derived from this software
   18  *    without specific prior written permission.
   19  *
   20  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
   21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
   24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   30  * SUCH DAMAGE.
   31  */
   32 /*
   33  * glue for kernel code programming differences.
   34  */
   35 
   36 /*
   37  * OS dependencies:
   38  * - RTFREE()
   39  *   bsdi does not escape this macro using do-clause, so it is recommended
   40  *   to escape the macro explicitly.
   41  *   e.g.
   42  *      if (rt) {
   43  *              RTFREE(rt);
   44  *      }
   45  *
   46  * - whether the IPv4 input routine convert the byte order of some fileds
   47  *   of the IP header (x: convert to the host byte order, s: strip the header
   48  *   length for possible reassembly)
   49  *             ip_len ip_id ip_off
   50  * bsdi3:          xs     x      x
   51  * bsdi4:          xs            x
   52  * freebsd[23]:    xs     x      x
   53  * freebsd4:       xs            x
   54  * NetBSD:
   55  * OpenBSD:        xs            x
   56  *
   57  * - ifa_ifwithaf()
   58  *   bsdi[34], netbsd, and openbsd define it in sys/net/if.c
   59  *   freebsd (all versions) does not have it.
   60  *
   61  * - struct rt_addrinfo
   62  *   bsdi4, netbsd 1.5R and beyond: rti_addrs, rti_info[], rti_flags, rti_ifa,
   63  *      rti_ifp, and rti_rtm.
   64  *   others: rti_addrs and rti_info[] only.
   65  *
   66  * - ifa->ifa_rtrequest
   67  *   bsdi4, netbsd 1.5R and beyond: rt_addrinfo *
   68  *   others: sockaddr * (note that sys/net/route.c:rtrequest() has an unsafe
   69  *      typecast code, from 4.3BSD-reno)
   70  *
   71  * - side effects of rtrequest{,1}(RTM_DELETE)
   72  *      BSDI[34]: delete all cloned routes underneath the route.
   73  *      FreeBSD[234]: delete all protocol-cloned routes underneath the route.
   74  *                    note that cloned routes from an interface direct route
   75  *                    still remain.
   76  *      NetBSD: 1.5 have no side effects.  KAME/netbsd15, and post-1.5R, have
   77  *              the same effects as of BSDI.
   78  *      OpenBSD: have no side effects.  KAME/openbsd has the same effects as
   79  *              of BSDI (the change is not merged - yet).
   80  *
   81  * - privileged process
   82  *      NetBSD
   83  *              struct lwp *l;
   84  *              if (l != NULL && kauth_authorize_generic(l->l_cred, 
   85  *                  KAUTH_GENERIC_ISSUSER, &l->l_acflag) == 0)
   86  *                      privileged;
   87  *      FreeBSD 3
   88  *              struct proc *p;
   89  *              if (p && !suser(p->p_ucred, &p->p_acflag))
   90  *                      privileged;
   91  *      FreeBSD 4
   92  *              struct proc *p;
   93  *              if (p && !suser(p))
   94  *                      privileged;
   95  *      OpenBSD, BSDI [34], FreeBSD 2
   96  *              struct socket *so;
   97  *              if (so->so_state & SS_PRIV)
   98  *                      privileged;
   99  * - foo_control
  100  *      NetBSD, FreeBSD 3
  101  *              needs to give struct proc * as argument
  102  *      OpenBSD, BSDI [34], FreeBSD 2
  103  *              do not need struct proc *
  104  *
  105  * - bpf:
  106  *      OpenBSD, NetBSD 1.5, BSDI [34]
  107  *              need caddr_t * (= if_bpf **) and struct ifnet *
  108  *      FreeBSD 2, FreeBSD 3, NetBSD post-1.5N
  109  *              need only struct ifnet * as argument
  110  *
  111  * - struct ifnet
  112  *                      use queue.h?    member names    if name
  113  *                      ---             ---             ---
  114  *      FreeBSD 2       no              old standard    if_name+unit
  115  *      FreeBSD 3       yes             strange         if_name+unit
  116  *      OpenBSD         yes             standard        if_xname
  117  *      NetBSD          yes             standard        if_xname
  118  *      BSDI [34]       no              old standard    if_name+unit
  119  *
  120  * - usrreq
  121  *      NetBSD, OpenBSD, BSDI [34], FreeBSD 2
  122  *              single function with PRU_xx, arguments are mbuf
  123  *      FreeBSD 3
  124  *              separates functions, non-mbuf arguments
  125  *
  126  * - {set,get}sockopt
  127  *      NetBSD, OpenBSD, BSDI [34], FreeBSD 2
  128  *              manipulation based on mbuf
  129  *      FreeBSD 3
  130  *              non-mbuf manipulation using sooptcopy{in,out}()
  131  *
  132  * - timeout() and untimeout()
  133  *      NetBSD 1.4.x, OpenBSD, BSDI [34], FreeBSD 2
  134  *              timeout() is a void function
  135  *      FreeBSD 3
  136  *              timeout() is non-void, must keep returned value for untimeout()
  137  *              callout_xx is also available (sys/callout.h)
  138  *      NetBSD 1.5
  139  *              timeout() is obsoleted, use callout_xx (sys/callout.h)
  140  *      OpenBSD 2.8
  141  *              timeout_{add,set,del} is encouraged (sys/timeout.h)
  142  *
  143  * - kernel internal time structure
  144  *      FreeBSD 2, NetBSD, OpenBSD, BSD/OS
  145  *              mono_time.tv_u?sec, time.tv_u?sec
  146  *      FreeBSD [34]
  147  *              time_second
  148  *      if you need portability, #ifdef out FreeBSD[34], or use microtime(&tv)
  149  *      then touch tv.tv_sec.
  150  *
  151  * - sysctl
  152  *      NetBSD, OpenBSD
  153  *              foo_sysctl()
  154  *      BSDI [34]
  155  *              foo_sysctl() but with different style.  sysctl_int_arr() takes
  156  *              care of most of the cases.
  157  *      FreeBSD
  158  *              linker hack.  however, there are freebsd version differences
  159  *              (how wonderful!).
  160  *              on FreeBSD[23] function arg #define includes paren.
  161  *                      int foo SYSCTL_HANDLER_ARGS;
  162  *              on FreeBSD4, function arg #define does not include paren.
  163  *                      int foo(SYSCTL_HANDLER_ARGS);
  164  *              on some versions, forward reference to the tree is okay.
  165  *              on some versions, you need SYSCTL_DECL().  you need things
  166  *              like this.
  167  *                      #ifdef SYSCTL_DECL
  168  *                      SYSCTL_DECL(net_inet_ip6);
  169  *                      #endif
  170  *              it is hard to share functions between freebsd and non-freebsd.
  171  *
  172  * - if_ioctl
  173  *      NetBSD, FreeBSD 3, BSDI [34]
  174  *              2nd argument is u_long cmd
  175  *      FreeBSD 2
  176  *              2nd argument is int cmd
  177  *
  178  * - if attach routines
  179  *      NetBSD
  180  *              void xxattach(int);
  181  *      FreeBSD 2, FreeBSD 3
  182  *              void xxattach(void *);
  183  *              PSEUDO_SET(xxattach, if_xx);
  184  *
  185  * - ovbcopy()
  186  *      in NetBSD 1.4 or later, ovbcopy() is not supplied in the kernel.
  187  *      we have updated sys/systm.h to include declaration.
  188  *
  189  * - splnet()
  190  *      NetBSD 1.4 or later requires splsoftnet().
  191  *      other operating systems use splnet().
  192  *
  193  * - splimp()
  194  *      NetBSD-current (2001/4/13): use splnet() in network, splvm() in vm.
  195  *      other operating systems: use splimp().
  196  *
  197  * - dtom()
  198  *      NEVER USE IT!
  199  *
  200  * - struct ifnet for loopback interface
  201  *      BSDI3: struct ifnet loif;
  202  *      BSDI4: struct ifnet *loifp;
  203  *      NetBSD 2.0, OpenBSD 2.8, FreeBSD2: struct ifnet loif[NLOOP];
  204  *      NetBSD 3.0, OpenBSD 2.9: struct ifnet *lo0ifp;
  205  *
  206  *      odd thing is that many of them refers loif as ifnet *loif,
  207  *      not loif[NLOOP], from outside of if_loop.c.
  208  *
  209  * - number of bpf pseudo devices
  210  *      others: bpfilter.h, NBPFILTER
  211  *      FreeBSD4: bpf.h, NBPF
  212  *      solution:
  213  *              #if defined(__FreeBSD__) && __FreeBSD__ >= 4
  214  *              #include "bpf.h"
  215  *              #define NBPFILTER       NBPF
  216  *              #else
  217  *              #include "bpfilter.h"
  218  *              #endif
  219  *
  220  * - protosw for IPv4 (sys/netinet)
  221  *      FreeBSD4: struct ipprotosw in netinet/ipprotosw.h
  222  *      others: struct protosw in sys/protosw.h
  223  *
  224  * - protosw in general.
  225  *      NetBSD 1.5 has extra member for ipfilter (netbsd-current dropped
  226  *      it so it will go away in 1.6).
  227  *      NetBSD 1.5 requires PR_LISTEN flag bit with protocols that permit
  228  *      listen/accept (like tcp).
  229  *
  230  * - header files with defopt (opt_xx.h)
  231  *      FreeBSD3: opt_{inet,ipsec,ip6fw,altq}.h
  232  *      FreeBSD4: opt_{inet,inet6,ipsec,ip6fw,altq}.h
  233  *      NetBSD: opt_{inet,ipsec,altq}.h
  234  *      others: does not use defopt
  235  *
  236  * - IN_MULTICAST/IN_CLASS[A-D] macro.
  237  *      OpenBSD and NetBSD: net endian (kernel) or host endian (userland)
  238  *      others: always host endian
  239  *
  240  * - (m->m_flags & M_EXT) != 0 does *not* mean that the max data length of
  241  *   the mbuf == MCLBYTES.
  242  *
  243  * - sys/kern/uipc_mbuf.c:m_dup()
  244  *      freebsd[34]: copies the whole mbuf chain.
  245  *      netbsd: similar arg with m_copym().
  246  *      others: no m_dup().
  247  *
  248  * - ifa_refcnt (struct ifaddr) management (IFAREF/IFAFREE).
  249  *      NetBSD 1.5: always use IFAREF whenever reference gets added.
  250  *              always use IFAFREE whenever reference gets freed.
  251  *              IFAFREE frees ifaddr when ifa_refcnt reaches 0.
  252  *      others: do not increase refcnt for ifp->if_addrlist and in_ifaddr.
  253  *              use IFAFREE once when ifaddr is disconnected from
  254  *              ifp->if_addrlist and in_ifaddr.  IFAFREE frees ifaddr when
  255  *              ifa_refcnt goes negative.  in KAME environment, IFAREF is
  256  *              provided as a compatibility wrapper (use it instead of
  257  *              ifa_refcnt++ to reduce #ifdef).
  258  *
  259  * - ifnet.if_lastchange
  260  *      freebsd, bsdi, netbsd-current (jun 14 2001-),
  261  *      openbsd-current (jun 15 2001-): updated only when IFF_UP changes.
  262  *              (RFC1573 ifLastChange interpretation)
  263  *      netbsd151, openbsd29: updated whenever packets go through the interface.
  264  *              (4.4BSD interpretation)
  265  *
  266  * - kernel compilation options ("options HOGE" in kernel config file)
  267  *      freebsd4: sys/conf/options has to have mapping between option
  268  *              and a header file (opt_hoge.h).
  269  *      netbsd: by default, -DHOGE will go into
  270  *              sys/arch/foo/compile/BAR/Makefile.
  271  *              if you define mapping in sys/conf/files, you can create
  272  *              a header file like opt_hoge.h to help make dependencies.
  273  *      bsdi/openbsd: always use -DHOGE in Makefile.  there's no need/way
  274  *              to have opt_hoge.h.
  275  *
  276  *      therefore, opt_hoge.h is mandatory on freebsd4 only.
  277  *
  278  * - MALLOC() macro
  279  *      Use it only if the size of the allocation is constant.
  280  *      When we do NOT collect statistics about kernel memory usage, the result
  281  *      of macro expansion contains a large set of condition branches.  If the
  282  *      size is not constant, compilation optimization cannot be applied, and
  283  *      a bunch of the large branch will be embedded in the kernel code.
  284  *
  285  * - M_COPY_PKTHDR
  286  *      openbsd30: M_COPY_PKTHDR is deprecated.  use M_MOVE_PKTHDR or
  287  *              M_DUP_PKTHDR, depending on how you want to handle m_tag.
  288  *      others: M_COPY_PKTHDR is available as usual.
  289  */
  290 
  291 #ifndef _NET_NET_OSDEP_H_
  292 #define _NET_NET_OSDEP_H_
  293 #ifdef _KERNEL
  294 
  295 #define if_name(ifp)    ((ifp)->if_xname)
  296 
  297 #if defined(__NetBSD__) && __NetBSD_Version__ >= 104000000
  298 #define ovbcopy(src, dst, len)  memmove((dst), (src), (len))
  299 #endif
  300 
  301 #endif /*_KERNEL*/
  302 #endif /* !_NET_NET_OSDEP_H_ */

Cache object: 4744c46d7699bcda83634b456eeb270b


[ 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.