qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 19/19] linux-user: Avoid possible misalignmen


From: Laurent Vivier
Subject: Re: [Qemu-devel] [PATCH v2 19/19] linux-user: Avoid possible misalignment in target_to_host_siginfo()
Date: Tue, 7 Jun 2016 21:40:30 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0


Le 27/05/2016 à 16:52, Peter Maydell a écrit :
> Reimplement target_to_host_siginfo() to use __get_user(), which
> handles possibly misaligned source guest structures correctly.
> 
> Signed-off-by: Peter Maydell <address@hidden>

Reviewed-by: Laurent Vivier <address@hidden>

> ---
>  linux-user/signal.c | 19 ++++++++++++-------
>  1 file changed, 12 insertions(+), 7 deletions(-)
> 
> diff --git a/linux-user/signal.c b/linux-user/signal.c
> index 7e2a80f..8417da7 100644
> --- a/linux-user/signal.c
> +++ b/linux-user/signal.c
> @@ -409,13 +409,18 @@ void host_to_target_siginfo(target_siginfo_t *tinfo, 
> const siginfo_t *info)
>  /* XXX: find a solution for 64 bit (additional malloced data is needed) */
>  void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo)
>  {
> -    info->si_signo = tswap32(tinfo->si_signo);
> -    info->si_errno = tswap32(tinfo->si_errno);
> -    info->si_code = tswap32(tinfo->si_code);
> -    info->si_pid = tswap32(tinfo->_sifields._rt._pid);
> -    info->si_uid = tswap32(tinfo->_sifields._rt._uid);
> -    info->si_value.sival_ptr =
> -            (void *)(long)tswapal(tinfo->_sifields._rt._sigval.sival_ptr);
> +    /* This conversion is used only for the rt_sigqueueinfo syscall,
> +     * and so we know that the _rt fields are the valid ones.
> +     */
> +    abi_ulong sival_ptr;
> +
> +    __get_user(info->si_signo, &tinfo->si_signo);
> +    __get_user(info->si_errno, &tinfo->si_errno);
> +    __get_user(info->si_code, &tinfo->si_code);
> +    __get_user(info->si_pid, &tinfo->_sifields._rt._pid);
> +    __get_user(info->si_uid, &tinfo->_sifields._rt._uid);
> +    __get_user(sival_ptr, &tinfo->_sifields._rt._sigval.sival_ptr);
> +    info->si_value.sival_ptr = (void *)(long)sival_ptr;
>  }
>  
>  static int fatal_signal (int sig)
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]