Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1294298
| From | Dave Hansen <dave@sr71.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 5/5] x86: simplify early command line parsing |
| Date | 2015-12-17 23:10 +0100 |
| Message-ID | <qGOUj-5mw-27@gated-at.bofh.it> (permalink) |
| References | <qGOUi-5mw-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Dave Hansen <dave.hansen@linux.intel.com> __cmdline_find_option_bool() tries to account for both NULL-terminated and non-NULL-terminated strings. It keeps 'pos' to look for the end of the buffer and also looks for '!c' in a bunch of places to look for NULL termination. But, it also calls strlen(). You can't call strlen on a non-NULL-terminated string. If !strlen(cmdline), then cmdline[0]=='\0'. In that case, we will go in to the while() loop, set c='\0', hit st_wordstart, notice !c, and will immediately return 0. So, remove the strlen(). It is unnecessary and unsafe. Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Cc: Borislav Petkov <bp@suse.de> Cc: H. Peter Anvin <hpa@zytor.com> Cc: linux-kernel@vger.kernel.org Cc: fenghua.yu@intel.com Cc: yu-cheng.yu@intel.com --- b/arch/x86/lib/cmdline.c | 3 --- 1 file changed, 3 deletions(-) diff -puN arch/x86/lib/cmdline.c~x86-early-command-line-non-term arch/x86/lib/cmdline.c --- a/arch/x86/lib/cmdline.c~x86-early-command-line-non-term 2015-12-17 13:54:54.211004070 -0800 +++ b/arch/x86/lib/cmdline.c 2015-12-17 13:54:54.214004206 -0800 @@ -41,9 +41,6 @@ static int __cmdline_find_option_bool(co if (!cmdline) return -1; /* No command line */ - if (!strlen(cmdline)) - return 0; - /* * This 'pos' check ensures we do not overrun * a non-NULL-terminated 'cmdline' _ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 1/5] x86: pass in size to early cmdline parsing Dave Hansen <dave@sr71.net> - 2015-12-17 23:10 +0100 [PATCH 2/5] x86: test early command-line code Dave Hansen <dave@sr71.net> - 2015-12-17 23:10 +0100 [PATCH 4/5] x86: fix early command-line parsing, when partial word match Dave Hansen <dave@sr71.net> - 2015-12-17 23:10 +0100 [PATCH 3/5] x86: fix early command-line parsing when matching at end Dave Hansen <dave@sr71.net> - 2015-12-17 23:10 +0100 [PATCH 5/5] x86: simplify early command line parsing Dave Hansen <dave@sr71.net> - 2015-12-17 23:10 +0100
csiph-web