X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=ui%2Fcommon%2Fui-system.c;h=4b0f144e41eb2d64cce7812e421236e4cb761042;hp=b252e9a98edbde407731bc0f29c85ddbadeeda9a;hb=59e81c46a962da51e51474e9b36258ff0e04ae42;hpb=93b3fb6196709a0de77059b6b2bb7b8e27530477;ds=inline diff --git a/ui/common/ui-system.c b/ui/common/ui-system.c index b252e9a..4b0f144 100644 --- a/ui/common/ui-system.c +++ b/ui/common/ui-system.c @@ -33,14 +33,38 @@ #include "ui-system.h" /** - * run_kexec_local - Final kexec helper. + * pb_start_daemon - start the pb-discover daemon. + */ + +int pb_start_daemon(void) +{ + int result; + const char *argv[2]; + char *name = talloc_asprintf(NULL, "%s/sbin/pb-discover", + pb_system_apps.prefix); + + argv[0] = name; + argv[1] = NULL; + + result = pb_run_cmd(argv, 0); + + talloc_free(name); + + if (result) + pb_log("%s: failed: (%d)\n", __func__, result); + + return result; +} + +/** + * kexec_load - kexec load helper. * @l_image: The local image file for kexec to execute. * @l_initrd: Optional local initrd file for kexec --initrd, can be NULL. * @args: Optional command line args for kexec --append, can be NULL. */ -static int run_kexec_local(const char *l_image, const char *l_initrd, - const char *args) +static int kexec_load(const char *l_image, const char *l_initrd, + const char *args, int dry_run) { int result; const char *argv[6]; @@ -49,81 +73,122 @@ static int run_kexec_local(const char *l_image, const char *l_initrd, char *s_args = NULL; p = argv; - *p++ = pb_system_apps.kexec; /* 1 */ + *p++ = pb_system_apps.kexec; /* 1 */ + *p++ = "-l"; /* 2 */ if (l_initrd) { s_initrd = talloc_asprintf(NULL, "--initrd=%s", l_initrd); assert(s_initrd); - *p++ = s_initrd; /* 2 */ + *p++ = s_initrd; /* 3 */ } if (args) { s_args = talloc_asprintf(NULL, "--append=%s", args); assert(s_args); - *p++ = s_args; /* 3 */ + *p++ = s_args; /* 4 */ } - /* First try by telling kexec to run shutdown */ + *p++ = l_image; /* 5 */ + *p++ = NULL; /* 6 */ + + result = dry_run ? 0 : pb_run_cmd(argv, 1); + + if (result) + pb_log("%s: failed: (%d)\n", __func__, result); + + talloc_free(s_initrd); + talloc_free(s_args); + + return result; +} - *(p + 0) = l_image; - *(p + 1) = NULL; +/** + * kexec_reboot - Helper to boot the new kernel. + * + * Must only be called after a successful call to kexec_load(). + */ - result = pb_run_cmd(argv); +static int kexec_reboot(int dry_run) +{ + int result = 0; + const char *argv[4]; + const char **p; - /* kexec will return zero on success */ - /* On error, force a kexec with the -f option */ + /* First try running shutdown. Init scripts should run 'exec -e' */ + + p = argv; + *p++ = pb_system_apps.shutdown; /* 1 */ + *p++ = "-r"; /* 2 */ + *p++ = "now"; /* 3 */ + *p++ = NULL; /* 4 */ + + result = dry_run ? 0 : pb_run_cmd(argv, 1); + + /* On error, force a kexec with the -e option */ if (result) { - *(p + 0) = "-f"; /* 4 */ - *(p + 1) = l_image; /* 5 */ - *(p + 2) = NULL; /* 6 */ + p = argv; + *p++ = pb_system_apps.kexec; /* 1 */ + *p++ = "-e"; /* 2 */ + *p++ = NULL; /* 3 */ - result = pb_run_cmd(argv); + result = pb_run_cmd(argv, 1); } if (result) pb_log("%s: failed: (%d)\n", __func__, result); - talloc_free(s_initrd); - talloc_free(s_args); - return result; } /** * pb_run_kexec - Run kexec with the supplied boot options. - * - * For the convenience of the user, tries to load both files before - * returning error. */ -int pb_run_kexec(const struct pb_kexec_data *kd) +int pb_run_kexec(const struct pb_kexec_data *kd, int dry_run) { int result; - char *l_image; - char *l_initrd; - - pb_log("%s: image: '%s'\n", __func__, kd->image); - pb_log("%s: initrd: '%s'\n", __func__, kd->initrd); - pb_log("%s: args: '%s'\n", __func__, kd->args); - - if (kd->image) - l_image = pb_load_file(NULL, kd->image); - else { - l_image = NULL; - pb_log("%s: error null image\n", __func__); + char *l_image = NULL; + char *l_initrd = NULL; + unsigned int clean_image = 0; + unsigned int clean_initrd = 0; + + pb_log("%s: image: '%s'\n", __func__, kd->image); + pb_log("%s: initrd: '%s'\n", __func__, kd->initrd); + pb_log("%s: args: '%s'\n", __func__, kd->args); + pb_log("%s: dry_run: '%d'\n", __func__, dry_run); + + result = -1; + + if (kd->image) { + l_image = pb_load_file(NULL, kd->image, &clean_image); + if (!l_image) + goto no_load; + } + + if (kd->initrd) { + l_initrd = pb_load_file(NULL, kd->initrd, &clean_initrd); + if (!l_initrd) + goto no_load; } - l_initrd = kd->initrd ? pb_load_file(NULL, kd->initrd) : NULL; + if (!l_image && !l_initrd) + goto no_load; - if (!l_image || (kd->initrd && !l_initrd)) - result = -1; - else - result = run_kexec_local(l_image, l_initrd, kd->args); + result = kexec_load(l_image, l_initrd, kd->args, dry_run); + +no_load: + if (clean_image) + unlink(l_image); + if (clean_initrd) + unlink(l_initrd); talloc_free(l_image); talloc_free(l_initrd); + if (!result) + result = kexec_reboot(dry_run); + return result; }