Ethernet Layer communications

Eric Norum wenorum at lbl.gov
Thu Apr 14 21:32:08 UTC 2011


There's way to tap into the packet stream, but I don't recall who did the work.

From net/if.c:

        /*
         * RTEMS additions for setting/getting `tap' function
         */
        case SIOCSIFTAP:
                ifp->if_tap = ifr->ifr_tap;
                return 0;

        case SIOCGIFTAP:
                ifr->ifr_tap = ifp->if_tap;
                return 0;
        }


And from net/if_ethersubr.c:

    /*
     * RTEMS addition -- allow application to `tap into'
     * the incoming packet stream.
     */
    if (ifp->if_tap && (*ifp->if_tap)(ifp, eh, m)) {
        m_freem(m);
        return;
    }



On Apr 14, 2011, at 2:21 PM, Daron Chabot wrote:

> 
> 
> On Thu, Apr 14, 2011 at 5:16 PM, Brett Swimley <brett.swimley at aedbozeman.com> wrote:
> Thanks Daron,
> 
> I had found this reference, and it appears that libpcap uses this API, so I will continue looking. I'm hoping that the RTEMS stack does support bpf.
> 
> I had a brief grep through the source tree and noted that there were only 3 NIC drivers that had the bpf_mtap( ) interface (all ported from FreeBSD!):
> 
> dchabot at dev32new--> git grep -n bpf c/src/libchip/network 
> c/src/libchip/network/i82586.c:1280:  if (sc->arpcom.ac_if.if_bpf != 0)
> c/src/libchip/network/i82586.c:1282:    bpf_mtap(sc->arpcom.ac_if.if_bpf, m);
> c/src/libchip/network/i82586.c:1378:    if (ifp->if_bpf)
> c/src/libchip/network/i82586.c:1379:      bpf_mtap(ifp->if_bpf, m0);
> c/src/libchip/network/if_dc.c:159:#include <net/bpf.h>
> c/src/libchip/network/if_dc.c:3372:             if (ifp->if_bpf)
> c/src/libchip/network/if_dc.c:3373:                     bpf_mtap(ifp, m_head);
> c/src/libchip/network/if_fxp.c:87:#include <net/bpf.h>
> c/src/libchip/network/if_fxp.c:1262:             * Pass packet to bpf if there i
> c/src/libchip/network/if_fxp.c:1264:            if (ifp->if_bpf)
> c/src/libchip/network/if_fxp.c:1265:                    bpf_mtap(ifp, mb_head);
> 
> But, on further inspection, the bpf_mtaps( ) were "#if 0"'d out of commission.
> 
> Then there's the issue of creating /dev/bpfX device nodes...
> 
> I would be surprised if someone out there doesn't have something already, perhaps created to support message passing between nodes of a distributed, multi-processing system?
> 
> I'm looking at you Till... ;-)
> 
> 
> -- dc
>  
> 
> Brett
> 
> 
> On Thu, Apr 14, 2011 at 2:30 PM, Daron Chabot <daron.chabot at gmail.com> wrote:
> Hi Brett,
> 
> I have not looked into this in much detail, but since RTEMS' network stack is ported from FreeBSD, you may be able to use the Berkley Packet Filter (bpf) API for this.
> 
> 
> 
> -- dc
> 
> 
> 
> 
> 
> _______________________________________________
> rtems-users mailing list
> rtems-users at rtems.org
> http://www.rtems.org/mailman/listinfo/rtems-users

-- 
Eric Norum
wenorum at lbl.gov

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/users/attachments/20110414/4dbe5934/attachment-0001.html>


More information about the users mailing list