From: Greg KH <gregkh@linuxfoundation.org>
To: Yu Wang <quic_yyuwang@quicinc.com>
Cc: johannes@sipsolutions.net, rafael@kernel.org,
linux-kernel@vger.kernel.org, kernel@quicinc.com
Subject: Re: [PATCH] Devcoredump: fix use-after-free issue when releasing devcd device
Date: Fri, 27 Oct 2023 13:11:51 +0200 [thread overview]
Message-ID: <2023102730-twins-thieving-d04e@gregkh> (raw)
In-Reply-To: <20231027055521.2679-1-quic_yyuwang@quicinc.com>
On Thu, Oct 26, 2023 at 10:55:21PM -0700, Yu Wang wrote:
> With sample code as below, it may hit use-after-free issue when
> releasing devcd device.
>
> struct my_coredump_state {
> struct completion dump_done;
> ...
> };
>
> static void my_coredump_free(void *data)
> {
> struct my_coredump_state *dump_state = data;
> ...
> complete(&dump_state->dump_done);
> }
>
> static void my_dev_release(struct device *dev)
> {
> kfree(dev);
> }
>
> static void my_coredump()
> {
> struct my_coredump_state dump_state;
> struct device *new_device =
> kzalloc(sizeof(*new_device), GFP_KERNEL);
>
> ...
> new_device->release = my_dev_release;
> device_initialize(new_device);
> ...
> device_add(new_device);
> ...
> init_completion(&dump_state.dump_done);
> dev_coredumpm(new_device, NULL, &dump_state, datalen, GFP_KERNEL,
> my_coredump_read, my_coredump_free);
> wait_for_completion(&dump_state.dump_done);
> device_del(new_device);
> put_device(new_device);
> }
Is there any in-kernel user like this? If so, why not fix them up to
not do this?
thanks,
greg k-h
next prev parent reply other threads:[~2023-10-27 11:11 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-27 5:55 [PATCH] Devcoredump: fix use-after-free issue when releasing devcd device Yu Wang
2023-10-27 6:22 ` Mukesh Ojha
2023-10-28 9:20 ` Mukesh Ojha
2023-10-27 6:23 ` Mukesh Ojha
2023-10-27 6:55 ` Mukesh Ojha
2023-10-27 11:11 ` Greg KH [this message]
[not found] ` <22ab53d1ae36d4925732e6e1dc989dc75af126da.camel@sipsolutions.net>
2023-10-31 8:29 ` Yu Wang
2023-10-31 8:59 ` Johannes Berg
2023-10-31 12:46 ` Mukesh Ojha
2023-10-31 13:02 ` Greg KH
2023-10-27 11:12 ` Greg KH
2023-10-31 7:15 ` Yu Wang
2023-10-31 7:39 ` Greg KH
2023-10-31 9:41 ` Yu Wang
2023-10-31 9:50 ` Greg KH
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=2023102730-twins-thieving-d04e@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=johannes@sipsolutions.net \
--cc=kernel@quicinc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=quic_yyuwang@quicinc.com \
--cc=rafael@kernel.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 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.