]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.9-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Jun 2018 19:55:32 +0000 (21:55 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Jun 2018 19:55:32 +0000 (21:55 +0200)
added patches:
kconfig-avoid-format-overflow-warning-from-gcc-8.1.patch

queue-4.9/kconfig-avoid-format-overflow-warning-from-gcc-8.1.patch [new file with mode: 0644]
queue-4.9/series

diff --git a/queue-4.9/kconfig-avoid-format-overflow-warning-from-gcc-8.1.patch b/queue-4.9/kconfig-avoid-format-overflow-warning-from-gcc-8.1.patch
new file mode 100644 (file)
index 0000000..0b1aefb
--- /dev/null
@@ -0,0 +1,51 @@
+From 2ae89c7a82ea9d81a19b4fc2df23bef4b112f24e Mon Sep 17 00:00:00 2001
+From: Nathan Chancellor <natechancellor@gmail.com>
+Date: Sat, 2 Jun 2018 09:02:09 -0700
+Subject: kconfig: Avoid format overflow warning from GCC 8.1
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+From: Nathan Chancellor <natechancellor@gmail.com>
+
+commit 2ae89c7a82ea9d81a19b4fc2df23bef4b112f24e upstream.
+
+In file included from scripts/kconfig/zconf.tab.c:2485:
+scripts/kconfig/confdata.c: In function ‘conf_write’:
+scripts/kconfig/confdata.c:773:22: warning: ‘%s’ directive writing likely 7 or more bytes into a region of size between 1 and 4097 [-Wformat-overflow=]
+  sprintf(newname, "%s%s", dirname, basename);
+                      ^~
+scripts/kconfig/confdata.c:773:19: note: assuming directive output of 7 bytes
+  sprintf(newname, "%s%s", dirname, basename);
+                   ^~~~~~
+scripts/kconfig/confdata.c:773:2: note: ‘sprintf’ output 1 or more bytes (assuming 4104) into a destination of size 4097
+  sprintf(newname, "%s%s", dirname, basename);
+  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+scripts/kconfig/confdata.c:776:23: warning: ‘.tmpconfig.’ directive writing 11 bytes into a region of size between 1 and 4097 [-Wformat-overflow=]
+   sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
+                       ^~~~~~~~~~~
+scripts/kconfig/confdata.c:776:3: note: ‘sprintf’ output between 13 and 4119 bytes into a destination of size 4097
+   sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
+   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Increase the size of tmpname and newname to make GCC happy.
+
+Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
+Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ scripts/kconfig/confdata.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/scripts/kconfig/confdata.c
++++ b/scripts/kconfig/confdata.c
+@@ -745,7 +745,7 @@ int conf_write(const char *name)
+       struct menu *menu;
+       const char *basename;
+       const char *str;
+-      char dirname[PATH_MAX+1], tmpname[PATH_MAX+1], newname[PATH_MAX+1];
++      char dirname[PATH_MAX+1], tmpname[PATH_MAX+22], newname[PATH_MAX+8];
+       char *env;
+       dirname[0] = 0;
index 94c16cd522689b63830249a2b6da42a6883cbc57..c6b39f4d8f977fb47f23bc3bc5701ffca8d8b3db 100644 (file)
@@ -3,3 +3,4 @@ tpm-self-test-failure-should-not-cause-suspend-to-fail.patch
 mmap-introduce-sane-default-mmap-limits.patch
 mmap-relax-file-size-limit-for-regular-files.patch
 btrfs-define-super_flag_metadump_v2.patch
+kconfig-avoid-format-overflow-warning-from-gcc-8.1.patch