From nobody Sun Nov 2 11:45:23 2025 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1527664786344256.2492045310189; Wed, 30 May 2018 00:19:46 -0700 (PDT) Received: from localhost ([::1]:36654 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNvOb-00071I-Da for importer@patchew.org; Wed, 30 May 2018 03:19:45 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41469) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNvN0-00068U-PV for qemu-devel@nongnu.org; Wed, 30 May 2018 03:18:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNvMx-0005Qh-MI for qemu-devel@nongnu.org; Wed, 30 May 2018 03:18:06 -0400 Received: from [107.173.13.209] (port=51644 helo=ozlabs.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNvMx-0005Qb-FR for qemu-devel@nongnu.org; Wed, 30 May 2018 03:18:03 -0400 Received: from vpl1.ozlabs.ibm.com (localhost [IPv6:::1]) by ozlabs.ru (Postfix) with ESMTP id 03706AE801DC; Wed, 30 May 2018 03:16:57 -0400 (EDT) From: Alexey Kardashevskiy To: qemu-devel@nongnu.org Date: Wed, 30 May 2018 17:17:56 +1000 Message-Id: <20180530071757.9112-2-aik@ozlabs.ru> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180530071757.9112-1-aik@ozlabs.ru> References: <20180530071757.9112-1-aik@ozlabs.ru> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 107.173.13.209 Subject: [Qemu-devel] [PATCH qemu v3 1/2] object: Handle objects with no parents 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: Alexey Kardashevskiy , Paolo Bonzini , "Dr. David Alan Gilbert" , Markus Armbruster Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_6 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" At the moment object_get_canonical_path() crashes if the object or one of its parents does not have a parent, for example, a KVM accelerator object. This adds a check for obj!=3DNULL in a loop to prevent the crash. In order not to return a wrong path, this checks for currently resolved partial path and does not add a leading slash to tell the reader that the path is partial as the owner object is detached. Signed-off-by: Alexey Kardashevskiy --- I have not tested the case with obj=3D=3DNULL and path!=3DNULL as this is for objects which have parents which are not attached to the root and we do not have such objects in current QEMU afaict but I kept it just in case. --- Changes: v3: * do not check for obj->parent * return NULL or incomplete path depending on the situation --- qom/object.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/qom/object.c b/qom/object.c index 0fc9720..05138ba 100644 --- a/qom/object.c +++ b/qom/object.c @@ -1669,7 +1669,7 @@ gchar *object_get_canonical_path(Object *obj) Object *root =3D object_get_root(); char *newpath, *path =3D NULL; =20 - while (obj !=3D root) { + while (obj && obj !=3D root) { char *component =3D object_get_canonical_path_component(obj); =20 if (path) { @@ -1684,7 +1684,13 @@ gchar *object_get_canonical_path(Object *obj) obj =3D obj->parent; } =20 - newpath =3D g_strdup_printf("/%s", path ? path : ""); + if (obj && path) { + newpath =3D g_strdup_printf("/%s", path); + } else if (path) { + newpath =3D g_strdup(path); + } else { + newpath =3D NULL; + } g_free(path); =20 return newpath; --=20 2.11.0