Package: ndisc6 / 1.0.8-1

Metadata

Package Version Patches format
ndisc6 1.0.8-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
resolvconf rdnssd hook.patch | (download)

rdnss/merge-hook.in | 9 7 + 2 - 0 !
1 file changed, 7 insertions(+), 2 deletions(-)

 this is the diff from version 1.0.1-2, converted to quilt patch


reproducible build.patch | (download)

rdnss/rdnssd.c | 2 0 + 2 - 0 !
src/addrinfo.c | 2 0 + 2 - 0 !
src/ndisc.c | 2 0 + 2 - 0 !
src/tcpspray.c | 2 0 + 2 - 0 !
src/traceroute.c | 2 0 + 2 - 0 !
5 files changed, 10 deletions(-)

 we should not really care about the build date or the build host


Fix potential integer overflow in parsednssl.patch | (download)

src/ndisc.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 [patch] fix potential integer overflow in parsednssl()
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

optlen is a uint8_t because the length field in the RA header is one octet
(representing the length in units of 8 octets). Later optlen is multiplied by 8
to represent the length in bytes, meaning that the variable can overflow.

Signed-off-by: David Hrdeman <david@hardeman.nu>
Signed-off-by: Rmi Denis-Courmont <remi@remlab.net>