* [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized
@ 2019-06-11 18:20 Vladislav Ivanishin
  2019-06-20  8:59 ` Alexey Gladkov
  2019-07-11 18:03 ` Vladislav Ivanishin
  0 siblings, 2 replies; 4+ messages in thread
From: Vladislav Ivanishin @ 2019-06-11 18:20 UTC (permalink / raw)
  To: kbd
Hi,
I've found this bug using a static analyzer (slightly improved GCC).
Consider variable `pid` in function main from src/openvt.c:
src/openvt.c:166:       int opt, pid, i;
src/openvt.c:303:       if (direct_exec || ((pid = fork()) == 0)) {
src/openvt.c:386:       if (pid < 0)
src/openvt.c:393:               waitpid(pid, &retval, 0);
If direct_exec is TRUE, then pid doesn't get initialized, but it is used
outside the conditional regardless of that.
-- 
Vlad
^ permalink raw reply	[flat|nested] 4+ messages in thread
* Re: [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized
  2019-06-11 18:20 [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized Vladislav Ivanishin
@ 2019-06-20  8:59 ` Alexey Gladkov
  2019-07-11 18:03 ` Vladislav Ivanishin
  1 sibling, 0 replies; 4+ messages in thread
From: Alexey Gladkov @ 2019-06-20  8:59 UTC (permalink / raw)
  To: Linux console tools development discussion
On Tue, Jun 11, 2019 at 09:20:04PM +0300, Vladislav Ivanishin wrote:
> Hi,
> 
> I've found this bug using a static analyzer (slightly improved GCC).
> 
> Consider variable `pid` in function main from src/openvt.c:
> 
> src/openvt.c:166:       int opt, pid, i;
> src/openvt.c:303:       if (direct_exec || ((pid = fork()) == 0)) {
> src/openvt.c:386:       if (pid < 0)
> src/openvt.c:393:               waitpid(pid, &retval, 0);
> 
> If direct_exec is TRUE, then pid doesn't get initialized, but it is used
> outside the conditional regardless of that.
This is not a bug. If direct_exec is TRUE we will never be on line 386.
To make linter happy, I’ll make pid = 0.
Thanks!
-- 
Rgrds, legion
^ permalink raw reply	[flat|nested] 4+ messages in thread
* Re: [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized
  2019-06-11 18:20 [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized Vladislav Ivanishin
  2019-06-20  8:59 ` Alexey Gladkov
@ 2019-07-11 18:03 ` Vladislav Ivanishin
  2019-07-11 19:22   ` Alexey Gladkov
  1 sibling, 1 reply; 4+ messages in thread
From: Vladislav Ivanishin @ 2019-07-11 18:03 UTC (permalink / raw)
  To: Alexey Gladkov; +Cc: kbd
Sorry, I didn't get your reply (not sure what the actual reason is, but
it seems as if you've only replied to the list, and I am not subscribed)
so I've just read it today in the archives.
> On Tue, Jun 11, 2019 at 09:20:04PM +0300, Vladislav Ivanishin wrote:
> > Hi,
> > 
> > I've found this bug using a static analyzer (slightly improved GCC).
> > 
> > Consider variable `pid` in function main from src/openvt.c:
> > 
> > src/openvt.c:166:       int opt, pid, i;
> > src/openvt.c:303:       if (direct_exec || ((pid = fork()) == 0)) {
> > src/openvt.c:386:       if (pid < 0)
> > src/openvt.c:393:               waitpid(pid, &retval, 0);
> > 
> > If direct_exec is TRUE, then pid doesn't get initialized, but it is used
> > outside the conditional regardless of that.
> 
> This is not a bug. If direct_exec is TRUE we will never be on line 386.
Oh, I didn't realize that; my bad, thanks for pointing this out.
The real issue preventing the analyzer (i.e. the compiler) from seeing
this as well is kbd_error lacking the noreturn attribute.
> To make linter happy, I’ll make pid = 0.
So a more proper fix would be adding the attribute in the header file.
It would also make other compiler analyses/optimizations more effective.
-- 
Vlad
> Thanks!
> -- 
> Rgrds, legion
^ permalink raw reply	[flat|nested] 4+ messages in thread
* Re: [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized
  2019-07-11 18:03 ` Vladislav Ivanishin
@ 2019-07-11 19:22   ` Alexey Gladkov
  0 siblings, 0 replies; 4+ messages in thread
From: Alexey Gladkov @ 2019-07-11 19:22 UTC (permalink / raw)
  To: Vladislav Ivanishin; +Cc: kbd
On Thu, Jul 11, 2019 at 09:03:49PM +0300, Vladislav Ivanishin wrote:
> Sorry, I didn't get your reply (not sure what the actual reason is, but
> it seems as if you've only replied to the list, and I am not subscribed)
> so I've just read it today in the archives.
> 
> > On Tue, Jun 11, 2019 at 09:20:04PM +0300, Vladislav Ivanishin wrote:
> > > Hi,
> > > 
> > > I've found this bug using a static analyzer (slightly improved GCC).
> > > 
> > > Consider variable `pid` in function main from src/openvt.c:
> > > 
> > > src/openvt.c:166:       int opt, pid, i;
> > > src/openvt.c:303:       if (direct_exec || ((pid = fork()) == 0)) {
> > > src/openvt.c:386:       if (pid < 0)
> > > src/openvt.c:393:               waitpid(pid, &retval, 0);
> > > 
> > > If direct_exec is TRUE, then pid doesn't get initialized, but it is used
> > > outside the conditional regardless of that.
> > 
> > This is not a bug. If direct_exec is TRUE we will never be on line 386.
> 
> Oh, I didn't realize that; my bad, thanks for pointing this out.
> 
> The real issue preventing the analyzer (i.e. the compiler) from seeing
> this as well is kbd_error lacking the noreturn attribute.
> 
> > To make linter happy, I’ll make pid = 0.
> 
> So a more proper fix would be adding the attribute in the header file.
> It would also make other compiler analyses/optimizations more effective.
I already did it recently:
https://github.com/legionus/kbd/commit/93689a202aeae8707c59c67aa1af5a36c27fba6c
-- 
Rgrds, legion
^ permalink raw reply	[flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-07-11 19:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-11 18:20 [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized Vladislav Ivanishin
2019-06-20  8:59 ` Alexey Gladkov
2019-07-11 18:03 ` Vladislav Ivanishin
2019-07-11 19:22   ` Alexey Gladkov
Linux console tools development discussion
This inbox may be cloned and mirrored by anyone:
	git clone --mirror http://lore.altlinux.org/kbd/0 kbd/git/0.git
	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 kbd kbd/ http://lore.altlinux.org/kbd \
		kbd@lists.altlinux.org kbd@lists.altlinux.ru kbd@lists.altlinux.com
	public-inbox-index kbd
Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.kbd
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git