From af3232fb347524253572bfd1c99a2bb188f7e2aa Mon Sep 17 00:00:00 2001 From: Koen Zandberg <koen@bergzand.net> Date: Wed, 29 Aug 2018 00:47:20 +0200 Subject: [PATCH] gnrc_rpl: Pass options length to msg validator Currently the length of the full ICMPv6 packet is passed to the validator function causing validation failures on valid packets. This fixes that by passing the length of remaining RPL options of the packet. --- sys/net/gnrc/routing/rpl/gnrc_rpl_control_messages.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/net/gnrc/routing/rpl/gnrc_rpl_control_messages.c b/sys/net/gnrc/routing/rpl/gnrc_rpl_control_messages.c index 2e53e166b3..1fdd913fb9 100644 --- a/sys/net/gnrc/routing/rpl/gnrc_rpl_control_messages.c +++ b/sys/net/gnrc/routing/rpl/gnrc_rpl_control_messages.c @@ -606,8 +606,9 @@ void gnrc_rpl_recv_DIS(gnrc_rpl_dis_t *dis, kernel_pid_t iface, ipv6_addr_t *src if (gnrc_rpl_instances[i].state != 0) { uint32_t included_opts = 0; + size_t opt_len = len - sizeof(gnrc_rpl_dis_t) - sizeof(icmpv6_hdr_t); if(!_parse_options(GNRC_RPL_ICMPV6_CODE_DIS, &gnrc_rpl_instances[i], - (gnrc_rpl_opt_t *)(dis + 1), len, src, &included_opts)) { + (gnrc_rpl_opt_t *)(dis + 1), opt_len, src, &included_opts)) { DEBUG("RPL: DIS option parsing error - skip processing the DIS\n"); continue; } -- GitLab