All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page
@ 2022-11-10  2:58 Miaoqian Lin
  2022-11-10  4:09 ` Luis Chamberlain
  2022-11-10 18:43 ` Dmitry Torokhov
  0 siblings, 2 replies; 6+ messages in thread
From: Miaoqian Lin @ 2022-11-10  2:58 UTC (permalink / raw)
  To: Luis Chamberlain, Dmitry Torokhov, linux-modules, linux-kernel; +Cc: linmq006

The module_get_next_page() function return error pointers on error
instead of NULL.
Use IS_ERR() to check the return value to fix this.

Fixes: b1ae6dc41eaa ("module: add in-kernel support for decompressing")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
---
 kernel/module/decompress.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/kernel/module/decompress.c b/kernel/module/decompress.c
index c033572d83f0..720e719253cd 100644
--- a/kernel/module/decompress.c
+++ b/kernel/module/decompress.c
@@ -114,8 +114,8 @@ static ssize_t module_gzip_decompress(struct load_info *info,
 	do {
 		struct page *page = module_get_next_page(info);
 
-		if (!page) {
-			retval = -ENOMEM;
+		if (IS_ERR(page)) {
+			retval = PTR_ERR(page);
 			goto out_inflate_end;
 		}
 
@@ -173,8 +173,8 @@ static ssize_t module_xz_decompress(struct load_info *info,
 	do {
 		struct page *page = module_get_next_page(info);
 
-		if (!page) {
-			retval = -ENOMEM;
+		if (IS_ERR(page)) {
+			retval = PTR_ERR(page);
 			goto out;
 		}
 
-- 
2.37.3.671.ge2130fe6da78.dirty


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page
  2022-11-10  2:58 [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page Miaoqian Lin
@ 2022-11-10  4:09 ` Luis Chamberlain
  2022-11-10  4:18   ` Miaoqian Lin
  2022-11-10 18:43 ` Dmitry Torokhov
  1 sibling, 1 reply; 6+ messages in thread
From: Luis Chamberlain @ 2022-11-10  4:09 UTC (permalink / raw)
  To: Miaoqian Lin; +Cc: Dmitry Torokhov, linux-modules, linux-kernel

On Thu, Nov 10, 2022 at 06:58:34AM +0400, Miaoqian Lin wrote:
> The module_get_next_page() function return error pointers on error
> instead of NULL.
> Use IS_ERR() to check the return value to fix this.
> 
> Fixes: b1ae6dc41eaa ("module: add in-kernel support for decompressing")
> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
> ---

Thanks queued up. How did you find out? Just code inspection? I see
chances are low of this triggering, but just curious how you found it.

  Luis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page
  2022-11-10  4:09 ` Luis Chamberlain
@ 2022-11-10  4:18   ` Miaoqian Lin
  2022-11-10  6:05     ` Luis Chamberlain
  0 siblings, 1 reply; 6+ messages in thread
From: Miaoqian Lin @ 2022-11-10  4:18 UTC (permalink / raw)
  To: Luis Chamberlain; +Cc: Dmitry Torokhov, linux-modules, linux-kernel

Hi,

On 2022/11/10 12:09, Luis Chamberlain wrote:
> On Thu, Nov 10, 2022 at 06:58:34AM +0400, Miaoqian Lin wrote:
>> The module_get_next_page() function return error pointers on error
>> instead of NULL.
>> Use IS_ERR() to check the return value to fix this.
>>
>> Fixes: b1ae6dc41eaa ("module: add in-kernel support for decompressing")
>> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
>> ---
> Thanks queued up. How did you find out? Just code inspection? I see
> chances are low of this triggering, but just curious how you found it.
I found this by static analysis, specifically, I obtained functions that return error pointers and

inspected whether their callers followed the correct specification.

>   Luis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page
  2022-11-10  4:18   ` Miaoqian Lin
@ 2022-11-10  6:05     ` Luis Chamberlain
  2022-11-10  6:26       ` Miaoqian Lin
  0 siblings, 1 reply; 6+ messages in thread
From: Luis Chamberlain @ 2022-11-10  6:05 UTC (permalink / raw)
  To: Miaoqian Lin; +Cc: Dmitry Torokhov, linux-modules, linux-kernel

On Thu, Nov 10, 2022 at 12:18:50PM +0800, Miaoqian Lin wrote:
> Hi,
> 
> On 2022/11/10 12:09, Luis Chamberlain wrote:
> > On Thu, Nov 10, 2022 at 06:58:34AM +0400, Miaoqian Lin wrote:
> >> The module_get_next_page() function return error pointers on error
> >> instead of NULL.
> >> Use IS_ERR() to check the return value to fix this.
> >>
> >> Fixes: b1ae6dc41eaa ("module: add in-kernel support for decompressing")
> >> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
> >> ---
> > Thanks queued up. How did you find out? Just code inspection? I see
> > chances are low of this triggering, but just curious how you found it.
> I found this by static analysis, specifically, I obtained functions that return error pointers and
> inspected whether their callers followed the correct specification.

Which one did you use?

  Luis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page
  2022-11-10  6:05     ` Luis Chamberlain
@ 2022-11-10  6:26       ` Miaoqian Lin
  0 siblings, 0 replies; 6+ messages in thread
From: Miaoqian Lin @ 2022-11-10  6:26 UTC (permalink / raw)
  To: Luis Chamberlain; +Cc: Dmitry Torokhov, linux-modules, linux-kernel


On 2022/11/10 14:05, Luis Chamberlain wrote:
> On Thu, Nov 10, 2022 at 12:18:50PM +0800, Miaoqian Lin wrote:
>> Hi,
>>
>> On 2022/11/10 12:09, Luis Chamberlain wrote:
>>> On Thu, Nov 10, 2022 at 06:58:34AM +0400, Miaoqian Lin wrote:
>>>> The module_get_next_page() function return error pointers on error
>>>> instead of NULL.
>>>> Use IS_ERR() to check the return value to fix this.
>>>>
>>>> Fixes: b1ae6dc41eaa ("module: add in-kernel support for decompressing")
>>>> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
>>>> ---
>>> Thanks queued up. How did you find out? Just code inspection? I see
>>> chances are low of this triggering, but just curious how you found it.
>> I found this by static analysis, specifically, I obtained functions that return error pointers and
>> inspected whether their callers followed the correct specification.
> Which one did you use?
I wrote custom checker based on the weggli tool (https://github.com/googleprojectzero/weggli).
>   Luis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page
  2022-11-10  2:58 [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page Miaoqian Lin
  2022-11-10  4:09 ` Luis Chamberlain
@ 2022-11-10 18:43 ` Dmitry Torokhov
  1 sibling, 0 replies; 6+ messages in thread
From: Dmitry Torokhov @ 2022-11-10 18:43 UTC (permalink / raw)
  To: Miaoqian Lin; +Cc: Luis Chamberlain, linux-modules, linux-kernel

On Thu, Nov 10, 2022 at 06:58:34AM +0400, Miaoqian Lin wrote:
> The module_get_next_page() function return error pointers on error
> instead of NULL.
> Use IS_ERR() to check the return value to fix this.
> 
> Fixes: b1ae6dc41eaa ("module: add in-kernel support for decompressing")
> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>

Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

Thank you for spotting this.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-11-10 18:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-10  2:58 [PATCH] module: Fix NULL vs IS_ERR checking for module_get_next_page Miaoqian Lin
2022-11-10  4:09 ` Luis Chamberlain
2022-11-10  4:18   ` Miaoqian Lin
2022-11-10  6:05     ` Luis Chamberlain
2022-11-10  6:26       ` Miaoqian Lin
2022-11-10 18:43 ` Dmitry Torokhov

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.