lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <403186ba-1caa-46f4-8550-0aae375bb2e8@roeck-us.net>
Date: Sat, 16 Dec 2023 07:50:17 -0800
From: Guenter Roeck <linux@...ck-us.net>
To: Mukesh Ojha <quic_mojha@...cinc.com>,
 Nikita Kiryushin <kiryushin@...ud.ru>, Andy Gross <agross@...nel.org>
Cc: Bjorn Andersson <andersson@...nel.org>,
 Konrad Dybcio <konrad.dybcio@...aro.org>, Sebastian Reichel
 <sre@...nel.org>, Stephen Boyd <sboyd@...eaurora.org>,
 Pramod Gurav <pramod.gurav@...rtplayin.com>, linux-arm-msm@...r.kernel.org,
 linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org,
 lvc-project@...uxtesting.org
Subject: Re: [PATCH] power: reset: msm: Process register_restart_handler()
 error

On 12/16/23 00:15, Mukesh Ojha wrote:
> 
> 
> On 11/8/2023 10:57 PM, Nikita Kiryushin wrote:
>> If registering restart handler fails for msm-restart result is not checked.
>> It may be irrelevant now (as stated in comment to register_restart_handler,
>> the function currently always returns zero), but if the behavior changes
>> in the future, an error at registration of handler will be silently skipped.
>>
>> Add return error code and print error message too debug log in case of
>> non-zero result of register_restart_handler.
>>
>> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>>
>> Fixes: 18a702e0de98 ("power: reset: use restart_notifier mechanism for msm-poweroff")
>>
>> Signed-off-by: Nikita Kiryushin <kiryushin@...ud.ru>
>> ---
>>   drivers/power/reset/msm-poweroff.c | 7 ++++++-
>>   1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/power/reset/msm-poweroff.c b/drivers/power/reset/msm-poweroff.c
>> index b9a401bd280b..5877a1ba2778 100644
>> --- a/drivers/power/reset/msm-poweroff.c
>> +++ b/drivers/power/reset/msm-poweroff.c
>> @@ -35,11 +35,16 @@ static void do_msm_poweroff(void)
>>    static int msm_restart_probe(struct platform_device *pdev)
>>   {
>> +    int ret = -EINVAL;
> 
> This does not add up anything., no need to initialize.
> 
> -Mukesh
> 
> 
>>       msm_ps_hold = devm_platform_ioremap_resource(pdev, 0);
>>       if (IS_ERR(msm_ps_hold))
>>           return PTR_ERR(msm_ps_hold);
>>   -    register_restart_handler(&restart_nb);
>> +    ret = register_restart_handler(&restart_nb);

FWIW, checking this return value really do anything good either. The only possible
return value is -EEXIST, which would be returned if the restart handler was already
registered, and that can not really happen. On top of that, _if_ that happened,
the notifier core would dump a warning traceback, making the error message below
unnecessary.

>> +    if (ret) {
>> +        dev_err(&pdev->dev, "unable to register restart handler, %d\n", ret);
>> +        return ret;

On top of all the above, not registering the poweroff andler in the already
impossible case that the restart handler can not be registered seems like an
excessively bad idea to me.

Guenter

>> +    }
>>        pm_power_off = do_msm_poweroff;
>>   -- 2.34.1
>>


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ