Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] VFS: lookup path of "-o remount" the same way as "umount"
@ 2017-08-10  6:30 NeilBrown
  0 siblings, 0 replies; only message in thread
From: NeilBrown @ 2017-08-10  6:30 UTC (permalink / raw)
  To: Al Viro; +Cc: Linux NFS Mailing List, lkml

[-- Attachment #1: Type: text/plain, Size: 1542 bytes --]


"mount -o remount" does not need to validate the target directory
for the same reasons that "umount" doesn't.  It just needs to
find the mountpoint and verify it is a mountpount.

So change do_mount() to use user_path_mountpoint_at() in the
MS_REMOUNT case.

This means that mount(.., MS_REMOUNT|MS_RO, ..) on a network
attached filesystem will only access the network if there
is data to be written out.  This reduces the chance of a hang
when the network is down.

Systemd-shutdown currently calls
   mount(NULL, path, NULL, MS_REMOUNT|MS_RDONLY, ...);
   umount2(path, 0);

which is not unreasonable for local filesystems which may still
be in use, but causes a hang for NFS filesystems which have not
been unmounted.

Note that this change does not affect
   /usr/bin/mount -o remount,ro ...
as that currently calls "lstat()" on the mount point.

Signed-off-by: NeilBrown <neilb@suse.com>
---
 fs/namespace.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/fs/namespace.c b/fs/namespace.c
index f8893dc6a989..31ded3a1cdff 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -2718,7 +2718,10 @@ long do_mount(const char *dev_name, const char __user *dir_name,
 		((char *)data_page)[PAGE_SIZE - 1] = 0;
 
 	/* ... and get the mountpoint */
-	retval = user_path(dir_name, &path);
+	if (flags & MS_REMOUNT)
+		retval = user_path_mountpoint_at(AT_FDCWD, dir_name, 0, &path);
+	else
+		retval = user_path(dir_name, &path);
 	if (retval)
 		return retval;
 
-- 
2.12.2


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-08-10  6:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-10  6:30 [PATCH] VFS: lookup path of "-o remount" the same way as "umount" NeilBrown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox