linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
To: Kees Cook <keescook@chromium.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Ingo Molnar <mingo@kernel.org>, Willy Tarreau <w@1wt.eu>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Martin Sebor <msebor@gmail.com>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Josh Poimboeuf <jpoimboe@redhat.com>,
	Will Deacon <will.deacon@arm.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	David Rientjes <rientjes@google.com>,
	Arnd Bergmann <arnd@arndb.de>
Subject: Re: [PATCH v2 2/2] auxdisplay: panel: avoid gcc 8's Wstringop-truncation warning
Date: Wed, 1 Aug 2018 21:50:09 +0200	[thread overview]
Message-ID: <CANiq72=sKO_QxujKSY7ZJSaVfT0-4atk+4U8fJFsmLJLxrjhzQ@mail.gmail.com> (raw)
In-Reply-To: <CAGXu5jJUa36N+Q0K9dbc9xX_LoN=4AZ+CxrDiem==8LEXrdF=w@mail.gmail.com>

On Wed, Aug 1, 2018 at 8:47 PM, Kees Cook <keescook@chromium.org> wrote:
> On Wed, Aug 1, 2018 at 10:58 AM, Miguel Ojeda
> <miguel.ojeda.sandonis@gmail.com> wrote:
>> Let gcc know it is not meant to be NUL-terminated by annotating with
>> the new __nonstring variable attribute; and remove the comment since it
>> conveys the same information.
>>
>> Cc: Willy Tarreau <w@1wt.eu>
>> Cc: Geert Uytterhoeven <geert@linux-m68k.org>
>> Cc: Martin Sebor <msebor@gmail.com>
>> Signed-off-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
>> ---
>>  drivers/auxdisplay/panel.c | 7 +++----
>>  1 file changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/auxdisplay/panel.c b/drivers/auxdisplay/panel.c
>> index 3b25a643058c..21b9b2f2470a 100644
>> --- a/drivers/auxdisplay/panel.c
>> +++ b/drivers/auxdisplay/panel.c
>> @@ -155,10 +155,9 @@ struct logical_input {
>>                         int release_data;
>>                 } std;
>>                 struct {        /* valid when type == INPUT_TYPE_KBD */
>> -                       /* strings can be non null-terminated */
>> -                       char press_str[sizeof(void *) + sizeof(int)];
>> -                       char repeat_str[sizeof(void *) + sizeof(int)];
>> -                       char release_str[sizeof(void *) + sizeof(int)];
>> +                       char press_str[sizeof(void *) + sizeof(int)] __nonstring;
>> +                       char repeat_str[sizeof(void *) + sizeof(int)] __nonstring;
>> +                       char release_str[sizeof(void *) + sizeof(int)] __nonstring;
>>                 } kbd;
>>         } u;
>>  };
>
> If it's not a string, why not use "u8" instead of "char"? Does the
> warning persist?

Yes, it persists (on purpose). Originally it didn't, but see the discussion at:

  https://www.spinics.net/lists/kernel/msg2737596.html

And:

  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84725

Cheers,
Miguel

>
> -Kees
>
> --
> Kees Cook
> Pixel Security

      reply	other threads:[~2018-08-01 19:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-01 17:58 [PATCH v2 2/2] auxdisplay: panel: avoid gcc 8's Wstringop-truncation warning Miguel Ojeda
2018-08-01 18:47 ` Kees Cook
2018-08-01 19:50   ` Miguel Ojeda [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CANiq72=sKO_QxujKSY7ZJSaVfT0-4atk+4U8fJFsmLJLxrjhzQ@mail.gmail.com' \
    --to=miguel.ojeda.sandonis@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=arnd@arndb.de \
    --cc=geert@linux-m68k.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jpoimboe@redhat.com \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=msebor@gmail.com \
    --cc=rientjes@google.com \
    --cc=w@1wt.eu \
    --cc=will.deacon@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).