Message ID | 20210922045636.25206-3-imp@bsdimp.com |
---|---|
State | New |
Headers | show |
Series | bsd-user mmap fixes | expand |
On 9/21/21 9:56 PM, Warner Losh wrote: > From: Mikaël Urankar <mikael.urankar@gmail.com> > > Simmilar to the equivalent linux-user: commit fb7e378cf9c, which added > checking to pread's return value. > > Signed-off-by: Mikaël Urankar <mikael.urankar@gmail.com> > Signed-off-by: Warner Losh <imp@bsdimp.com> > --- > bsd-user/mmap.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> > - pread(fd, g2h_untagged(start), end - start, offset); > + if (pread(fd, g2h_untagged(start), end - start, offset) == -1) > + return -1; If it's not too annoying wrt rebasing other cleanups, please add the braces now. r~
On Fri, Sep 24, 2021 at 5:59 AM Richard Henderson < richard.henderson@linaro.org> wrote: > On 9/21/21 9:56 PM, Warner Losh wrote: > > From: Mikaël Urankar <mikael.urankar@gmail.com> > > > > Simmilar to the equivalent linux-user: commit fb7e378cf9c, which added > > checking to pread's return value. > > > > Signed-off-by: Mikaël Urankar <mikael.urankar@gmail.com> > > Signed-off-by: Warner Losh <imp@bsdimp.com> > > --- > > bsd-user/mmap.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > Reviewed-by: Richard Henderson <richard.henderson@linaro.org> > > > - pread(fd, g2h_untagged(start), end - start, offset); > > + if (pread(fd, g2h_untagged(start), end - start, offset) == -1) > > + return -1; > > If it's not too annoying wrt rebasing other cleanups, please add the > braces now. > You bet. > > r~ >
On 9/22/21 06:56, Warner Losh wrote: > From: Mikaël Urankar <mikael.urankar@gmail.com> > > Simmilar to the equivalent linux-user: commit fb7e378cf9c, which added > checking to pread's return value. > > Signed-off-by: Mikaël Urankar <mikael.urankar@gmail.com> > Signed-off-by: Warner Losh <imp@bsdimp.com> > --- > bsd-user/mmap.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/bsd-user/mmap.c b/bsd-user/mmap.c > index fc3c1480f5..90b6313161 100644 > --- a/bsd-user/mmap.c > +++ b/bsd-user/mmap.c > @@ -174,7 +174,8 @@ static int mmap_frag(abi_ulong real_start, > mprotect(host_start, qemu_host_page_size, prot1 | PROT_WRITE); > > /* read the corresponding file data */ > - pread(fd, g2h_untagged(start), end - start, offset); > + if (pread(fd, g2h_untagged(start), end - start, offset) == -1) > + return -1; Missing { } for QEMU style, otherwise: Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
diff --git a/bsd-user/mmap.c b/bsd-user/mmap.c index fc3c1480f5..90b6313161 100644 --- a/bsd-user/mmap.c +++ b/bsd-user/mmap.c @@ -174,7 +174,8 @@ static int mmap_frag(abi_ulong real_start, mprotect(host_start, qemu_host_page_size, prot1 | PROT_WRITE); /* read the corresponding file data */ - pread(fd, g2h_untagged(start), end - start, offset); + if (pread(fd, g2h_untagged(start), end - start, offset) == -1) + return -1; /* put final protection */ if (prot_new != (prot1 | PROT_WRITE)) @@ -593,7 +594,8 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, int prot, -1, 0); if (retaddr == -1) goto fail; - pread(fd, g2h_untagged(start), len, offset); + if (pread(fd, g2h_untagged(start), len, offset) == -1) + goto fail; if (!(prot & PROT_WRITE)) { ret = target_mprotect(start, len, prot); if (ret != 0) {