cmdline: fix overflow on bsd
authorAlan Carew <alan.carew@intel.com>
Mon, 20 Oct 2014 15:23:13 +0000 (16:23 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 3 Dec 2014 19:45:19 +0000 (20:45 +0100)
commita0547e0a751100e6d1a783e69f5bfad85890845f
tree04c1c717b2164c318877bd7959a3b71f45a9a78d
parent999284fcc3043cf1c1d15e825ed7d77cf491f2fe
cmdline: fix overflow on bsd

When using test-pmd with flow director in FreeBSD, the application will
segfault/Bus error while parsing the command-line. This is due to how
each commands result structure is represented during parsing, where the offsets
for each tokens value is stored in a character array(char result_buf[BUFSIZ])
in cmdline_parse()(./lib/librte_cmdline/cmdline_parse.c).

The overflow occurs where BUFSIZ is less than the size of a commands result
structure, in this case "struct cmd_pkt_filter_result"
(app/test-pmd/cmdline.c) is 1088 bytes and BUFSIZ on FreeBSD is 1024 bytes as
opposed to 8192 bytes on Linux.

This patch removes the OS dependency on BUFSIZ and defines and uses a
library #define CMDLINE_PARSE_RESULT_BUFSIZE 8192

The problem can be reproduced by running test-pmd on FreeBSD:
./testpmd -c 0x3 -n 4 -- -i --portmask=0x3 --pkt-filter-mode=perfect
And adding a filter:
add_perfect_filter 0 udp src 192.168.0.0 1024 dst 192.168.0.0 1024 flexbytes
0x800 vlan 0 queue 0 soft 0x17

Signed-off-by: Alan Carew <alan.carew@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
lib/librte_cmdline/cmdline_parse.c
lib/librte_cmdline/cmdline_parse.h