generic: make sure we only try to mangle bootargs we do have
authorImre Kaloz <kaloz@openwrt.org>
Sun, 12 Apr 2015 14:46:19 +0000 (14:46 +0000)
committerImre Kaloz <kaloz@openwrt.org>
Sun, 12 Apr 2015 14:46:19 +0000 (14:46 +0000)
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45393

target/linux/generic/patches-3.18/995-mangle_bootargs.patch
target/linux/generic/patches-4.0/995-mangle_bootargs.patch

index 5d56cf44626fe2d70b0a03f748c14e220e8a900b..0029e9082284dac74343667fe1de9f76a85a4c06 100644 (file)
@@ -1,8 +1,8 @@
 --- a/init/main.c
 +++ b/init/main.c
-@@ -379,6 +379,26 @@ static void __init setup_command_line(ch
-       strcpy(static_command_line, command_line);
- }
+@@ -362,6 +362,29 @@ static inline void setup_nr_cpu_ids(void
+ static inline void smp_prepare_cpus(unsigned int maxcpus) { }
+ #endif
  
 +#ifdef CONFIG_MANGLE_BOOTARGS
 +static void __init mangle_bootargs(char *command_line)
 +      char *rootfs;
 +
 +      rootdev = strstr(command_line, "root=/dev/mtdblock");
-+      strncpy(rootdev, "mangled_rootblock=", 18);
++
++      if (rootdev)
++              strncpy(rootdev, "mangled_rootblock=", 18);
 +
 +      rootfs = strstr(command_line, "rootfstype");
-+      strncpy(rootfs, "mangled_fs", 10);
++
++      if (rootfs)
++              strncpy(rootfs, "mangled_fs", 10);
 +
 +}
 +#else
 +{
 +}
 +#endif
-+
 +
  /*
-  * We need to finalize in a non-__init function or else race conditions
-  * between the root thread and the init thread may cause start_kernel to
-@@ -530,6 +550,7 @@ asmlinkage __visible void __init start_k
+  * We need to store the untouched command line for future reference.
+  * We also need to store the touched command line since the parameter
+@@ -530,6 +553,7 @@ asmlinkage __visible void __init start_k
        pr_notice("%s", linux_banner);
        setup_arch(&command_line);
        mm_init_cpumask(&init_mm);
index 38df82acc17ed38f615945ee3815539d06c9f1fe..ebfc6d86fc57073679c56e34274567f9c16e9695 100644 (file)
@@ -1,8 +1,8 @@
 --- a/init/main.c
 +++ b/init/main.c
-@@ -368,6 +368,26 @@ static void __init setup_command_line(ch
-       strcpy(static_command_line, command_line);
- }
+@@ -351,6 +351,29 @@ static inline void setup_nr_cpu_ids(void
+ static inline void smp_prepare_cpus(unsigned int maxcpus) { }
+ #endif
  
 +#ifdef CONFIG_MANGLE_BOOTARGS
 +static void __init mangle_bootargs(char *command_line)
 +      char *rootfs;
 +
 +      rootdev = strstr(command_line, "root=/dev/mtdblock");
-+      strncpy(rootdev, "mangled_rootblock=", 18);
++
++      if (rootdev)
++              strncpy(rootdev, "mangled_rootblock=", 18);
 +
 +      rootfs = strstr(command_line, "rootfstype");
-+      strncpy(rootfs, "mangled_fs", 10);
++
++      if (rootfs)
++              strncpy(rootfs, "mangled_fs", 10);
 +
 +}
 +#else
 +{
 +}
 +#endif
-+
 +
  /*
-  * We need to finalize in a non-__init function or else race conditions
-  * between the root thread and the init thread may cause start_kernel to
-@@ -519,6 +539,7 @@ asmlinkage __visible void __init start_k
+  * We need to store the untouched command line for future reference.
+  * We also need to store the touched command line since the parameter
+@@ -519,6 +542,7 @@ asmlinkage __visible void __init start_k
        pr_notice("%s", linux_banner);
        setup_arch(&command_line);
        mm_init_cpumask(&init_mm);