From nobody Sun Nov 9 22:35:59 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1552009365033500.9999632116037; Thu, 7 Mar 2019 17:42:45 -0800 (PST) Received: from localhost ([127.0.0.1]:34635 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h24X0-0001vm-2f for importer@patchew.org; Thu, 07 Mar 2019 20:42:38 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58834) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h24Q1-00045g-Hi for qemu-devel@nongnu.org; Thu, 07 Mar 2019 20:35:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h24Pz-0002xh-HT for qemu-devel@nongnu.org; Thu, 07 Mar 2019 20:35:25 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44218) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h24Pr-0002gz-Oi; Thu, 07 Mar 2019 20:35:16 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B13A53084247; Fri, 8 Mar 2019 01:35:07 +0000 (UTC) Received: from x1w.redhat.com (unknown [10.40.206.18]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E7B7C60BE5; Fri, 8 Mar 2019 01:34:39 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: Laszlo Ersek , Gerd Hoffmann , "Michael S. Tsirkin" , qemu-devel@nongnu.org Date: Fri, 8 Mar 2019 02:32:16 +0100 Message-Id: <20190308013222.12524-13-philmd@redhat.com> In-Reply-To: <20190308013222.12524-1-philmd@redhat.com> References: <20190308013222.12524-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Fri, 08 Mar 2019 01:35:07 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v2 12/18] hw/nvram/fw_cfg: Keep reference of file_data in FWCfgState X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , Thomas Huth , Eduardo Habkost , Mark Cave-Ayland , "Dr. David Alan Gilbert" , Markus Armbruster , qemu-arm@nongnu.org, qemu-ppc@nongnu.org, Igor Mammedov , Paolo Bonzini , David Gibson , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Artyom Tarasenko , Richard Henderson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" The 'file_data' is allocated by read_splashfile() (introduced in commit 3d3b8303c6f8). It is then used by fw_cfg_add_file(). Due to the contract interface of fw_cfg_add_file(), it has to be valid for the lifetime of the FwCfg object. Keep a reference of 'file_data' in FWCfgState to be able to free this memory in fw_cfg_common_unrealize(). We can now remove the res_free() from the main() loop. The global boot_splash_filedata is now unused, remove it. Signed-off-by: Philippe Mathieu-Daud=C3=A9 Reviewed-by: Thomas Huth --- hw/nvram/fw_cfg.c | 10 ++++++---- include/hw/nvram/fw_cfg.h | 1 + include/sysemu/sysemu.h | 1 - vl.c | 9 --------- 4 files changed, 7 insertions(+), 14 deletions(-) diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c index 3ac6687a04..fc392cb7e0 100644 --- a/hw/nvram/fw_cfg.c +++ b/hw/nvram/fw_cfg.c @@ -215,16 +215,16 @@ static void fw_cfg_bootsplash(FWCfgState *s) g_free(filename); return; } - g_free(boot_splash_filedata); - boot_splash_filedata =3D (uint8_t *)file_data; + g_free(s->boot_splash.file_data); + s->boot_splash.file_data =3D file_data; =20 /* insert data */ if (file_type =3D=3D JPG_FILE) { fw_cfg_add_file(s, "bootsplash.jpg", - boot_splash_filedata, file_size); + s->boot_splash.file_data, file_size); } else { fw_cfg_add_file(s, "bootsplash.bmp", - boot_splash_filedata, file_size); + s->boot_splash.file_data, file_size); } g_free(filename); } @@ -974,6 +974,8 @@ static void fw_cfg_common_unrealize(DeviceState *dev, E= rror **errp) =20 g_free(s->files); =20 + g_free(s->boot_splash.file_data); + g_free(s->entries[0]); g_free(s->entries[1]); g_free(s->entry_order); diff --git a/include/hw/nvram/fw_cfg.h b/include/hw/nvram/fw_cfg.h index fcb771186c..83a0540b6c 100644 --- a/include/hw/nvram/fw_cfg.h +++ b/include/hw/nvram/fw_cfg.h @@ -56,6 +56,7 @@ struct FWCfgState { =20 uint32_t reboot_timeout; struct { + char *file_data; uint16_t time_le16; } boot_splash; }; diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index 6065d9e420..3cd856b015 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -109,7 +109,6 @@ extern int no_shutdown; extern int old_param; extern int boot_menu; extern bool boot_strict; -extern uint8_t *boot_splash_filedata; extern bool enable_mlock; extern bool enable_cpu_pm; extern QEMUClockType rtc_clock; diff --git a/vl.c b/vl.c index fad6fec38c..47dd63a309 100644 --- a/vl.c +++ b/vl.c @@ -187,7 +187,6 @@ unsigned int nb_prom_envs =3D 0; const char *prom_envs[MAX_PROM_ENVS]; int boot_menu; bool boot_strict; -uint8_t *boot_splash_filedata; bool wakeup_suspend_enabled; =20 int icount_align_option; @@ -558,12 +557,6 @@ const char *qemu_get_vm_name(void) return qemu_name; } =20 -static void res_free(void) -{ - g_free(boot_splash_filedata); - boot_splash_filedata =3D NULL; -} - static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp) { const char *driver =3D qemu_opt_get(opts, "driver"); @@ -4591,8 +4584,6 @@ int main(int argc, char **argv, char **envp) job_cancel_sync_all(); bdrv_close_all(); =20 - res_free(); - /* vhost-user must be cleaned up before chardevs. */ tpm_cleanup(); net_cleanup(); --=20 2.20.1