[PATCH] nconfig: prevent segfault on empty menu

From: Andrej Gelenberg
Date: Sat Jul 09 2011 - 21:44:50 EST


how to reproduce:
1. $ make nconfig
2. disable "Kernel hacking -> Debug Filesystem"
3. go to "General setup -> GCOV-based kernel profiling" and hit F2
it should segfault

Fix: i have added some checks for "struct menu*" to be NULL bevor it get dereferenced

Signed-off-by: Andrej Gelenberg <andrej.gelenberg@xxxxxxx>
---
scripts/kconfig/menu.c | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
index 5fdf10d..6a09cc4 100644
--- a/scripts/kconfig/menu.c
+++ b/scripts/kconfig/menu.c
@@ -425,7 +425,7 @@ void menu_finalize(struct menu *parent)

bool menu_has_prompt(struct menu *menu)
{
- if (!menu->prompt)
+ if ((!menu) || (!menu->prompt))
return false;
return true;
}
@@ -436,7 +436,7 @@ bool menu_is_visible(struct menu *menu)
struct symbol *sym;
tristate visible;

- if (!menu->prompt)
+ if ((!menu) || !menu->prompt)
return false;

if (menu->visibility) {
@@ -470,10 +470,12 @@ bool menu_is_visible(struct menu *menu)

const char *menu_get_prompt(struct menu *menu)
{
- if (menu->prompt)
- return menu->prompt->text;
- else if (menu->sym)
- return menu->sym->name;
+ if (menu) {
+ if (menu->prompt)
+ return menu->prompt->text;
+ else if (menu->sym)
+ return menu->sym->name;
+ }
return NULL;
}

@@ -496,12 +498,12 @@ struct menu *menu_get_parent_menu(struct menu *menu)

bool menu_has_help(struct menu *menu)
{
- return menu->help != NULL;
+ return menu && (menu->help != NULL);
}

const char *menu_get_help(struct menu *menu)
{
- if (menu->help)
+ if (menu && menu->help)
return menu->help;
else
return "";
--
1.7.6


--------------060504070000080006070802--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/