mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Markus Wichmann <nullplan@gmx.net>
To: John Scott <jscott@posteo.net>
Cc: musl@lists.openwall.com
Subject: Re: [musl] fputs/fputc doesn't set errno on failure
Date: Thu, 8 Oct 2020 18:23:34 +0200	[thread overview]
Message-ID: <20201008162334.GC7997@voyager> (raw)
In-Reply-To: <20475045.GjpEljjT90@t450>

On Thu, Oct 08, 2020 at 10:55:47AM -0400, John Scott wrote:
> Hi,
>
> I'm not subscribed, please keep me CC'd.
>

Here's hoping I chose the correct option this time. I went with "group
reply" but directed the message to you, which should CC the list.

> In this corner case, errno is unset despite fputs giving an error. I'm on Debian testing using musl-gcc 1.2.1.
>
> #define _POSIX_C_SOURCE 200809L
> #include <assert.h>
> #include <errno.h>
> #include <stdio.h>
> int main(void) {
> 	FILE *f = fopen("/", "r");
> 	if(f == NULL) {
> 		perror("fopen()");
> 	}
> 	if(fputs("Hello world\n", f) == EOF) {
> 		assert(errno);
> 		perror("fputs()");
> 	}
> }
>
> With glibc this prints EBADF for fputs.
>

Interesting. The error occurs because f is only open for reading, so
__towrite() delivers an error without setting errno. Though my POSIX
manpage does not say which error to return for this. EBADF speaks about
the FD underlying the stream, and in this case that one happens to be
the case, but the error occurs solely because F_NOWR is set in the file.
The FD does not come into play. On the other hand, using fdopen() such
that the mode given to open() and the string given to fdopen() are
discordant is undefined behavior. So we might as well assume that F_NOWR
means O_RDONLY. Besides, no other documented error on that page really
fits this case.

I suggest adding error codes to the error paths in __towrite() and
__toread() (which has the same problem).

> The wiki page about writing tests [1], which I thought this would be a good candidate for, has the 404 link http://nsz.repo.hu/git/?p=libc-test

It would appear Szabolcs' repo is broken. I cannot access .../git/, but
accessing .../ yields a landing page that references the non-working
pages given here. I managed to find a mirror here:

https://repo.or.cz/libc-test.git

But that one also reference Szabolcs' repo as the original.

Ciao,
Markus

  parent reply	other threads:[~2020-10-08 16:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-08 14:55 John Scott
2020-10-08 16:21 ` Rich Felker
2020-10-08 16:23 ` Markus Wichmann [this message]
2020-10-08 19:55   ` Szabolcs Nagy

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=20201008162334.GC7997@voyager \
    --to=nullplan@gmx.net \
    --cc=jscott@posteo.net \
    --cc=musl@lists.openwall.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.
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).