]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
emulex/benet: Annotate flash_cookie as nonstring
authorKees Cook <kees@kernel.org>
Wed, 16 Apr 2025 22:10:29 +0000 (15:10 -0700)
committerJakub Kicinski <kuba@kernel.org>
Wed, 23 Apr 2025 01:22:12 +0000 (18:22 -0700)
GCC 15's new -Wunterminated-string-initialization notices that the 32
character "flash_cookie" (which is not used as a C-String)
needs to be marked as "nonstring":

drivers/net/ethernet/emulex/benet/be_cmds.c:2618:51: warning: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (17 chars into 16 available) [-Wunterminated-string-initialization]
 2618 | static char flash_cookie[2][16] = {"*** SE FLAS", "H DIRECTORY *** "};
      |                                                   ^~~~~~~~~~~~~~~~~~

Add this annotation, avoid using a multidimensional array, but keep the
string split (with a comment about why). Additionally mark it const
and annotate the "cookie" member that is being memcmp()ed against as
nonstring too.

Signed-off-by: Kees Cook <kees@kernel.org>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20250416221028.work.967-kees@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/emulex/benet/be_cmds.c
drivers/net/ethernet/emulex/benet/be_cmds.h

index 51b8377edd1d04250d879fe78d9afd2774acc6f4..adb441b36581a8453566e5647407068f69ce6734 100644 (file)
@@ -2615,7 +2615,11 @@ err:
        return status;
 }
 
-static char flash_cookie[2][16] = {"*** SE FLAS", "H DIRECTORY *** "};
+/*
+ * Since the cookie is text, add a parsing-skipped space to keep it from
+ * ever being matched on storage holding this source file.
+ */
+static const char flash_cookie[32] __nonstring = "*** SE FLAS" "H DIRECTORY *** ";
 
 static bool phy_flashing_required(struct be_adapter *adapter)
 {
index d70818f06be730c146d09fb3f28b11cdfa030227..5e2d3ddb5d438cfd9a7592a15c4c5a4109cffd66 100644 (file)
@@ -1415,7 +1415,7 @@ struct flash_section_entry {
 } __packed;
 
 struct flash_section_info {
-       u8 cookie[32];
+       u8 cookie[32] __nonstring;
        struct flash_section_hdr fsec_hdr;
        struct flash_section_entry fsec_entry[32];
 } __packed;