From: Steven Rostedt <rostedt@goodmis.org>
To: Petr Mladek <pmladek@suse.com>
Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>,
Vincent Whitchurch <vincent.whitchurch@axis.com>,
"sergey.senozhatsky@gmail.com" <sergey.senozhatsky@gmail.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] printk: Do not lose last line in kmsg dump
Date: Wed, 10 Jul 2019 08:47:31 -0400 [thread overview]
Message-ID: <20190710084731.2e3caa29@gandalf.local.home> (raw)
In-Reply-To: <20190710121049.rwhk7fknfzn3cfkz@pathway.suse.cz>
On Wed, 10 Jul 2019 14:10:49 +0200
Petr Mladek <pmladek@suse.com> wrote:
> On Wed 2019-07-10 17:19:22, Sergey Senozhatsky wrote:
> > > arch/powerpc/xmon/xmon.c
> > > 2836: while (kmsg_dump_get_line_nolock(&dumper, false, buf, sizeof(buf), &len)) {
> > > 2837- buf[len] = '\0';
> > >
> > > arch/um/kernel/kmsg_dump.c
> > > 29: while (kmsg_dump_get_line(dumper, true, line, sizeof(line), &len)) {
> > > 30- line[len] = '\0';
> > >
> > > I guess we should fix these first and leave this patch as is?
> >
> > We certainly need to fix something here, and I'd say that we
> > better handle it on the msg_print_text() side. There might be
> > more kmsg_dump_get_line() users doing `buf[len] = '\0'' in the
> > future.
So basically the issues is that callers may expect that the return size
is still in the buffer and they append a '\0' to it. This is the same
issue with strncpy() and will cause the same kinds of bugs.
>
> I though more about it and I agree with Sergey. One unused byte does
> not look worth the risk. Especially when we are talking about strings
> where many people expect the trailing '\0'.
>
> I would even modify msg_print_text() to always add the trailing '\0'.
> All bytes will be used and it will be more error-proof API. I guess
> that this is what Sergey meant by better handling it on the
> msg_print_text() side.
I agree too. We either keep it as is and let the callers be able to add
the '\0', or we preferably add the '\0' ourselves and return the length
written (not counting the terminating '\0'), and we can then remove the
callers adding the '\0' later.
That's the safest approach.
-- Steve
next prev parent reply other threads:[~2019-07-10 12:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-09 8:10 Vincent Whitchurch
2019-07-09 10:12 ` Sergey Senozhatsky
2019-07-09 14:29 ` Petr Mladek
2019-07-09 15:20 ` Steven Rostedt
2019-07-10 8:04 ` Vincent Whitchurch
2019-07-10 8:19 ` Sergey Senozhatsky
2019-07-10 12:10 ` Petr Mladek
2019-07-10 12:47 ` Steven Rostedt [this message]
2019-07-10 8:39 ` Sergey Senozhatsky
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=20190710084731.2e3caa29@gandalf.local.home \
--to=rostedt@goodmis.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pmladek@suse.com \
--cc=sergey.senozhatsky.work@gmail.com \
--cc=sergey.senozhatsky@gmail.com \
--cc=vincent.whitchurch@axis.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
all inboxes | Powered by JetHome®