mirror of https://github.com/xemu-project/xemu.git
linux-user: Rewrite do_getdents, do_getdents64
Always allocate host storage; this ensures that the struct is sufficiently aligned for the host. Merge the three host implementations of getdents via a few ifdefs. Utilize the same method for do_getdents64. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/704 Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20211114103539.298686-5-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
1962cb0029
commit
aee14c77f4
|
@ -8140,172 +8140,155 @@ static int host_to_target_cpu_mask(const unsigned long *host_mask,
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef TARGET_NR_getdents
|
#ifdef TARGET_NR_getdents
|
||||||
static int do_getdents(abi_long arg1, abi_long arg2, abi_long arg3)
|
static int do_getdents(abi_long dirfd, abi_long arg2, abi_long count)
|
||||||
{
|
{
|
||||||
int ret;
|
g_autofree void *hdirp = NULL;
|
||||||
|
void *tdirp;
|
||||||
|
int hlen, hoff, toff;
|
||||||
|
int hreclen, treclen;
|
||||||
|
off64_t prev_diroff = 0;
|
||||||
|
|
||||||
#ifdef EMULATE_GETDENTS_WITH_GETDENTS
|
hdirp = g_try_malloc(count);
|
||||||
# if TARGET_ABI_BITS == 32 && HOST_LONG_BITS == 64
|
if (!hdirp) {
|
||||||
struct target_dirent *target_dirp;
|
|
||||||
struct linux_dirent *dirp;
|
|
||||||
abi_long count = arg3;
|
|
||||||
|
|
||||||
dirp = g_try_malloc(count);
|
|
||||||
if (!dirp) {
|
|
||||||
return -TARGET_ENOMEM;
|
return -TARGET_ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = get_errno(sys_getdents(arg1, dirp, count));
|
#ifdef EMULATE_GETDENTS_WITH_GETDENTS
|
||||||
if (!is_error(ret)) {
|
hlen = sys_getdents(dirfd, hdirp, count);
|
||||||
struct linux_dirent *de;
|
#else
|
||||||
struct target_dirent *tde;
|
hlen = sys_getdents64(dirfd, hdirp, count);
|
||||||
int len = ret;
|
#endif
|
||||||
int reclen, treclen;
|
|
||||||
int count1, tnamelen;
|
|
||||||
|
|
||||||
count1 = 0;
|
hlen = get_errno(hlen);
|
||||||
de = dirp;
|
if (is_error(hlen)) {
|
||||||
target_dirp = lock_user(VERIFY_WRITE, arg2, count, 0);
|
return hlen;
|
||||||
if (!target_dirp) {
|
|
||||||
return -TARGET_EFAULT;
|
|
||||||
}
|
|
||||||
tde = target_dirp;
|
|
||||||
while (len > 0) {
|
|
||||||
reclen = de->d_reclen;
|
|
||||||
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_ino = tswapal(de->d_ino);
|
|
||||||
tde->d_off = tswapal(de->d_off);
|
|
||||||
memcpy(tde->d_name, de->d_name, tnamelen);
|
|
||||||
de = (struct linux_dirent *)((char *)de + reclen);
|
|
||||||
len -= reclen;
|
|
||||||
tde = (struct target_dirent *)((char *)tde + treclen);
|
|
||||||
count1 += treclen;
|
|
||||||
}
|
|
||||||
ret = count1;
|
|
||||||
unlock_user(target_dirp, arg2, ret);
|
|
||||||
}
|
}
|
||||||
g_free(dirp);
|
|
||||||
# else
|
|
||||||
struct linux_dirent *dirp;
|
|
||||||
abi_long count = arg3;
|
|
||||||
|
|
||||||
dirp = lock_user(VERIFY_WRITE, arg2, count, 0);
|
tdirp = lock_user(VERIFY_WRITE, arg2, count, 0);
|
||||||
if (!dirp) {
|
if (!tdirp) {
|
||||||
return -TARGET_EFAULT;
|
return -TARGET_EFAULT;
|
||||||
}
|
}
|
||||||
ret = get_errno(sys_getdents(arg1, dirp, count));
|
|
||||||
if (!is_error(ret)) {
|
for (hoff = toff = 0; hoff < hlen; hoff += hreclen, toff += treclen) {
|
||||||
struct linux_dirent *de;
|
#ifdef EMULATE_GETDENTS_WITH_GETDENTS
|
||||||
int len = ret;
|
struct linux_dirent *hde = hdirp + hoff;
|
||||||
int reclen;
|
#else
|
||||||
de = dirp;
|
struct linux_dirent64 *hde = hdirp + hoff;
|
||||||
while (len > 0) {
|
#endif
|
||||||
reclen = de->d_reclen;
|
struct target_dirent *tde = tdirp + toff;
|
||||||
if (reclen > len) {
|
int namelen;
|
||||||
|
uint8_t type;
|
||||||
|
|
||||||
|
namelen = strlen(hde->d_name);
|
||||||
|
hreclen = hde->d_reclen;
|
||||||
|
treclen = offsetof(struct target_dirent, d_name) + namelen + 2;
|
||||||
|
treclen = QEMU_ALIGN_UP(treclen, __alignof(struct target_dirent));
|
||||||
|
|
||||||
|
if (toff + treclen > count) {
|
||||||
|
/*
|
||||||
|
* If the host struct is smaller than the target struct, or
|
||||||
|
* requires less alignment and thus packs into less space,
|
||||||
|
* then the host can return more entries than we can pass
|
||||||
|
* on to the guest.
|
||||||
|
*/
|
||||||
|
if (toff == 0) {
|
||||||
|
toff = -TARGET_EINVAL; /* result buffer is too small */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
de->d_reclen = tswap16(reclen);
|
|
||||||
tswapls(&de->d_ino);
|
|
||||||
tswapls(&de->d_off);
|
|
||||||
de = (struct linux_dirent *)((char *)de + reclen);
|
|
||||||
len -= reclen;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
unlock_user(dirp, arg2, ret);
|
|
||||||
# endif
|
|
||||||
#else
|
|
||||||
/* Implement getdents in terms of getdents64 */
|
|
||||||
struct linux_dirent64 *dirp;
|
|
||||||
abi_long count = arg3;
|
|
||||||
|
|
||||||
dirp = lock_user(VERIFY_WRITE, arg2, count, 0);
|
|
||||||
if (!dirp) {
|
|
||||||
return -TARGET_EFAULT;
|
|
||||||
}
|
|
||||||
ret = get_errno(sys_getdents64(arg1, dirp, count));
|
|
||||||
if (!is_error(ret)) {
|
|
||||||
/*
|
|
||||||
* Convert the dirent64 structs to target dirent. We do this
|
|
||||||
* in-place, since we can guarantee that a target_dirent is no
|
|
||||||
* larger than a dirent64; however this means we have to be
|
|
||||||
* careful to read everything before writing in the new format.
|
|
||||||
*/
|
|
||||||
struct linux_dirent64 *de;
|
|
||||||
struct target_dirent *tde;
|
|
||||||
int len = ret;
|
|
||||||
int tlen = 0;
|
|
||||||
|
|
||||||
de = dirp;
|
|
||||||
tde = (struct target_dirent *)dirp;
|
|
||||||
while (len > 0) {
|
|
||||||
int namelen, treclen;
|
|
||||||
int reclen = de->d_reclen;
|
|
||||||
uint64_t ino = de->d_ino;
|
|
||||||
int64_t off = de->d_off;
|
|
||||||
uint8_t type = de->d_type;
|
|
||||||
|
|
||||||
namelen = strlen(de->d_name);
|
|
||||||
treclen = offsetof(struct target_dirent, d_name) + namelen + 2;
|
|
||||||
treclen = QEMU_ALIGN_UP(treclen, sizeof(abi_long));
|
|
||||||
|
|
||||||
memmove(tde->d_name, de->d_name, namelen + 1);
|
|
||||||
tde->d_ino = tswapal(ino);
|
|
||||||
tde->d_off = tswapal(off);
|
|
||||||
tde->d_reclen = tswap16(treclen);
|
|
||||||
/*
|
/*
|
||||||
* The target_dirent type is in what was formerly a padding
|
* Return what we have, resetting the file pointer to the
|
||||||
* byte at the end of the structure:
|
* location of the first record not returned.
|
||||||
*/
|
*/
|
||||||
*(((char *)tde) + treclen - 1) = type;
|
lseek64(dirfd, prev_diroff, SEEK_SET);
|
||||||
|
break;
|
||||||
de = (struct linux_dirent64 *)((char *)de + reclen);
|
|
||||||
tde = (struct target_dirent *)((char *)tde + treclen);
|
|
||||||
len -= reclen;
|
|
||||||
tlen += treclen;
|
|
||||||
}
|
}
|
||||||
ret = tlen;
|
|
||||||
}
|
prev_diroff = hde->d_off;
|
||||||
unlock_user(dirp, arg2, ret);
|
tde->d_ino = tswapal(hde->d_ino);
|
||||||
|
tde->d_off = tswapal(hde->d_off);
|
||||||
|
tde->d_reclen = tswap16(treclen);
|
||||||
|
memcpy(tde->d_name, hde->d_name, namelen + 1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The getdents type is in what was formerly a padding byte at the
|
||||||
|
* end of the structure.
|
||||||
|
*/
|
||||||
|
#ifdef EMULATE_GETDENTS_WITH_GETDENTS
|
||||||
|
type = *((uint8_t *)hde + hreclen - 1);
|
||||||
|
#else
|
||||||
|
type = hde->d_type;
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
*((uint8_t *)tde + treclen - 1) = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
unlock_user(tdirp, arg2, toff);
|
||||||
|
return toff;
|
||||||
}
|
}
|
||||||
#endif /* TARGET_NR_getdents */
|
#endif /* TARGET_NR_getdents */
|
||||||
|
|
||||||
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
|
#if defined(TARGET_NR_getdents64) && defined(__NR_getdents64)
|
||||||
static int do_getdents64(abi_long arg1, abi_long arg2, abi_long arg3)
|
static int do_getdents64(abi_long dirfd, abi_long arg2, abi_long count)
|
||||||
{
|
{
|
||||||
struct linux_dirent64 *dirp;
|
g_autofree void *hdirp = NULL;
|
||||||
abi_long count = arg3;
|
void *tdirp;
|
||||||
int ret;
|
int hlen, hoff, toff;
|
||||||
|
int hreclen, treclen;
|
||||||
|
off64_t prev_diroff = 0;
|
||||||
|
|
||||||
dirp = lock_user(VERIFY_WRITE, arg2, count, 0);
|
hdirp = g_try_malloc(count);
|
||||||
if (!dirp) {
|
if (!hdirp) {
|
||||||
|
return -TARGET_ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
hlen = get_errno(sys_getdents64(dirfd, hdirp, count));
|
||||||
|
if (is_error(hlen)) {
|
||||||
|
return hlen;
|
||||||
|
}
|
||||||
|
|
||||||
|
tdirp = lock_user(VERIFY_WRITE, arg2, count, 0);
|
||||||
|
if (!tdirp) {
|
||||||
return -TARGET_EFAULT;
|
return -TARGET_EFAULT;
|
||||||
}
|
}
|
||||||
ret = get_errno(sys_getdents64(arg1, dirp, count));
|
|
||||||
if (!is_error(ret)) {
|
for (hoff = toff = 0; hoff < hlen; hoff += hreclen, toff += treclen) {
|
||||||
struct linux_dirent64 *de;
|
struct linux_dirent64 *hde = hdirp + hoff;
|
||||||
int len = ret;
|
struct target_dirent64 *tde = tdirp + toff;
|
||||||
int reclen;
|
int namelen;
|
||||||
de = dirp;
|
|
||||||
while (len > 0) {
|
namelen = strlen(hde->d_name) + 1;
|
||||||
reclen = de->d_reclen;
|
hreclen = hde->d_reclen;
|
||||||
if (reclen > len) {
|
treclen = offsetof(struct target_dirent64, d_name) + namelen;
|
||||||
|
treclen = QEMU_ALIGN_UP(treclen, __alignof(struct target_dirent64));
|
||||||
|
|
||||||
|
if (toff + treclen > count) {
|
||||||
|
/*
|
||||||
|
* If the host struct is smaller than the target struct, or
|
||||||
|
* requires less alignment and thus packs into less space,
|
||||||
|
* then the host can return more entries than we can pass
|
||||||
|
* on to the guest.
|
||||||
|
*/
|
||||||
|
if (toff == 0) {
|
||||||
|
toff = -TARGET_EINVAL; /* result buffer is too small */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
de->d_reclen = tswap16(reclen);
|
/*
|
||||||
tswap64s((uint64_t *)&de->d_ino);
|
* Return what we have, resetting the file pointer to the
|
||||||
tswap64s((uint64_t *)&de->d_off);
|
* location of the first record not returned.
|
||||||
de = (struct linux_dirent64 *)((char *)de + reclen);
|
*/
|
||||||
len -= reclen;
|
lseek64(dirfd, prev_diroff, SEEK_SET);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
prev_diroff = hde->d_off;
|
||||||
|
tde->d_ino = tswap64(hde->d_ino);
|
||||||
|
tde->d_off = tswap64(hde->d_off);
|
||||||
|
tde->d_reclen = tswap16(treclen);
|
||||||
|
tde->d_type = hde->d_type;
|
||||||
|
memcpy(tde->d_name, hde->d_name, namelen);
|
||||||
}
|
}
|
||||||
unlock_user(dirp, arg2, ret);
|
|
||||||
return ret;
|
unlock_user(tdirp, arg2, toff);
|
||||||
|
return toff;
|
||||||
}
|
}
|
||||||
#endif /* TARGET_NR_getdents64 */
|
#endif /* TARGET_NR_getdents64 */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue