public inbox for linux-erofs@ozlabs.org
 help / color / mirror / Atom feed
* [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c
@ 2026-03-16  8:53 lasyaprathipati
  2026-03-18 13:22 ` Utkal Singh
  2026-03-18 14:06 ` Lucas Karpinski
  0 siblings, 2 replies; 5+ messages in thread
From: lasyaprathipati @ 2026-03-16  8:53 UTC (permalink / raw)
  To: linux-erofs, gaoxiang25; +Cc: lasyaprathipati

From: Sri Lasya <lasyaprathipati@gmail.com>

---
 lib/remotes/docker_config.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/remotes/docker_config.c b/lib/remotes/docker_config.c
index b346ee8..6401c1b 100644
--- a/lib/remotes/docker_config.c
+++ b/lib/remotes/docker_config.c
@@ -202,8 +202,10 @@ int erofs_docker_config_lookup(const char *registry,
 		}
 
 		entry = json_object_iter_peek_value(&it);
-                if (!entry)
+                if (!entry) {
+			json_object_iter_next(&it);
 			continue;
+		}
 		if (json_object_object_get_ex(entry, "auth", &auth_field)) {
 			b64 = json_object_get_string(auth_field);
 			if (b64 && *b64) {
-- 
2.43.0



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

* Re: [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c
  2026-03-16  8:53 [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c lasyaprathipati
@ 2026-03-18 13:22 ` Utkal Singh
  2026-03-18 14:06 ` Lucas Karpinski
  1 sibling, 0 replies; 5+ messages in thread
From: Utkal Singh @ 2026-03-18 13:22 UTC (permalink / raw)
  To: lasyaprathipati; +Cc: linux-erofs, gaoxiang25

[-- Attachment #1: Type: text/plain, Size: 1357 bytes --]

Hi Sri Lasya,

Thanks for the v2.

The fix looks correct. In the original code, if
json_object_iter_peek_value() returned NULL (iterator at end),
calling continue without first advancing via json_object_iter_next()
would result in an infinite loop on the same invalid position.

This patch correctly advances the iterator before continuing, which
prevents that scenario.

Thanks ,

 Utkal Singh <singhutkal015@gmail.com>

On Mon, 16 Mar 2026 at 14:23, <lasyaprathipati@gmail.com> wrote:

> From: Sri Lasya <lasyaprathipati@gmail.com>
>
> ---
>  lib/remotes/docker_config.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/lib/remotes/docker_config.c b/lib/remotes/docker_config.c
> index b346ee8..6401c1b 100644
> --- a/lib/remotes/docker_config.c
> +++ b/lib/remotes/docker_config.c
> @@ -202,8 +202,10 @@ int erofs_docker_config_lookup(const char *registry,
>                 }
>
>                 entry = json_object_iter_peek_value(&it);
> -                if (!entry)
> +                if (!entry) {
> +                       json_object_iter_next(&it);
>                         continue;
> +               }
>                 if (json_object_object_get_ex(entry, "auth", &auth_field))
> {
>                         b64 = json_object_get_string(auth_field);
>                         if (b64 && *b64) {
> --
> 2.43.0
>
>
>

[-- Attachment #2: Type: text/html, Size: 2060 bytes --]

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

* Re: [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c
  2026-03-16  8:53 [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c lasyaprathipati
  2026-03-18 13:22 ` Utkal Singh
@ 2026-03-18 14:06 ` Lucas Karpinski
  2026-03-18 14:26   ` Lucas Karpinski
  1 sibling, 1 reply; 5+ messages in thread
From: Lucas Karpinski @ 2026-03-18 14:06 UTC (permalink / raw)
  To: lasyaprathipati, linux-erofs, gaoxiang25

On 2026-03-16 4:53 a.m., lasyaprathipati@gmail.com wrote:
> From: Sri Lasya <lasyaprathipati@gmail.com>
> 
> ---
>  lib/remotes/docker_config.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/lib/remotes/docker_config.c b/lib/remotes/docker_config.c
> index b346ee8..6401c1b 100644
> --- a/lib/remotes/docker_config.c
> +++ b/lib/remotes/docker_config.c
> @@ -202,8 +202,10 @@ int erofs_docker_config_lookup(const char *registry,
>  		}
>  
>  		entry = json_object_iter_peek_value(&it);
> -                if (!entry)
> +                if (!entry) {
> +			json_object_iter_next(&it);
>  			continue;
> +		}
>  		if (json_object_object_get_ex(entry, "auth", &auth_field)) {
>  			b64 = json_object_get_string(auth_field);
>  			if (b64 && *b64) {
There's still a tab issue as Gao mentioned in v1. This looks like a diff
from your v1 to your v2 patch. Similarly, you also dropped your
Signed-Off and are now using a From.

Lastly, you submitted another patch just yesterday that includes this
change in addition to other changes. It is very difficult to follow what
you're doing.



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

* Re: [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c
  2026-03-18 14:06 ` Lucas Karpinski
@ 2026-03-18 14:26   ` Lucas Karpinski
  2026-03-18 14:54     ` Gao Xiang
  0 siblings, 1 reply; 5+ messages in thread
From: Lucas Karpinski @ 2026-03-18 14:26 UTC (permalink / raw)
  To: lasyaprathipati, linux-erofs, gaoxiang25

On 2026-03-18 10:06 a.m., Lucas Karpinski wrote:
> On 2026-03-16 4:53 a.m., lasyaprathipati@gmail.com wrote:
>> From: Sri Lasya <lasyaprathipati@gmail.com>
>>
>> ---
>>  lib/remotes/docker_config.c | 4 +++-
>>  1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/lib/remotes/docker_config.c b/lib/remotes/docker_config.c
>> index b346ee8..6401c1b 100644
>> --- a/lib/remotes/docker_config.c
>> +++ b/lib/remotes/docker_config.c
>> @@ -202,8 +202,10 @@ int erofs_docker_config_lookup(const char *registry,
>>  		}
>>  
>>  		entry = json_object_iter_peek_value(&it);
>> -                if (!entry)
>> +                if (!entry) {
>> +			json_object_iter_next(&it);
>>  			continue;
>> +		}
>>  		if (json_object_object_get_ex(entry, "auth", &auth_field)) {
>>  			b64 = json_object_get_string(auth_field);
>>  			if (b64 && *b64) {
> There's still a tab issue as Gao mentioned in v1. This looks like a diff
> from your v1 to your v2 patch. Similarly, you also dropped your
> Signed-Off and are now using a From.
> 
> Lastly, you submitted another patch just yesterday that includes this
> change in addition to other changes. It is very difficult to follow what
> you're doing.

One correction, no tab issue anymore.


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

* Re: [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c
  2026-03-18 14:26   ` Lucas Karpinski
@ 2026-03-18 14:54     ` Gao Xiang
  0 siblings, 0 replies; 5+ messages in thread
From: Gao Xiang @ 2026-03-18 14:54 UTC (permalink / raw)
  To: Lucas Karpinski; +Cc: lasyaprathipati, linux-erofs


Hi Lucus,

On Wed, Mar 18, 2026 at 10:26:08AM -0400, Lucas Karpinski wrote:
> On 2026-03-18 10:06 a.m., Lucas Karpinski wrote:
> > On 2026-03-16 4:53 a.m., lasyaprathipati@gmail.com wrote:
> >> From: Sri Lasya <lasyaprathipati@gmail.com>
> >>
> >> ---
> >>  lib/remotes/docker_config.c | 4 +++-
> >>  1 file changed, 3 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/lib/remotes/docker_config.c b/lib/remotes/docker_config.c
> >> index b346ee8..6401c1b 100644
> >> --- a/lib/remotes/docker_config.c
> >> +++ b/lib/remotes/docker_config.c
> >> @@ -202,8 +202,10 @@ int erofs_docker_config_lookup(const char *registry,
> >>  		}
> >>  
> >>  		entry = json_object_iter_peek_value(&it);
> >> -                if (!entry)
> >> +                if (!entry) {
> >> +			json_object_iter_next(&it);
> >>  			continue;
> >> +		}
> >>  		if (json_object_object_get_ex(entry, "auth", &auth_field)) {
> >>  			b64 = json_object_get_string(auth_field);
> >>  			if (b64 && *b64) {
> > There's still a tab issue as Gao mentioned in v1. This looks like a diff
> > from your v1 to your v2 patch. Similarly, you also dropped your
> > Signed-Off and are now using a From.
> > 
> > Lastly, you submitted another patch just yesterday that includes this
> > change in addition to other changes. It is very difficult to follow what
> > you're doing.
> 
> One correction, no tab issue anymore.

Thanks for reply and help.

As you may noticed, this year EROFS became a GSOC organization,
so there are many new students sending patches and proposal
these days.

Of course, it's a good thing since we could get more new
developers. But one thing that I'm not quite sure if they are
really humans or AI-assisted bots, taking a simple example:

As you may noticed, this thread Cc an email <gaoxiang25@kernel.org>
which is never existed (my email is xiang@kernel.org or a very
very old gaoxiang25@huawei.com one but it never works for many
years since I changed my job many years ago.

also

Another thread I've seen <yifan.yfzhao@linux.dev>, which is
never existed either.
https://lore.kernel.org/r/CAGSu4WMGStFw7DzePCDW0JKM4DFeia4oj_U1PMDz=kG4hdLEaQ@mail.gmail.com

I'm not sure if they are AI hallucination or not, but they really
warns me that I should take those GSoC proposals more carefully.

Of course, those patches can be still valid, but I need to
review more carefully in case of potential random AI hallucination
or meaningless changes.

Thanks,
Gao Xiang


> 


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

end of thread, other threads:[~2026-03-18 14:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16  8:53 [PATCH v2] erofs-utils: lib: fix potential NULL pointer dereference in docker_config.c lasyaprathipati
2026-03-18 13:22 ` Utkal Singh
2026-03-18 14:06 ` Lucas Karpinski
2026-03-18 14:26   ` Lucas Karpinski
2026-03-18 14:54     ` Gao Xiang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox