mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: musl@lists.openwall.com
Subject: Re: fgets behaviour after eof
Date: Wed, 27 Aug 2014 12:52:45 -0400	[thread overview]
Message-ID: <20140827165245.GQ12888@brightrain.aerifal.cx> (raw)
In-Reply-To: <20140827111620.GY22308@port70.net>

On Wed, Aug 27, 2014 at 01:16:20PM +0200, Szabolcs Nagy wrote:
> the C standard requires that
> 
> "If end-of-file is encountered and no characters have been read into the
> array, the contents of the array remain unchanged and a null pointer is
> returned. If a read error occurs during the operation, the array contents
> are indeterminate and a null pointer is returned."
> 
> but musl's fgets always terminates the buffer with \0 even after EOF,
> this is easy to fix:
> 
> -       *p = 0;
> +       if (s) *p = 0;

This is wrong and should be fixed, yes.

> However the behaviour of fgets(s, 1, f) is unclear if feof(f) is true,
> in this case nothing is read so fgets cannot "encounter" end-of-file,
> so it may set s[0]=0 and return s or it could check feof and return 0.
> (glibc does not check feof)

This is a known WONTFIX bug in glibc from the Drepper era. Remember,
all stdio read operations are defined in terms of fgetc, for which it
is specified:

"Upon successful completion, fgetc() shall return the next byte from
the input stream pointed to by stream. If the end-of-file indicator
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
for the stream is set, or if the stream is at end-of-file, the
^^^^^^^^^^^^^^^^^^^^^
end-of-file indicator for the stream shall be set and fgetc() shall
return EOF."

Thus, fgets encounters EOF from fgetc.

Rich


  reply	other threads:[~2014-08-27 16:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-27 11:16 Szabolcs Nagy
2014-08-27 16:52 ` Rich Felker [this message]
2014-08-27 17:14 ` Rich Felker

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=20140827165245.GQ12888@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --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).