From: Cam Macdonell <cam@cs.ualberta.ca>
To: Mark McLoughlin <markmc@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 2/5] Add SCM_RIGHTS support to unix socket character devices
Date: Thu, 13 Aug 2009 10:20:26 -0600 [thread overview]
Message-ID: <4A843D4A.5030306@cs.ualberta.ca> (raw)
In-Reply-To: <1248250302-28595-2-git-send-email-markmc@redhat.com>
Mark McLoughlin wrote:
> If a file descriptor is passed via a message with SCM_RIGHTS ancillary
> data on a unix socket, store the file descriptor for use in the
> chr_read() handler. Close the file descriptor if it was not used.
>
> The qemu_chr_get_msgfd() API provides access to the passed descriptor.
>
> Signed-off-by: Mark McLoughlin <markmc@redhat.com>
> ---
> qemu-char.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
> qemu-char.h | 2 ++
> 2 files changed, 56 insertions(+), 1 deletions(-)
>
> diff --git a/qemu-char.c b/qemu-char.c
> index 9886228..6e2cd31 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -168,6 +168,11 @@ void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len)
> s->chr_read(s->handler_opaque, buf, len);
> }
>
> +int qemu_chr_get_msgfd(CharDriverState *s)
> +{
> + return s->get_msgfd ? s->get_msgfd(s) : -1;
> +}
> +
> void qemu_chr_accept_input(CharDriverState *s)
> {
> if (s->chr_accept_input)
> @@ -1832,6 +1837,7 @@ typedef struct {
> int do_telnetopt;
> int do_nodelay;
> int is_unix;
> + int msgfd;
> } TCPCharDriver;
>
> static void tcp_chr_accept(void *opaque);
> @@ -1907,20 +1913,61 @@ static void tcp_chr_process_IAC_bytes(CharDriverState *chr,
> *size = j;
> }
>
> +static int tcp_get_msgfd(CharDriverState *chr)
> +{
> + TCPCharDriver *s = chr->opaque;
> +
> + return s->msgfd;
> +}
> +
> #ifndef WIN32
> +static void unix_process_msgfd(CharDriverState *chr, struct msghdr *msg)
> +{
> + TCPCharDriver *s = chr->opaque;
> + struct cmsghdr *cmsg;
> +
> + for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
> + int fd;
> +
> + if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
> + cmsg->cmsg_level != SOL_SOCKET ||
> + cmsg->cmsg_type != SCM_RIGHTS)
> + continue;
> +
> + fd = *((int *)CMSG_DATA(cmsg));
> + if (fd < 0)
> + continue;
> +
> + if (s->msgfd != -1)
> + close(s->msgfd);
> + s->msgfd = fd;
> + }
> +}
> +
> static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
> {
> TCPCharDriver *s = chr->opaque;
> struct msghdr msg = { 0, };
> struct iovec iov[1];
> + union {
> + struct cmsghdr cmsg;
> + char control[CMSG_SPACE(sizeof(int))];
> + } msg_control;
> + ssize_t ret;
>
> iov[0].iov_base = buf;
> iov[0].iov_len = len;
>
> msg.msg_iov = iov;
> msg.msg_iovlen = 1;
> + msg.msg_control = &msg_control;
> + msg.msg_controllen = sizeof(msg_control);
> +
> + ret = recvmsg(s->fd, &msg, 0);
> + if (ret > 0 && s->is_unix)
> + unix_process_msgfd(chr, &msg);
>
> - return recvmsg(s->fd, &msg, 0);
> + return ret;
> }
> #else
> static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
> @@ -1957,6 +2004,10 @@ static void tcp_chr_read(void *opaque)
> tcp_chr_process_IAC_bytes(chr, s, buf, &size);
> if (size > 0)
> qemu_chr_read(chr, buf, size);
> + if (s->msgfd != -1) {
> + close(s->msgfd);
> + s->msgfd = -1;
> + }
Hi Mark,
I'm trying to understand the intended behaviour here so I can use your
patch. In your comments for the patch it reads "store the file
descriptor for use in the chr_read() handler. Close the file descriptor
if it was not used." It seems that upon returning from the chr_read()
handler the descriptor is closed if s->msgfd is not set to -1. Does
this mean the handler should set the fd to -1 after retrieving it if the
process wants to keep that fd open, otherwise it will be closed when
chr_read() returns? Should tcp_get_msgfd() perhaps set s->msgfd to -1
after it is retrieved? Sort of a "read and clear" behaviour?
Thanks,
Cam
> }
> }
>
> @@ -2118,12 +2169,14 @@ static CharDriverState *qemu_chr_open_tcp(const char *host_str,
> s->connected = 0;
> s->fd = -1;
> s->listen_fd = -1;
> + s->msgfd = -1;
> s->is_unix = is_unix;
> s->do_nodelay = do_nodelay && !is_unix;
>
> chr->opaque = s;
> chr->chr_write = tcp_chr_write;
> chr->chr_close = tcp_chr_close;
> + chr->get_msgfd = tcp_get_msgfd;
>
> if (is_listen) {
> s->listen_fd = fd;
> diff --git a/qemu-char.h b/qemu-char.h
> index e1aa8db..77d4eda 100644
> --- a/qemu-char.h
> +++ b/qemu-char.h
> @@ -51,6 +51,7 @@ struct CharDriverState {
> int (*chr_write)(struct CharDriverState *s, const uint8_t *buf, int len);
> void (*chr_update_read_handler)(struct CharDriverState *s);
> int (*chr_ioctl)(struct CharDriverState *s, int cmd, void *arg);
> + int (*get_msgfd)(struct CharDriverState *s);
> IOEventHandler *chr_event;
> IOCanRWHandler *chr_can_read;
> IOReadHandler *chr_read;
> @@ -81,6 +82,7 @@ void qemu_chr_reset(CharDriverState *s);
> void qemu_chr_initial_reset(void);
> int qemu_chr_can_read(CharDriverState *s);
> void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len);
> +int qemu_chr_get_msgfd(CharDriverState *s);
> void qemu_chr_accept_input(CharDriverState *s);
> void qemu_chr_info(Monitor *mon);
>
next prev parent reply other threads:[~2009-08-13 16:20 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-06 17:30 [Qemu-devel] [PATCH 0/3] Allow host_net_add monitor command accept file descriptors Mark McLoughlin
2009-07-06 17:30 ` [Qemu-devel] [PATCH 1/3] Make tcp_chr_read() use recvmsg() Mark McLoughlin
2009-07-06 17:31 ` [Qemu-devel] [PATCH 2/3] Add SCM_RIGHTS support to unix socket character devices Mark McLoughlin
2009-07-06 17:32 ` [Qemu-devel] [PATCH 3/3] Add support for fd=msgfd for tap and socket networking Mark McLoughlin
2009-07-07 5:28 ` [Qemu-devel] [PATCH 0/3] Allow host_net_add monitor command accept file descriptors Avi Kivity
2009-07-07 7:43 ` Mark McLoughlin
2009-07-07 7:52 ` Avi Kivity
2009-07-07 8:13 ` Mark McLoughlin
2009-07-07 9:03 ` Avi Kivity
2009-07-07 10:06 ` Daniel P. Berrange
2009-07-08 14:56 ` Mark McLoughlin
2009-07-08 14:57 ` [Qemu-devel] [PATCH 1/5] Make tcp_chr_read() use recvmsg() Mark McLoughlin
2009-07-08 14:57 ` [Qemu-devel] [PATCH 2/5] Add SCM_RIGHTS support to unix socket character devices Mark McLoughlin
2009-07-08 14:57 ` [Qemu-devel] [PATCH 3/5] Add getfd and closefd monitor commands Mark McLoughlin
2009-07-08 14:57 ` [Qemu-devel] [PATCH 4/5] Add monitor_get_fd() command for fetching named fds Mark McLoughlin
2009-07-08 14:57 ` [Qemu-devel] [PATCH 5/5] Add support for fd=name to tap and socket networking Mark McLoughlin
2009-07-08 15:26 ` [Qemu-devel] [PATCH 3/5] Add getfd and closefd monitor commands Avi Kivity
2009-07-08 16:03 ` Mark McLoughlin
2009-07-08 16:15 ` Avi Kivity
2009-07-08 18:08 ` Anthony Liguori
2009-07-08 18:11 ` Avi Kivity
2009-07-08 18:21 ` Anthony Liguori
2009-07-08 18:32 ` Avi Kivity
2009-07-08 18:50 ` Anthony Liguori
2009-07-08 19:52 ` Avi Kivity
2009-07-11 1:12 ` Jamie Lokier
2009-07-21 16:40 ` Mark McLoughlin
2009-07-21 16:53 ` [Qemu-devel] [PATCH] Make tcp_chr_read() use recvmsg() Mark McLoughlin
2009-07-21 17:13 ` Blue Swirl
2009-07-22 0:00 ` Jamie Lokier
2009-07-22 8:10 ` Mark McLoughlin
2009-07-22 8:11 ` [Qemu-devel] [PATCH 1/5] " Mark McLoughlin
2009-07-22 8:11 ` [Qemu-devel] [PATCH 2/5] Add SCM_RIGHTS support to unix socket character devices Mark McLoughlin
2009-08-13 16:20 ` Cam Macdonell [this message]
2009-08-14 6:38 ` Mark McLoughlin
2009-07-22 8:11 ` [Qemu-devel] [PATCH 3/5] Add getfd and closefd monitor commands Mark McLoughlin
2009-07-22 8:11 ` [Qemu-devel] [PATCH 4/5] Add monitor_get_fd() command for fetching named fds Mark McLoughlin
2009-07-22 8:11 ` [Qemu-devel] [PATCH 5/5] Add support for fd=name to tap and socket networking Mark McLoughlin
2009-07-23 13:37 ` Mark McLoughlin
2009-07-21 16:53 ` [Qemu-devel] [PATCH] Add SCM_RIGHTS support to unix socket character devices Mark McLoughlin
2009-07-21 16:53 ` [Qemu-devel] [PATCH] Add getfd and closefd monitor commands Mark McLoughlin
2009-07-21 16:53 ` [Qemu-devel] [PATCH] Add monitor_get_fd() command for fetching named fds Mark McLoughlin
2009-07-21 16:53 ` [Qemu-devel] [PATCH] Add support for fd=name to tap and socket networking Mark McLoughlin
2009-07-22 2:20 ` [Qemu-devel] [PATCH 3/5] Add getfd and closefd monitor commands Anthony Liguori
2009-07-22 8:09 ` Mark McLoughlin
2009-07-23 7:00 ` [Qemu-devel] " Jan Kiszka
2009-07-23 7:51 ` Mark McLoughlin
2009-07-08 15:25 ` [Qemu-devel] [PATCH 2/5] Add SCM_RIGHTS support to unix socket character devices Avi Kivity
2009-07-08 16:04 ` Mark McLoughlin
2009-07-08 16:17 ` Avi Kivity
2009-07-08 18:11 ` Anthony Liguori
2009-07-08 18:17 ` Avi Kivity
2009-07-11 1:15 ` Jamie Lokier
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=4A843D4A.5030306@cs.ualberta.ca \
--to=cam@cs.ualberta.ca \
--cc=markmc@redhat.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.