All of lore.kernel.org
 help / color / mirror / Atom feed
From: Riku Voipio <riku.voipio@iki.fi>
To: Lena Djokic <Lena.Djokic@rt-rk.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 7/7] linux-user: Fix mq_open
Date: Thu, 5 Jan 2017 12:14:25 +0000	[thread overview]
Message-ID: <20170105121425.GD19094@kos.to> (raw)
In-Reply-To: <1480003738-8754-8-git-send-email-Lena.Djokic@rt-rk.com>

On Thu, Nov 24, 2016 at 05:08:58PM +0100, Lena Djokic wrote:
> If fourth argument is NULL it should be passed without
> using lock_user function which would, in that case, return
> EFAULT, and system call supports passing NULL as fourth argument.

Thanks, applied to linux-user
 
> Signed-off-by: Lena Djokic <Lena.Djokic@rt-rk.com>
> ---
>  linux-user/syscall.c | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 3faf4f0..dad03e9 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -11694,17 +11694,22 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
>      case TARGET_NR_mq_open:
>          {
>              struct mq_attr posix_mq_attr;
> +            struct mq_attr *pposix_mq_attr;
>              int host_flags;
>  
>              host_flags = target_to_host_bitmask(arg2, fcntl_flags_tbl);
> -            if (copy_from_user_mq_attr(&posix_mq_attr, arg4) != 0) {
> -                goto efault;
> +            pposix_mq_attr = NULL;
> +            if (arg4) {
> +                if (copy_from_user_mq_attr(&posix_mq_attr, arg4) != 0) {
> +                    goto efault;
> +                }
> +                pposix_mq_attr = &posix_mq_attr;
>              }
>              p = lock_user_string(arg1 - 1);
>              if (!p) {
>                  goto efault;
>              }
> -            ret = get_errno(mq_open(p, host_flags, arg3, &posix_mq_attr));
> +            ret = get_errno(mq_open(p, host_flags, arg3, pposix_mq_attr));
>              unlock_user (p, arg1, 0);
>          }
>          break;
> -- 
> 2.7.4
> 

      parent reply	other threads:[~2017-01-05 12:14 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-24 16:08 [Qemu-devel] [PATCH v2 0/7] Improvements of qemu linux-user Lena Djokic
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 1/7] linux-user: Add fanotify implementation Lena Djokic
2016-12-16 16:43   ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 2/7] linux-user: Fix inotify_init1 support Lena Djokic
2016-12-16 14:53   ` Peter Maydell
2017-01-05 12:13   ` Riku Voipio
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 3/7] linux-user: Fix flock definition for mips64 Lena Djokic
2016-12-16 14:51   ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 4/7] linux-user: Fix fcnt Lena Djokic
2016-12-16 14:45   ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 5/7] linux-user: Fix readahead Lena Djokic
2016-12-16 14:27   ` Peter Maydell
2017-01-05 12:14   ` Riku Voipio
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 6/7] linux-user: Fix syslog Lena Djokic
2016-12-16 14:38   ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 7/7] linux-user: Fix mq_open Lena Djokic
2016-12-16 14:39   ` Peter Maydell
2017-01-05 12:14   ` Riku Voipio [this message]

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=20170105121425.GD19094@kos.to \
    --to=riku.voipio@iki.fi \
    --cc=Lena.Djokic@rt-rk.com \
    --cc=qemu-devel@nongnu.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.