[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAK7LNARkUkdRsW0D5cc5cEtXFJfnKhiVuZvrD6T1Xg3sr9kv=A@mail.gmail.com>
Date: Wed, 20 May 2020 21:17:45 +0900
From: Masahiro Yamada <masahiroy@...nel.org>
To: Peter Zijlstra <peterz@...radead.org>
Cc: Linux Kbuild mailing list <linux-kbuild@...r.kernel.org>,
Jessica Yu <jeyu@...nel.org>,
Michal Marek <michal.lkml@...kovi.net>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 03/29] modpost: add read_text_file() and get_line() helpers
On Tue, May 19, 2020 at 7:21 PM Peter Zijlstra <peterz@...radead.org> wrote:
>
> On Sun, May 17, 2020 at 06:48:33PM +0900, Masahiro Yamada wrote:
>
> > +char *read_text_file(const char *filename)
> > +{
> > + struct stat st;
> > + int fd;
> > + char *buf;
> > +
> > + fd = open(filename, O_RDONLY);
> > + if (fd < 0)
> > + return NULL;
> > +
> > + if (fstat(fd, &st) < 0)
> > + return NULL;
> > +
> > + buf = NOFAIL(malloc(st.st_size + 1));
> > +
> > + if (read(fd, buf, st.st_size) != st.st_size) {
>
> Is this sensible coding ? I've always been taught read() can return
> early/short for a number of reasons and we must not assume this is an
> error.
>
> The 'normal' way to read a file is something like:
>
> for (;;) {
> ssize_t ret = read(fd, buf + size, st.st_size - size);
> if (ret < 0) {
> free(buf);
> buf = NULL;
> goto close;
> }
> if (!ret)
> break;
>
> size += ret;
> }
>
> > + free(buf);
> > + buf = NULL;
> > + goto close;
> > + }
> > + buf[st.st_size] = '\0';
> > +close:
> > + close(fd);
> > +
> > + return buf;
> > +}
In theory, I think yes.
But, is it necessary when we know
it is reading a regular file?
The specification [1] says this:
"The value returned may be less than nbyte if the number of bytes
left in the file is less than nbyte, if the read() request was
interrupted by a signal, or if the file is a pipe or FIFO or
special file and has fewer than nbyte bytes immediately available
for reading."
This case does not meet any of 'if ...' parts.
[1] https://pubs.opengroup.org/onlinepubs/000095399/functions/read.html
--
Best Regards
Masahiro Yamada
Powered by blists - more mailing lists