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/netatalk/ddp_output.c

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  * Copyright (c) 1990,1991 Regents of The University of Michigan.
    3  * All Rights Reserved.
    4  *
    5  * Permission to use, copy, modify, and distribute this software and
    6  * its documentation for any purpose and without fee is hereby granted,
    7  * provided that the above copyright notice appears in all copies and
    8  * that both that copyright notice and this permission notice appear
    9  * in supporting documentation, and that the name of The University
   10  * of Michigan not be used in advertising or publicity pertaining to
   11  * distribution of the software without specific, written prior
   12  * permission. This software is supplied as is without expressed or
   13  * implied warranties of any kind.
   14  *
   15  *      Research Systems Unix Group
   16  *      The University of Michigan
   17  *      c/o Mike Clark
   18  *      535 W. William Street
   19  *      Ann Arbor, Michigan
   20  *      +1-313-763-0525
   21  *      netatalk@itd.umich.edu
   22  */
   23 
   24 #include <sys/types.h>
   25 #include <sys/param.h>
   26 #include <sys/systm.h>
   27 #include <sys/mbuf.h>
   28 #include <sys/socket.h>
   29 #include <sys/errno.h>
   30 #include <sys/syslog.h>
   31 
   32 #include <net/if.h>
   33 #include <net/route.h>
   34 
   35 #include <netinet/in.h>
   36 #undef s_net
   37 #include <netinet/if_ether.h>
   38 
   39 #include <netatalk/at.h>
   40 #include <netatalk/at_var.h>
   41 #include <netatalk/endian.h>
   42 #include <netatalk/ddp.h>
   43 #include <netatalk/ddp_var.h>
   44 #include <netatalk/at_extern.h>
   45 
   46 int     ddp_cksum = 1;
   47 
   48 int
   49 ddp_output( struct ddpcb *ddp, struct mbuf *m)
   50 {
   51     struct ddpehdr      *deh;
   52 
   53     M_PREPEND( m, sizeof( struct ddpehdr ), M_WAIT );
   54 
   55     deh = mtod( m, struct ddpehdr *);
   56     deh->deh_pad = 0;
   57     deh->deh_hops = 0;
   58 
   59     deh->deh_len = m->m_pkthdr.len;
   60 
   61     deh->deh_dnet = ddp->ddp_fsat.sat_addr.s_net;
   62     deh->deh_dnode = ddp->ddp_fsat.sat_addr.s_node;
   63     deh->deh_dport = ddp->ddp_fsat.sat_port;
   64     deh->deh_snet = ddp->ddp_lsat.sat_addr.s_net;
   65     deh->deh_snode = ddp->ddp_lsat.sat_addr.s_node;
   66     deh->deh_sport = ddp->ddp_lsat.sat_port;
   67 
   68     /*
   69      * The checksum calculation is done after all of the other bytes have
   70      * been filled in.
   71      */
   72     if ( ddp_cksum ) {
   73         deh->deh_sum = at_cksum( m, sizeof( int ));
   74     } else {
   75         deh->deh_sum = 0;
   76     }
   77     deh->deh_bytes = htonl( deh->deh_bytes );
   78 
   79     return( ddp_route( m, &ddp->ddp_route ));
   80 }
   81 
   82 u_short
   83 at_cksum( struct mbuf *m, int skip)
   84 {
   85     u_char      *data, *end;
   86     u_long      cksum = 0;
   87 
   88     for (; m; m = m->m_next ) {
   89         for ( data = mtod( m, u_char * ), end = data + m->m_len; data < end;
   90                 data++ ) {
   91             if ( skip ) {
   92                 skip--;
   93                 continue;
   94             }
   95             cksum = ( cksum + *data ) << 1;
   96             if ( cksum & 0x00010000 ) {
   97                 cksum++;
   98             }
   99             cksum &= 0x0000ffff;
  100         }
  101     }
  102 
  103     if ( cksum == 0 ) {
  104         cksum = 0x0000ffff;
  105     }
  106     return( (u_short)cksum );
  107 }
  108 
  109 int
  110 ddp_route( struct mbuf *m, struct route *ro)
  111 {
  112     struct sockaddr_at  gate;
  113     struct elaphdr      *elh;
  114     struct mbuf         *m0;
  115     struct at_ifaddr    *aa = NULL;
  116     struct ifnet        *ifp = NULL;
  117     u_short             net;
  118 
  119     /*
  120      * if we have a route, find the ifa that refers to this route.
  121      * I.e The ifa used to get to the gateway.
  122      */
  123     if ( (ro->ro_rt == NULL)
  124     || ( ro->ro_rt->rt_ifa == NULL )
  125     || ( (ifp = ro->ro_rt->rt_ifa->ifa_ifp) == NULL )) {
  126         rtalloc(ro);
  127     }
  128     if ( (ro->ro_rt != NULL)
  129     && ( ro->ro_rt->rt_ifa )
  130     && ( ifp = ro->ro_rt->rt_ifa->ifa_ifp )) {
  131         net = ntohs(satosat(ro->ro_rt->rt_gateway)->sat_addr.s_net);
  132         for ( aa = at_ifaddr; aa; aa = aa->aa_next ) {
  133             if (((net == 0) || (aa->aa_ifp == ifp)) &&
  134                     net >= ntohs( aa->aa_firstnet ) &&
  135                     net <= ntohs( aa->aa_lastnet )) {
  136                 break;
  137             }
  138         }
  139     } else {
  140         m_freem( m );
  141         return( EINVAL );
  142     }
  143 
  144     if ( aa == NULL ) {
  145 printf( "ddp_route: oops\n" );
  146         m_freem( m );
  147         return( EINVAL );
  148     }
  149 
  150     /*
  151      * if the destination address is on a directly attached node use that,
  152      * else use the official gateway.
  153      */
  154     if ( ntohs( satosat( &ro->ro_dst )->sat_addr.s_net ) >=
  155             ntohs( aa->aa_firstnet ) &&
  156             ntohs( satosat( &ro->ro_dst )->sat_addr.s_net ) <=
  157             ntohs( aa->aa_lastnet )) {
  158         gate = *satosat( &ro->ro_dst );
  159     } else {
  160         gate = *satosat( ro->ro_rt->rt_gateway );
  161     }
  162 
  163     /*
  164      * There are several places in the kernel where data is added to
  165      * an mbuf without ensuring that the mbuf pointer is aligned.
  166      * This is bad for transition routing, since phase 1 and phase 2
  167      * packets end up poorly aligned due to the three byte elap header.
  168      */
  169     if ( !(aa->aa_flags & AFA_PHASE2) ) {
  170         MGET( m0, M_WAIT, MT_HEADER );
  171         if ( m0 == 0 ) {
  172             m_freem( m );
  173             printf("ddp_route: no buffers\n");
  174             return( ENOBUFS );
  175         }
  176         m0->m_next = m;
  177         /* XXX perhaps we ought to align the header? */
  178         m0->m_len = SZ_ELAPHDR;
  179         m = m0;
  180 
  181         elh = mtod( m, struct elaphdr *);
  182         elh->el_snode = satosat( &aa->aa_addr )->sat_addr.s_node;
  183         elh->el_type = ELAP_DDPEXTEND;
  184         elh->el_dnode = gate.sat_addr.s_node;
  185     }
  186     ro->ro_rt->rt_use++;
  187 
  188     return((*ifp->if_output)( ifp,
  189         m, (struct sockaddr *)&gate, NULL)); /* XXX */
  190 }

Cache object: 3b05c4ad7ee649bf08321ceac581ba12


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