From: Takashi Iwai <tiwai@suse.de>
To: Curtis Malainey <cujomalainey@google.com>
Cc: alsa-devel@alsa-project.org,
Curtis Malainey <cujomalainey@chromium.org>,
Stephen Boyd <swboyd@google.com>
Subject: Re: [PATCH RFC 0/6] ALSA: Fix UAF with delayed kobj release
Date: Sun, 13 Aug 2023 10:08:06 +0200 [thread overview]
Message-ID: <87ttt3pdp5.wl-tiwai@suse.de> (raw)
In-Reply-To: <CAOReqxjnWruX20YyUcAjwv8zLourFv4hUKGq9_1FBsXA6Fra9Q@mail.gmail.com>
On Wed, 09 Aug 2023 23:11:45 +0200,
Curtis Malainey wrote:
>
> >
> > And now looking back at kobj code and device code, they do refcount
> > parent objects. Maybe the problem is in our side -- the all devices
> > are created with the original real device as the parent, including the
> > card_dev, while there are some dependencies among children. So, if we
> > build up a proper tree, pci_dev -> card_dev -> ctl_dev, pcm_dev, etc,
> > one of the problems could be solved. It's more or less similar as
> > what I suggested initially (referring card_dev at pcm), while changing
> > the parent would make it implicitly.
>
> Yes I think this would be the long term proper way to go, that way
> parents just put children and remove their reference, then they
> cleanup on their own time making everyone happy. My first patch was a
> very lazy attempt that, if we wanted to do the right thing we would
> obviously have to split the structs and free functions to operate in
> their own release. If you have time feel free to take another swing at
> the patches, otherwise I won't be able to start until next week.
Now looking back at the problem again, I noticed that actually my
previous comment was wrong: as default, the device dependencies aren't
kept at the release time, but it's already cleared at device_del()
call. The device_del() calls kobject_del() and put_device(parent).
So after this moment, both device releases become independent, and
it'll hit a problem if the released object has still some dependency
(such as the case of card vs ctl_dev in our case).
An extra dependency to card_dev as I put in my early patch would "fix"
it. But, there is yet another problem: the call of dev_free call for
snd_device object with SNDRV_DEV_LOWLEVEL can happen before releasing
PCM and other devices when the delayed kobj release is enabled. And,
usually this callback does release the top-level resources, which
might be still accessed during the other releases.
So, if we tie the object resource with each struct device release, we
have a lot of works:
1. Add extra dependencies among device hierarchy
2. Don't use card_dev refcount for managing the sync to device closes,
introduce another kref instead; otherwise card_dev refcount would
never reach to zero
3. Fix race of devres vs card_dev release
4. Move the second half part of snd_card_do_free() to the release
callback of card_dev itself to sync with the top-level release
5. Rewrite all SNDRV_DEV_LOWLEVEL usages to be called via
card->private_free or such;
maybe the only problem is hda_intel.c and hda_tegra.c that need
some work at the disconnection time, and we may introduce another
hook in the card object to replace that
And, at this moment, I feel that it'd be easier to go back to the
early way of device management, i.e. it'll be just like your patch,
managing the device object independently from the rest resources.
(This means also that the way freeing the resource for hwdep and
rawmidi will go back again without the embedded device, too; they
also suffer from the same problem of SNDRV_DEV_LOWLEVEL.)
The change 2 and 3 above can be still applied with your change, which
will fix the remaining devres-vs-card_dev problem.
Once after fixing the current problem, we may work further on other
stuff (e.g. item 5), so that we can switch again to the device-release
model eventually later, too.
Takashi
next prev parent reply other threads:[~2023-08-13 8:10 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-07 13:52 [PATCH RFC 0/6] ALSA: Fix UAF with delayed kobj release Takashi Iwai
2023-08-07 13:52 ` [PATCH RFC 1/6] ALSA: core: Introduced referenced memory allocator Takashi Iwai
2023-08-07 13:52 ` [PATCH RFC 2/6] ALSA: core: Fix potential UAF by delayed kobject release of card_dev Takashi Iwai
2023-08-07 13:52 ` [PATCH 2/6] ALSA: core: Fix race between devres and delayed kobject release for card_dev Takashi Iwai
2023-08-07 13:56 ` Takashi Iwai
2023-08-07 13:52 ` [PATCH RFC 3/6] ALSA: core: Associate memory reference with device initialization Takashi Iwai
2023-08-07 13:52 ` [PATCH RFC 4/6] ALSA: pcm: Release memory with reference Takashi Iwai
2023-08-07 13:52 ` [PATCH RFC 5/6] ALSA: control: Reference card by ctl_dev Takashi Iwai
2023-08-07 13:52 ` [PATCH RFC 6/6] ALSA: compress: Reference card by the device Takashi Iwai
2023-08-07 22:34 ` [PATCH RFC 0/6] ALSA: Fix UAF with delayed kobj release Curtis Malainey
2023-08-08 19:26 ` Curtis Malainey
2023-08-09 8:10 ` Takashi Iwai
2023-08-09 13:27 ` Takashi Iwai
2023-08-09 21:11 ` Curtis Malainey
2023-08-13 8:08 ` Takashi Iwai [this message]
2023-08-14 20:20 ` Curtis Malainey
2023-08-15 16:07 ` Takashi Iwai
2023-08-15 21:32 ` Curtis Malainey
2023-08-16 5:35 ` Takashi Iwai
2023-08-16 5:47 ` Takashi Iwai
2023-08-16 21:46 ` Curtis Malainey
2023-08-17 6:21 ` Takashi Iwai
2023-08-17 17:25 ` Curtis Malainey
2023-08-18 0:41 ` Curtis Malainey
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=87ttt3pdp5.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=cujomalainey@chromium.org \
--cc=cujomalainey@google.com \
--cc=swboyd@google.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.