Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1560512 > unrolled thread
| Started by | Lokesh Vutla <lokeshvutla@ti.com> |
|---|---|
| First post | 2017-01-17 12:20 +0100 |
| Last post | 2017-01-18 09:00 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[RFC PATCH] initramfs: finish fput() before accessing any binary from initramfs Lokesh Vutla <lokeshvutla@ti.com> - 2017-01-17 12:20 +0100
Re: [RFC PATCH] initramfs: finish fput() before accessing any binary from initramfs Tero Kristo <t-kristo@ti.com> - 2017-01-17 17:10 +0100
Re: [RFC PATCH] initramfs: finish fput() before accessing any binary from initramfs Lokesh Vutla <lokeshvutla@ti.com> - 2017-01-18 09:00 +0100
| From | Lokesh Vutla <lokeshvutla@ti.com> |
|---|---|
| Date | 2017-01-17 12:20 +0100 |
| Subject | [RFC PATCH] initramfs: finish fput() before accessing any binary from initramfs |
| Message-ID | <t0zXZ-6py-29@gated-at.bofh.it> |
commit 4a9d4b024a31 ("switch fput to task_work_add") implements a
schedule_work() for completing fput(), but did not guarantee calling
__fput() after unpacking initramfs. Because of this, there is a
possibility that during boot a driver can see ETXTBSY when it tries
to load a binary from initramfs as fput() is still pending on that
binary. This patch makes sure that fput() is completed after unpacking
initramfs.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
- Reproduced on TI K2HK EVM. K2HK Queue Manager subsystem driver[1] tries
to load a firmware from initramfs during boot. Sometimes loading of this
firmware fails with error ETXTBSY. Digging a bit more observed that
deny_write_access() is returning ETXTBSY as inode->i_writecount is > 0
for that file. This is because Unpacking initramfs does a
get_write_access(from open) but hasn't done put_write_access(from fput)
as it hasn't been scheduled yet.
[1] https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/soc/ti/knav_qmss_queue.c
init/initramfs.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/init/initramfs.c b/init/initramfs.c
index b32ad7d97ac9..c42c69b48a4b 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -18,6 +18,7 @@
#include <linux/dirent.h>
#include <linux/syscalls.h>
#include <linux/utime.h>
+#include <linux/file.h>
static ssize_t __init xwrite(int fd, const char *p, size_t count)
{
@@ -652,6 +653,7 @@ static int __init populate_rootfs(void)
* us a chance to load before device_initcalls.
*/
load_default_modules();
+ flush_delayed_fput();
}
return 0;
}
--
2.11.0
[toc] | [next] | [standalone]
| From | Tero Kristo <t-kristo@ti.com> |
|---|---|
| Date | 2017-01-17 17:10 +0100 |
| Subject | Re: [RFC PATCH] initramfs: finish fput() before accessing any binary from initramfs |
| Message-ID | <t0EuB-M4-17@gated-at.bofh.it> |
| In reply to | #1560512 |
On 17/01/17 13:14, Lokesh Vutla wrote:
> commit 4a9d4b024a31 ("switch fput to task_work_add") implements a
> schedule_work() for completing fput(), but did not guarantee calling
> __fput() after unpacking initramfs. Because of this, there is a
> possibility that during boot a driver can see ETXTBSY when it tries
> to load a binary from initramfs as fput() is still pending on that
> binary. This patch makes sure that fput() is completed after unpacking
> initramfs.
Good find there.
>
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
> ---
>
> - Reproduced on TI K2HK EVM. K2HK Queue Manager subsystem driver[1] tries
> to load a firmware from initramfs during boot. Sometimes loading of this
> firmware fails with error ETXTBSY. Digging a bit more observed that
> deny_write_access() is returning ETXTBSY as inode->i_writecount is > 0
> for that file. This is because Unpacking initramfs does a
> get_write_access(from open) but hasn't done put_write_access(from fput)
> as it hasn't been scheduled yet.
>
> [1] https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/soc/ti/knav_qmss_queue.c
>
> init/initramfs.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/init/initramfs.c b/init/initramfs.c
> index b32ad7d97ac9..c42c69b48a4b 100644
> --- a/init/initramfs.c
> +++ b/init/initramfs.c
> @@ -18,6 +18,7 @@
> #include <linux/dirent.h>
> #include <linux/syscalls.h>
> #include <linux/utime.h>
> +#include <linux/file.h>
>
> static ssize_t __init xwrite(int fd, const char *p, size_t count)
> {
> @@ -652,6 +653,7 @@ static int __init populate_rootfs(void)
> * us a chance to load before device_initcalls.
> */
> load_default_modules();
> + flush_delayed_fput();
Shouldn't the flush be called before the load_default_modules() though?
-Tero
[toc] | [prev] | [next] | [standalone]
| From | Lokesh Vutla <lokeshvutla@ti.com> |
|---|---|
| Date | 2017-01-18 09:00 +0100 |
| Subject | Re: [RFC PATCH] initramfs: finish fput() before accessing any binary from initramfs |
| Message-ID | <t0TjZ-1fI-17@gated-at.bofh.it> |
| In reply to | #1560732 |
On Tuesday 17 January 2017 06:23 PM, Tero Kristo wrote:
> On 17/01/17 13:14, Lokesh Vutla wrote:
>> commit 4a9d4b024a31 ("switch fput to task_work_add") implements a
>> schedule_work() for completing fput(), but did not guarantee calling
>> __fput() after unpacking initramfs. Because of this, there is a
>> possibility that during boot a driver can see ETXTBSY when it tries
>> to load a binary from initramfs as fput() is still pending on that
>> binary. This patch makes sure that fput() is completed after unpacking
>> initramfs.
>
> Good find there.
>
>>
>> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
>> ---
>>
>> - Reproduced on TI K2HK EVM. K2HK Queue Manager subsystem driver[1] tries
>> to load a firmware from initramfs during boot. Sometimes loading of this
>> firmware fails with error ETXTBSY. Digging a bit more observed that
>> deny_write_access() is returning ETXTBSY as inode->i_writecount is > 0
>> for that file. This is because Unpacking initramfs does a
>> get_write_access(from open) but hasn't done put_write_access(from fput)
>> as it hasn't been scheduled yet.
>>
>> [1]
>> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/soc/ti/knav_qmss_queue.c
>>
>>
>> init/initramfs.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/init/initramfs.c b/init/initramfs.c
>> index b32ad7d97ac9..c42c69b48a4b 100644
>> --- a/init/initramfs.c
>> +++ b/init/initramfs.c
>> @@ -18,6 +18,7 @@
>> #include <linux/dirent.h>
>> #include <linux/syscalls.h>
>> #include <linux/utime.h>
>> +#include <linux/file.h>
>>
>> static ssize_t __init xwrite(int fd, const char *p, size_t count)
>> {
>> @@ -652,6 +653,7 @@ static int __init populate_rootfs(void)
>> * us a chance to load before device_initcalls.
>> */
>> load_default_modules();
>> + flush_delayed_fput();
>
> Shouldn't the flush be called before the load_default_modules() though?
Good point. Will wait for sometime for more comments and then repost it.
Thanks and regards,
Lokesh
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web