Date: Tue, 26 Sep 2006 01:02:03 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dhclient bpf.c Message-ID: <200609260102.k8Q123lL046925@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
brooks 2006-09-26 01:02:03 UTC
FreeBSD src repository
Modified files:
sbin/dhclient bpf.c
Log:
It is possible for bpf to return a length such that:
length != BPF_WORDALIGN(length)
This meeans that it is possible for this to be true:
interface->rbuf_offset > interface->rbuf_len
Handle this case in the test for running out of packets. While
OpenBSD's solution of setting interface->rbuf_len to
BPF_WORDALIGN(length) is safe due to the size of the buffer, I think
this solution results in less hidden assumptions.
This should fix the problem of dhclient running away and consuming 100%
CPU.
PR: bin/102226
Submitted by: Joost Bekkers <joost at jodocus.org>
MFC after: 3 days
Revision Changes Path
1.7 +1 -1 src/sbin/dhclient/bpf.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200609260102.k8Q123lL046925>
