|
@@ -1356,6 +1356,8 @@ static int do_umount(struct mount *mnt, int flags)
|
|
* Special case for "unmounting" root ...
|
|
* Special case for "unmounting" root ...
|
|
* we just try to remount it readonly.
|
|
* we just try to remount it readonly.
|
|
*/
|
|
*/
|
|
|
|
+ if (!capable(CAP_SYS_ADMIN))
|
|
|
|
+ return -EPERM;
|
|
down_write(&sb->s_umount);
|
|
down_write(&sb->s_umount);
|
|
if (!(sb->s_flags & MS_RDONLY))
|
|
if (!(sb->s_flags & MS_RDONLY))
|
|
retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
|
|
retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
|