aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2013-07-25 05:49:11 -0400
committerJan Kara <jack@suse.cz>2013-07-31 16:14:50 -0400
commit17b7f7cf58926844e1dd40f5eb5348d481deca6a (patch)
tree23e0c4e3237fc2c61a551618056342d1aa5dfbdf /fs
parentcf7eff4666629de006c5ed78de79e40f483c3b06 (diff)
isofs: Refuse RW mount of the filesystem instead of making it RO
Refuse RW mount of isofs filesystem. So far we just silently changed it to RO mount but when the media is writeable, block layer won't notice this change and thus will think device is used RW and will block eject button of the drive. That is unexpected by users because for non-writeable media eject button works just fine. Userspace mount(8) command handles this just fine and retries mounting with MS_RDONLY set so userspace shouldn't see any regression. Plus any tool mounting isofs is likely confronted with the case of read-only media where block layer already refuses to mount the filesystem without MS_RDONLY set so our behavior shouldn't be anything new for it. Reported-by: Hui Wang <hui.wang@canonical.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r--fs/isofs/inode.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c
index c348d6d88624..e5d408a7ea4a 100644
--- a/fs/isofs/inode.c
+++ b/fs/isofs/inode.c
@@ -117,8 +117,8 @@ static void destroy_inodecache(void)
117 117
118static int isofs_remount(struct super_block *sb, int *flags, char *data) 118static int isofs_remount(struct super_block *sb, int *flags, char *data)
119{ 119{
120 /* we probably want a lot more here */ 120 if (!(*flags & MS_RDONLY))
121 *flags |= MS_RDONLY; 121 return -EROFS;
122 return 0; 122 return 0;
123} 123}
124 124
@@ -763,15 +763,6 @@ root_found:
763 */ 763 */
764 s->s_maxbytes = 0x80000000000LL; 764 s->s_maxbytes = 0x80000000000LL;
765 765
766 /*
767 * The CDROM is read-only, has no nodes (devices) on it, and since
768 * all of the files appear to be owned by root, we really do not want
769 * to allow suid. (suid or devices will not show up unless we have
770 * Rock Ridge extensions)
771 */
772
773 s->s_flags |= MS_RDONLY /* | MS_NODEV | MS_NOSUID */;
774
775 /* Set this for reference. Its not currently used except on write 766 /* Set this for reference. Its not currently used except on write
776 which we don't have .. */ 767 which we don't have .. */
777 768
@@ -1530,6 +1521,9 @@ struct inode *isofs_iget(struct super_block *sb,
1530static struct dentry *isofs_mount(struct file_system_type *fs_type, 1521static struct dentry *isofs_mount(struct file_system_type *fs_type,
1531 int flags, const char *dev_name, void *data) 1522 int flags, const char *dev_name, void *data)
1532{ 1523{
1524 /* We don't support read-write mounts */
1525 if (!(flags & MS_RDONLY))
1526 return ERR_PTR(-EACCES);
1533 return mount_bdev(fs_type, flags, dev_name, data, isofs_fill_super); 1527 return mount_bdev(fs_type, flags, dev_name, data, isofs_fill_super);
1534} 1528}
1535 1529