mailing list of musl libc
 help / color / mirror / code / Atom feed
* [musl] bug: isatty() can return wrong value
@ 2024-08-20  9:50 Gil Pedersen
  2024-08-20 11:11 ` Rich Felker
  0 siblings, 1 reply; 3+ messages in thread
From: Gil Pedersen @ 2024-08-20  9:50 UTC (permalink / raw)
  To: musl

[-- Attachment #1: Type: text/plain, Size: 798 bytes --]

Hi,

I found a musl related issue in systemd, where it relies on glibc specific behaviour for isatty(), which happens to work out. When using musl, it will fail in another way, causing some essential retry logic to not run.

The error occurs when the isatty() implementation calls an ioctl() that sets the EIO error. glibc will directly forward any errors, while musl remaps it to an ENOTTY error.

Neither behaviour are POSIX compliant. glibc sets an undocumented errno, while musl sets ENOTTY for something that is definitely a TTY.

It seems that the correct fix is to remap the EIO to a success (1).

See https://github.com/systemd/systemd/pull/34039 and https://sourceware.org/bugzilla/show_bug.cgi?id=32103.

I'm not on the mailing list, so please CC any replies.

Regards,
Gil

[-- Attachment #2: Type: text/html, Size: 1305 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [musl] bug: isatty() can return wrong value
  2024-08-20  9:50 [musl] bug: isatty() can return wrong value Gil Pedersen
@ 2024-08-20 11:11 ` Rich Felker
  2024-08-20 15:18   ` Thorsten Glaser
  0 siblings, 1 reply; 3+ messages in thread
From: Rich Felker @ 2024-08-20 11:11 UTC (permalink / raw)
  To: Gil Pedersen; +Cc: musl

On Tue, Aug 20, 2024 at 11:50:02AM +0200, Gil Pedersen wrote:
> Hi,
> 
> I found a musl related issue in systemd, where it relies on glibc specific behaviour for isatty(), which happens to work out. When using musl, it will fail in another way, causing some essential retry logic to not run.
> 
> The error occurs when the isatty() implementation calls an ioctl() that sets the EIO error. glibc will directly forward any errors, while musl remaps it to an ENOTTY error.
> 
> Neither behaviour are POSIX compliant. glibc sets an undocumented errno, while musl sets ENOTTY for something that is definitely a TTY.
> 
> It seems that the correct fix is to remap the EIO to a success (1).
> 
> See https://github.com/systemd/systemd/pull/34039 and https://sourceware.org/bugzilla/show_bug.cgi?id=32103.
> 
> I'm not on the mailing list, so please CC any replies.

What guarantee do we have that nothing other than a tty in this state
will return EIO for the ioctl? The implementation on the kernel side
suggests that, if they tried to put any other device in such a state
by replacing its ioctl function the same way, it would also give EIO
for these ioctls.

The right way to do this on the kernel side would have been to only
return EIO for supported tty ioctls when in this state, and otherwise
return ENOTTY (inappropriate ioctl for device type).

I'm hopeful there's some good fix here where we don't have to have
either of these bad behaviors, but returning true for isatty() of a
device that is absolutely not a tty is a much worse behavior than
returning false for a device that is/was a tty when it was opened but
that's been replaced by the kernel with a defunct device.

Rich

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [musl] bug: isatty() can return wrong value
  2024-08-20 11:11 ` Rich Felker
@ 2024-08-20 15:18   ` Thorsten Glaser
  0 siblings, 0 replies; 3+ messages in thread
From: Thorsten Glaser @ 2024-08-20 15:18 UTC (permalink / raw)
  To: musl; +Cc: Gil Pedersen

Rich Felker dixit:

>returning true for isatty() of a
>device that is absolutely not a tty is a much worse behavior than
>returning false for a device that is/was a tty when it was opened but
>that's been replaced by the kernel with a defunct device.

As isatty consumer (mksh) I agree.

bye,
//mirabilos
-- 
Gestern Nacht ist mein IRC-Netzwerk explodiert. Ich hatte nicht damit
gerechnet, darum bin ich blutverschmiert… wer konnte ahnen, daß SIE so
reagier’n… gestern Nacht ist mein IRC-Netzwerk explodiert~~~
	(as of 2021-06-15 The MirOS Project temporarily reconvenes on OFTC)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-08-20 15:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-20  9:50 [musl] bug: isatty() can return wrong value Gil Pedersen
2024-08-20 11:11 ` Rich Felker
2024-08-20 15:18   ` Thorsten Glaser

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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).