examples/ipsec-secgw: add check for unprotected port mask

Usage of unprotected port mask without any configured SA inbound, will
cause use of uninitialized SA context, so disallow such configuration.

Signed-off-by: Volodymyr Fialko <vfialko@marvell.com>
Acked-by: Anoob Joseph <anoobj@marvell.com>
This commit is contained in:
Volodymyr Fialko 2022-02-09 12:52:13 +01:00 committed by Akhil Goyal
parent 002486db23
commit a15f7b7d8a

View File

@ -3293,6 +3293,9 @@ main(int32_t argc, char **argv)
rte_exit(EXIT_FAILURE, "Invalid unprotected portmask 0x%x\n",
unprotected_port_mask);
if (unprotected_port_mask && !nb_sa_in)
rte_exit(EXIT_FAILURE, "Cannot use unprotected portmask without configured SA inbound\n");
if (check_poll_mode_params(eh_conf) < 0)
rte_exit(EXIT_FAILURE, "check_poll_mode_params failed\n");