All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs
@ 2022-12-28 19:42 Suren Baghdasaryan
  2023-01-02 12:00 ` David Hildenbrand
  0 siblings, 1 reply; 6+ messages in thread
From: Suren Baghdasaryan @ 2022-12-28 19:42 UTC (permalink / raw)
  To: akpm
  Cc: hughd, hannes, david, vincent.whitchurch, seanjc, rppt,
	shy828301, pasha.tatashin, paul.gortmaker, peterx, vbabka,
	Liam.Howlett, ccross, willy, arnd, cgel.zte, yuzhao, bagasdotme,
	suleiman, steven, heftig, cuigaosheng1, kirill, linux-kernel,
	linux-fsdevel, linux-mm, surenb, syzbot+91edf9178386a07d06a7

free_anon_vma_name() is missing a check for anonymous shmem VMA which
leads to a memory leak due to refcount not being dropped. Fix this by
adding the missing check.

Fixes: d09e8ca6cb93 ("mm: anonymous shared memory naming")
Reported-by: syzbot+91edf9178386a07d06a7@syzkaller.appspotmail.com
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
---
 include/linux/mm_inline.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h
index e8ed225d8f7c..d650ca2c5d29 100644
--- a/include/linux/mm_inline.h
+++ b/include/linux/mm_inline.h
@@ -413,7 +413,7 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
 	 * Not using anon_vma_name because it generates a warning if mmap_lock
 	 * is not held, which might be the case here.
 	 */
-	if (!vma->vm_file)
+	if (!vma->vm_file || vma_is_anon_shmem(vma))
 		anon_vma_name_put(vma->anon_name);
 }
 
-- 
2.39.0.314.g84b9a713c41-goog


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

* Re: [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs
  2022-12-28 19:42 [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs Suren Baghdasaryan
@ 2023-01-02 12:00 ` David Hildenbrand
  2023-01-03 19:53   ` Suren Baghdasaryan
  0 siblings, 1 reply; 6+ messages in thread
From: David Hildenbrand @ 2023-01-02 12:00 UTC (permalink / raw)
  To: Suren Baghdasaryan, akpm
  Cc: hughd, hannes, vincent.whitchurch, seanjc, rppt, shy828301,
	pasha.tatashin, paul.gortmaker, peterx, vbabka, Liam.Howlett,
	ccross, willy, arnd, cgel.zte, yuzhao, bagasdotme, suleiman,
	steven, heftig, cuigaosheng1, kirill, linux-kernel,
	linux-fsdevel, linux-mm, syzbot+91edf9178386a07d06a7

On 28.12.22 20:42, Suren Baghdasaryan wrote:
> free_anon_vma_name() is missing a check for anonymous shmem VMA which
> leads to a memory leak due to refcount not being dropped. Fix this by
> adding the missing check.
> 
> Fixes: d09e8ca6cb93 ("mm: anonymous shared memory naming")
> Reported-by: syzbot+91edf9178386a07d06a7@syzkaller.appspotmail.com
> Signed-off-by: Suren Baghdasaryan <surenb@google.com>
> ---
>   include/linux/mm_inline.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h
> index e8ed225d8f7c..d650ca2c5d29 100644
> --- a/include/linux/mm_inline.h
> +++ b/include/linux/mm_inline.h
> @@ -413,7 +413,7 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
>   	 * Not using anon_vma_name because it generates a warning if mmap_lock
>   	 * is not held, which might be the case here.
>   	 */
> -	if (!vma->vm_file)
> +	if (!vma->vm_file || vma_is_anon_shmem(vma))
>   		anon_vma_name_put(vma->anon_name);

Wouldn't it be me more consistent to check for "vma->anon_name"?

That's what dup_anon_vma_name() checks. And it's safe now because 
anon_name is no longer overloaded in vm_area_struct.

-- 
Thanks,

David / dhildenb


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

* Re: [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs
  2023-01-02 12:00 ` David Hildenbrand
@ 2023-01-03 19:53   ` Suren Baghdasaryan
  2023-01-04  9:04     ` David Hildenbrand
  0 siblings, 1 reply; 6+ messages in thread
From: Suren Baghdasaryan @ 2023-01-03 19:53 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: akpm, hughd, hannes, vincent.whitchurch, seanjc, rppt, shy828301,
	pasha.tatashin, paul.gortmaker, peterx, vbabka, Liam.Howlett,
	ccross, willy, arnd, cgel.zte, yuzhao, bagasdotme, suleiman,
	steven, heftig, cuigaosheng1, kirill, linux-kernel,
	linux-fsdevel, linux-mm, syzbot+91edf9178386a07d06a7

On Mon, Jan 2, 2023 at 4:00 AM David Hildenbrand <david@redhat.com> wrote:
>
> On 28.12.22 20:42, Suren Baghdasaryan wrote:
> > free_anon_vma_name() is missing a check for anonymous shmem VMA which
> > leads to a memory leak due to refcount not being dropped. Fix this by
> > adding the missing check.
> >
> > Fixes: d09e8ca6cb93 ("mm: anonymous shared memory naming")
> > Reported-by: syzbot+91edf9178386a07d06a7@syzkaller.appspotmail.com
> > Signed-off-by: Suren Baghdasaryan <surenb@google.com>
> > ---
> >   include/linux/mm_inline.h | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h
> > index e8ed225d8f7c..d650ca2c5d29 100644
> > --- a/include/linux/mm_inline.h
> > +++ b/include/linux/mm_inline.h
> > @@ -413,7 +413,7 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
> >        * Not using anon_vma_name because it generates a warning if mmap_lock
> >        * is not held, which might be the case here.
> >        */
> > -     if (!vma->vm_file)
> > +     if (!vma->vm_file || vma_is_anon_shmem(vma))
> >               anon_vma_name_put(vma->anon_name);
>
> Wouldn't it be me more consistent to check for "vma->anon_name"?
>
> That's what dup_anon_vma_name() checks. And it's safe now because
> anon_name is no longer overloaded in vm_area_struct.

Thanks for the suggestion, David. Yes, with the recent change that
does not overload anon_name, checking for "vma->anon_name" would be
simpler. I think we can also drop anon_vma_name() function now
(https://elixir.bootlin.com/linux/v6.2-rc2/source/mm/madvise.c#L94)
since vma->anon_name does not depend on vma->vm_file anymore, remove
the last part of this comment:
https://elixir.bootlin.com/linux/v6.2-rc2/source/include/linux/mm_types.h#L584
and use vma->anon_name directly going forward. If all that sounds
good, I'll post a separate patch implementing all these changes.
So, for this patch I would suggest keeping it as is because
functionally it is correct and will change this check along with other
corrections I mentioned above in a separate patch. Does that sound
good?


-     if (!vma->vm_file)
+     if (!vma->vm_file || vma_is_anon_shmem(vma))

>
> --
> Thanks,
>
> David / dhildenb
>

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

* Re: [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs
  2023-01-03 19:53   ` Suren Baghdasaryan
@ 2023-01-04  9:04     ` David Hildenbrand
  2023-01-04 18:24       ` Suren Baghdasaryan
  0 siblings, 1 reply; 6+ messages in thread
From: David Hildenbrand @ 2023-01-04  9:04 UTC (permalink / raw)
  To: Suren Baghdasaryan
  Cc: akpm, hughd, hannes, vincent.whitchurch, seanjc, rppt, shy828301,
	pasha.tatashin, paul.gortmaker, peterx, vbabka, Liam.Howlett,
	ccross, willy, arnd, cgel.zte, yuzhao, bagasdotme, suleiman,
	steven, heftig, cuigaosheng1, kirill, linux-kernel,
	linux-fsdevel, linux-mm, syzbot+91edf9178386a07d06a7

On 03.01.23 20:53, Suren Baghdasaryan wrote:
> On Mon, Jan 2, 2023 at 4:00 AM David Hildenbrand <david@redhat.com> wrote:
>>
>> On 28.12.22 20:42, Suren Baghdasaryan wrote:
>>> free_anon_vma_name() is missing a check for anonymous shmem VMA which
>>> leads to a memory leak due to refcount not being dropped. Fix this by
>>> adding the missing check.
>>>
>>> Fixes: d09e8ca6cb93 ("mm: anonymous shared memory naming")
>>> Reported-by: syzbot+91edf9178386a07d06a7@syzkaller.appspotmail.com
>>> Signed-off-by: Suren Baghdasaryan <surenb@google.com>
>>> ---
>>>    include/linux/mm_inline.h | 2 +-
>>>    1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h
>>> index e8ed225d8f7c..d650ca2c5d29 100644
>>> --- a/include/linux/mm_inline.h
>>> +++ b/include/linux/mm_inline.h
>>> @@ -413,7 +413,7 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
>>>         * Not using anon_vma_name because it generates a warning if mmap_lock
>>>         * is not held, which might be the case here.
>>>         */
>>> -     if (!vma->vm_file)
>>> +     if (!vma->vm_file || vma_is_anon_shmem(vma))
>>>                anon_vma_name_put(vma->anon_name);
>>
>> Wouldn't it be me more consistent to check for "vma->anon_name"?
>>
>> That's what dup_anon_vma_name() checks. And it's safe now because
>> anon_name is no longer overloaded in vm_area_struct.
> 
> Thanks for the suggestion, David. Yes, with the recent change that
> does not overload anon_name, checking for "vma->anon_name" would be
> simpler. I think we can also drop anon_vma_name() function now
> (https://elixir.bootlin.com/linux/v6.2-rc2/source/mm/madvise.c#L94)
> since vma->anon_name does not depend on vma->vm_file anymore, remove
> the last part of this comment:
> https://elixir.bootlin.com/linux/v6.2-rc2/source/include/linux/mm_types.h#L584
> and use vma->anon_name directly going forward. If all that sounds
> good, I'll post a separate patch implementing all these changes.
> So, for this patch I would suggest keeping it as is because
> functionally it is correct and will change this check along with other
> corrections I mentioned above in a separate patch. Does that sound
> good?

Works for me.

Acked-by: David Hildenbrand <david@redhat.com>

for this one, as it fixes the issue.

-- 
Thanks,

David / dhildenb


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

* Re: [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs
  2023-01-04  9:04     ` David Hildenbrand
@ 2023-01-04 18:24       ` Suren Baghdasaryan
  2023-01-05  0:06         ` Suren Baghdasaryan
  0 siblings, 1 reply; 6+ messages in thread
From: Suren Baghdasaryan @ 2023-01-04 18:24 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: akpm, hughd, hannes, vincent.whitchurch, seanjc, rppt, shy828301,
	pasha.tatashin, paul.gortmaker, peterx, vbabka, Liam.Howlett,
	ccross, willy, arnd, cgel.zte, yuzhao, bagasdotme, suleiman,
	steven, heftig, cuigaosheng1, kirill, linux-kernel,
	linux-fsdevel, linux-mm, syzbot+91edf9178386a07d06a7

On Wed, Jan 4, 2023 at 1:04 AM David Hildenbrand <david@redhat.com> wrote:
>
> On 03.01.23 20:53, Suren Baghdasaryan wrote:
> > On Mon, Jan 2, 2023 at 4:00 AM David Hildenbrand <david@redhat.com> wrote:
> >>
> >> On 28.12.22 20:42, Suren Baghdasaryan wrote:
> >>> free_anon_vma_name() is missing a check for anonymous shmem VMA which
> >>> leads to a memory leak due to refcount not being dropped. Fix this by
> >>> adding the missing check.
> >>>
> >>> Fixes: d09e8ca6cb93 ("mm: anonymous shared memory naming")
> >>> Reported-by: syzbot+91edf9178386a07d06a7@syzkaller.appspotmail.com
> >>> Signed-off-by: Suren Baghdasaryan <surenb@google.com>
> >>> ---
> >>>    include/linux/mm_inline.h | 2 +-
> >>>    1 file changed, 1 insertion(+), 1 deletion(-)
> >>>
> >>> diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h
> >>> index e8ed225d8f7c..d650ca2c5d29 100644
> >>> --- a/include/linux/mm_inline.h
> >>> +++ b/include/linux/mm_inline.h
> >>> @@ -413,7 +413,7 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
> >>>         * Not using anon_vma_name because it generates a warning if mmap_lock
> >>>         * is not held, which might be the case here.
> >>>         */
> >>> -     if (!vma->vm_file)
> >>> +     if (!vma->vm_file || vma_is_anon_shmem(vma))
> >>>                anon_vma_name_put(vma->anon_name);
> >>
> >> Wouldn't it be me more consistent to check for "vma->anon_name"?
> >>
> >> That's what dup_anon_vma_name() checks. And it's safe now because
> >> anon_name is no longer overloaded in vm_area_struct.
> >
> > Thanks for the suggestion, David. Yes, with the recent change that
> > does not overload anon_name, checking for "vma->anon_name" would be
> > simpler. I think we can also drop anon_vma_name() function now
> > (https://elixir.bootlin.com/linux/v6.2-rc2/source/mm/madvise.c#L94)
> > since vma->anon_name does not depend on vma->vm_file anymore, remove
> > the last part of this comment:
> > https://elixir.bootlin.com/linux/v6.2-rc2/source/include/linux/mm_types.h#L584
> > and use vma->anon_name directly going forward. If all that sounds
> > good, I'll post a separate patch implementing all these changes.
> > So, for this patch I would suggest keeping it as is because
> > functionally it is correct and will change this check along with other
> > corrections I mentioned above in a separate patch. Does that sound
> > good?
>
> Works for me.
>
> Acked-by: David Hildenbrand <david@redhat.com>

Thank you! Will post the followup cleanup patch shorly.

>
> for this one, as it fixes the issue.
>
> --
> Thanks,
>
> David / dhildenb
>

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

* Re: [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs
  2023-01-04 18:24       ` Suren Baghdasaryan
@ 2023-01-05  0:06         ` Suren Baghdasaryan
  0 siblings, 0 replies; 6+ messages in thread
From: Suren Baghdasaryan @ 2023-01-05  0:06 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: akpm, hughd, hannes, vincent.whitchurch, seanjc, rppt, shy828301,
	pasha.tatashin, paul.gortmaker, peterx, vbabka, Liam.Howlett,
	ccross, willy, arnd, cgel.zte, yuzhao, bagasdotme, suleiman,
	steven, heftig, cuigaosheng1, kirill, linux-kernel,
	linux-fsdevel, linux-mm, syzbot+91edf9178386a07d06a7

On Wed, Jan 4, 2023 at 10:24 AM Suren Baghdasaryan <surenb@google.com> wrote:
>
> On Wed, Jan 4, 2023 at 1:04 AM David Hildenbrand <david@redhat.com> wrote:
> >
> > On 03.01.23 20:53, Suren Baghdasaryan wrote:
> > > On Mon, Jan 2, 2023 at 4:00 AM David Hildenbrand <david@redhat.com> wrote:
> > >>
> > >> On 28.12.22 20:42, Suren Baghdasaryan wrote:
> > >>> free_anon_vma_name() is missing a check for anonymous shmem VMA which
> > >>> leads to a memory leak due to refcount not being dropped. Fix this by
> > >>> adding the missing check.
> > >>>
> > >>> Fixes: d09e8ca6cb93 ("mm: anonymous shared memory naming")
> > >>> Reported-by: syzbot+91edf9178386a07d06a7@syzkaller.appspotmail.com
> > >>> Signed-off-by: Suren Baghdasaryan <surenb@google.com>
> > >>> ---
> > >>>    include/linux/mm_inline.h | 2 +-
> > >>>    1 file changed, 1 insertion(+), 1 deletion(-)
> > >>>
> > >>> diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h
> > >>> index e8ed225d8f7c..d650ca2c5d29 100644
> > >>> --- a/include/linux/mm_inline.h
> > >>> +++ b/include/linux/mm_inline.h
> > >>> @@ -413,7 +413,7 @@ static inline void free_anon_vma_name(struct vm_area_struct *vma)
> > >>>         * Not using anon_vma_name because it generates a warning if mmap_lock
> > >>>         * is not held, which might be the case here.
> > >>>         */
> > >>> -     if (!vma->vm_file)
> > >>> +     if (!vma->vm_file || vma_is_anon_shmem(vma))
> > >>>                anon_vma_name_put(vma->anon_name);
> > >>
> > >> Wouldn't it be me more consistent to check for "vma->anon_name"?
> > >>
> > >> That's what dup_anon_vma_name() checks. And it's safe now because
> > >> anon_name is no longer overloaded in vm_area_struct.
> > >
> > > Thanks for the suggestion, David. Yes, with the recent change that
> > > does not overload anon_name, checking for "vma->anon_name" would be
> > > simpler. I think we can also drop anon_vma_name() function now
> > > (https://elixir.bootlin.com/linux/v6.2-rc2/source/mm/madvise.c#L94)
> > > since vma->anon_name does not depend on vma->vm_file anymore, remove
> > > the last part of this comment:
> > > https://elixir.bootlin.com/linux/v6.2-rc2/source/include/linux/mm_types.h#L584
> > > and use vma->anon_name directly going forward. If all that sounds
> > > good, I'll post a separate patch implementing all these changes.
> > > So, for this patch I would suggest keeping it as is because
> > > functionally it is correct and will change this check along with other
> > > corrections I mentioned above in a separate patch. Does that sound
> > > good?
> >
> > Works for me.
> >
> > Acked-by: David Hildenbrand <david@redhat.com>
>
> Thank you! Will post the followup cleanup patch shorly.

Andrew, I posted v2 of this patch at
https://lore.kernel.org/all/20230105000241.1450843-1-surenb@google.com/.
Please replace the original one in your tree. I had to follow David's
original suggestion instead of my planned cleanup because removing
anon_vma_name() would require us to add #ifdef CONFIG_ANON_VMA_NAME
everywhere we use vma->anon_name, which is quite ugly.
Thanks,
Suren.

>
> >
> > for this one, as it fixes the issue.
> >
> > --
> > Thanks,
> >
> > David / dhildenb
> >

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

end of thread, other threads:[~2023-01-05  0:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-28 19:42 [PATCH 1/1] mm: fix vma->anon_name memory leak for anonymous shmem VMAs Suren Baghdasaryan
2023-01-02 12:00 ` David Hildenbrand
2023-01-03 19:53   ` Suren Baghdasaryan
2023-01-04  9:04     ` David Hildenbrand
2023-01-04 18:24       ` Suren Baghdasaryan
2023-01-05  0:06         ` Suren Baghdasaryan

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.