From: Alex Elder <elder@ieee.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Rui Miguel Silva <rui.silva@linaro.org>
Cc: greybus-dev@lists.linaro.org,
Mikhail Lobanov <m.lobanov@rosalinux.ru>,
linux-staging@lists.linux.dev,
Rui Miguel Silva <rmfrfs@gmail.com>
Subject: Re: [PATCH] greybus: lights: check return of get_channel_from_mode
Date: Mon, 25 Mar 2024 13:31:34 -0500 [thread overview]
Message-ID: <9fa87c55-42e2-4449-936f-4835b267d22f@ieee.org> (raw)
In-Reply-To: <2024032543-village-reference-960d@gregkh>
On 3/25/24 12:25 PM, Greg Kroah-Hartman wrote:
> On Thu, Mar 07, 2024 at 09:48:13AM +0000, Rui Miguel Silva wrote:
>> If channel for the given node is not found we return null from
>> get_channel_from_mode. Make sure we validate the return pointer
>> before using it in two of the missing places.
>>
>> This was originally reported in [0]:
>> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>>
>> [0] https://lore.kernel.org/all/20240301190425.120605-1-m.lobanov@rosalinux.ru
>>
>> Fixes: 2870b52bae4c ("greybus: lights: add lights implementation")
>> Reported-by: Mikhail Lobanov <m.lobanov@rosalinux.ru>
>> Suggested-by: Mikhail Lobanov <m.lobanov@rosalinux.ru>
>> Suggested-by: Alex Elder <elder@ieee.org>
>> Signed-off-by: Rui Miguel Silva <rmfrfs@gmail.com>
>> ---
>> drivers/staging/greybus/light.c | 6 +++++-
>> 1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/staging/greybus/light.c b/drivers/staging/greybus/light.c
>> index c6bd86a5335a..6f10b9e2c053 100644
>> --- a/drivers/staging/greybus/light.c
>> +++ b/drivers/staging/greybus/light.c
>> @@ -147,6 +147,9 @@ static int __gb_lights_flash_brightness_set(struct gb_channel *channel)
>> channel = get_channel_from_mode(channel->light,
>> GB_CHANNEL_MODE_TORCH);
>>
>> + if (!channel)
>> + return -EINVAL;
>> +
>> /* For not flash we need to convert brightness to intensity */
>> intensity = channel->intensity_uA.min +
>> (channel->intensity_uA.step * channel->led->brightness);
>> @@ -549,7 +552,8 @@ static int gb_lights_light_v4l2_register(struct gb_light *light)
>> }
>>
>> channel_flash = get_channel_from_mode(light, GB_CHANNEL_MODE_FLASH);
>> - WARN_ON(!channel_flash);
>> + if (WARN_ON(!channel_flash))
>> + return -EINVAL;
>
> We should NOT crash machines just because of this, the WARN_ON() should
> be removed and just properly handle the error please.
Greg, WARN_ON() doesn't normally crash the machine. That said,
it's reasonable to remove the WARN_ON().
I think the purpose of the warning is that this is a case that
should "never happen," so if it does, it's making some noise.
The only caller is gb_lights_light_register(), and it checks
for an error and does "properly handle" the\ error (assuming
any error meaning "light has no flash" is correct).
Rui, please weigh in.
-Alex
>
> thanks,
>
> greg k-h
next prev parent reply other threads:[~2024-03-25 18:31 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-07 9:48 [PATCH] greybus: lights: check return of get_channel_from_mode Rui Miguel Silva
2024-03-25 17:25 ` Greg Kroah-Hartman
2024-03-25 18:31 ` Alex Elder [this message]
2024-03-25 18:50 ` Greg Kroah-Hartman
2024-03-25 18:55 ` Alex Elder
2024-03-25 19:08 ` Rui Miguel Silva
2024-03-25 19:04 ` Rui Miguel Silva
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=9fa87c55-42e2-4449-936f-4835b267d22f@ieee.org \
--to=elder@ieee.org \
--cc=gregkh@linuxfoundation.org \
--cc=greybus-dev@lists.linaro.org \
--cc=linux-staging@lists.linux.dev \
--cc=m.lobanov@rosalinux.ru \
--cc=rmfrfs@gmail.com \
--cc=rui.silva@linaro.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