Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1631020 > unrolled thread

Re: [PATCH -mm] mm, swap: Fix swap space leak in error path of swap_free_entries()

Started byAndrew Morton <akpm@linux-foundation.org>
First post2017-04-25 23:40 +0200
Last post2017-04-26 00:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH -mm] mm, swap: Fix swap space leak in error path of  swap_free_entries() Andrew Morton <akpm@linux-foundation.org> - 2017-04-25 23:40 +0200
    Re: [PATCH -mm] mm, swap: Fix swap space leak in error path of  swap_free_entries() Tim Chen <tim.c.chen@linux.intel.com> - 2017-04-26 00:10 +0200

#1631020 — Re: [PATCH -mm] mm, swap: Fix swap space leak in error path of swap_free_entries()

FromAndrew Morton <akpm@linux-foundation.org>
Date2017-04-25 23:40 +0200
SubjectRe: [PATCH -mm] mm, swap: Fix swap space leak in error path of swap_free_entries()
Message-ID<tAglJ-1EE-33@gated-at.bofh.it>
On Fri, 21 Apr 2017 20:47:39 +0800 "Huang, Ying" <ying.huang@intel.com> wrote:

> From: Huang Ying <ying.huang@intel.com>
> 
> In swapcache_free_entries(), if swap_info_get_cont() return NULL,
> something wrong occurs for the swap entry.  But we should still
> continue to free the following swap entries in the array instead of
> skip them to avoid swap space leak.  This is just problem in error
> path, where system may be in an inconsistent state, but it is still
> good to fix it.
> 
> ...
>
> --- a/mm/swapfile.c
> +++ b/mm/swapfile.c
> @@ -1079,8 +1079,6 @@ void swapcache_free_entries(swp_entry_t *entries, int n)
>  		p = swap_info_get_cont(entries[i], prev);
>  		if (p)
>  			swap_entry_free(p, entries[i]);
> -		else
> -			break;
>  		prev = p;

So now prev==NULL.  Will this code get the locking correct in
swap_info_get_cont()?  I think so, but please double-check.

>  	}
>  	if (p)

[toc] | [next] | [standalone]


#1631030

FromTim Chen <tim.c.chen@linux.intel.com>
Date2017-04-26 00:10 +0200
Message-ID<tAgOK-23i-23@gated-at.bofh.it>
In reply to#1631020
On Tue, 2017-04-25 at 14:37 -0700, Andrew Morton wrote:
> On Fri, 21 Apr 2017 20:47:39 +0800 "Huang, Ying" <ying.huang@intel.com> wrote:
> 
> > 
> > From: Huang Ying <ying.huang@intel.com>
> > 
> > In swapcache_free_entries(), if swap_info_get_cont() return NULL,
> > something wrong occurs for the swap entry.  But we should still
> > continue to free the following swap entries in the array instead of
> > skip them to avoid swap space leak.  This is just problem in error
> > path, where system may be in an inconsistent state, but it is still
> > good to fix it.
> > 
> > ...
> > 
> > --- a/mm/swapfile.c
> > +++ b/mm/swapfile.c
> > @@ -1079,8 +1079,6 @@ void swapcache_free_entries(swp_entry_t *entries, int n)
> >  		p = swap_info_get_cont(entries[i], prev);
> >  		if (p)
> >  			swap_entry_free(p, entries[i]);
> > -		else
> > -			break;
> >  		prev = p;
> So now prev==NULL.  Will this code get the locking correct in
> swap_info_get_cont()?  I think so, but please double-check.
> 

There are 4 possible cases, and I checked that the logic
in swap_info_get_cont do the expected:

entries[i]
valid?		prev	 	Expected swap_info_get_cont behavior
---------------------------------------------------------------------
NO		NULL		Return NULL p, Do nothing on lock/unlock
NO		NON-NULL	Return NULL p, Unlock prev 
YES		NULL		Return non-NULL p, lock p
YES		NON-NULL	Return non-NULL p, (p != prev) unlock prev and lock p 
						   (p == prev) do nothing on lock/unlock

Thanks.

Tim

> 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web