x86/boot: Pull up cmdline preparation and early param parsing

Dan reports that Anjaneya Chagam can no longer use the efi=nosoftreserve
kernel command line parameter to suppress "soft reservation" behavior.

This is due to the fact that the following call-chain happens at boot:

early_reserve_memory
|-> efi_memblock_x86_reserve_range
|-> efi_fake_memmap_early

which does

if (!efi_soft_reserve_enabled())
return;

and that would have set EFI_MEM_NO_SOFT_RESERVE after having parsed
"nosoftreserve".

However, parse_early_param() gets called *after* it, leading to the boot
cmdline not being taken into account.

Therefore, carve out the command line preparation into a separate
function which does the early param parsing too. So that it all goes
together.

And then call that function before early_reserve_memory() so that the
params would have been parsed by then.

Fixes: 8aa83e6395ce ("x86/setup: Call early_reserve_memory() earlier")
Reported-by: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Tested-by: Anjaneya Chagam <anjaneya.chagam@intel.com>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/e8dd8993c38702ee6dd73b3c11f158617e665607.camel@intel.com

Changed files
+39 -27
arch
x86
kernel
+39 -27
arch/x86/kernel/setup.c
··· 742 742 return 0; 743 743 } 744 744 745 + static char *prepare_command_line(void) 746 + { 747 + #ifdef CONFIG_CMDLINE_BOOL 748 + #ifdef CONFIG_CMDLINE_OVERRIDE 749 + strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); 750 + #else 751 + if (builtin_cmdline[0]) { 752 + /* append boot loader cmdline to builtin */ 753 + strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE); 754 + strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE); 755 + strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); 756 + } 757 + #endif 758 + #endif 759 + 760 + strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); 761 + 762 + parse_early_param(); 763 + 764 + return command_line; 765 + } 766 + 745 767 /* 746 768 * Determine if we were loaded by an EFI loader. If so, then we have also been 747 769 * passed the efi memmap, systab, etc., so we should use these data structures ··· 853 831 x86_init.oem.arch_setup(); 854 832 855 833 /* 834 + * x86_configure_nx() is called before parse_early_param() (called by 835 + * prepare_command_line()) to detect whether hardware doesn't support 836 + * NX (so that the early EHCI debug console setup can safely call 837 + * set_fixmap()). It may then be called again from within noexec_setup() 838 + * during parsing early parameters to honor the respective command line 839 + * option. 840 + */ 841 + x86_configure_nx(); 842 + 843 + /* 844 + * This parses early params and it needs to run before 845 + * early_reserve_memory() because latter relies on such settings 846 + * supplied as early params. 847 + */ 848 + *cmdline_p = prepare_command_line(); 849 + 850 + /* 856 851 * Do some memory reservations *before* memory is added to memblock, so 857 852 * memblock allocations won't overwrite it. 858 853 * ··· 901 862 data_resource.end = __pa_symbol(_edata)-1; 902 863 bss_resource.start = __pa_symbol(__bss_start); 903 864 bss_resource.end = __pa_symbol(__bss_stop)-1; 904 - 905 - #ifdef CONFIG_CMDLINE_BOOL 906 - #ifdef CONFIG_CMDLINE_OVERRIDE 907 - strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); 908 - #else 909 - if (builtin_cmdline[0]) { 910 - /* append boot loader cmdline to builtin */ 911 - strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE); 912 - strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE); 913 - strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); 914 - } 915 - #endif 916 - #endif 917 - 918 - strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); 919 - *cmdline_p = command_line; 920 - 921 - /* 922 - * x86_configure_nx() is called before parse_early_param() to detect 923 - * whether hardware doesn't support NX (so that the early EHCI debug 924 - * console setup can safely call set_fixmap()). It may then be called 925 - * again from within noexec_setup() during parsing early parameters 926 - * to honor the respective command line option. 927 - */ 928 - x86_configure_nx(); 929 - 930 - parse_early_param(); 931 865 932 866 #ifdef CONFIG_MEMORY_HOTPLUG 933 867 /*