[LTP] [PATCH] tst_test: Propagate SIGINT to test process

Cyril Hrubis chrubis@suse.cz
Tue Aug 9 11:26:33 CEST 2016


Hi!
> > This still gives me a warning:
> >   tst_test.c: In function ???sigint_handler???:
> >   tst_test.c:732:3: warning: ignoring return value of ???write???, declared with attribute warn_unused_result [-Wunused-result]
> >    (void)write(2, SIGINT_MSG, sizeof(SIGINT_MSG) - 1);
> >    ^
> > We could use fprintf(stderr):
> >   fprintf(stderr, "%s\n", SIGINT_MSG);
> 
> fprintf() isn't guaranteed to work inside a signal handler,
> unlike write() [see the list of "async-signal-safe" functions
> in the signal(7) manpage]. I think the officially recommended
> way to shut up this warning is something like
> 
>     if (write(fd, msg, len) < len) {
>         /* It's OK to ignore the error because ... */
>     }
> 
> which is a bit longwinded but works.

More about this in:

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

In short somebody thought that suppressing the warning with (void) is a
bad idea for security. Which it indeed is for cases where somebody does
it for setuid() and friends. But it's more or less fine for cases like
this.

And at the bottom of the bug they decided that we need two
warn_unused_result, one where it's OK to suppress the warning and one
where it's not. But nobody implemented that so far.

I would be inclined to ingrore this warning in this case rather than
working around compiler bugs.

-- 
Cyril Hrubis
chrubis@suse.cz


More information about the ltp mailing list