From f1ba58a199fff4e146206e83048a083c7a61677c Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Mon, 3 Oct 2016 22:46:55 +0200 Subject: [PATCH] libsepol/cil: make cil_resolve_name() fail for '.' This CIL policy makes secilc crash with a NULL pointer dereference: (class CLASS (PERM)) (classorder (CLASS)) (sid SID) (sidorder (SID)) (user USER) (role ROLE) (type TYPE) (category CAT) (categoryorder (CAT)) (sensitivity SENS) (sensitivityorder (SENS)) (sensitivitycategory SENS (CAT)) (allow TYPE self (CLASS (PERM))) (roletype ROLE TYPE) (userrole USER ROLE) (userlevel USER (SENS)) (userrange USER ((SENS)(SENS (CAT)))) (sidcontext SID (USER ROLE TYPE ((SENS)(SENS)))) (allow . self (CLASS (PERM))) Using "." in the allow statement makes strtok_r() return NULL in cil_resolve_name() and this result is then used in a call to cil_symtab_get_datum(), which is thus invalid. Instead of crashing, make secilc fail with an error message. This bug has been found by fuzzing secilc with american fuzzy lop. Signed-off-by: Nicolas Iooss --- libsepol/cil/src/cil_resolve_ast.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libsepol/cil/src/cil_resolve_ast.c b/libsepol/cil/src/cil_resolve_ast.c index 917adf8d..c4035457 100644 --- a/libsepol/cil/src/cil_resolve_ast.c +++ b/libsepol/cil/src/cil_resolve_ast.c @@ -4027,7 +4027,14 @@ int cil_resolve_name(struct cil_tree_node *ast_node, char *name, enum cil_sym_in char *current = strtok_r(name_dup, ".", &sp); char *next = strtok_r(NULL, ".", &sp); symtab_t *symtab = NULL; - + + if (current == NULL) { + /* Only dots */ + cil_tree_log(ast_node, CIL_ERR, "Invalid name %s", name); + free(name_dup); + goto exit; + } + node = ast_node; if (*name == '.') { /* Leading '.' */