qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: Max Reitz <mreitz@redhat.com>, Kevin Wolf <kwolf@redhat.com>,
	qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org
Subject: Re: [PATCH 1/2] block: Fix Transaction leak in bdrv_root_attach_child()
Date: Mon, 3 May 2021 15:31:29 +0300	[thread overview]
Message-ID: <b08735a3-d144-a7a6-f00b-cfd739bbb058@virtuozzo.com> (raw)
In-Reply-To: <bf6bfa0f-b7a8-b685-5069-99740b34e4d8@virtuozzo.com>

03.05.2021 15:14, Vladimir Sementsov-Ogievskiy wrote:
> 03.05.2021 14:53, Max Reitz wrote:
>> On 03.05.21 13:51, Vladimir Sementsov-Ogievskiy wrote:
>>> 03.05.2021 14:49, Max Reitz wrote:
>>>> On 03.05.21 13:05, Kevin Wolf wrote:
>>>>> The error path needs to call tran_finalize(), too.
>>>>>
>>>>> Fixes: CID 1452773
>>>>> Fixes: 548a74c0dbc858edd1a7ee3045b5f2fe710bd8b1
>>>>> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
>>>>> ---
>>>>>   block.c | 7 ++++---
>>>>>   1 file changed, 4 insertions(+), 3 deletions(-)
>>>>>
>>>>> diff --git a/block.c b/block.c
>>>>> index 874c22c43e..5c0ced6238 100644
>>>>> --- a/block.c
>>>>> +++ b/block.c
>>>>> @@ -2918,13 +2918,14 @@ BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
>>>>>                                      child_role, perm, shared_perm, opaque,
>>>>>                                      &child, tran, errp);
>>>>>       if (ret < 0) {
>>>>> -        bdrv_unref(child_bs);
>>>>> -        return NULL;
>>>>> +        assert(child == NULL);
>>>>> +        goto out;
>>>>>       }
>>>>>       ret = bdrv_refresh_perms(child_bs, errp);
>>>>> -    tran_finalize(tran, ret);
>>>>> +out:
>>>>> +    tran_finalize(tran, ret);
>>>>>       bdrv_unref(child_bs);
>>>>>       return child;
>>>>
>>>> Looks OK, so:
>>>>
>>>> Reviewed-by: Max Reitz <mreitz@redhat.com>
>>>>
>>>> However, the function’s description says that it will return NULL on error.  But if bdrv_refresh_perms() fails, it will still return a non-NULL child.  Is that right?
>>>>
>>>
>>> No, it's reset to NULL on transaction abort, so code is correct. It's not obvious, and I've added a comment and assertion in my version of this fix "[PATCH 1/6] block: fix leak of tran in bdrv_root_attach_child"
>>
>> The fact that the transaction keeps the pointer to this local variable around is a bit horrifying, but well.
>>
> 
> Yes this looks overcomplicated here. But it's useful for bdrv_set_backing_noperm where we would have to add a separate entry to @tran to rollback bs->backing change. Probably, it's better to refactor this thing. Or at least document that out-pointer argument goes into transaction, and should be valid up to transaction finalization.
> 
> 
> 

documentation done:

   [PATCH 7/6] block: document child argument of bdrv_attach_child_common()

-- 
Best regards,
Vladimir


  reply	other threads:[~2021-05-03 12:33 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-03 11:05 [PATCH 0/2] block: Fix Transaction leaks Kevin Wolf
2021-05-03 11:05 ` [PATCH 1/2] block: Fix Transaction leak in bdrv_root_attach_child() Kevin Wolf
2021-05-03 11:43   ` Vladimir Sementsov-Ogievskiy
2021-05-03 11:49   ` Max Reitz
2021-05-03 11:51     ` Vladimir Sementsov-Ogievskiy
2021-05-03 11:53       ` Max Reitz
2021-05-03 12:14         ` Vladimir Sementsov-Ogievskiy
2021-05-03 12:31           ` Vladimir Sementsov-Ogievskiy [this message]
2021-05-03 11:05 ` [PATCH 2/2] block: Fix Transaction leak in bdrv_reopen_multiple() Kevin Wolf
2021-05-03 11:40   ` Vladimir Sementsov-Ogievskiy
2021-05-03 12:41     ` Kevin Wolf
2021-05-03 13:09       ` Vladimir Sementsov-Ogievskiy
2021-05-03 14:33         ` Kevin Wolf
2021-05-04  6:52           ` Vladimir Sementsov-Ogievskiy
2021-05-04  6:51   ` Vladimir Sementsov-Ogievskiy
2021-05-04  6:56 ` [PATCH 0/2] block: Fix Transaction leaks Vladimir Sementsov-Ogievskiy
2021-05-05 10:25   ` Kevin Wolf

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=b08735a3-d144-a7a6-f00b-cfd739bbb058@virtuozzo.com \
    --to=vsementsov@virtuozzo.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --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).