aboutsummaryrefslogtreecommitdiff
path: root/scsi
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2018-04-19 13:11:09 +0100
committerPeter Maydell <peter.maydell@linaro.org>2018-04-19 13:11:09 +0100
commitbdea7dffd0afb0b4b18ad1b1ec8055771ccf93e1 (patch)
tree238622beef6ad3c436c98da3714fce9f50ecbf35 /scsi
parent1b2503fcf7b5932c5a3779ca2ceb92bd403c4ee7 (diff)
linux-user: Fix getdents emulation for 64 bit guest on 32 bit hostdirent
Currently we mishandle emulation of the getdents syscall for the case of a 64 bit guest on a 32 bit host -- it defaults into the 'host and guest same size' codepath and generates incorrect structures in the guest buffer. We can't easily handle the 64-on-32 case using the host getdents syscall, because the guest struct dirent is bigger than the host struct dirent, and we might find the host syscall has handed us back more records than we can fit in the guest buffer after conversion. Instead, always emulate 64-on-32 getdents with the host getdents64. This avoids the buffer-overrun problem because a dirent64 struct is always the same size on any host and always larger than any architecture's dirent struct. Reported-by: Henry Wertz <hwertz10@gmail.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'scsi')
0 files changed, 0 insertions, 0 deletions