nat: deterministic: disallow invalid config

Prevent overflow if input network prefix is too small and crash on
packet #1 due to vector not being allocated/initialized.

Type: fix
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: I3494cc62ce889df48cc59cc9340b5dd70338c3a8
(cherry picked from commit f3d7bd9d4d)
This commit is contained in:
Klement Sekera
2020-06-23 13:12:33 +00:00
committed by Andrew Yourtchenko
parent ccaef621a8
commit bef1019aa3
2 changed files with 20 additions and 5 deletions

View File

@ -1528,8 +1528,13 @@ snat_det_map_command_fn (vlib_main_t * vm,
} }
} }
rv = snat_det_add_map (sm, &in_addr, (u8) in_plen, &out_addr, (u8) out_plen, if (in_plen > 32 || out_plen > 32)
is_add); {
error = clib_error_return (0, "network prefix length must be <= 32");
goto done;
}
rv = snat_det_add_map (sm, &in_addr, in_plen, &out_addr, out_plen, is_add);
if (rv) if (rv)
{ {

View File

@ -71,6 +71,17 @@ snat_det_add_map (snat_main_t * sm, ip4_address_t * in_addr, u8 in_plen,
if (is_add) if (is_add)
{ {
u32 num_sessions = (1 << (32 - in_plen));
if (num_sessions > UINT32_MAX / 1000)
{
// don't let it overflow
return VNET_API_ERROR_INVALID_VALUE;
}
else
{
num_sessions = num_sessions * 1000 - 1;
}
pool_get (sm->det_maps, det_map); pool_get (sm->det_maps, det_map);
clib_memset (det_map, 0, sizeof (*det_map)); clib_memset (det_map, 0, sizeof (*det_map));
det_map->in_addr.as_u32 = in_cmp.as_u32; det_map->in_addr.as_u32 = in_cmp.as_u32;
@ -80,9 +91,8 @@ snat_det_add_map (snat_main_t * sm, ip4_address_t * in_addr, u8 in_plen,
det_map->sharing_ratio = (1 << (32 - in_plen)) / (1 << (32 - out_plen)); det_map->sharing_ratio = (1 << (32 - in_plen)) / (1 << (32 - out_plen));
det_map->ports_per_host = (65535 - 1023) / det_map->sharing_ratio; det_map->ports_per_host = (65535 - 1023) / det_map->sharing_ratio;
vec_validate_init_empty (det_map->sessions, vec_validate_init_empty (det_map->sessions, num_sessions,
SNAT_DET_SES_PER_USER * (1 << (32 - in_plen)) - empty_snat_det_session);
1, empty_snat_det_session);
} }
else else
{ {