From: Hans Verkuil <hverkuil+cisco@kernel.org>
To: Sean Young <sean@mess.org>,
linux-media@vger.kernel.org,
Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: stable@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 15/15] media: rc: Fix race condition during rc_register_device()
Date: Tue, 28 Jul 2026 11:35:36 +0200 [thread overview]
Message-ID: <a4f5c93d-e323-4926-97fa-f65ddd40bd51@kernel.org> (raw)
In-Reply-To: <5479a9288629888ea5a9f25b5ac03a7384d1dce3.1785158244.git.sean@mess.org>
On 27/07/2026 15:18, Sean Young wrote:
> The correct sequence for rc core is so:
>
> rc_allocation_device()
>
> /*
> * setup hardware and now calls to ir_raw_event_store etc are
> * permitted, as well as rc_keydown. There is no rc device in sysfs
> * or lirc chardev.
> */
> rc_register_device()
>
> /*
> * After rc_register_device(), the rc device can be used now from lirc
> * chardev, sysfs and IR is now decoded and reported.
> */
>
> rc_unregister_device()
> /*
> * User space can no longer access /dev/lirc or the rc sysfs
> * attributes. They will get -ENODEV if they still have a file
> * descriptor open.
> * Calls to ir_raw_event_handle() etc or rc_keydown() are permitted
> * but they must stop before the call to rc_free_device(), so
> * this is the time to stop the hardware.
> */
> rc_free_device()
>
> This means that during rc_register_device(), we can get calls to
> ir_raw_event_{store,handle,overflow,store_with_filter}. Ensure this
> is done race-free.
>
> Fixes: a3572c34da8d ("V4L/DVB: ir-core: Add logic to decode IR protocols at the IR core")
> Signed-off-by: Sean Young <sean@mess.org>
> Cc: stable@vger.kernel.org
> ---
> drivers/media/rc/rc-ir-raw.c | 20 +-------------------
> drivers/media/rc/rc-main.c | 19 +++++++++++--------
> 2 files changed, 12 insertions(+), 27 deletions(-)
>
> diff --git a/drivers/media/rc/rc-ir-raw.c b/drivers/media/rc/rc-ir-raw.c
> index b32f3cff9401..bebb45ffa971 100644
> --- a/drivers/media/rc/rc-ir-raw.c
> +++ b/drivers/media/rc/rc-ir-raw.c
> @@ -71,9 +71,6 @@ static int ir_raw_event_thread(void *data)
> */
> int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev)
> {
> - if (!dev->raw)
> - return -EINVAL;
> -
> dev_dbg(&dev->dev, "sample: (%05dus %s)\n",
> ev->duration, TO_STR(ev->pulse));
>
> @@ -102,9 +99,6 @@ int ir_raw_event_store_edge(struct rc_dev *dev, bool pulse)
> ktime_t now;
> struct ir_raw_event ev = {};
>
> - if (!dev->raw)
> - return -EINVAL;
> -
> now = ktime_get();
> ev.duration = ktime_to_us(ktime_sub(now, dev->raw->last_event));
> ev.pulse = !pulse;
> @@ -129,9 +123,6 @@ int ir_raw_event_store_with_timeout(struct rc_dev *dev, struct ir_raw_event *ev)
> ktime_t now;
> int rc = 0;
>
> - if (!dev->raw)
> - return -EINVAL;
> -
> now = ktime_get();
>
> spin_lock(&dev->raw->edge_spinlock);
> @@ -166,9 +157,6 @@ EXPORT_SYMBOL_GPL(ir_raw_event_store_with_timeout);
> */
> int ir_raw_event_store_with_filter(struct rc_dev *dev, struct ir_raw_event *ev)
> {
> - if (!dev->raw)
> - return -EINVAL;
> -
> /* Ignore spaces in idle mode */
> if (dev->idle && !ev->pulse)
> return 0;
> @@ -200,9 +188,6 @@ EXPORT_SYMBOL_GPL(ir_raw_event_store_with_filter);
> */
> void ir_raw_event_set_idle(struct rc_dev *dev, bool idle)
> {
> - if (!dev->raw)
> - return;
> -
> dev_dbg(&dev->dev, "%s idle mode\n", idle ? "enter" : "leave");
>
> if (idle) {
> @@ -226,7 +211,7 @@ EXPORT_SYMBOL_GPL(ir_raw_event_set_idle);
> */
> void ir_raw_event_handle(struct rc_dev *dev)
> {
> - if (!dev->raw || !dev->raw->thread)
> + if (!dev->raw->thread)
> return;
>
> wake_up_process(dev->raw->thread);
> @@ -612,9 +597,6 @@ EXPORT_SYMBOL(ir_raw_encode_carrier);
> */
> int ir_raw_event_prepare(struct rc_dev *dev)
> {
> - if (!dev)
> - return -EINVAL;
> -
> dev->raw = kzalloc_obj(*dev->raw);
> if (!dev->raw)
> return -ENOMEM;
> diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c
> index dda3479ea3ad..d93e98189c1a 100644
> --- a/drivers/media/rc/rc-main.c
> +++ b/drivers/media/rc/rc-main.c
> @@ -1701,14 +1701,24 @@ static const struct device_type rc_dev_type = {
> struct rc_dev *rc_allocate_device(enum rc_driver_type type)
> {
> struct rc_dev *dev;
> + int ret;
>
> dev = kzalloc_obj(*dev);
> if (!dev)
> return NULL;
>
> + if (type == RC_DRIVER_IR_RAW) {
> + ret = ir_raw_event_prepare(dev);
> + if (ret < 0) {
> + kfree(dev);
> + return NULL;
> + }
> + }
> +
> if (type != RC_DRIVER_IR_RAW_TX) {
> dev->input_dev = input_allocate_device();
> if (!dev->input_dev) {
> + ir_raw_event_free(dev);
> kfree(dev);
> return NULL;
> }
> @@ -1724,6 +1734,7 @@ struct rc_dev *rc_allocate_device(enum rc_driver_type type)
> spin_lock_init(&dev->rc_map.lock);
> spin_lock_init(&dev->keylock);
> }
> +
> mutex_init(&dev->lock);
>
> dev->dev.type = &rc_dev_type;
> @@ -1917,12 +1928,6 @@ int rc_register_device(struct rc_dev *dev)
> dev->sysfs_groups[attr++] = &rc_dev_wakeup_filter_attr_grp;
> dev->sysfs_groups[attr++] = NULL;
>
> - if (dev->driver_type == RC_DRIVER_IR_RAW) {
> - rc = ir_raw_event_prepare(dev);
> - if (rc < 0)
> - goto out_minor;
> - }
> -
> if (dev->driver_type != RC_DRIVER_IR_RAW_TX) {
> rc = rc_prepare_rx_device(dev);
> if (rc)
I don't see what the race condition is you are trying to solve. AFAICT the sysfs
files aren't created until the device_add() function that is right after this line.
I'm probably missing something, but that would mean that the commit log needs to
be improved.
Regards,
Hans
> @@ -1979,8 +1984,6 @@ int rc_register_device(struct rc_dev *dev)
> out_rx_free:
> ir_free_table(&dev->rc_map);
> out_raw:
> - ir_raw_event_free(dev);
> -out_minor:
> ida_free(&rc_ida, minor);
> return rc;
> }
prev parent reply other threads:[~2026-07-28 9:35 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-27 13:18 [PATCH v4 00/15] Fix leaks in rc core Sean Young
2026-07-27 13:18 ` [PATCH v4 01/15] media: streamzap: Add missing rc_unregister_device() Sean Young
2026-07-27 13:18 ` [PATCH v4 02/15] media: redrat3: Ensure rc device is freed if enable_detector() fails Sean Young
2026-07-27 13:18 ` [PATCH v4 03/15] media: redrat3: Ensure we don't read beyond the end of the packet Sean Young
2026-07-27 13:18 ` [PATCH v4 04/15] media: redrat3: Ensure all urbs are suspended Sean Young
2026-07-27 13:18 ` [PATCH v4 05/15] media: redrat3: Error path leaves device in transmitting state Sean Young
2026-07-27 15:57 ` Markus Elfring
2026-07-28 8:13 ` Sean Young
2026-07-28 9:08 ` Markus Elfring
2026-07-27 13:18 ` [PATCH v4 06/15] media: sunxi-cir: Ensure no more interrupts can occur before free Sean Young
2026-07-27 13:18 ` [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind Sean Young
2026-07-27 13:18 ` [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called " Sean Young
2026-07-28 8:30 ` Neil Armstrong
2026-07-27 13:18 ` [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated Sean Young
2026-07-28 8:30 ` Neil Armstrong
2026-07-27 13:18 ` [PATCH v4 10/15] media: ir-hix5hd2: Ensure rdev is setup before interrupts are enabled Sean Young
2026-07-27 13:18 ` [PATCH v4 11/15] media: rc: Use after free in ir_raw_event_handle() Sean Young
2026-07-28 9:21 ` Hans Verkuil
2026-07-27 13:18 ` [PATCH v4 12/15] media: rc: Fix use after free in bpf progs Sean Young
2026-07-27 13:18 ` [PATCH v4 13/15] media: cx88: Specify rc type at rc_allocate_type() Sean Young
2026-07-27 13:18 ` [PATCH v4 14/15] media: saa7134: " Sean Young
2026-07-27 13:18 ` [PATCH v4 15/15] media: rc: Fix race condition during rc_register_device() Sean Young
2026-07-28 9:35 ` Hans Verkuil [this message]
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=a4f5c93d-e323-4926-97fa-f65ddd40bd51@kernel.org \
--to=hverkuil+cisco@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=sean@mess.org \
--cc=stable@vger.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox