qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Fam Zheng <famz@redhat.com>
To: Alex Suykov <alex.suykov@gmail.com>
Cc: Riku Voipio <riku.voipio@iki.fi>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] linux-user: support target-to-host SCM_CREDENTIALS
Date: Tue, 23 Dec 2014 09:59:57 +0800	[thread overview]
Message-ID: <20141223015957.GC4021@ad.nay.redhat.com> (raw)
In-Reply-To: <20141221110217.GA14555@vostro>

On Sun, 12/21 13:02, Alex Suykov wrote:
> When passing ancillary data through a unix socket, handle
> credentials properly instead of doing a simple copy and
> issuing a warning.
> 
> Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
> ---
>  linux-user/syscall.c | 15 +++++++++++----
>  1 file changed, 11 insertions(+), 4 deletions(-)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index aaac6a2..b067c5c 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -1214,16 +1214,23 @@ static inline abi_long target_to_host_cmsg(struct msghdr *msgh,
>          cmsg->cmsg_type = tswap32(target_cmsg->cmsg_type);
>          cmsg->cmsg_len = CMSG_LEN(len);
>  
> -        if (cmsg->cmsg_level != SOL_SOCKET || cmsg->cmsg_type != SCM_RIGHTS) {
> -            gemu_log("Unsupported ancillary data: %d/%d\n", cmsg->cmsg_level, cmsg->cmsg_type);
> -            memcpy(data, target_data, len);
> -        } else {
> +        if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_RIGHTS) {
>              int *fd = (int *)data;
>              int *target_fd = (int *)target_data;
>              int i, numfds = len / sizeof(int);
>  
>              for (i = 0; i < numfds; i++)
>                  fd[i] = tswap32(target_fd[i]);
> +        } else if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_CREDENTIALS) {
> +            struct ucred *cred = (struct ucred *)data;
> +            struct target_ucred *target_cred = (struct target_ucred *)target_data;
> +
> +            __put_user(target_cred->pid, &cred->pid);
> +            __put_user(target_cred->uid, &cred->uid);
> +            __put_user(target_cred->gid, &cred->gid);
> +        } else {
> +            gemu_log("Unsupported ancillary data: %d/%d\n", cmsg->cmsg_level, cmsg->cmsg_type);
> +            memcpy(data, target_data, len);
>          }
>  
>          cmsg = CMSG_NXTHDR(msgh, cmsg);
> -- 
> 2.0.3
> 
> 

I didn't review the code but checkpatch.pl complains about a few lines over 80
characters.

Fam

  reply	other threads:[~2014-12-23  2:00 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-21 11:02 [Qemu-devel] [PATCH] linux-user: support target-to-host SCM_CREDENTIALS Alex Suykov
2014-12-23  1:59 ` Fam Zheng [this message]
2014-12-23  5:52   ` Alex Suykov

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=20141223015957.GC4021@ad.nay.redhat.com \
    --to=famz@redhat.com \
    --cc=alex.suykov@gmail.com \
    --cc=qemu-devel@nongnu.org \
    --cc=riku.voipio@iki.fi \
    /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).