qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Vivier <laurent@vivier.eu>
To: chengang@emindsoft.com.cn, riku.voipio@iki.fi
Cc: peter.maydell@linaro.org, rth@twiddle.net,
	Chen Gang <gang.chen.5i5j@gmail.com>,
	qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2] linux-user/syscall.c: Add SO_RCVTIMEO and SO_SNDTIMEO for getsockopt
Date: Mon, 11 Jan 2016 10:07:52 +0100	[thread overview]
Message-ID: <569370E8.2010009@vivier.eu> (raw)
In-Reply-To: <1452502446-11859-1-git-send-email-chengang@emindsoft.com.cn>



Le 11/01/2016 09:54, chengang@emindsoft.com.cn a écrit :
> From: Chen Gang <chengang@emindsoft.com.cn>
> 
> Implement them according to the other features implementations.
> 
> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
> ---
>  linux-user/syscall.c | 27 +++++++++++++++++++++++++--
>  1 file changed, 25 insertions(+), 2 deletions(-)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 44485f2..4c68800 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -1687,6 +1687,7 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
>      abi_long ret;
>      int len, val;
>      socklen_t lv;
> +    struct timeval tv;
>  
>      switch(level) {
>      case TARGET_SOL_SOCKET:
> @@ -1694,10 +1695,32 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
>          switch (optname) {
>          /* These don't just return a single integer */
>          case TARGET_SO_LINGER:
> -        case TARGET_SO_RCVTIMEO:
> -        case TARGET_SO_SNDTIMEO:
>          case TARGET_SO_PEERNAME:
>              goto unimplemented;
> +        case TARGET_SO_RCVTIMEO:
> +            optname = SO_RCVTIMEO;
> +            goto time_case;
> +        case TARGET_SO_SNDTIMEO:
> +            optname = SO_SNDTIMEO;
> +        time_case:
> +            if (get_user_u32(len, optlen)) {
> +                return -TARGET_EFAULT;
> +            }
> +            if (len < sizeof(struct target_timeval)) {
> +                return -TARGET_EINVAL;
> +            }

Check len >= 0.

> +            lv = sizeof(tv);
> +            ret = get_errno(getsockopt(sockfd, level, optname, &tv, &lv));
> +            if (ret < 0) {
> +                return ret;
> +            }
> +            if (copy_to_user_timeval(optval_addr, &tv)) {
> +                return -TARGET_EFAULT;
> +            }
> +            if (put_user_u32(sizeof(struct target_timeval), optlen)) {

Put in optlen the result of getsockopt(), i.e. "lv", or check lv ==
sizeof(struct target_timeval).

> +                return -TARGET_EFAULT;
> +            }
> +            break;
>          case TARGET_SO_PEERCRED: {
>              struct ucred cr;
>              socklen_t crlen;
> 

  reply	other threads:[~2016-01-11  9:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-11  8:54 [Qemu-devel] [PATCH v2] linux-user/syscall.c: Add SO_RCVTIMEO and SO_SNDTIMEO for getsockopt chengang
2016-01-11  9:07 ` Laurent Vivier [this message]
     [not found]   ` <569375FE.9000008@emindsoft.com.cn>
     [not found]     ` <56937BD0.2020900@vivier.eu>
     [not found]       ` <56938470.40109@emindsoft.com.cn>
     [not found]         ` <CAFEAcA-QQDbXd+YEdxqRyOzZO2fYxyR+AK8zfqb6UgWy7Fq94g@mail.gmail.com>
2016-01-11 14:39           ` Chen Gang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=569370E8.2010009@vivier.eu \
    --to=laurent@vivier.eu \
    --cc=chengang@emindsoft.com.cn \
    --cc=gang.chen.5i5j@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=riku.voipio@iki.fi \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).