From: Steve Shin Date: Fri, 29 Jun 2018 16:40:20 +0000 (-0700) Subject: cli: Validate cli_file_index on quit command X-Git-Tag: v18.07-rc1~66 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=0d5a195ce457a62b60ae59d451067f3fd26f57c9;p=vpp.git cli: Validate cli_file_index on quit command VPP crash happens with 'vppctl quit quit' command. The 2nd quit command tries to access the file index which is already freed by the first quit. This can be avoided to validate cli_file_index. Change-Id: I880514c93523db2a727d7510c97950582cd6a6c8 Signed-off-by: Steve Shin --- diff --git a/src/vlib/unix/cli.c b/src/vlib/unix/cli.c index 727b9544854..596f41809e6 100644 --- a/src/vlib/unix/cli.c +++ b/src/vlib/unix/cli.c @@ -2489,6 +2489,10 @@ unix_cli_kill (unix_cli_main_t * cm, uword cli_file_index) clib_file_t *uf; int i; + /* Validate cli_file_index */ + if (pool_is_free_index (cm->cli_file_pool, cli_file_index)) + return; + cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index); uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);