linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Umount failing due to a file leak on 3.18 Android
@ 2016-04-20  1:26 Nikhilesh Reddy
  2016-04-20  1:29 ` Nikhilesh Reddy
  2016-04-20  5:55 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: Nikhilesh Reddy @ 2016-04-20  1:26 UTC (permalink / raw)
  To: linux-fsdevel, Al Viro, Greg KH, Linux Kernel Mailing List

Hi

I am looking into a bug that results in umount failures ( since there is a mount ref from the leaked file that is never freed on the mount )

The issue seems to be a result of the following callstack

    39.958104:   <6> Call trace:
    39.958108:   <2> [<ffffffc0001baa58>] fput+0x1e0/0x1f8
    39.958113:   <2> [<ffffffc0001b6ce8>] filp_close+0xa0/0xb8
    39.958119:   <2> [<ffffffc0001d3ca8>] put_files_struct+0x88/0xf0
    39.958123:   <2> [<ffffffc000973c40>] binder_deferred_func+0x6a8/0x704
    39.958129:   <2> [<ffffffc0000ba32c>] process_one_work+0x238/0x3f0
    39.958133:   <2> [<ffffffc0000bb160>] worker_thread+0x2f8/0x418

What seems to occur is that once in a while a file ( say a.txt) is fput in the above stack 
right as the task is being killed

And then we see that the  fput schedules a delayed_fput_work on this file

But when the function delayed_fput() is actually run :
	the file that was put i.e this a.txt is not in the delayed_fput_list

Any chance you can help me get to the bottom of this leak?
I dont understand why the delayed_fput_list is missing the file.

Is there some sort of race condition?

-- 
Thanks
Nikhilesh Reddy

Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.

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

* Re: Umount failing due to a file leak on 3.18 Android
  2016-04-20  1:26 Umount failing due to a file leak on 3.18 Android Nikhilesh Reddy
@ 2016-04-20  1:29 ` Nikhilesh Reddy
  2016-04-20  1:57   ` Nikhilesh Reddy
  2016-04-20  5:55 ` Greg KH
  1 sibling, 1 reply; 4+ messages in thread
From: Nikhilesh Reddy @ 2016-04-20  1:29 UTC (permalink / raw)
  To: linux-fsdevel, Al Viro, Greg KH, Linux Kernel Mailing List

On Tue 19 Apr 2016 06:26:27 PM PDT, Nikhilesh Reddy wrote:
> Hi
>
> I am looking into a bug that results in umount failures ( since there is a mount ref from the leaked file that is never freed on the mount )
>
> The issue seems to be a result of the following callstack
>
>      39.958104:   <6> Call trace:
>      39.958108:   <2> [<ffffffc0001baa58>] fput+0x1e0/0x1f8
>      39.958113:   <2> [<ffffffc0001b6ce8>] filp_close+0xa0/0xb8
>      39.958119:   <2> [<ffffffc0001d3ca8>] put_files_struct+0x88/0xf0
>      39.958123:   <2> [<ffffffc000973c40>] binder_deferred_func+0x6a8/0x704
>      39.958129:   <2> [<ffffffc0000ba32c>] process_one_work+0x238/0x3f0
>      39.958133:   <2> [<ffffffc0000bb160>] worker_thread+0x2f8/0x418
>
> What seems to occur is that once in a while a file ( say a.txt) is fput in the above stack
> right as the task is being killed
>
> And then we see that the  fput schedules a delayed_fput_work on this file
>
> But when the function delayed_fput() is actually run :
> 	the file that was put i.e this a.txt is not in the delayed_fput_list
>
> Any chance you can help me get to the bottom of this leak?
> I dont understand why the delayed_fput_list is missing the file.
>
> Is there some sort of race condition?
>

I will appreciate any pointers you can give me to debug this issue
Thanks so much in advance for your help.

--
Thanks
Nikhilesh Reddy

Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora 
Forum,
a Linux Foundation Collaborative Project.


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

* Re: Umount failing due to a file leak on 3.18 Android
  2016-04-20  1:29 ` Nikhilesh Reddy
@ 2016-04-20  1:57   ` Nikhilesh Reddy
  0 siblings, 0 replies; 4+ messages in thread
From: Nikhilesh Reddy @ 2016-04-20  1:57 UTC (permalink / raw)
  To: linux-fsdevel, Al Viro, Greg KH, Linux Kernel Mailing List, arve,
	riandrews


Adding Arve Hjønnevåg and Riley Andrews


I am looking into a bug that results in umount failures ( since there
is a mount ref from the leaked file that is never freed on the mount )

The issue seems to be a result of the following callstack

      39.958104:   <6> Call trace:
      39.958108:   <2> [<ffffffc0001baa58>] fput+0x1e0/0x1f8
      39.958113:   <2> [<ffffffc0001b6ce8>] filp_close+0xa0/0xb8
      39.958119:   <2> [<ffffffc0001d3ca8>] put_files_struct+0x88/0xf0
      39.958123:   <2> [<ffffffc000973c40>]
binder_deferred_func+0x6a8/0x704
      39.958129:   <2> [<ffffffc0000ba32c>] process_one_work+0x238/0x3f0
      39.958133:   <2> [<ffffffc0000bb160>] worker_thread+0x2f8/0x418

What seems to occur is that once in a while a file ( say a.txt) is
fput in the above stack
right as the task is being killed

And then we see that the  fput schedules a delayed_fput_work on this
file

But when the function delayed_fput() is actually run :
     the file that was put i.e this a.txt is not in the delayed_fput_list

Any chance you can help me get to the bottom of this leak?
I dont understand why the delayed_fput_list is missing the file.

Is there some sort of race condition?


I will appreciate any pointers you can give me to debug this issue
Thanks so much in advance for your help.


-- 
Thanks
Nikhilesh Reddy

Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.

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

* Re: Umount failing due to a file leak on 3.18 Android
  2016-04-20  1:26 Umount failing due to a file leak on 3.18 Android Nikhilesh Reddy
  2016-04-20  1:29 ` Nikhilesh Reddy
@ 2016-04-20  5:55 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Greg KH @ 2016-04-20  5:55 UTC (permalink / raw)
  To: Nikhilesh Reddy; +Cc: linux-fsdevel, Al Viro, Linux Kernel Mailing List

On Tue, Apr 19, 2016 at 06:26:27PM -0700, Nikhilesh Reddy wrote:
> Hi
> 
> I am looking into a bug that results in umount failures ( since there is a mount ref from the leaked file that is never freed on the mount )
> 
> The issue seems to be a result of the following callstack
> 
>     39.958104:   <6> Call trace:
>     39.958108:   <2> [<ffffffc0001baa58>] fput+0x1e0/0x1f8
>     39.958113:   <2> [<ffffffc0001b6ce8>] filp_close+0xa0/0xb8
>     39.958119:   <2> [<ffffffc0001d3ca8>] put_files_struct+0x88/0xf0
>     39.958123:   <2> [<ffffffc000973c40>] binder_deferred_func+0x6a8/0x704
>     39.958129:   <2> [<ffffffc0000ba32c>] process_one_work+0x238/0x3f0
>     39.958133:   <2> [<ffffffc0000bb160>] worker_thread+0x2f8/0x418
> 
> What seems to occur is that once in a while a file ( say a.txt) is fput in the above stack 
> right as the task is being killed
> 
> And then we see that the  fput schedules a delayed_fput_work on this file
> 
> But when the function delayed_fput() is actually run :
> 	the file that was put i.e this a.txt is not in the delayed_fput_list
> 
> Any chance you can help me get to the bottom of this leak?
> I dont understand why the delayed_fput_list is missing the file.

3.18 is very old, can you duplicate this on 4.5 or newer?

thanks,

greg k-h

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

end of thread, other threads:[~2016-04-20  5:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-20  1:26 Umount failing due to a file leak on 3.18 Android Nikhilesh Reddy
2016-04-20  1:29 ` Nikhilesh Reddy
2016-04-20  1:57   ` Nikhilesh Reddy
2016-04-20  5:55 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).