Patch "kconfig: require a space after '#' for valid input" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    kconfig: require a space after '#' for valid input

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     kconfig-require-a-space-after-for-valid-input.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit a1b9528f89fe897aaf11157f02d14b9622165a0a
Author: Masahiro Yamada <masahiroy@xxxxxxxxxx>
Date:   Sat Nov 18 16:59:07 2023 +0900

    kconfig: require a space after '#' for valid input
    
    [ Upstream commit 4d137ab0107ead0f2590fc0314e627431e3b9e3f ]
    
    Currently, when an input line starts with '#', (line + 2) is passed to
    memcmp() without checking line[1].
    
    It means that line[1] can be any arbitrary character. For example,
    "#KCONFIG_FOO is not set" is accepted as valid input, functioning the
    same as "# CONFIG_FOO is not set".
    
    More importantly, this can potentially lead to a buffer overrun if
    line[1] == '\0'. It occurs if the input only contains '#', as
    (line + 2) points to an uninitialized buffer.
    
    Check line[1], and skip the line if it is not a space.
    
    Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx>
    Stable-dep-of: a409fc1463d6 ("kconfig: fix memory leak in sym_warn_unmet_dep()")
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index 02ac250b8fe9e..8694ab1e04067 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -432,6 +432,8 @@ int conf_read_simple(const char *name, int def)
 		conf_lineno++;
 		sym = NULL;
 		if (line[0] == '#') {
+			if (line[1] != ' ')
+				continue;
 			if (memcmp(line + 2, CONFIG_, strlen(CONFIG_)))
 				continue;
 			p = strchr(line + 2 + strlen(CONFIG_), ' ');




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux