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

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