qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/2] fw_cfg for-4.2-soft-freeze patches
@ 2019-11-03 22:25 Philippe Mathieu-Daudé
  2019-11-03 22:25 ` [PULL 1/2] fw_cfg: Allow reboot-timeout=-1 again Philippe Mathieu-Daudé
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-03 22:25 UTC (permalink / raw)
  To: qemu-devel
  Cc: Philippe Mathieu-Daudé, Thomas Huth, Laszlo Ersek, Gerd Hoffmann

Hi Peter,

One fw_cfg fix from David Gilbert.

The following changes since commit f3cad9c6dbd4b9877232c44bf2dd877353a73209:

  iotests: Remove 130 from the "auto" group (2019-10-31 11:04:10 +0000)

are available in the Git repository at:

  https://gitlab.com/philmd/qemu.git tags/fw_cfg-next-pull-request

for you to fetch changes up to eda4e62cc2f5d12fcedcf799a5a3f9eba855ad77:

  tests/fw_cfg: Test 'reboot-timeout=-1' special value (2019-11-01 19:19:24 +0100)

----------------------------------------------------------------
Fix the fw_cfg reboot-timeout=-1 special value, add a test for it.

----------------------------------------------------------------

Dr. David Alan Gilbert (1):
  fw_cfg: Allow reboot-timeout=-1 again

Philippe Mathieu-Daudé (1):
  tests/fw_cfg: Test 'reboot-timeout=-1' special value

 hw/nvram/fw_cfg.c   |  7 ++++---
 tests/fw_cfg-test.c | 21 +++++++++++++++++++++
 2 files changed, 25 insertions(+), 3 deletions(-)

-- 
2.21.0



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PULL 1/2] fw_cfg: Allow reboot-timeout=-1 again
  2019-11-03 22:25 [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Philippe Mathieu-Daudé
@ 2019-11-03 22:25 ` Philippe Mathieu-Daudé
  2019-11-03 22:25 ` [PULL 2/2] tests/fw_cfg: Test 'reboot-timeout=-1' special value Philippe Mathieu-Daudé
  2019-11-05 20:59 ` [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-03 22:25 UTC (permalink / raw)
  To: qemu-devel
  Cc: Philippe Mathieu-Daudé,
	Thomas Huth, Laszlo Ersek, Gerd Hoffmann, Dr. David Alan Gilbert

From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

Commit ee5d0f89de3e53cdb0dc added range checking on reboot-timeout
to only allow the range 0..65535; however both qemu and libvirt document
the special value -1  to mean don't reboot.
Allow it again.

Fixes: ee5d0f89de3e53cdb0dc ("fw_cfg: Fix -boot reboot-timeout error checking")
RH bz: https://bugzilla.redhat.com/show_bug.cgi?id=1765443
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20191025165706.177653-1-dgilbert@redhat.com>
Suggested-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <37ac197c-f20e-dd05-ff6a-13a2171c7148@redhat.com>
[PMD: Applied Laszlo's suggestions]
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 hw/nvram/fw_cfg.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c
index aef1727250..14f8437983 100644
--- a/hw/nvram/fw_cfg.c
+++ b/hw/nvram/fw_cfg.c
@@ -237,7 +237,7 @@ static void fw_cfg_bootsplash(FWCfgState *s)
 static void fw_cfg_reboot(FWCfgState *s)
 {
     const char *reboot_timeout = NULL;
-    int64_t rt_val = -1;
+    uint64_t rt_val = -1;
     uint32_t rt_le32;
 
     /* get user configuration */
@@ -247,10 +247,11 @@ static void fw_cfg_reboot(FWCfgState *s)
 
     if (reboot_timeout) {
         rt_val = qemu_opt_get_number(opts, "reboot-timeout", -1);
+
         /* validate the input */
-        if (rt_val < 0 || rt_val > 0xffff) {
+        if (rt_val > 0xffff && rt_val != (uint64_t)-1) {
             error_report("reboot timeout is invalid,"
-                         "it should be a value between 0 and 65535");
+                         "it should be a value between -1 and 65535");
             exit(1);
         }
     }
-- 
2.21.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PULL 2/2] tests/fw_cfg: Test 'reboot-timeout=-1' special value
  2019-11-03 22:25 [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Philippe Mathieu-Daudé
  2019-11-03 22:25 ` [PULL 1/2] fw_cfg: Allow reboot-timeout=-1 again Philippe Mathieu-Daudé
@ 2019-11-03 22:25 ` Philippe Mathieu-Daudé
  2019-11-05 20:59 ` [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-03 22:25 UTC (permalink / raw)
  To: qemu-devel
  Cc: Laurent Vivier, Thomas Huth, Laszlo Ersek,
	Dr . David Alan Gilbert, Gerd Hoffmann, Paolo Bonzini,
	Philippe Mathieu-Daudé

The special value -1 means "don't reboot" for QEMU/libvirt.
Add a trivial test.

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 tests/fw_cfg-test.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/tests/fw_cfg-test.c b/tests/fw_cfg-test.c
index 1d3147f821..5dc807ba23 100644
--- a/tests/fw_cfg-test.c
+++ b/tests/fw_cfg-test.c
@@ -194,6 +194,26 @@ static void test_fw_cfg_reboot_timeout(void)
     qtest_quit(s);
 }
 
+static void test_fw_cfg_no_reboot_timeout(void)
+{
+    QFWCFG *fw_cfg;
+    QTestState *s;
+    uint32_t reboot_timeout = 0;
+    size_t filesize;
+
+    /* Special value -1 means "don't reboot" */
+    s = qtest_init("-boot reboot-timeout=-1");
+    fw_cfg = pc_fw_cfg_init(s);
+
+    filesize = qfw_cfg_get_file(fw_cfg, "etc/boot-fail-wait",
+                                &reboot_timeout, sizeof(reboot_timeout));
+    g_assert_cmpint(filesize, ==, sizeof(reboot_timeout));
+    reboot_timeout = le32_to_cpu(reboot_timeout);
+    g_assert_cmpint(reboot_timeout, ==, UINT32_MAX);
+    pc_fw_cfg_uninit(fw_cfg);
+    qtest_quit(s);
+}
+
 static void test_fw_cfg_splash_time(void)
 {
     QFWCFG *fw_cfg;
@@ -233,6 +253,7 @@ int main(int argc, char **argv)
     qtest_add_func("fw_cfg/numa", test_fw_cfg_numa);
     qtest_add_func("fw_cfg/boot_menu", test_fw_cfg_boot_menu);
     qtest_add_func("fw_cfg/reboot_timeout", test_fw_cfg_reboot_timeout);
+    qtest_add_func("fw_cfg/no_reboot_timeout", test_fw_cfg_no_reboot_timeout);
     qtest_add_func("fw_cfg/splash_time", test_fw_cfg_splash_time);
 
     return g_test_run();
-- 
2.21.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PULL 0/2] fw_cfg for-4.2-soft-freeze patches
  2019-11-03 22:25 [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Philippe Mathieu-Daudé
  2019-11-03 22:25 ` [PULL 1/2] fw_cfg: Allow reboot-timeout=-1 again Philippe Mathieu-Daudé
  2019-11-03 22:25 ` [PULL 2/2] tests/fw_cfg: Test 'reboot-timeout=-1' special value Philippe Mathieu-Daudé
@ 2019-11-05 20:59 ` Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2019-11-05 20:59 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Thomas Huth, Laszlo Ersek, QEMU Developers, Gerd Hoffmann

On Sun, 3 Nov 2019 at 22:26, Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
>
> Hi Peter,
>
> One fw_cfg fix from David Gilbert.
>
> The following changes since commit f3cad9c6dbd4b9877232c44bf2dd877353a73209:
>
>   iotests: Remove 130 from the "auto" group (2019-10-31 11:04:10 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/philmd/qemu.git tags/fw_cfg-next-pull-request
>
> for you to fetch changes up to eda4e62cc2f5d12fcedcf799a5a3f9eba855ad77:
>
>   tests/fw_cfg: Test 'reboot-timeout=-1' special value (2019-11-01 19:19:24 +0100)
>
> ----------------------------------------------------------------
> Fix the fw_cfg reboot-timeout=-1 special value, add a test for it.
>
> ----------------------------------------------------------------
>
> Dr. David Alan Gilbert (1):
>   fw_cfg: Allow reboot-timeout=-1 again
>
> Philippe Mathieu-Daudé (1):
>   tests/fw_cfg: Test 'reboot-timeout=-1' special value
>
>  hw/nvram/fw_cfg.c   |  7 ++++---
>  tests/fw_cfg-test.c | 21 +++++++++++++++++++++
>  2 files changed, 25 insertions(+), 3 deletions(-)

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.

-- PMM


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-11-05 21:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-03 22:25 [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Philippe Mathieu-Daudé
2019-11-03 22:25 ` [PULL 1/2] fw_cfg: Allow reboot-timeout=-1 again Philippe Mathieu-Daudé
2019-11-03 22:25 ` [PULL 2/2] tests/fw_cfg: Test 'reboot-timeout=-1' special value Philippe Mathieu-Daudé
2019-11-05 20:59 ` [PULL 0/2] fw_cfg for-4.2-soft-freeze patches Peter Maydell

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).