diff options
author | John Lo <loj@cisco.com> | 2018-06-19 15:27:48 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-06-19 21:26:10 +0000 |
commit | 084606befb45507e9241b5555f86196fe08530f6 (patch) | |
tree | 25982dd871832335b2f62159657c3b3b31e361f2 /src/vnet/ip/ip6_forward.c | |
parent | 7e607a73898b81c21a24038a2350fdda3b1c67ff (diff) |
Check get packet template allocation failure (VPP-1321)
After calling vlib_packet_template_get_packet(), make sure
packet buffer is allocated before using it.
Change-Id: Idb5199f4e2c9596137b2101e502d611f474a6ffe
Signed-off-by: John Lo <loj@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip6_forward.c')
-rw-r--r-- | src/vnet/ip/ip6_forward.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/ip/ip6_forward.c b/src/vnet/ip/ip6_forward.c index 5ea7d8d6e9d..cf1011fa897 100644 --- a/src/vnet/ip/ip6_forward.c +++ b/src/vnet/ip/ip6_forward.c @@ -1476,6 +1476,8 @@ ip6_probe_neighbor (vlib_main_t * vm, ip6_address_t * dst, u32 sw_if_index, vlib_packet_template_get_packet (vm, &im->discover_neighbor_packet_template, &bi); + if (!h) + return clib_error_return (0, "ICMP6 NS packet allocation failed"); hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |