qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: Amit Shah <amit.shah@redhat.com>,
	aliguori@us.ibm.com, qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2] qemu-ga: Add the guest-suspend command
Date: Tue, 13 Dec 2011 14:03:08 -0600	[thread overview]
Message-ID: <4EE7AF7C.2060302@linux.vnet.ibm.com> (raw)
In-Reply-To: <20111213162850.4cd135a3@doriath>

On 12/13/2011 12:28 PM, Luiz Capitulino wrote:
> It supports two modes: "hibernate" (which corresponds to S4) and
> "sleep" (which corresponds to S3). It will try to execute the
> pm-hibernate or pm-suspend scripts, if the scripts don't exist
> the command will try to suspend by directly writing to the
> "/sys/power/state" file.
>
> An interesting implementation detail is how to cleanup the child's
> status on termination, so that we don't create zombies. I've
> choosen to ignore the SIGCHLD signal. This will cause the kernel to
> automatically cleanup the child's status on its termination.

One downside to blocking SIGCHLD is it can screw with child processes 
that utilize it. `sudo` for instance will just hang indefinitely because 
it handles it's own cleanup via SIGCHLD, we might run into similar cases 
with various pm-hibernate/pm-suspend implementations as well.

This will also screw with anything we launch via guest-exec as well, 
once that goes in.

I wonder if we can tie the qemu_add_child_watch() stuff into qemu-ga's 
main loop, or maybe just implement something similar...

Basically:

  - add a qemu-ga.c:signal_channel_add() that creates a non-blocking 
pipe and associate the read-side with a GIOChannel, then ties the 
channel into the main loop via g_io_add_watch() on qemu-ga startup, with 
an associated callback that reads everything off the pipe, then iterates 
through a list of registered pids and does a non-blocking wait(pid, ...) 
on each.

  - add a SIGCHLD handler that writes a 1 to the write side of the pipe 
whenever it gets called

Then, when creating a child, you just register the child by adding the 
pid to the list that the signal channel callback checks.

>
> Signed-off-by: Luiz Capitulino<lcapitulino@redhat.com>
> ---
>
> I've tested this w/o any virtio driver, as they don't support S4 yet. For
> S4 it seems to work ok. I couldn't fully test S3 because we lack a way to
> resume from it, but by checking the logs it seems to work fine.
>
> changelog
> ---------
>
> v2
>
> o Rename the command to 'guest-suspend'
> o Add 'mode' parameter
> o Use pm-utils scripts
> o Cleanup child termination status
>
>   qapi-schema-guest.json     |   17 +++++++++++
>   qemu-ga.c                  |   11 +++++++-
>   qga/guest-agent-commands.c |   64 ++++++++++++++++++++++++++++++++++++++++++++
>   3 files changed, 91 insertions(+), 1 deletions(-)
>
> diff --git a/qapi-schema-guest.json b/qapi-schema-guest.json
> index 29989fe..656bde9 100644
> --- a/qapi-schema-guest.json
> +++ b/qapi-schema-guest.json
> @@ -219,3 +219,20 @@
>   ##
>   { 'command': 'guest-fsfreeze-thaw',
>     'returns': 'int' }
> +
> +##
> +# @guest-suspend
> +#
> +# Suspend guest execution by entering ACPI power state S3 or S4.
> +#
> +# @mode: 'hibernate' RAM content is saved in the disk and the guest is
> +#                    powered down (this corresponds to ACPI S4)
> +#        'sleep'     execution is suspended but the RAM retains its contents
> +#                    (this corresponds to ACPI S3)
> +#
> +# Notes: This is an asynchronous request. There's no guarantee it will
> +# succeed. Errors will be logged to guest's syslog.
> +#
> +# Since: 1.1
> +##
> +{ 'command': 'guest-suspend', 'data': { 'mode': 'str' } }
> diff --git a/qemu-ga.c b/qemu-ga.c
> index 60d4972..b32e96c 100644
> --- a/qemu-ga.c
> +++ b/qemu-ga.c
> @@ -61,7 +61,7 @@ static void quit_handler(int sig)
>
>   static void register_signal_handlers(void)
>   {
> -    struct sigaction sigact;
> +    struct sigaction sigact, sigact_chld;
>       int ret;
>
>       memset(&sigact, 0, sizeof(struct sigaction));
> @@ -76,6 +76,15 @@ static void register_signal_handlers(void)
>       if (ret == -1) {
>           g_error("error configuring signal handler: %s", strerror(errno));
>       }
> +
> +    /* This should cause the kernel to automatically cleanup child
> +       termination status */
> +    memset(&sigact_chld, 0, sizeof(struct sigaction));
> +    sigact_chld.sa_handler = SIG_IGN;
> +    ret = sigaction(SIGCHLD,&sigact_chld, NULL);
> +    if (ret == -1) {
> +        g_error("error configuring signal handler: %s", strerror(errno));
> +    }
>   }
>
>   static void usage(const char *cmd)
> diff --git a/qga/guest-agent-commands.c b/qga/guest-agent-commands.c
> index a09c8ca..4799638 100644
> --- a/qga/guest-agent-commands.c
> +++ b/qga/guest-agent-commands.c
> @@ -574,6 +574,70 @@ int64_t qmp_guest_fsfreeze_thaw(Error **err)
>   }
>   #endif
>
> +#define LINUX_PM_UTILS_PATH "/usr/sbin"
> +#define LINUX_SYS_STATE_FILE "/sys/power/state"
> +
> +void qmp_guest_suspend(const char *mode, Error **err)
> +{
> +    int ret, fd = -1;
> +    const char *pmutils_bin;
> +    char pmutils_bin_path[PATH_MAX];
> +
> +    if (strcmp(mode, "hibernate") == 0) {
> +        pmutils_bin = "pm-hibernate";
> +    } else if (strcmp(mode, "sleep") == 0) {
> +        pmutils_bin = "pm-suspend";
> +    } else {
> +        error_set(err, QERR_INVALID_PARAMETER, "mode");
> +        return;
> +    }
> +
> +    snprintf(pmutils_bin_path, sizeof(pmutils_bin_path), "%s/%s",
> +             LINUX_PM_UTILS_PATH, pmutils_bin);
> +
> +    if (access(pmutils_bin_path, X_OK) != 0) {
> +        pmutils_bin = NULL;
> +        fd = open(LINUX_SYS_STATE_FILE, O_WRONLY);
> +        if (fd<  0) {
> +            error_set(err, QERR_OPEN_FILE_FAILED, LINUX_SYS_STATE_FILE);
> +            return;
> +        }
> +    }
> +
> +    ret = fork();
> +    if (ret == 0) {
> +        /* child */
> +        setsid();
> +        fclose(stdin);
> +        fclose(stdout);
> +        fclose(stderr);
> +
> +        if (pmutils_bin) {
> +            ret = execl(pmutils_bin_path, pmutils_bin, NULL);
> +            if (ret) {
> +                 slog("%s failed: %s", pmutils_bin_path, strerror(errno));
> +             }
> +        } else {
> +            const char *cmd = strcmp(mode, "sleep") == 0 ? "mem" : "disk";
> +            ret = write(fd, cmd, strlen(cmd));
> +            if (ret<  0) {
> +                slog("can't write to %s: %s\n", LINUX_SYS_STATE_FILE,
> +                     strerror(errno));
> +            }
> +            close(fd);
> +        }
> +
> +        exit(!!ret);
> +    } else if (ret<  0) {
> +        error_set(err, QERR_UNDEFINED_ERROR);
> +        return;
> +    }
> +
> +    if (!pmutils_bin) {
> +        close(fd);
> +    }
> +}
> +
>   /* register init/cleanup routines for stateful command groups */
>   void ga_command_state_init(GAState *s, GACommandState *cs)
>   {

  reply	other threads:[~2011-12-13 20:06 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-13 18:28 [Qemu-devel] [PATCH v2] qemu-ga: Add the guest-suspend command Luiz Capitulino
2011-12-13 20:03 ` Michael Roth [this message]
2011-12-14 13:00   ` Luiz Capitulino
2011-12-14 15:54     ` Michael Roth
2011-12-14 16:38       ` Luiz Capitulino
2011-12-14 18:06         ` Michael Roth
2011-12-14 23:44           ` Luiz Capitulino
2011-12-14 18:17         ` Luiz Capitulino
2011-12-14 19:43           ` Michael Roth
2011-12-14 20:06             ` Luiz Capitulino
2011-12-14 20:56               ` Michael Roth
2011-12-14 21:14                 ` Michael Roth
2011-12-14 23:56                   ` Luiz Capitulino
2011-12-15  1:27                     ` Michael Roth
2011-12-13 20:27 ` Michael Roth
2011-12-14 13:07   ` Luiz Capitulino
2011-12-14 15:50     ` Michael Roth
2011-12-13 23:13 ` Daniel P. Berrange
2011-12-14 13:08   ` Luiz Capitulino

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=4EE7AF7C.2060302@linux.vnet.ibm.com \
    --to=mdroth@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=amit.shah@redhat.com \
    --cc=lcapitulino@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 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).