* [Qemu-devel] [PATCH 0/2] qga: systemd socket activation for AF_UNIX and AF_VSOCK @ 2017-01-05 17:31 Stefan Hajnoczi 2017-01-05 17:31 ` [Qemu-devel] [PATCH 1/2] configure: add libsystemd check Stefan Hajnoczi 2017-01-05 17:31 ` [Qemu-devel] [PATCH 2/2] qga: add systemd socket activation support Stefan Hajnoczi 0 siblings, 2 replies; 5+ messages in thread From: Stefan Hajnoczi @ 2017-01-05 17:31 UTC (permalink / raw) To: qemu-devel; +Cc: Michael Roth, Stefan Hajnoczi These patches add optional systemd socket activation support to the QEMU guest agent. The listen socket is created by systemd. qemu-ga is only launched when the first client connects and the listen fd is passed in. The guest agent detects socket activation automatically on startup. There are no new command-line options. I wrote this code to test systemd AF_VSOCK socket activation but it also works with AF_UNIX. Stefan Hajnoczi (2): configure: add libsystemd check qga: add systemd socket activation support configure | 34 +++++++++++++++++++++++++++ qga/Makefile.objs | 3 +++ qga/channel.h | 3 ++- qga/channel-posix.c | 66 ++++++++++++++++++++++++++++++----------------------- qga/channel-win32.c | 2 +- qga/main.c | 45 ++++++++++++++++++++++++++++++++---- 6 files changed, 118 insertions(+), 35 deletions(-) -- 2.9.3 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 1/2] configure: add libsystemd check 2017-01-05 17:31 [Qemu-devel] [PATCH 0/2] qga: systemd socket activation for AF_UNIX and AF_VSOCK Stefan Hajnoczi @ 2017-01-05 17:31 ` Stefan Hajnoczi 2017-01-05 17:45 ` Daniel P. Berrange 2017-01-05 17:31 ` [Qemu-devel] [PATCH 2/2] qga: add systemd socket activation support Stefan Hajnoczi 1 sibling, 1 reply; 5+ messages in thread From: Stefan Hajnoczi @ 2017-01-05 17:31 UTC (permalink / raw) To: qemu-devel; +Cc: Michael Roth, Stefan Hajnoczi libsystemd provides APIs for daemons that wish to integrate socket activation and other systemd-related functionality. This will be used as an optional dependency by qemu-guest-agent. In the future it could also be used for systemd logging or sd_notify(3) service startup notification. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- configure | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/configure b/configure index 218df87..c353ff7 100755 --- a/configure +++ b/configure @@ -321,6 +321,7 @@ numa="" tcmalloc="no" jemalloc="no" replication="yes" +systemd="" # parse CC options first for opt do @@ -1168,6 +1169,10 @@ for opt do ;; --enable-replication) replication="yes" ;; + --disable-systemd) systemd="no" + ;; + --enable-systemd) systemd="yes" + ;; *) echo "ERROR: unknown option $opt" echo "Try '$0 --help' for more information" @@ -1401,6 +1406,7 @@ disabled with --disable-FEATURE, default is enabled if available: tcmalloc tcmalloc support jemalloc jemalloc support replication replication support + systemd systemd support NOTE: The object files are built at the place where configure is launched EOF @@ -4720,6 +4726,27 @@ if compile_prog "" "" ; then have_af_vsock=yes fi +########################################## +# check for libsystemd +if test "$systemd" != "no" ; then + cat > $TMPC << EOF +#include <systemd/sd-daemon.h> +int main(void) { (void)sd_listen_fds(1); return 0; } +EOF + systemd_cflags=$($pkg_config --cflags libsystemd 2>/dev/null) + systemd_libs=$($pkg_config --libs libsystemd 2>/dev/null) + if $pkg_config libsystemd >/dev/null 2>&1 && \ + compile_prog "$systemd_cflags" "$systemd_libs" ; then + systemd="yes" + else + if test "$systemd" = "yes" ; then + feature_not_found "systemd" + fi + systemd="no" + fi +fi + + ################################################# # Sparc implicitly links with --relax, which is # incompatible with -r, so --no-relax should be @@ -5112,6 +5139,7 @@ echo "tcmalloc support $tcmalloc" echo "jemalloc support $jemalloc" echo "avx2 optimization $avx2_opt" echo "replication support $replication" +echo "systemd support $systemd" if test "$sdl_too_old" = "yes"; then echo "-> Your SDL version is too old - please upgrade to have SDL support" @@ -5721,6 +5749,12 @@ if test "$have_af_vsock" = "yes" ; then echo "CONFIG_AF_VSOCK=y" >> $config_host_mak fi +if test "$systemd" = "yes" ; then + echo "CONFIG_SYSTEMD=y" >> $config_host_mak + echo "SYSTEMD_CFLAGS=$systemd_cflags" >> $config_host_mak + echo "SYSTEMD_LIBS=$systemd_libs" >> $config_host_mak +fi + # Hold two types of flag: # CONFIG_THREAD_SETNAME_BYTHREAD - we've got a way of setting the name on # a thread we have a handle to -- 2.9.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 1/2] configure: add libsystemd check 2017-01-05 17:31 ` [Qemu-devel] [PATCH 1/2] configure: add libsystemd check Stefan Hajnoczi @ 2017-01-05 17:45 ` Daniel P. Berrange 2017-01-06 12:59 ` Stefan Hajnoczi 0 siblings, 1 reply; 5+ messages in thread From: Daniel P. Berrange @ 2017-01-05 17:45 UTC (permalink / raw) To: Stefan Hajnoczi; +Cc: qemu-devel, Michael Roth On Thu, Jan 05, 2017 at 05:31:06PM +0000, Stefan Hajnoczi wrote: > libsystemd provides APIs for daemons that wish to integrate socket > activation and other systemd-related functionality. This will be used > as an optional dependency by qemu-guest-agent. > > In the future it could also be used for systemd logging or sd_notify(3) > service startup notification. > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > --- > configure | 34 ++++++++++++++++++++++++++++++++++ > 1 file changed, 34 insertions(+) > > diff --git a/configure b/configure > index 218df87..c353ff7 100755 > --- a/configure > +++ b/configure > @@ -321,6 +321,7 @@ numa="" > tcmalloc="no" > jemalloc="no" > replication="yes" > +systemd="" > > # parse CC options first > for opt do > @@ -1168,6 +1169,10 @@ for opt do > ;; > --enable-replication) replication="yes" > ;; > + --disable-systemd) systemd="no" > + ;; > + --enable-systemd) systemd="yes" > + ;; > *) > echo "ERROR: unknown option $opt" > echo "Try '$0 --help' for more information" > @@ -1401,6 +1406,7 @@ disabled with --disable-FEATURE, default is enabled if available: > tcmalloc tcmalloc support > jemalloc jemalloc support > replication replication support > + systemd systemd support > > NOTE: The object files are built at the place where configure is launched > EOF > @@ -4720,6 +4726,27 @@ if compile_prog "" "" ; then > have_af_vsock=yes > fi > > +########################################## > +# check for libsystemd > +if test "$systemd" != "no" ; then > + cat > $TMPC << EOF > +#include <systemd/sd-daemon.h> > +int main(void) { (void)sd_listen_fds(1); return 0; } > +EOF > + systemd_cflags=$($pkg_config --cflags libsystemd 2>/dev/null) > + systemd_libs=$($pkg_config --libs libsystemd 2>/dev/null) > + if $pkg_config libsystemd >/dev/null 2>&1 && \ > + compile_prog "$systemd_cflags" "$systemd_libs" ; then Any reason why you're going to the trouble of compiling a program here ? The key benefit of pkg-config is that you don't need to do things like that to test for existance of the library - just trust the result of pkg-config check. FWIW, it is easy to support socket activation without even using libsystemd. The systemd activation "protocol" is trivial - it merely sets "LISTEN_FDS" env variable to the number of FDs it has been passed down, and they are numbered from stderr fileno + 1. Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://entangle-photo.org -o- http://search.cpan.org/~danberr/ :| ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 1/2] configure: add libsystemd check 2017-01-05 17:45 ` Daniel P. Berrange @ 2017-01-06 12:59 ` Stefan Hajnoczi 0 siblings, 0 replies; 5+ messages in thread From: Stefan Hajnoczi @ 2017-01-06 12:59 UTC (permalink / raw) To: Daniel P. Berrange; +Cc: qemu-devel, Michael Roth [-- Attachment #1: Type: text/plain, Size: 3118 bytes --] On Thu, Jan 05, 2017 at 05:45:50PM +0000, Daniel P. Berrange wrote: > On Thu, Jan 05, 2017 at 05:31:06PM +0000, Stefan Hajnoczi wrote: > > libsystemd provides APIs for daemons that wish to integrate socket > > activation and other systemd-related functionality. This will be used > > as an optional dependency by qemu-guest-agent. > > > > In the future it could also be used for systemd logging or sd_notify(3) > > service startup notification. > > > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > > --- > > configure | 34 ++++++++++++++++++++++++++++++++++ > > 1 file changed, 34 insertions(+) > > > > diff --git a/configure b/configure > > index 218df87..c353ff7 100755 > > --- a/configure > > +++ b/configure > > @@ -321,6 +321,7 @@ numa="" > > tcmalloc="no" > > jemalloc="no" > > replication="yes" > > +systemd="" > > > > # parse CC options first > > for opt do > > @@ -1168,6 +1169,10 @@ for opt do > > ;; > > --enable-replication) replication="yes" > > ;; > > + --disable-systemd) systemd="no" > > + ;; > > + --enable-systemd) systemd="yes" > > + ;; > > *) > > echo "ERROR: unknown option $opt" > > echo "Try '$0 --help' for more information" > > @@ -1401,6 +1406,7 @@ disabled with --disable-FEATURE, default is enabled if available: > > tcmalloc tcmalloc support > > jemalloc jemalloc support > > replication replication support > > + systemd systemd support > > > > NOTE: The object files are built at the place where configure is launched > > EOF > > @@ -4720,6 +4726,27 @@ if compile_prog "" "" ; then > > have_af_vsock=yes > > fi > > > > +########################################## > > +# check for libsystemd > > +if test "$systemd" != "no" ; then > > + cat > $TMPC << EOF > > +#include <systemd/sd-daemon.h> > > +int main(void) { (void)sd_listen_fds(1); return 0; } > > +EOF > > + systemd_cflags=$($pkg_config --cflags libsystemd 2>/dev/null) > > + systemd_libs=$($pkg_config --libs libsystemd 2>/dev/null) > > + if $pkg_config libsystemd >/dev/null 2>&1 && \ > > + compile_prog "$systemd_cflags" "$systemd_libs" ; then > > Any reason why you're going to the trouble of compiling a > program here ? The key benefit of pkg-config is that you > don't need to do things like that to test for existance > of the library - just trust the result of pkg-config check. > > FWIW, it is easy to support socket activation without even > using libsystemd. The systemd activation "protocol" is > trivial - it merely sets "LISTEN_FDS" env variable to the > number of FDs it has been passed down, and they are numbered > from stderr fileno + 1. After looking into it I found that LISTEN_FDS is considered stable and "reimplementable independently": https://www.freedesktop.org/wiki/Software/systemd/InterfacePortabilityAndStabilityChart/ I'll resend this patch without the libsystemd dependency. I guess that will make packagers happy who wish to provide packages that work both with and without systemd installed. Stefan [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 455 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 2/2] qga: add systemd socket activation support 2017-01-05 17:31 [Qemu-devel] [PATCH 0/2] qga: systemd socket activation for AF_UNIX and AF_VSOCK Stefan Hajnoczi 2017-01-05 17:31 ` [Qemu-devel] [PATCH 1/2] configure: add libsystemd check Stefan Hajnoczi @ 2017-01-05 17:31 ` Stefan Hajnoczi 1 sibling, 0 replies; 5+ messages in thread From: Stefan Hajnoczi @ 2017-01-05 17:31 UTC (permalink / raw) To: qemu-devel; +Cc: Michael Roth, Stefan Hajnoczi AF_UNIX and AF_VSOCK listen sockets can be passed in by systemd on startup. This allows systemd to manage the listen socket until the first client connects and between restarts. Advantages of socket activation are that parallel startup of network services becomes possible and that unused daemons do not consume memory. The key to achieving this is the sd_listen_fds(3) API provided by libsystemd. It returns zero if there are no passed listen fds. When passed fds are present they override the qga method/path options. Test as follows: $ cat ~/.config/systemd/user/qga.service [Unit] Description=qga [Service] WorkingDirectory=/tmp ExecStart=/path/to/qemu-ga --logfile=/tmp/qga.log --pidfile=/tmp/qga.pid --statedir=/tmp $ cat ~/.config/systemd/user/qga.socket [Socket] ListenStream=/tmp/qga.sock [Install] WantedBy=default.target $ systemctl --user daemon-reload $ systemctl --user start qga.socket $ nc -U /tmp/qga.sock Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- qga/Makefile.objs | 3 +++ qga/channel.h | 3 ++- qga/channel-posix.c | 66 ++++++++++++++++++++++++++++++----------------------- qga/channel-win32.c | 2 +- qga/main.c | 45 ++++++++++++++++++++++++++++++++---- 5 files changed, 84 insertions(+), 35 deletions(-) diff --git a/qga/Makefile.objs b/qga/Makefile.objs index 1c5986c..96fa36f 100644 --- a/qga/Makefile.objs +++ b/qga/Makefile.objs @@ -6,3 +6,6 @@ qga-obj-y += qapi-generated/qga-qapi-types.o qapi-generated/qga-qapi-visit.o qga-obj-y += qapi-generated/qga-qmp-marshal.o qga-vss-dll-obj-$(CONFIG_QGA_VSS) += vss-win32/ + +main.o-cflags := $(SYSTEMD_CFLAGS) +main.o-libs := $(SYSTEMD_LIBS) diff --git a/qga/channel.h b/qga/channel.h index 8fd0c8f..1778416 100644 --- a/qga/channel.h +++ b/qga/channel.h @@ -25,7 +25,8 @@ typedef enum { typedef gboolean (*GAChannelCallback)(GIOCondition condition, gpointer opaque); GAChannel *ga_channel_new(GAChannelMethod method, const gchar *path, - GAChannelCallback cb, gpointer opaque); + int listen_fd, GAChannelCallback cb, + gpointer opaque); void ga_channel_free(GAChannel *c); GIOStatus ga_channel_read(GAChannel *c, gchar *buf, gsize size, gsize *count); GIOStatus ga_channel_write_all(GAChannel *c, const gchar *buf, gsize size); diff --git a/qga/channel-posix.c b/qga/channel-posix.c index 71582e0..3f34465 100644 --- a/qga/channel-posix.c +++ b/qga/channel-posix.c @@ -118,14 +118,16 @@ static int ga_channel_client_add(GAChannel *c, int fd) return 0; } -static gboolean ga_channel_open(GAChannel *c, const gchar *path, GAChannelMethod method) +static gboolean ga_channel_open(GAChannel *c, const gchar *path, + GAChannelMethod method, int fd) { int ret; c->method = method; switch (c->method) { case GA_CHANNEL_VIRTIO_SERIAL: { - int fd = qemu_open(path, O_RDWR | O_NONBLOCK + assert(fd < 0); + fd = qemu_open(path, O_RDWR | O_NONBLOCK #ifndef CONFIG_SOLARIS | O_ASYNC #endif @@ -153,7 +155,9 @@ static gboolean ga_channel_open(GAChannel *c, const gchar *path, GAChannelMethod } case GA_CHANNEL_ISA_SERIAL: { struct termios tio; - int fd = qemu_open(path, O_RDWR | O_NOCTTY | O_NONBLOCK); + + assert(fd < 0); + fd = qemu_open(path, O_RDWR | O_NOCTTY | O_NONBLOCK); if (fd == -1) { g_critical("error opening channel: %s", strerror(errno)); return false; @@ -183,37 +187,41 @@ static gboolean ga_channel_open(GAChannel *c, const gchar *path, GAChannelMethod break; } case GA_CHANNEL_UNIX_LISTEN: { - Error *local_err = NULL; - int fd = unix_listen(path, NULL, strlen(path), &local_err); - if (local_err != NULL) { - g_critical("%s", error_get_pretty(local_err)); - error_free(local_err); - return false; + if (fd < 0) { + Error *local_err = NULL; + + fd = unix_listen(path, NULL, strlen(path), &local_err); + if (local_err != NULL) { + g_critical("%s", error_get_pretty(local_err)); + error_free(local_err); + return false; + } } ga_channel_listen_add(c, fd, true); break; } case GA_CHANNEL_VSOCK_LISTEN: { - Error *local_err = NULL; - SocketAddress *addr; - char *addr_str; - int fd; + if (fd < 0) { + Error *local_err = NULL; + SocketAddress *addr; + char *addr_str; - addr_str = g_strdup_printf("vsock:%s", path); - addr = socket_parse(addr_str, &local_err); - g_free(addr_str); - if (local_err != NULL) { - g_critical("%s", error_get_pretty(local_err)); - error_free(local_err); - return false; - } + addr_str = g_strdup_printf("vsock:%s", path); + addr = socket_parse(addr_str, &local_err); + g_free(addr_str); + if (local_err != NULL) { + g_critical("%s", error_get_pretty(local_err)); + error_free(local_err); + return false; + } - fd = socket_listen(addr, &local_err); - qapi_free_SocketAddress(addr); - if (local_err != NULL) { - g_critical("%s", error_get_pretty(local_err)); - error_free(local_err); - return false; + fd = socket_listen(addr, &local_err); + qapi_free_SocketAddress(addr); + if (local_err != NULL) { + g_critical("%s", error_get_pretty(local_err)); + error_free(local_err); + return false; + } } ga_channel_listen_add(c, fd, true); break; @@ -262,13 +270,13 @@ GIOStatus ga_channel_read(GAChannel *c, gchar *buf, gsize size, gsize *count) } GAChannel *ga_channel_new(GAChannelMethod method, const gchar *path, - GAChannelCallback cb, gpointer opaque) + int listen_fd, GAChannelCallback cb, gpointer opaque) { GAChannel *c = g_new0(GAChannel, 1); c->event_cb = cb; c->user_data = opaque; - if (!ga_channel_open(c, path, method)) { + if (!ga_channel_open(c, path, method, listen_fd)) { g_critical("error opening channel"); ga_channel_free(c); return NULL; diff --git a/qga/channel-win32.c b/qga/channel-win32.c index 21f9dee..7e6dc4d 100644 --- a/qga/channel-win32.c +++ b/qga/channel-win32.c @@ -316,7 +316,7 @@ static gboolean ga_channel_open(GAChannel *c, GAChannelMethod method, } GAChannel *ga_channel_new(GAChannelMethod method, const gchar *path, - GAChannelCallback cb, gpointer opaque) + int listen_fd, GAChannelCallback cb, gpointer opaque) { GAChannel *c = g_new0(GAChannel, 1); SECURITY_ATTRIBUTES sec_attrs; diff --git a/qga/main.c b/qga/main.c index 6caf215..4dfc787 100644 --- a/qga/main.c +++ b/qga/main.c @@ -17,6 +17,9 @@ #include <syslog.h> #include <sys/wait.h> #endif +#ifdef CONFIG_SYSTEMD +#include <systemd/sd-daemon.h> +#endif #include "qapi/qmp/json-streamer.h" #include "qapi/qmp/json-parser.h" #include "qapi/qmp/qint.h" @@ -648,7 +651,8 @@ static gboolean channel_event_cb(GIOCondition condition, gpointer data) return true; } -static gboolean channel_init(GAState *s, const gchar *method, const gchar *path) +static gboolean channel_init(GAState *s, const gchar *method, const gchar *path, + int listen_fd) { GAChannelMethod channel_method; @@ -666,7 +670,8 @@ static gboolean channel_init(GAState *s, const gchar *method, const gchar *path) return false; } - s->channel = ga_channel_new(channel_method, path, channel_event_cb, s); + s->channel = ga_channel_new(channel_method, path, listen_fd, + channel_event_cb, s); if (!s->channel) { g_critical("failed to create guest agent channel"); return false; @@ -1025,7 +1030,9 @@ static void config_dump(GAConfig *config) g_key_file_set_boolean(keyfile, "general", "daemon", config->daemonize); g_key_file_set_string(keyfile, "general", "method", config->method); - g_key_file_set_string(keyfile, "general", "path", config->channel_path); + if (config->channel_path) { + g_key_file_set_string(keyfile, "general", "path", config->channel_path); + } if (config->log_filepath) { g_key_file_set_string(keyfile, "general", "logfile", config->log_filepath); @@ -1216,6 +1223,8 @@ static bool check_is_frozen(GAState *s) static int run_agent(GAState *s, GAConfig *config) { + int listen_fd = -1; + ga_state = s; g_log_set_default_handler(ga_log, s); @@ -1294,7 +1303,15 @@ static int run_agent(GAState *s, GAConfig *config) #endif s->main_loop = g_main_loop_new(NULL, false); - if (!channel_init(ga_state, config->method, config->channel_path)) { + +#ifdef CONFIG_SYSTEMD + if (sd_listen_fds(1) > 0) { + listen_fd = SD_LISTEN_FDS_START; + } +#endif + + if (!channel_init(ga_state, config->method, config->channel_path, + listen_fd)) { g_critical("failed to initialize guest agent channel"); return EXIT_FAILURE; } @@ -1339,6 +1356,26 @@ int main(int argc, char **argv) config->method = g_strdup("virtio-serial"); } +#ifdef CONFIG_SYSTEMD + if (sd_listen_fds(0) > 0) { + int fd = SD_LISTEN_FDS_START; + + g_free(config->method); + g_free(config->channel_path); + config->method = NULL; + config->channel_path = NULL; + + if (sd_is_socket(fd, AF_UNIX, SOCK_STREAM, 1)) { + config->method = g_strdup("unix-listen"); + } else if (sd_is_socket(fd, AF_VSOCK, SOCK_STREAM, 1)) { + config->method = g_strdup("vsock-listen"); + } else { + g_critical("unsupported listen fd type"); + ret = EXIT_FAILURE; + goto end; + } + } else /* fall-through */ +#endif if (config->channel_path == NULL) { if (strcmp(config->method, "virtio-serial") == 0) { /* try the default path for the virtio-serial port */ -- 2.9.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-01-06 12:59 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-01-05 17:31 [Qemu-devel] [PATCH 0/2] qga: systemd socket activation for AF_UNIX and AF_VSOCK Stefan Hajnoczi 2017-01-05 17:31 ` [Qemu-devel] [PATCH 1/2] configure: add libsystemd check Stefan Hajnoczi 2017-01-05 17:45 ` Daniel P. Berrange 2017-01-06 12:59 ` Stefan Hajnoczi 2017-01-05 17:31 ` [Qemu-devel] [PATCH 2/2] qga: add systemd socket activation support Stefan Hajnoczi
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).