qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: Markus Armbruster <armbru@redhat.com>, qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>
Subject: Re: Questionable aspects of QEMU Error's design
Date: Thu, 14 May 2020 10:59:47 +0300	[thread overview]
Message-ID: <923ceeeb-1fc8-489e-a32d-4cebfa6eadae@virtuozzo.com> (raw)
In-Reply-To: <3b9d53fd-bdd0-c15b-292c-c4952fa24dfd@virtuozzo.com>

28.04.2020 08:20, Vladimir Sementsov-Ogievskiy wrote:
> 27.04.2020 18:36, Markus Armbruster wrote:
>> Markus Armbruster <armbru@redhat.com> writes:
>>
>>> Markus Armbruster <armbru@redhat.com> writes:
>>>
>>>> QEMU's Error was patterned after GLib's GError.  Differences include:
>>> [...]
>>>> * Return value conventions
>>>>
>>>>    Common: non-void functions return a distinct error value on failure
>>>>    when such a value can be defined.  Patterns:
>>>>
>>>>    - Functions returning non-null pointers on success return null pointer
>>>>      on failure.
>>>>
>>>>    - Functions returning non-negative integers on success return a
>>>>      negative error code on failure.
>>>>
>>>>    Different: GLib discourages void functions, because these lead to
>>>>    awkward error checking code.  We have tons of them, and tons of
>>>>    awkward error checking code:
>>>>
>>>>      Error *err = NULL;
>>>>      frobnicate(arg, &err);
>>>>      if (err) {
>>>>          ... recover ...
>>>>          error_propagate(errp, err);
>>>>      }
>>>>
>>>>    instead of
>>>>
>>>>      if (!frobnicate(arg, errp))
>>>>          ... recover ...
>>>>      }
>>>>
>>>>    Can also lead to pointless creation of Error objects.
>>>>
>>>>    I consider this a design mistake.  Can we still fix it?  We have more
>>>>    than 2000 void functions taking an Error ** parameter...
>>>>
>>>>    Transforming code that receives and checks for errors with Coccinelle
>>>>    shouldn't be hard.  Transforming code that returns errors seems more
>>>>    difficult.  We need to transform explicit and implicit return to
>>>>    either return true or return false, depending on what we did to the
>>>>    @errp parameter on the way to the return.  Hmm.
>>> [...]
>>>
>>> To figure out what functions with an Error ** parameter return, I used
>>> Coccinelle to find such function definitions and print the return types.
>>> Summary of results:
>>>
>>>     2155 void
>>>      873 signed integer
>>>      494 pointer
>>>      153 bool
>>>       33 unsigned integer
>>>        6 enum
>>>     ---------------------
>>>     3714 total
>>>
>>> I then used Coccinelle to find checked calls of void functions (passing
>>> &error_fatal or &error_abort is not considered "checking" here).  These
>>> calls become simpler if we make the functions return a useful value.  I
>>> found a bit under 600 direct calls, and some 50 indirect calls.
>>>
>>> Most frequent direct calls:
>>>
>>>      127 object_property_set_bool
>>>       27 qemu_opts_absorb_qdict
>>>       16 visit_type_str
>>>       14 visit_type_int
>>>       10 visit_type_uint32
>>>
>>> Let's have a closer look at object_property_set() & friends.  Out of
>>> almost 1000 calls, some 150 are checked.  While I'm sure many of the
>>> unchecked calls can't actually fail, I am concerned some unchecked calls
>>> can.
>>>
>>> If we adopt the convention to return a value that indicates success /
>>> failure, we should consider converting object.h to it sooner rather than
>>> later.
>>>
>>> Please understand these are rough numbers from quick & dirty scripts.
>>
>> FYI, I'm working on converting QemuOpts, QAPI visitors and QOM.  I keep
>> running into bugs.  So far:
>>
>>      [PATCH v2 for-5.1 0/9] qemu-option: Fix corner cases and clean up
>>      [PATCH for-5.1 0/5] qobject: Minor spring cleaning
>>      [PATCH v2 00/14] Miscellaneous error handling fixes
>>      [PATCH 0/4] Subject: [PATCH 0/4] smbus: SPD fixes
>>      [PATCH 0/3] fuzz: Probably there is a better way to do this
>>      [PATCH v2 00/15] qapi: Spring cleaning
>>      [PATCH 00/11] More miscellaneous error handling fixes
>>
>> I got another one coming for QOM and qdev before I can post the
>> conversion.
>>
>> Vladimir, since the conversion will mess with error_propagate(), I'd
>> like to get it in before your auto-propagation work.
>>
> 
> OK, just let me know when to regenerate the series, it's not hard.
> 

Hi! Is all that merged? Should I resend now?

-- 
Best regards,
Vladimir


  reply	other threads:[~2020-05-14  8:02 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-01  9:02 Questionable aspects of QEMU Error's design Markus Armbruster
2020-04-01 12:10 ` Vladimir Sementsov-Ogievskiy
2020-04-01 12:14   ` Vladimir Sementsov-Ogievskiy
2020-04-01 14:01   ` Alex Bennée
2020-04-01 15:49     ` Markus Armbruster
2020-04-01 15:05   ` Markus Armbruster
2020-04-01 12:44 ` Daniel P. Berrangé
2020-04-01 12:47   ` Vladimir Sementsov-Ogievskiy
2020-04-01 15:34   ` Markus Armbruster
2020-04-01 20:15 ` Peter Maydell
2020-04-02  5:31   ` Vladimir Sementsov-Ogievskiy
2020-04-02  9:36     ` BALATON Zoltan
2020-04-02 14:11       ` Vladimir Sementsov-Ogievskiy
2020-04-02 14:34         ` Markus Armbruster
2020-04-02 15:28           ` BALATON Zoltan
2020-04-03  7:09             ` Markus Armbruster
2020-04-02  5:54   ` Markus Armbruster
2020-04-02  6:11     ` Vladimir Sementsov-Ogievskiy
2020-04-02  8:11       ` Peter Maydell
2020-04-02  8:49         ` Daniel P. Berrangé
2020-04-02  8:55         ` Markus Armbruster
2020-04-02 14:35           ` Vladimir Sementsov-Ogievskiy
2020-04-02 15:06             ` Markus Armbruster
2020-04-02 17:17               ` Vladimir Sementsov-Ogievskiy
2020-04-03  7:48                 ` Markus Armbruster
2020-04-02 18:57           ` Paolo Bonzini
2020-04-02  8:47     ` Daniel P. Berrangé
2020-04-02  9:19       ` Alex Bennée
2020-04-02 14:33     ` Eric Blake
2020-04-04  7:59 ` Markus Armbruster
2020-04-04 10:59   ` Markus Armbruster
2020-04-06 14:05     ` Eduardo Habkost
2020-04-06 14:38       ` Eduardo Habkost
2020-04-06 14:10     ` Daniel P. Berrangé
2020-04-27 15:36   ` Markus Armbruster
2020-04-28  5:20     ` Vladimir Sementsov-Ogievskiy
2020-05-14  7:59       ` Vladimir Sementsov-Ogievskiy [this message]
2020-05-15  4:28         ` Markus Armbruster
2020-07-03  7:38           ` Markus Armbruster
2020-07-03  9:07             ` Vladimir Sementsov-Ogievskiy
2020-07-03 12:21   ` Markus Armbruster

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=923ceeeb-1fc8-489e-a32d-4cebfa6eadae@virtuozzo.com \
    --to=vsementsov@virtuozzo.com \
    --cc=armbru@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).