From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by sourceware.org (Postfix) with ESMTPS id C088C3858D35 for ; Tue, 6 Feb 2024 10:45:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C088C3858D35 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=kernel.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org C088C3858D35 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2604:1380:4641:c500::1 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1707216344; cv=none; b=RXRv9XV+YJ+IADsGlAU0Oa8rKrkqq3QxQdyNx79NqLPtacStT5hq+8UNc1PpyHdKbxl6ejucqAZqC/Hri0GJtRtdix5dS2ZlsNDiUGN6gdYw+zng3XSg5WS1NCYsg3oX+NfabdHAOExSN7ixyz83HyJ7S8JcJFItIIYzj82LPOc= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1707216344; c=relaxed/simple; bh=Tnn7j8TxBl785TAm7RPIj1rPqgvJ3pIU4JdrmjMlIHg=; h=DKIM-Signature:Date:From:To:Subject:Message-ID:MIME-Version; b=KAeBh8uAxY6rYGJgjH9zO01ZkJ1K0XjwNkaIEWyyegIcjZOx6WsmTbd8FlYtDidK++st8vC3yLJBLh88ci8vRQ03pWCanz6wL2Vy+JTi1VU0+yPsKB8pEUsydmcHX4QlOmYTEqAjSXRTqC8kcSl93+bNnmeU4FUSPIv5n43fq7Q= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 0F39D6135B for ; Tue, 6 Feb 2024 10:45:41 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3D213C433F1 for ; Tue, 6 Feb 2024 10:45:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1707216340; bh=Tnn7j8TxBl785TAm7RPIj1rPqgvJ3pIU4JdrmjMlIHg=; h=Date:From:To:Subject:References:In-Reply-To:From; b=nLH0nobqbMg95mrxmHeGxmRy9Gd8Zz7SwhYIVzYllZdAxH+wVn3xt06+lEbwPQ5ls EO60QnXzC9CGjlqkkKdknAtKW0jZEZeQx5c0x4u5In7JSKczb7w22JFnyEBHflhpH8 dveZeS7lwTwKpypFbW80pC4NVRogd7x3+eU1gM8/esV74pV0EP7QOKbJIJ4+HwkEyX vgAvkANJBsjkJ79C/kauRq7GEBUNPuW2/OFhJT/wke/LLluB/iQjSmERbScHO3rfs1 Sx9pa6VoJLOlyBn9ufSi/Vs9eVzz3kWeqY9s2cZlF+29mKLm1W5FUBH1QRMG68z7z3 6zdITCAEZpSAg== Date: Tue, 6 Feb 2024 11:45:38 +0100 From: Alejandro Colomar To: gcc-patches@gcc.gnu.org Subject: [PATCH v5 RESEND] C, ObjC: Add -Wunterminated-string-initialization Message-ID: <20240206104529.8347-1-alx@kernel.org> X-Mailer: git-send-email 2.43.0 References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="lf7tw6cwjgejg7tq" Content-Disposition: inline In-Reply-To: X-Spam-Status: No, score=-10.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --lf7tw6cwjgejg7tq Content-Type: text/plain; protected-headers=v1; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: [PATCH v5 RESEND] C, ObjC: Add -Wunterminated-string-initialization MIME-Version: 1.0 Warn about the following: char s[3] =3D "foo"; Initializing a char array with a string literal of the same length as the size of the array is usually a mistake. Rarely is the case where one wants to create a non-terminated character sequence from a string literal. In some cases, for writing faster code, one may want to use arrays instead of pointers, since that removes the need for storing an array of pointers apart from the strings themselves. char *log_levels[] =3D { "info", "warning", "err" }; vs. char log_levels[][7] =3D { "info", "warning", "err" }; This forces the programmer to specify a size, which might change if a new entry is later added. Having no way to enforce null termination is very dangerous, however, so it is useful to have a warning for this, so that the compiler can make sure that the programmer didn't make any mistakes. This warning catches the bug above, so that the programmer will be able to fix it and write: char log_levels[][8] =3D { "info", "warning", "err" }; This warning already existed as part of -Wc++-compat, but this patch allows enabling it separately. It is also included in -Wextra, since it may not always be desired (when unterminated character sequences are wanted), but it's likely to be desired in most cases. Since Wc++-compat now includes this warning, the test has to be modified to expect the text of the new warning too, in . Link: Link: Link: Acked-by: Doug McIlroy Cc: "G. Branden Robinson" Cc: Ralph Corderoy Cc: Dave Kemper Cc: Larry McVoy Cc: Andrew Pinski Cc: Jonathan Wakely Cc: Andrew Clayton Cc: Martin Uecker Cc: David Malcolm Signed-off-by: Alejandro Colomar --- v5: - Fix existing C++-compat tests. [reported by ] gcc/c-family/c.opt | 4 ++++ gcc/c/c-typeck.cc | 6 +++--- gcc/testsuite/gcc.dg/Wcxx-compat-14.c | 2 +- gcc/testsuite/gcc.dg/Wunterminated-string-initialization.c | 6 ++++++ 4 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/Wunterminated-string-initializatio= n.c diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt index 44b9c862c14..e8f6b836836 100644 --- a/gcc/c-family/c.opt +++ b/gcc/c-family/c.opt @@ -1407,6 +1407,10 @@ Wunsuffixed-float-constants C ObjC Var(warn_unsuffixed_float_constants) Warning Warn about unsuffixed float constants. =20 +Wunterminated-string-initialization +C ObjC Var(warn_unterminated_string_initialization) Warning LangEnabledBy(= C ObjC,Wextra || Wc++-compat) +Warn about character arrays initialized as unterminated character sequence= s by a string literal. + Wunused C ObjC C++ ObjC++ LangEnabledBy(C ObjC C++ ObjC++,Wall) ; documented in common.opt diff --git a/gcc/c/c-typeck.cc b/gcc/c/c-typeck.cc index e55e887da14..7df9de819ed 100644 --- a/gcc/c/c-typeck.cc +++ b/gcc/c/c-typeck.cc @@ -8399,11 +8399,11 @@ digest_init (location_t init_loc, tree type, tree i= nit, tree origtype, pedwarn_init (init_loc, 0, ("initializer-string for array of %qT " "is too long"), typ1); - else if (warn_cxx_compat + else if (warn_unterminated_string_initialization && compare_tree_int (TYPE_SIZE_UNIT (type), len) < 0) - warning_at (init_loc, OPT_Wc___compat, + warning_at (init_loc, OPT_Wunterminated_string_initialization, ("initializer-string for array of %qT " - "is too long for C++"), typ1); + "is too long"), typ1); if (compare_tree_int (TYPE_SIZE_UNIT (type), len) < 0) { unsigned HOST_WIDE_INT size diff --git a/gcc/testsuite/gcc.dg/Wcxx-compat-14.c b/gcc/testsuite/gcc.dg/W= cxx-compat-14.c index 23783711be6..6df0ee197cc 100644 --- a/gcc/testsuite/gcc.dg/Wcxx-compat-14.c +++ b/gcc/testsuite/gcc.dg/Wcxx-compat-14.c @@ -2,5 +2,5 @@ /* { dg-options "-Wc++-compat" } */ =20 char a1[] =3D "a"; -char a2[1] =3D "a"; /* { dg-warning "C\[+\]\[+\]" } */ +char a2[1] =3D "a"; /* { dg-warning "initializer-string for array of 'char= ' is too long" } */ char a3[2] =3D "a"; diff --git a/gcc/testsuite/gcc.dg/Wunterminated-string-initialization.c b/g= cc/testsuite/gcc.dg/Wunterminated-string-initialization.c new file mode 100644 index 00000000000..13d5dbc6640 --- /dev/null +++ b/gcc/testsuite/gcc.dg/Wunterminated-string-initialization.c @@ -0,0 +1,6 @@ +/* { dg-do compile } */ +/* { dg-options "-Wunterminated-string-initialization" } */ + +char a1[] =3D "a"; +char a2[1] =3D "a"; /* { dg-warning "initializer-string for array of 'char= ' is too long" } */ +char a3[2] =3D "a"; --=20 2.40.1 --lf7tw6cwjgejg7tq Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEE6jqH8KTroDDkXfJAnowa+77/2zIFAmXCDdIACgkQnowa+77/ 2zJM2w//b+MUYV2TThN2SRgM1/KzjRSWwwktrBHQET/PQQ0hUKqKaL2XtcPdzp17 YEG4k1EmvH/KWt7uq8KRfTZfauzHPnfNs3M4JqDMK5NI1fBPlbDPkIILrdF4ASWZ yjvXjFOkB84wDqXcAkBq4sDTDByt3TPHHZ3oOe6vxfvqgfDUaZ8TDiparPAEWAHh sUzmc0bjI8uT20TOSgU8q0J5wT01X3AdMtmcjdmHUmlfIi/sAp/n2X74m94vpsuA oRxVQ1UAOI48sxq3dOFE3ItsuwGBg/S46CZMvbQsrulU7o2FZqTQQyKgu5dZP8g1 vPuWJrlAPOrHBFMMXJt4mPXjDOsL4Q4qddDzsbgoeZmBdB/o89lFAdDmSUvzeeat hl1DGstOSX5gkh9uuzJadMWOHqFH4Ftvi/UIIMs285jtNk/F6XyTiczzPZaIxmRy L3w9K9MaQyzw02qJ9OBFN8rg9PYUOi8rOJ1uD6WZ1QVc0S/6RMWZB5v5xK61Ob5V WMsdfWBxWJ6TEwYhTu4FUueV2NYO+c48B4f5G4NDsYU1TtlL12VlLK/Jpf4Hk5xI 7FxBkk5aHB55ltBVjB1djwtzAITw7+b0IgumzzacYTknYDl2lC3uHGPxVqyKDQho AGP9AtOLPDyaAi9YHmzAOW25XwLPYAUOP0MkSExISDwR63gI9vI= =mKaa -----END PGP SIGNATURE----- --lf7tw6cwjgejg7tq--