<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Feb 17, 2015 at 4:34 PM, Shawn Landden <span dir="ltr"><<a href="mailto:shawn@churchofgit.com" target="_blank">shawn@churchofgit.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><div class="h5">On Tue, Feb 17, 2015 at 7:00 AM, Zbigniew Jędrzejewski-Szmek <span dir="ltr"><<a href="mailto:zbyszek@in.waw.pl" target="_blank">zbyszek@in.waw.pl</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>On Mon, Feb 16, 2015 at 07:53:47PM -0800, Shawn Landden wrote:<br>
> On Mon, Feb 16, 2015 at 5:08 AM, Lennart Poettering <<a href="mailto:lennart@poettering.net" target="_blank">lennart@poettering.net</a>><br>
> wrote:<br>
><br>
> > On Fri, 13.02.15 14:18, Shawn Landden (<a href="mailto:shawn@churchofgit.com" target="_blank">shawn@churchofgit.com</a>) wrote:<br>
> ><br>
> > > Still use helper when Xen Dom0, to avoid duplicating some hairy<br>
> > > code.<br>
> ><br>
> > Hmm, what precisely does the helper do on xen?<br>
> ><br>
> > > So we don't have any logic to load kexec kernels?<br>
> ><br>
> > Currently we don't.<br>
> ><br>
> > My hope though was that we can make the whole kexec thing work without<br>
> > having kexec-tools installed. With the new kernel syscall for loading<br>
> > the kernel we should be able to implement this all without any other<br>
> > tools.<br>
> ><br>
> > Ideally we'd not use any external tools anymore, not even in the Xen<br>
> > case, hence I am curious what precisely the special hookup for Xen is<br>
> > here...?<br>
> ><br>
> > Lennart<br>
> ><br>
> ><br>
> <a href="https://git.kernel.org/cgit/utils/kernel/kexec/kexec-tools.git/tree/kexec/kexec-xen.c" target="_blank">https://git.kernel.org/cgit/utils/kernel/kexec/kexec-tools.git/tree/kexec/kexec-xen.c</a><br>
><br>
> I've attached my patch.<br>
> I'm having a problem with kexec_file_load() returning ENOMEM that I havn't<br>
> resolved.<br>
><br>
> > --<br>
> > Lennart Poettering, Red Hat<br>
> > _______________________________________________<br>
> > systemd-devel mailing list<br>
> > <a href="mailto:systemd-devel@lists.freedesktop.org" target="_blank">systemd-devel@lists.freedesktop.org</a><br>
> > <a href="http://lists.freedesktop.org/mailman/listinfo/systemd-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/systemd-devel</a><br>
> ><br>
><br>
><br>
><br>
> --<br>
> Shawn Landden<br>
<br>
</div></div>> From d5446e324143f55e67bc2defe1c78a4ea4201142 Mon Sep 17 00:00:00 2001<br>
> From: Shawn Landden <<a href="mailto:shawn@churchofgit.com" target="_blank">shawn@churchofgit.com</a>><br>
> Date: Fri, 13 Feb 2015 13:48:07 -0800<br>
> Subject: [PATCH] shutdown: avoid calling `kexec` binary unnessecarily<br>
<span>><br>
> Still use helper when Xen Dom0, to avoid duplicating some hairy code.<br>
</span><span>> So we don't have any logic to load kexec kernels?<br>
</span>> ---<br>
>  TODO                 |   3 --<br>
>  src/core/shutdown.c  | 121 ++++++++++++++++++++++++++++++++++++++++++++++-----<br>
>  src/shared/missing.h |   7 +++<br>
>  3 files changed, 116 insertions(+), 15 deletions(-)<br>
><br>
> diff --git a/TODO b/TODO<br>
> index 255a4f2..d914d2c 100644<br>
> --- a/TODO<br>
> +++ b/TODO<br>
> @@ -90,9 +90,6 @@ Features:<br>
<span>>  * maybe introduce WantsMountsFor=? Usecase:<br>
>    <a href="http://lists.freedesktop.org/archives/systemd-devel/2015-January/027729.html" target="_blank">http://lists.freedesktop.org/archives/systemd-devel/2015-January/027729.html</a><br>
><br>
> -* rework kexec logic to use new kexec_file_load() syscall, so that we<br>
> -  don't have to call kexec tool anymore.<br>
> -<br>
>  * The udev blkid built-in should expose a property that reflects<br>
>    whether media was sensed in USB CF/SD card readers. This should then<br>
>    be used to control SYSTEMD_READY=1/0 so that USB card readers aren't<br>
> diff --git a/src/core/shutdown.c b/src/core/shutdown.c<br>
</span>> index 71f001a..14febf3 100644<br>
> --- a/src/core/shutdown.c<br>
> +++ b/src/core/shutdown.c<br>
> @@ -19,6 +19,7 @@<br>
>    along with systemd; If not, see <<a href="http://www.gnu.org/licenses/" target="_blank">http://www.gnu.org/licenses/</a>>.<br>
>  ***/<br>
><br>
> +#include <ctype.h><br>
>  #include <sys/mman.h><br>
>  #include <sys/types.h><br>
>  #include <sys/reboot.h><br>
> @@ -27,6 +28,7 @@<br>
>  #include <sys/stat.h><br>
>  #include <sys/mount.h><br>
>  #include <sys/syscall.h><br>
> +#include <sys/utsname.h><br>
>  #include <fcntl.h><br>
>  #include <dirent.h><br>
>  #include <errno.h><br>
> @@ -138,6 +140,35 @@ static int parse_argv(int argc, char *argv[]) {<br>
>          return 0;<br>
>  }<br>
><br>
> +/*<br>
> + * Remove parameter from a kernel command line. Helper function for kexec.<br>
> + * (copied from kexec-tools)<br>
> + */<br>
> +static void remove_parameter(char *line, const char *param_name) {<br>
> +        char *start, *end;<br>
> +<br>
> +        start = strstr(line, param_name);<br>
> +<br>
> +        /* parameter not found */<br>
> +        if (!start)<br>
> +                return;<br>
> +<br>
> +        /*<br>
> +         * check if that's really the start of a parameter and not in<br>
> +         * the middle of the word<br>
> +         */<br>
> +        if (start != line && !isspace(*(start-1)))<br>
> +                return;<br>
> +<br>
> +        end = strstr(start, " ");<br>
> +        if (!end)<br>
> +                *start = 0;<br>
> +        else {<br>
> +                memmove(start, end+1, strlen(end));<br>
> +                *(end + strlen(end)) = 0;<br>
> +        }<br>
> +}<br>
> +<br>
>  static int switch_root_initramfs(void) {<br>
>          if (mount("/run/initramfs", "/run/initramfs", NULL, MS_BIND, NULL) < 0)<br>
>                  return log_error_errno(errno, "Failed to mount bind /run/initramfs on /run/initramfs: %m");<br>
> @@ -152,6 +183,57 @@ static int switch_root_initramfs(void) {<br>
>          return switch_root("/run/initramfs", "/oldroot", false, MS_BIND);<br>
>  }<br>
><br>
> +static int kernel_load(bool overwrite) {<br>
> +        int r = -ENOTSUP;<br>
> +<br>
> +/* only x86_64 and x32 in 3.18 */<br>
> +#ifdef __NR_kexec_file_load<br>
> +                /* If uses has no already loaded a kexec kernel assume they<br>
> +                 * want the same one they are currently running. */<br>
> +                if (!overwrite && !kexec_loaded()) {<br>
> +                        struct utsname u;<br>
> +                        _cleanup_free_ char *vmlinuz = NULL, *initrd = NULL, *cmdline = NULL;<br>
> +                        _cleanup_close_ int vmlinuz_fd = -1, initrd_fd = -1;<br>
> +<br>
> +                        r = uname(&u);<br>
> +                        if (r < 0)<br>
> +                                return -errno;<br>
> +<br>
> +                        vmlinuz = malloc(strlen("/boot/vmlinuz-") + strlen(u.release) + 1);<br>
> +                        initrd  = malloc(strlen("/boot/initrd.img-") + strlen(u.release) + 1);<br>
> +                        if (!vmlinuz || !initrd)<br>
> +                                return -ENOMEM;<br>
> +<br>
> +                        r = read_one_line_file("/proc/cmdline", &cmdline);<br>
> +                        if (r < 0)<br>
> +                                return r;<br>
> +<br>
> +                        strcpy(stpcpy(vmlinuz, "/boot/vmlinuz-"),    u.release);<br>
> +                        strcpy(stpcpy(initrd,  "/boot/initrd.img-"), u.release);<br>
Wouldn't a simple strjoina work just as well here?<br>
<br>
We also have the boot loader specification. We really need to follow<br>
it here, and look for kernels in any place where we would install them.<br>
So this scheme most likely would have to be more comples.<br>
<br>
> +                        if (access(vmlinuz, R_OK) != 0 || access(initrd, R_OK) != 0)<br>
> +                                return -errno;<br>
No need to to do this check, the open()s below work just as well.<br>
<br>
> +                        vmlinuz_fd = open(vmlinuz, O_RDONLY);<br>
> +                        if (vmlinuz_fd < 0)<br>
> +                                return -errno;<br>
> +<br>
> +                        initrd_fd  = open(initrd,  O_RDONLY);<br>
> +                        if (initrd_fd < 0)<br>
> +                                return -errno;<br>
> +<br>
> +                        /* clean up cmdline like kexec-tools does */<br>
> +                        remove_parameter(cmdline, "BOOT_IMAGE");<br>
> +<br>
> +                        log_info("kexec: kexec -l %s --initrd=%s --command-line=%s", vmlinuz, initrd, cmdline);<br>
> +<br>
> +                        r = syscall(__NR_kexec_file_load, vmlinuz_fd, initrd_fd, cmdline, strlen(cmdline), 0);<br>
> +                        if (r < 0)<br>
> +                                return -errno;<br>
> +                } else<br>
> +                        r = 0;<br>
> +#endif<br>
> +        return r;<br>
> +}<br>
<span>><br>
>  int main(int argc, char *argv[]) {<br>
</span>>          bool need_umount, need_swapoff, need_loop_detach, need_dm_detach;<br>
> @@ -175,11 +257,13 @@ int main(int argc, char *argv[]) {<br>
><br>
>          umask(0022);<br>
><br>
> -        if (getpid() != 1) {<br>
> +        /*if (getpid() != 1) {<br>
>                  log_error("Not executed by init (PID 1).");<br>
>                  r = -EPERM;<br>
>                  goto error;<br>
> -        }<br>
> +        }*/<br>
> +<br>
> +        in_container = detect_container(NULL) > 0;<br>
><br>
>          if (streq(arg_verb, "reboot"))<br>
>                  cmd = RB_AUTOBOOT;<br>
> @@ -187,9 +271,19 @@ int main(int argc, char *argv[]) {<br>
>                  cmd = RB_POWER_OFF;<br>
>          else if (streq(arg_verb, "halt"))<br>
>                  cmd = RB_HALT_SYSTEM;<br>
> -        else if (streq(arg_verb, "kexec"))<br>
> -                cmd = LINUX_REBOOT_CMD_KEXEC;<br>
> -        else {<br>
> +        else if (streq(arg_verb, "kexec")) {<br>
> +                if (in_container) {<br>
> +                        log_warning("Can't kexec from container. Rebooting…");<br>
> +                        cmd = RB_AUTOBOOT;<br>
> +                } else {<br>
> +                        r = kernel_load(false);<br>
> +                        if (r < 0) {<br>
> +                                log_warning("Failed to load kernel: %s. Rebooting…", strerror(-r));<br>
<br>
I think this should be changed too. I'd very much prefer to get an error if kexec fails.<br>
Maybe we could add a parameter like --always-reboot to reboot as a fallback if the<br>
kenrel cannot be loaded.<br></blockquote></div></div><div> This is not the user API, that is systemctl. This binary is executed only by pid 1.</div></div></div></div></blockquote><div>This _IS_ pid 1, after the main pid 1 quits by executing this shutdown binary. </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><div class="h5"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
> +                                cmd = RB_AUTOBOOT;<br>
> +                        } else<br>
> +                                cmd = LINUX_REBOOT_CMD_KEXEC;<br>
> +                }<br>
> +        } else {<br>
>                  r = -EINVAL;<br>
>                  log_error("Unknown action '%s'.", arg_verb);<br>
>                  goto error;<br>
> @@ -208,8 +302,6 @@ int main(int argc, char *argv[]) {<br>
>          log_info("Sending SIGKILL to remaining processes...");<br>
>          broadcast_signal(SIGKILL, true, false);<br>
><br>
> -        in_container = detect_container(NULL) > 0;<br>
> -<br>
>          need_umount = !in_container;<br>
>          need_swapoff = !in_container;<br>
>          need_loop_detach = !in_container;<br>
> @@ -349,11 +441,14 @@ int main(int argc, char *argv[]) {<br>
><br>
>          case LINUX_REBOOT_CMD_KEXEC:<br>
><br>
> -                if (!in_container) {<br>
<span>> -                        /* We cheat and exec kexec to avoid doing all its work */<br>
> -                        pid_t pid;<br>
</span>> +                log_info("Rebooting with kexec.");<br>
><br>
> -                        log_info("Rebooting with kexec.");<br>
<span>> +                /* kexec-tools has a bunch of special code to make Xen Dom0 work,<br>
</span>> +                 * otherwise it is only doing stuff we have already done.<br>
> +                 * This is true for Dom0 and DomU but we only get Dom0<br>
> +                 * because of the !in_container check */<br>
<span>> +                if (access("/proc/xen", F_OK) == 0) {<br>
> +                        pid_t pid;<br>
><br>
</span>>                          pid = fork();<br>
>                          if (pid < 0)<br>
> @@ -370,7 +465,9 @@ int main(int argc, char *argv[]) {<br>
>                                  _exit(EXIT_FAILURE);<br>
>                          } else<br>
<span>>                                  wait_for_terminate_and_warn("kexec", pid, true);<br>
> -                }<br>
</span>> +<br>
> +                } else<br>
<span>> +                        reboot(cmd);<br>
><br>
>                  cmd = RB_AUTOBOOT;<br>
</span>>                  /* Fall through */<br>
> diff --git a/src/shared/missing.h b/src/shared/missing.h<br>
> index b33a70c..efd650a 100644<br>
> --- a/src/shared/missing.h<br>
> +++ b/src/shared/missing.h<br>
> @@ -763,3 +763,10 @@ static inline int kcmp(pid_t pid1, pid_t pid2, int type, unsigned long idx1, uns<br>
>  #ifndef KCMP_FILE<br>
>  #define KCMP_FILE 0<br>
>  #endif<br>
> +<br>
> +/* v3.17 */<br>
> +#ifndef __NR_kexec_file_load<br>
> +#ifdef __x86_64__<br>
> +#define __NR_kexec_file_load 320<br>
> +#endif<br>
> +#endif<br>
> --<br>
<br>
Zbyszek<br>
<div><div>_______________________________________________<br>
systemd-devel mailing list<br>
<a href="mailto:systemd-devel@lists.freedesktop.org" target="_blank">systemd-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/systemd-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/systemd-devel</a><br>
</div></div></blockquote></div></div></div><span class="HOEnZb"><font color="#888888"><br><br clear="all"><div><br></div>-- <br><div>Shawn Landden</div>
</font></span></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Shawn Landden</div>
</div></div>