From: angelos Date: Tue, 18 Apr 2000 06:35:02 +0000 (+0000) Subject: Sanity check on dequeued mbufs, also keep track of correct interface X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=834deb6a51ab36829a33c043eabc093ffc3815b9;p=openbsd Sanity check on dequeued mbufs, also keep track of correct interface for statistics purposes. --- diff --git a/sys/net/if_enc.c b/sys/net/if_enc.c index 329a342d690..74cf10e5e2d 100644 --- a/sys/net/if_enc.c +++ b/sys/net/if_enc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_enc.c,v 1.28 2000/04/12 18:05:47 angelos Exp $ */ +/* $OpenBSD: if_enc.c,v 1.29 2000/04/18 06:35:02 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -239,7 +239,15 @@ struct ifnet *ifp; if (m == NULL) /* Empty queue */ return; + + /* Sanity check */ + if ((m->m_flags & M_PKTHDR) == 0) + { + m_freem(m); + continue; + } + m->m_pkthdr.rcvif = ifp; mp = NULL; /* Encapsulate in etherip or ip-in-ip, depending on interface flag */