提交 333858b7 编写于 作者: D Dmitry V. Levin 提交者: Riku Voipio

linux-user: fix emulation of getdents

In case when TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64, the last
byte of the target dirent structure (aka d_type byte) was never copied
from the host dirent structure, thus breaking everything that relies
on valid d_type value, e.g. glob(3).
Reviewed-by: NPeter Maydell <peter.maydell@linaro.org>
Signed-off-by: NDmitry V. Levin <ldv@altlinux.org>
Signed-off-by: NRiku Voipio <riku.voipio@linaro.org>
上级 42644cee
...@@ -7025,15 +7025,14 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, ...@@ -7025,15 +7025,14 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
tde = target_dirp; tde = target_dirp;
while (len > 0) { while (len > 0) {
reclen = de->d_reclen; reclen = de->d_reclen;
treclen = reclen - (2 * (sizeof(long) - sizeof(abi_long))); tnamelen = reclen - offsetof(struct linux_dirent, d_name);
assert(tnamelen >= 0);
treclen = tnamelen + offsetof(struct target_dirent, d_name);
assert(count1 + treclen <= count);
tde->d_reclen = tswap16(treclen); tde->d_reclen = tswap16(treclen);
tde->d_ino = tswapal(de->d_ino); tde->d_ino = tswapal(de->d_ino);
tde->d_off = tswapal(de->d_off); tde->d_off = tswapal(de->d_off);
tnamelen = treclen - (2 * sizeof(abi_long) + 2); memcpy(tde->d_name, de->d_name, tnamelen);
if (tnamelen > 256)
tnamelen = 256;
/* XXX: may not be correct */
pstrcpy(tde->d_name, tnamelen, de->d_name);
de = (struct linux_dirent *)((char *)de + reclen); de = (struct linux_dirent *)((char *)de + reclen);
len -= reclen; len -= reclen;
tde = (struct target_dirent *)((char *)tde + treclen); tde = (struct target_dirent *)((char *)tde + treclen);
......
...@@ -258,7 +258,7 @@ struct target_dirent { ...@@ -258,7 +258,7 @@ struct target_dirent {
abi_long d_ino; abi_long d_ino;
abi_long d_off; abi_long d_off;
unsigned short d_reclen; unsigned short d_reclen;
char d_name[256]; /* We must not include limits.h! */ char d_name[];
}; };
struct target_dirent64 { struct target_dirent64 {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册