aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLokesh Vutla <lokeshvutla@ti.com>2017-02-27 17:28:12 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-27 21:43:46 -0500
commit08865514805d2de8e7002fa8149c5de3e391f412 (patch)
treef366ebfda75357b9408688ce477bd2097a7cc6f3
parent7bcae82621df080a35cb5e708ef333a821effd96 (diff)
initramfs: finish fput() before accessing any binary from initramfs
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 and removes the call to flush_delayed_fput() in kernel_init() which happens very late after unpacking initramfs. Link: http://lkml.kernel.org/r/20170201140540.22051-1-lokeshvutla@ti.com Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Reported-by: Murali Karicheri <m-karicheri2@ti.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Tero Kristo <t-kristo@ti.com> Cc: Sekhar Nori <nsekhar@ti.com> Cc: Nishanth Menon <nm@ti.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--init/initramfs.c2
-rw-r--r--init/main.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/init/initramfs.c b/init/initramfs.c
index b32ad7d97ac9..981f286c1d16 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -18,6 +18,7 @@
18#include <linux/dirent.h> 18#include <linux/dirent.h>
19#include <linux/syscalls.h> 19#include <linux/syscalls.h>
20#include <linux/utime.h> 20#include <linux/utime.h>
21#include <linux/file.h>
21 22
22static ssize_t __init xwrite(int fd, const char *p, size_t count) 23static ssize_t __init xwrite(int fd, const char *p, size_t count)
23{ 24{
@@ -647,6 +648,7 @@ static int __init populate_rootfs(void)
647 printk(KERN_EMERG "Initramfs unpacking failed: %s\n", err); 648 printk(KERN_EMERG "Initramfs unpacking failed: %s\n", err);
648 free_initrd(); 649 free_initrd();
649#endif 650#endif
651 flush_delayed_fput();
650 /* 652 /*
651 * Try loading default modules from initramfs. This gives 653 * Try loading default modules from initramfs. This gives
652 * us a chance to load before device_initcalls. 654 * us a chance to load before device_initcalls.
diff --git a/init/main.c b/init/main.c
index 24ea48745061..6eb10ce472b9 100644
--- a/init/main.c
+++ b/init/main.c
@@ -71,7 +71,6 @@
71#include <linux/shmem_fs.h> 71#include <linux/shmem_fs.h>
72#include <linux/slab.h> 72#include <linux/slab.h>
73#include <linux/perf_event.h> 73#include <linux/perf_event.h>
74#include <linux/file.h>
75#include <linux/ptrace.h> 74#include <linux/ptrace.h>
76#include <linux/blkdev.h> 75#include <linux/blkdev.h>
77#include <linux/elevator.h> 76#include <linux/elevator.h>
@@ -960,8 +959,6 @@ static int __ref kernel_init(void *unused)
960 system_state = SYSTEM_RUNNING; 959 system_state = SYSTEM_RUNNING;
961 numa_default_policy(); 960 numa_default_policy();
962 961
963 flush_delayed_fput();
964
965 rcu_end_inkernel_boot(); 962 rcu_end_inkernel_boot();
966 963
967 if (ramdisk_execute_command) { 964 if (ramdisk_execute_command) {