[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xen: Fix off-by-one error when parsing command line arguments
# HG changeset patch # User Andrew Cooper <andrew.cooper3@xxxxxxxxxx> # Date 1341319099 -3600 # Node ID 2cffb7bf6e5738af59d52446155d49aaeadac540 # Parent 1b3198c8f140918574ccfe6baba92ef214d69c1a xen: Fix off-by-one error when parsing command line arguments As Xen currently stands, it will attempt to interpret the first few bytes of the initcall section as a struct kernel_param. The reason that this not caused problems is because in the overflow case, param->name is actually a function pointer to the first initcall, and intepreting it as string is very unlikely to match an ASCII command line parameter name. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Committed-by: Keir Fraser <keir@xxxxxxx> --- diff -r 1b3198c8f140 -r 2cffb7bf6e57 xen/common/kernel.c --- a/xen/common/kernel.c Tue Jul 03 10:52:33 2012 +0100 +++ b/xen/common/kernel.c Tue Jul 03 13:38:19 2012 +0100 @@ -90,7 +90,7 @@ void __init cmdline_parse(const char *cm if ( !bool_assert ) optkey += 3; - for ( param = &__setup_start; param <= &__setup_end; param++ ) + for ( param = &__setup_start; param < &__setup_end; param++ ) { if ( strcmp(param->name, optkey) ) continue; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |