[LTP] [PATCH] pan/ltp-pan.c: Add file parsing protection

Dylan Chung dylan@andestech.com
Fri Nov 15 06:29:06 CET 2019


A segmentation fault occurs given the wrong format in test cases file.
for example:
    name  command line
    ----- -----------------
    dio10 diotest4 -b 65536    (O)
    dio10                      (X)
    dio10    diotest4 -b 65536 (X)
This patch adds protection and print warning when the command part
of the tests is empty or multiple whitespaces.

Signed-off-by: Dylan Chung <dylan@andestech.com>
---
 pan/ltp-pan.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pan/ltp-pan.c b/pan/ltp-pan.c
index 8ac484ec6..470bcbfc5 100644
--- a/pan/ltp-pan.c
+++ b/pan/ltp-pan.c
@@ -1200,6 +1200,14 @@ static struct collection *get_collection(char *file, int optind, int argc,
 				n->pcnt_f[1] = 's';
 			}
 			n->name = strdup(strsep(&a, " \t"));
+			while (a != NULL && isspace(*a))
+				a++;
+			if (a == NULL || strlen(a) == 0) {
+				fprintf(stderr,
+					"pan(%s): Testcase '%s' requires a command to execute.\n",
+					panname, n->name);
+				return 0;
+			}
 			n->cmdline = strdup(a);
 			n->next = NULL;
 
-- 
2.17.0



More information about the ltp mailing list