Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * super.c |
| 3 | * |
| 4 | * PURPOSE |
| 5 | * Super block routines for the OSTA-UDF(tm) filesystem. |
| 6 | * |
| 7 | * DESCRIPTION |
| 8 | * OSTA-UDF(tm) = Optical Storage Technology Association |
| 9 | * Universal Disk Format. |
| 10 | * |
| 11 | * This code is based on version 2.00 of the UDF specification, |
| 12 | * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346]. |
| 13 | * http://www.osta.org/ |
| 14 | * http://www.ecma.ch/ |
| 15 | * http://www.iso.org/ |
| 16 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * COPYRIGHT |
| 18 | * This file is distributed under the terms of the GNU General Public |
| 19 | * License (GPL). Copies of the GPL can be obtained from: |
| 20 | * ftp://prep.ai.mit.edu/pub/gnu/GPL |
| 21 | * Each contributing author retains all rights to their own work. |
| 22 | * |
| 23 | * (C) 1998 Dave Boynton |
| 24 | * (C) 1998-2004 Ben Fennema |
| 25 | * (C) 2000 Stelias Computing Inc |
| 26 | * |
| 27 | * HISTORY |
| 28 | * |
| 29 | * 09/24/98 dgb changed to allow compiling outside of kernel, and |
| 30 | * added some debugging. |
| 31 | * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34 |
| 32 | * 10/16/98 attempting some multi-session support |
| 33 | * 10/17/98 added freespace count for "df" |
| 34 | * 11/11/98 gr added novrs option |
| 35 | * 11/26/98 dgb added fileset,anchor mount options |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 36 | * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced |
| 37 | * vol descs. rewrote option handling based on isofs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * 12/20/98 find the free space bitmap (if it exists) |
| 39 | */ |
| 40 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 41 | #include "udfdecl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/blkdev.h> |
| 44 | #include <linux/slab.h> |
| 45 | #include <linux/kernel.h> |
| 46 | #include <linux/module.h> |
| 47 | #include <linux/parser.h> |
| 48 | #include <linux/stat.h> |
| 49 | #include <linux/cdrom.h> |
| 50 | #include <linux/nls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/buffer_head.h> |
| 52 | #include <linux/vfs.h> |
| 53 | #include <linux/vmalloc.h> |
Marcin Slusarz | dc5d39b | 2008-02-08 04:20:32 -0800 | [diff] [blame] | 54 | #include <linux/errno.h> |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 55 | #include <linux/mount.h> |
| 56 | #include <linux/seq_file.h> |
Marcin Slusarz | 01b954a | 2008-02-02 22:37:07 +0100 | [diff] [blame] | 57 | #include <linux/bitmap.h> |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 58 | #include <linux/crc-itu-t.h> |
Jan Kara | 1df2ae3 | 2012-06-27 21:23:07 +0200 | [diff] [blame] | 59 | #include <linux/log2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <asm/byteorder.h> |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include "udf_sb.h" |
| 63 | #include "udf_i.h" |
| 64 | |
| 65 | #include <linux/init.h> |
| 66 | #include <asm/uaccess.h> |
| 67 | |
| 68 | #define VDS_POS_PRIMARY_VOL_DESC 0 |
| 69 | #define VDS_POS_UNALLOC_SPACE_DESC 1 |
| 70 | #define VDS_POS_LOGICAL_VOL_DESC 2 |
| 71 | #define VDS_POS_PARTITION_DESC 3 |
| 72 | #define VDS_POS_IMP_USE_VOL_DESC 4 |
| 73 | #define VDS_POS_VOL_DESC_PTR 5 |
| 74 | #define VDS_POS_TERMINATING_DESC 6 |
| 75 | #define VDS_POS_LENGTH 7 |
| 76 | |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 77 | #define UDF_DEFAULT_BLOCKSIZE 2048 |
| 78 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 79 | enum { UDF_MAX_LINKS = 0xffff }; |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | /* These are the "meat" - everything else is stuffing */ |
| 82 | static int udf_fill_super(struct super_block *, void *, int); |
| 83 | static void udf_put_super(struct super_block *); |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 84 | static int udf_sync_fs(struct super_block *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | static int udf_remount_fs(struct super_block *, int *, char *); |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 86 | static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad); |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 87 | static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *, |
| 88 | struct kernel_lb_addr *); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 89 | static void udf_load_fileset(struct super_block *, struct buffer_head *, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 90 | struct kernel_lb_addr *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | static void udf_open_lvid(struct super_block *); |
| 92 | static void udf_close_lvid(struct super_block *); |
| 93 | static unsigned int udf_count_free(struct super_block *); |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 94 | static int udf_statfs(struct dentry *, struct kstatfs *); |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 95 | static int udf_show_options(struct seq_file *, struct dentry *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 97 | struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi) |
| 98 | { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 99 | struct logicalVolIntegrityDesc *lvid = |
| 100 | (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 101 | __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 102 | __u32 offset = number_of_partitions * 2 * |
| 103 | sizeof(uint32_t)/sizeof(uint8_t); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 104 | return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]); |
| 105 | } |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | /* UDF filesystem type */ |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 108 | static struct dentry *udf_mount(struct file_system_type *fs_type, |
| 109 | int flags, const char *dev_name, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 111 | return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static struct file_system_type udf_fstype = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 115 | .owner = THIS_MODULE, |
| 116 | .name = "udf", |
Al Viro | 152a083 | 2010-07-25 00:46:55 +0400 | [diff] [blame] | 117 | .mount = udf_mount, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 118 | .kill_sb = kill_block_super, |
| 119 | .fs_flags = FS_REQUIRES_DEV, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 122 | static struct kmem_cache *udf_inode_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | static struct inode *udf_alloc_inode(struct super_block *sb) |
| 125 | { |
| 126 | struct udf_inode_info *ei; |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 127 | ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | if (!ei) |
| 129 | return NULL; |
Dan Bastone | 95f8797 | 2006-08-13 23:24:18 -0700 | [diff] [blame] | 130 | |
| 131 | ei->i_unique = 0; |
| 132 | ei->i_lenExtents = 0; |
| 133 | ei->i_next_alloc_block = 0; |
| 134 | ei->i_next_alloc_goal = 0; |
| 135 | ei->i_strat4096 = 0; |
Alessio Igor Bogani | 4d0fb62 | 2010-11-16 18:40:47 +0100 | [diff] [blame] | 136 | init_rwsem(&ei->i_data_sem); |
Dan Bastone | 95f8797 | 2006-08-13 23:24:18 -0700 | [diff] [blame] | 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | return &ei->vfs_inode; |
| 139 | } |
| 140 | |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 141 | static void udf_i_callback(struct rcu_head *head) |
| 142 | { |
| 143 | struct inode *inode = container_of(head, struct inode, i_rcu); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 144 | kmem_cache_free(udf_inode_cachep, UDF_I(inode)); |
| 145 | } |
| 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | static void udf_destroy_inode(struct inode *inode) |
| 148 | { |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 149 | call_rcu(&inode->i_rcu, udf_i_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 152 | static void init_once(void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 154 | struct udf_inode_info *ei = (struct udf_inode_info *)foo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 156 | ei->i_ext.i_data = NULL; |
| 157 | inode_init_once(&ei->vfs_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static int init_inodecache(void) |
| 161 | { |
| 162 | udf_inode_cachep = kmem_cache_create("udf_inode_cache", |
| 163 | sizeof(struct udf_inode_info), |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 164 | 0, (SLAB_RECLAIM_ACCOUNT | |
| 165 | SLAB_MEM_SPREAD), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 166 | init_once); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 167 | if (!udf_inode_cachep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return -ENOMEM; |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | static void destroy_inodecache(void) |
| 173 | { |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 174 | /* |
| 175 | * Make sure all delayed rcu free inodes are flushed before we |
| 176 | * destroy cache. |
| 177 | */ |
| 178 | rcu_barrier(); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 179 | kmem_cache_destroy(udf_inode_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /* Superblock operations */ |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 183 | static const struct super_operations udf_sb_ops = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 184 | .alloc_inode = udf_alloc_inode, |
| 185 | .destroy_inode = udf_destroy_inode, |
| 186 | .write_inode = udf_write_inode, |
Al Viro | 3aac2b6 | 2010-06-07 00:43:39 -0400 | [diff] [blame] | 187 | .evict_inode = udf_evict_inode, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 188 | .put_super = udf_put_super, |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 189 | .sync_fs = udf_sync_fs, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 190 | .statfs = udf_statfs, |
| 191 | .remount_fs = udf_remount_fs, |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 192 | .show_options = udf_show_options, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | }; |
| 194 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 195 | struct udf_options { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | unsigned char novrs; |
| 197 | unsigned int blocksize; |
| 198 | unsigned int session; |
| 199 | unsigned int lastblock; |
| 200 | unsigned int anchor; |
| 201 | unsigned int volume; |
| 202 | unsigned short partition; |
| 203 | unsigned int fileset; |
| 204 | unsigned int rootdir; |
| 205 | unsigned int flags; |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 206 | umode_t umask; |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 207 | kgid_t gid; |
| 208 | kuid_t uid; |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 209 | umode_t fmode; |
| 210 | umode_t dmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | struct nls_table *nls_map; |
| 212 | }; |
| 213 | |
| 214 | static int __init init_udf_fs(void) |
| 215 | { |
| 216 | int err; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | err = init_inodecache(); |
| 219 | if (err) |
| 220 | goto out1; |
| 221 | err = register_filesystem(&udf_fstype); |
| 222 | if (err) |
| 223 | goto out; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | return 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 226 | |
| 227 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | destroy_inodecache(); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 229 | |
| 230 | out1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return err; |
| 232 | } |
| 233 | |
| 234 | static void __exit exit_udf_fs(void) |
| 235 | { |
| 236 | unregister_filesystem(&udf_fstype); |
| 237 | destroy_inodecache(); |
| 238 | } |
| 239 | |
| 240 | module_init(init_udf_fs) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 241 | module_exit(exit_udf_fs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
Marcin Slusarz | dc5d39b | 2008-02-08 04:20:32 -0800 | [diff] [blame] | 243 | static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count) |
| 244 | { |
| 245 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 246 | |
| 247 | sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map), |
| 248 | GFP_KERNEL); |
| 249 | if (!sbi->s_partmaps) { |
Joe Perches | 8076c36 | 2011-10-10 01:08:03 -0700 | [diff] [blame] | 250 | udf_err(sb, "Unable to allocate space for %d partition maps\n", |
| 251 | count); |
Marcin Slusarz | dc5d39b | 2008-02-08 04:20:32 -0800 | [diff] [blame] | 252 | sbi->s_partitions = 0; |
| 253 | return -ENOMEM; |
| 254 | } |
| 255 | |
| 256 | sbi->s_partitions = count; |
| 257 | return 0; |
| 258 | } |
| 259 | |
Jan Kara | bff943a | 2012-06-27 22:27:05 +0200 | [diff] [blame] | 260 | static void udf_sb_free_bitmap(struct udf_bitmap *bitmap) |
| 261 | { |
| 262 | int i; |
| 263 | int nr_groups = bitmap->s_nr_groups; |
| 264 | int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) * |
| 265 | nr_groups); |
| 266 | |
| 267 | for (i = 0; i < nr_groups; i++) |
| 268 | if (bitmap->s_block_bitmap[i]) |
| 269 | brelse(bitmap->s_block_bitmap[i]); |
| 270 | |
| 271 | if (size <= PAGE_SIZE) |
| 272 | kfree(bitmap); |
| 273 | else |
| 274 | vfree(bitmap); |
| 275 | } |
| 276 | |
| 277 | static void udf_free_partition(struct udf_part_map *map) |
| 278 | { |
| 279 | int i; |
| 280 | struct udf_meta_data *mdata; |
| 281 | |
| 282 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) |
| 283 | iput(map->s_uspace.s_table); |
| 284 | if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) |
| 285 | iput(map->s_fspace.s_table); |
| 286 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) |
| 287 | udf_sb_free_bitmap(map->s_uspace.s_bitmap); |
| 288 | if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) |
| 289 | udf_sb_free_bitmap(map->s_fspace.s_bitmap); |
| 290 | if (map->s_partition_type == UDF_SPARABLE_MAP15) |
| 291 | for (i = 0; i < 4; i++) |
| 292 | brelse(map->s_type_specific.s_sparing.s_spar_map[i]); |
| 293 | else if (map->s_partition_type == UDF_METADATA_MAP25) { |
| 294 | mdata = &map->s_type_specific.s_metadata; |
| 295 | iput(mdata->s_metadata_fe); |
| 296 | mdata->s_metadata_fe = NULL; |
| 297 | |
| 298 | iput(mdata->s_mirror_fe); |
| 299 | mdata->s_mirror_fe = NULL; |
| 300 | |
| 301 | iput(mdata->s_bitmap_fe); |
| 302 | mdata->s_bitmap_fe = NULL; |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | static void udf_sb_free_partitions(struct super_block *sb) |
| 307 | { |
| 308 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 309 | int i; |
| 310 | |
| 311 | for (i = 0; i < sbi->s_partitions; i++) |
| 312 | udf_free_partition(&sbi->s_partmaps[i]); |
| 313 | kfree(sbi->s_partmaps); |
| 314 | sbi->s_partmaps = NULL; |
| 315 | } |
| 316 | |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 317 | static int udf_show_options(struct seq_file *seq, struct dentry *root) |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 318 | { |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 319 | struct super_block *sb = root->d_sb; |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 320 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 321 | |
| 322 | if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT)) |
| 323 | seq_puts(seq, ",nostrict"); |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 324 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET)) |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 325 | seq_printf(seq, ",bs=%lu", sb->s_blocksize); |
| 326 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE)) |
| 327 | seq_puts(seq, ",unhide"); |
| 328 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE)) |
| 329 | seq_puts(seq, ",undelete"); |
| 330 | if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB)) |
| 331 | seq_puts(seq, ",noadinicb"); |
| 332 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD)) |
| 333 | seq_puts(seq, ",shortad"); |
| 334 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET)) |
| 335 | seq_puts(seq, ",uid=forget"); |
| 336 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE)) |
| 337 | seq_puts(seq, ",uid=ignore"); |
| 338 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET)) |
| 339 | seq_puts(seq, ",gid=forget"); |
| 340 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE)) |
| 341 | seq_puts(seq, ",gid=ignore"); |
| 342 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET)) |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 343 | seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid)); |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 344 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET)) |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 345 | seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid)); |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 346 | if (sbi->s_umask != 0) |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 347 | seq_printf(seq, ",umask=%ho", sbi->s_umask); |
Marcin Slusarz | 87bc730 | 2008-12-02 13:40:11 +0100 | [diff] [blame] | 348 | if (sbi->s_fmode != UDF_INVALID_MODE) |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 349 | seq_printf(seq, ",mode=%ho", sbi->s_fmode); |
Marcin Slusarz | 87bc730 | 2008-12-02 13:40:11 +0100 | [diff] [blame] | 350 | if (sbi->s_dmode != UDF_INVALID_MODE) |
Al Viro | faa1729 | 2011-07-26 03:18:29 -0400 | [diff] [blame] | 351 | seq_printf(seq, ",dmode=%ho", sbi->s_dmode); |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 352 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET)) |
| 353 | seq_printf(seq, ",session=%u", sbi->s_session); |
| 354 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET)) |
| 355 | seq_printf(seq, ",lastblock=%u", sbi->s_last_block); |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 356 | if (sbi->s_anchor != 0) |
| 357 | seq_printf(seq, ",anchor=%u", sbi->s_anchor); |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 358 | /* |
| 359 | * volume, partition, fileset and rootdir seem to be ignored |
| 360 | * currently |
| 361 | */ |
| 362 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) |
| 363 | seq_puts(seq, ",utf8"); |
| 364 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map) |
| 365 | seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset); |
| 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | /* |
| 371 | * udf_parse_options |
| 372 | * |
| 373 | * PURPOSE |
| 374 | * Parse mount options. |
| 375 | * |
| 376 | * DESCRIPTION |
| 377 | * The following mount options are supported: |
| 378 | * |
| 379 | * gid= Set the default group. |
| 380 | * umask= Set the default umask. |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 381 | * mode= Set the default file permissions. |
| 382 | * dmode= Set the default directory permissions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | * uid= Set the default user. |
| 384 | * bs= Set the block size. |
| 385 | * unhide Show otherwise hidden files. |
| 386 | * undelete Show deleted files in lists. |
| 387 | * adinicb Embed data in the inode (default) |
| 388 | * noadinicb Don't embed data in the inode |
| 389 | * shortad Use short ad's |
| 390 | * longad Use long ad's (default) |
| 391 | * nostrict Unset strict conformance |
| 392 | * iocharset= Set the NLS character set |
| 393 | * |
| 394 | * The remaining are for debugging and disaster recovery: |
| 395 | * |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 396 | * novrs Skip volume sequence recognition |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | * |
| 398 | * The following expect a offset from 0. |
| 399 | * |
| 400 | * session= Set the CDROM session (default= last session) |
| 401 | * anchor= Override standard anchor location. (default= 256) |
| 402 | * volume= Override the VolumeDesc location. (unused) |
| 403 | * partition= Override the PartitionDesc location. (unused) |
| 404 | * lastblock= Set the last block of the filesystem/ |
| 405 | * |
| 406 | * The following expect a offset from the partition root. |
| 407 | * |
| 408 | * fileset= Override the fileset block location. (unused) |
| 409 | * rootdir= Override the root directory location. (unused) |
| 410 | * WARNING: overriding the rootdir to a non-directory may |
| 411 | * yield highly unpredictable results. |
| 412 | * |
| 413 | * PRE-CONDITIONS |
| 414 | * options Pointer to mount options string. |
| 415 | * uopts Pointer to mount options variable. |
| 416 | * |
| 417 | * POST-CONDITIONS |
| 418 | * <return> 1 Mount options parsed okay. |
| 419 | * <return> 0 Error parsing mount options. |
| 420 | * |
| 421 | * HISTORY |
| 422 | * July 1, 1997 - Andrew E. Mileski |
| 423 | * Written, tested, and released. |
| 424 | */ |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | enum { |
| 427 | Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete, |
| 428 | Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad, |
| 429 | Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock, |
| 430 | Opt_anchor, Opt_volume, Opt_partition, Opt_fileset, |
| 431 | Opt_rootdir, Opt_utf8, Opt_iocharset, |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 432 | Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore, |
| 433 | Opt_fmode, Opt_dmode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | }; |
| 435 | |
Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 436 | static const match_table_t tokens = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 437 | {Opt_novrs, "novrs"}, |
| 438 | {Opt_nostrict, "nostrict"}, |
| 439 | {Opt_bs, "bs=%u"}, |
| 440 | {Opt_unhide, "unhide"}, |
| 441 | {Opt_undelete, "undelete"}, |
| 442 | {Opt_noadinicb, "noadinicb"}, |
| 443 | {Opt_adinicb, "adinicb"}, |
| 444 | {Opt_shortad, "shortad"}, |
| 445 | {Opt_longad, "longad"}, |
| 446 | {Opt_uforget, "uid=forget"}, |
| 447 | {Opt_uignore, "uid=ignore"}, |
| 448 | {Opt_gforget, "gid=forget"}, |
| 449 | {Opt_gignore, "gid=ignore"}, |
| 450 | {Opt_gid, "gid=%u"}, |
| 451 | {Opt_uid, "uid=%u"}, |
| 452 | {Opt_umask, "umask=%o"}, |
| 453 | {Opt_session, "session=%u"}, |
| 454 | {Opt_lastblock, "lastblock=%u"}, |
| 455 | {Opt_anchor, "anchor=%u"}, |
| 456 | {Opt_volume, "volume=%u"}, |
| 457 | {Opt_partition, "partition=%u"}, |
| 458 | {Opt_fileset, "fileset=%u"}, |
| 459 | {Opt_rootdir, "rootdir=%u"}, |
| 460 | {Opt_utf8, "utf8"}, |
| 461 | {Opt_iocharset, "iocharset=%s"}, |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 462 | {Opt_fmode, "mode=%o"}, |
| 463 | {Opt_dmode, "dmode=%o"}, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 464 | {Opt_err, NULL} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | }; |
| 466 | |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 467 | static int udf_parse_options(char *options, struct udf_options *uopt, |
| 468 | bool remount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | { |
| 470 | char *p; |
| 471 | int option; |
| 472 | |
| 473 | uopt->novrs = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | uopt->partition = 0xFFFF; |
| 475 | uopt->session = 0xFFFFFFFF; |
| 476 | uopt->lastblock = 0; |
| 477 | uopt->anchor = 0; |
| 478 | uopt->volume = 0xFFFFFFFF; |
| 479 | uopt->rootdir = 0xFFFFFFFF; |
| 480 | uopt->fileset = 0xFFFFFFFF; |
| 481 | uopt->nls_map = NULL; |
| 482 | |
| 483 | if (!options) |
| 484 | return 1; |
| 485 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 486 | while ((p = strsep(&options, ",")) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | substring_t args[MAX_OPT_ARGS]; |
| 488 | int token; |
| 489 | if (!*p) |
| 490 | continue; |
| 491 | |
| 492 | token = match_token(p, tokens, args); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 493 | switch (token) { |
| 494 | case Opt_novrs: |
| 495 | uopt->novrs = 1; |
Clemens Ladisch | 4136801 | 2009-03-06 09:16:49 +0100 | [diff] [blame] | 496 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 497 | case Opt_bs: |
| 498 | if (match_int(&args[0], &option)) |
| 499 | return 0; |
| 500 | uopt->blocksize = option; |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 501 | uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 502 | break; |
| 503 | case Opt_unhide: |
| 504 | uopt->flags |= (1 << UDF_FLAG_UNHIDE); |
| 505 | break; |
| 506 | case Opt_undelete: |
| 507 | uopt->flags |= (1 << UDF_FLAG_UNDELETE); |
| 508 | break; |
| 509 | case Opt_noadinicb: |
| 510 | uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB); |
| 511 | break; |
| 512 | case Opt_adinicb: |
| 513 | uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB); |
| 514 | break; |
| 515 | case Opt_shortad: |
| 516 | uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD); |
| 517 | break; |
| 518 | case Opt_longad: |
| 519 | uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD); |
| 520 | break; |
| 521 | case Opt_gid: |
| 522 | if (match_int(args, &option)) |
| 523 | return 0; |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 524 | uopt->gid = make_kgid(current_user_ns(), option); |
| 525 | if (!gid_valid(uopt->gid)) |
| 526 | return 0; |
Cyrill Gorcunov | ca76d2d | 2007-07-31 00:39:40 -0700 | [diff] [blame] | 527 | uopt->flags |= (1 << UDF_FLAG_GID_SET); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 528 | break; |
| 529 | case Opt_uid: |
| 530 | if (match_int(args, &option)) |
| 531 | return 0; |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 532 | uopt->uid = make_kuid(current_user_ns(), option); |
| 533 | if (!uid_valid(uopt->uid)) |
| 534 | return 0; |
Cyrill Gorcunov | ca76d2d | 2007-07-31 00:39:40 -0700 | [diff] [blame] | 535 | uopt->flags |= (1 << UDF_FLAG_UID_SET); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 536 | break; |
| 537 | case Opt_umask: |
| 538 | if (match_octal(args, &option)) |
| 539 | return 0; |
| 540 | uopt->umask = option; |
| 541 | break; |
| 542 | case Opt_nostrict: |
| 543 | uopt->flags &= ~(1 << UDF_FLAG_STRICT); |
| 544 | break; |
| 545 | case Opt_session: |
| 546 | if (match_int(args, &option)) |
| 547 | return 0; |
| 548 | uopt->session = option; |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 549 | if (!remount) |
| 550 | uopt->flags |= (1 << UDF_FLAG_SESSION_SET); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 551 | break; |
| 552 | case Opt_lastblock: |
| 553 | if (match_int(args, &option)) |
| 554 | return 0; |
| 555 | uopt->lastblock = option; |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 556 | if (!remount) |
| 557 | uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 558 | break; |
| 559 | case Opt_anchor: |
| 560 | if (match_int(args, &option)) |
| 561 | return 0; |
| 562 | uopt->anchor = option; |
| 563 | break; |
| 564 | case Opt_volume: |
| 565 | if (match_int(args, &option)) |
| 566 | return 0; |
| 567 | uopt->volume = option; |
| 568 | break; |
| 569 | case Opt_partition: |
| 570 | if (match_int(args, &option)) |
| 571 | return 0; |
| 572 | uopt->partition = option; |
| 573 | break; |
| 574 | case Opt_fileset: |
| 575 | if (match_int(args, &option)) |
| 576 | return 0; |
| 577 | uopt->fileset = option; |
| 578 | break; |
| 579 | case Opt_rootdir: |
| 580 | if (match_int(args, &option)) |
| 581 | return 0; |
| 582 | uopt->rootdir = option; |
| 583 | break; |
| 584 | case Opt_utf8: |
| 585 | uopt->flags |= (1 << UDF_FLAG_UTF8); |
| 586 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | #ifdef CONFIG_UDF_NLS |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 588 | case Opt_iocharset: |
| 589 | uopt->nls_map = load_nls(args[0].from); |
| 590 | uopt->flags |= (1 << UDF_FLAG_NLS_MAP); |
| 591 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | #endif |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 593 | case Opt_uignore: |
| 594 | uopt->flags |= (1 << UDF_FLAG_UID_IGNORE); |
| 595 | break; |
| 596 | case Opt_uforget: |
| 597 | uopt->flags |= (1 << UDF_FLAG_UID_FORGET); |
| 598 | break; |
| 599 | case Opt_gignore: |
| 600 | uopt->flags |= (1 << UDF_FLAG_GID_IGNORE); |
| 601 | break; |
| 602 | case Opt_gforget: |
| 603 | uopt->flags |= (1 << UDF_FLAG_GID_FORGET); |
| 604 | break; |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 605 | case Opt_fmode: |
| 606 | if (match_octal(args, &option)) |
| 607 | return 0; |
| 608 | uopt->fmode = option & 0777; |
| 609 | break; |
| 610 | case Opt_dmode: |
| 611 | if (match_octal(args, &option)) |
| 612 | return 0; |
| 613 | uopt->dmode = option & 0777; |
| 614 | break; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 615 | default: |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 616 | pr_err("bad mount option \"%s\" or missing value\n", p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | return 0; |
| 618 | } |
| 619 | } |
| 620 | return 1; |
| 621 | } |
| 622 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 623 | static int udf_remount_fs(struct super_block *sb, int *flags, char *options) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { |
| 625 | struct udf_options uopt; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 626 | struct udf_sb_info *sbi = UDF_SB(sb); |
Christoph Hellwig | c79d967 | 2010-05-19 07:16:40 -0400 | [diff] [blame] | 627 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 629 | uopt.flags = sbi->s_flags; |
| 630 | uopt.uid = sbi->s_uid; |
| 631 | uopt.gid = sbi->s_gid; |
| 632 | uopt.umask = sbi->s_umask; |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 633 | uopt.fmode = sbi->s_fmode; |
| 634 | uopt.dmode = sbi->s_dmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 636 | if (!udf_parse_options(options, &uopt, true)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | return -EINVAL; |
| 638 | |
Jan Kara | c03cad2 | 2010-10-20 22:17:28 +0200 | [diff] [blame] | 639 | write_lock(&sbi->s_cred_lock); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 640 | sbi->s_flags = uopt.flags; |
| 641 | sbi->s_uid = uopt.uid; |
| 642 | sbi->s_gid = uopt.gid; |
| 643 | sbi->s_umask = uopt.umask; |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 644 | sbi->s_fmode = uopt.fmode; |
| 645 | sbi->s_dmode = uopt.dmode; |
Jan Kara | c03cad2 | 2010-10-20 22:17:28 +0200 | [diff] [blame] | 646 | write_unlock(&sbi->s_cred_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 648 | if (sbi->s_lvid_bh) { |
| 649 | int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | if (write_rev > UDF_MAX_WRITE_VERSION) |
| 651 | *flags |= MS_RDONLY; |
| 652 | } |
| 653 | |
Christoph Hellwig | c79d967 | 2010-05-19 07:16:40 -0400 | [diff] [blame] | 654 | if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) |
| 655 | goto out_unlock; |
| 656 | |
Jan Kara | 3635046 | 2010-05-19 16:28:56 +0200 | [diff] [blame] | 657 | if (*flags & MS_RDONLY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | udf_close_lvid(sb); |
Jan Kara | 3635046 | 2010-05-19 16:28:56 +0200 | [diff] [blame] | 659 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | udf_open_lvid(sb); |
| 661 | |
Christoph Hellwig | c79d967 | 2010-05-19 07:16:40 -0400 | [diff] [blame] | 662 | out_unlock: |
Christoph Hellwig | c79d967 | 2010-05-19 07:16:40 -0400 | [diff] [blame] | 663 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | } |
| 665 | |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 666 | /* Check Volume Structure Descriptors (ECMA 167 2/9.1) */ |
| 667 | /* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */ |
| 668 | static loff_t udf_check_vsd(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
| 670 | struct volStructDesc *vsd = NULL; |
Sebastian Manciulea | f4bcbbd | 2008-04-08 14:02:11 +0200 | [diff] [blame] | 671 | loff_t sector = 32768; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | int sectorsize; |
| 673 | struct buffer_head *bh = NULL; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 674 | int nsr02 = 0; |
| 675 | int nsr03 = 0; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 676 | struct udf_sb_info *sbi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 678 | sbi = UDF_SB(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | if (sb->s_blocksize < sizeof(struct volStructDesc)) |
| 680 | sectorsize = sizeof(struct volStructDesc); |
| 681 | else |
| 682 | sectorsize = sb->s_blocksize; |
| 683 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 684 | sector += (sbi->s_session << sb->s_blocksize_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
| 686 | udf_debug("Starting at sector %u (%ld byte sectors)\n", |
Sebastian Manciulea | 706047a | 2008-04-14 17:13:01 +0200 | [diff] [blame] | 687 | (unsigned int)(sector >> sb->s_blocksize_bits), |
| 688 | sb->s_blocksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | /* Process the sequence (if applicable) */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 690 | for (; !nsr02 && !nsr03; sector += sectorsize) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | /* Read a block */ |
| 692 | bh = udf_tread(sb, sector >> sb->s_blocksize_bits); |
| 693 | if (!bh) |
| 694 | break; |
| 695 | |
| 696 | /* Look for ISO descriptors */ |
| 697 | vsd = (struct volStructDesc *)(bh->b_data + |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 698 | (sector & (sb->s_blocksize - 1))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 700 | if (vsd->stdIdent[0] == 0) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 701 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | break; |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 703 | } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001, |
| 704 | VSD_STD_ID_LEN)) { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 705 | switch (vsd->structType) { |
| 706 | case 0: |
| 707 | udf_debug("ISO9660 Boot Record found\n"); |
| 708 | break; |
| 709 | case 1: |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 710 | udf_debug("ISO9660 Primary Volume Descriptor found\n"); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 711 | break; |
| 712 | case 2: |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 713 | udf_debug("ISO9660 Supplementary Volume Descriptor found\n"); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 714 | break; |
| 715 | case 3: |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 716 | udf_debug("ISO9660 Volume Partition Descriptor found\n"); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 717 | break; |
| 718 | case 255: |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 719 | udf_debug("ISO9660 Volume Descriptor Set Terminator found\n"); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 720 | break; |
| 721 | default: |
| 722 | udf_debug("ISO9660 VRS (%u) found\n", |
| 723 | vsd->structType); |
| 724 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 726 | } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01, |
| 727 | VSD_STD_ID_LEN)) |
| 728 | ; /* nothing */ |
| 729 | else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01, |
| 730 | VSD_STD_ID_LEN)) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 731 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | break; |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 733 | } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02, |
| 734 | VSD_STD_ID_LEN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | nsr02 = sector; |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 736 | else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03, |
| 737 | VSD_STD_ID_LEN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | nsr03 = sector; |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 739 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | if (nsr03) |
| 743 | return nsr03; |
| 744 | else if (nsr02) |
| 745 | return nsr02; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 746 | else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | return -1; |
| 748 | else |
| 749 | return 0; |
| 750 | } |
| 751 | |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 752 | static int udf_find_fileset(struct super_block *sb, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 753 | struct kernel_lb_addr *fileset, |
| 754 | struct kernel_lb_addr *root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | { |
| 756 | struct buffer_head *bh = NULL; |
| 757 | long lastblock; |
| 758 | uint16_t ident; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 759 | struct udf_sb_info *sbi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
| 761 | if (fileset->logicalBlockNum != 0xFFFFFFFF || |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 762 | fileset->partitionReferenceNum != 0xFFFF) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 763 | bh = udf_read_ptagged(sb, fileset, 0, &ident); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 765 | if (!bh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | return 1; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 767 | } else if (ident != TAG_IDENT_FSD) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 768 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | return 1; |
| 770 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
| 773 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 774 | sbi = UDF_SB(sb); |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 775 | if (!bh) { |
| 776 | /* Search backwards through the partitions */ |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 777 | struct kernel_lb_addr newfileset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 779 | /* --> cvg: FIXME - is it reasonable? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | return 1; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 781 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 782 | for (newfileset.partitionReferenceNum = sbi->s_partitions - 1; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 783 | (newfileset.partitionReferenceNum != 0xFFFF && |
| 784 | fileset->logicalBlockNum == 0xFFFFFFFF && |
| 785 | fileset->partitionReferenceNum == 0xFFFF); |
| 786 | newfileset.partitionReferenceNum--) { |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 787 | lastblock = sbi->s_partmaps |
| 788 | [newfileset.partitionReferenceNum] |
| 789 | .s_partition_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | newfileset.logicalBlockNum = 0; |
| 791 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 792 | do { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 793 | bh = udf_read_ptagged(sb, &newfileset, 0, |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 794 | &ident); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 795 | if (!bh) { |
| 796 | newfileset.logicalBlockNum++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | continue; |
| 798 | } |
| 799 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 800 | switch (ident) { |
| 801 | case TAG_IDENT_SBD: |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 802 | { |
| 803 | struct spaceBitmapDesc *sp; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 804 | sp = (struct spaceBitmapDesc *) |
| 805 | bh->b_data; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 806 | newfileset.logicalBlockNum += 1 + |
| 807 | ((le32_to_cpu(sp->numOfBytes) + |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 808 | sizeof(struct spaceBitmapDesc) |
| 809 | - 1) >> sb->s_blocksize_bits); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 810 | brelse(bh); |
| 811 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 813 | case TAG_IDENT_FSD: |
| 814 | *fileset = newfileset; |
| 815 | break; |
| 816 | default: |
| 817 | newfileset.logicalBlockNum++; |
| 818 | brelse(bh); |
| 819 | bh = NULL; |
| 820 | break; |
| 821 | } |
| 822 | } while (newfileset.logicalBlockNum < lastblock && |
| 823 | fileset->logicalBlockNum == 0xFFFFFFFF && |
| 824 | fileset->partitionReferenceNum == 0xFFFF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
| 826 | } |
| 827 | |
| 828 | if ((fileset->logicalBlockNum != 0xFFFFFFFF || |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 829 | fileset->partitionReferenceNum != 0xFFFF) && bh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | udf_debug("Fileset at block=%d, partition=%d\n", |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 831 | fileset->logicalBlockNum, |
| 832 | fileset->partitionReferenceNum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 834 | sbi->s_partition = fileset->partitionReferenceNum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | udf_load_fileset(sb, bh, root); |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 836 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | return 0; |
| 838 | } |
| 839 | return 1; |
| 840 | } |
| 841 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 842 | static int udf_load_pvoldesc(struct super_block *sb, sector_t block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | { |
| 844 | struct primaryVolDesc *pvoldesc; |
Marcin Slusarz | ba9aadd | 2008-11-16 19:01:44 +0100 | [diff] [blame] | 845 | struct ustr *instr, *outstr; |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 846 | struct buffer_head *bh; |
| 847 | uint16_t ident; |
Marcin Slusarz | ba9aadd | 2008-11-16 19:01:44 +0100 | [diff] [blame] | 848 | int ret = 1; |
| 849 | |
| 850 | instr = kmalloc(sizeof(struct ustr), GFP_NOFS); |
| 851 | if (!instr) |
| 852 | return 1; |
| 853 | |
| 854 | outstr = kmalloc(sizeof(struct ustr), GFP_NOFS); |
| 855 | if (!outstr) |
| 856 | goto out1; |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 857 | |
| 858 | bh = udf_read_tagged(sb, block, block, &ident); |
| 859 | if (!bh) |
Marcin Slusarz | ba9aadd | 2008-11-16 19:01:44 +0100 | [diff] [blame] | 860 | goto out2; |
| 861 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 862 | BUG_ON(ident != TAG_IDENT_PVD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | |
| 864 | pvoldesc = (struct primaryVolDesc *)bh->b_data; |
| 865 | |
Marcin Slusarz | 5677480 | 2008-02-10 11:25:31 +0100 | [diff] [blame] | 866 | if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time, |
| 867 | pvoldesc->recordingDateAndTime)) { |
Marcin Slusarz | af15a29 | 2008-02-10 11:29:10 +0100 | [diff] [blame] | 868 | #ifdef UDFFS_DEBUG |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 869 | struct timestamp *ts = &pvoldesc->recordingDateAndTime; |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 870 | udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n", |
Marcin Slusarz | af15a29 | 2008-02-10 11:29:10 +0100 | [diff] [blame] | 871 | le16_to_cpu(ts->year), ts->month, ts->day, ts->hour, |
| 872 | ts->minute, le16_to_cpu(ts->typeAndTimezone)); |
| 873 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Marcin Slusarz | ba9aadd | 2008-11-16 19:01:44 +0100 | [diff] [blame] | 876 | if (!udf_build_ustr(instr, pvoldesc->volIdent, 32)) |
| 877 | if (udf_CS0toUTF8(outstr, instr)) { |
| 878 | strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name, |
| 879 | outstr->u_len > 31 ? 31 : outstr->u_len); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 880 | udf_debug("volIdent[] = '%s'\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 881 | UDF_SB(sb)->s_volume_ident); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
Marcin Slusarz | ba9aadd | 2008-11-16 19:01:44 +0100 | [diff] [blame] | 884 | if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128)) |
| 885 | if (udf_CS0toUTF8(outstr, instr)) |
| 886 | udf_debug("volSetIdent[] = '%s'\n", outstr->u_name); |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 887 | |
| 888 | brelse(bh); |
Marcin Slusarz | ba9aadd | 2008-11-16 19:01:44 +0100 | [diff] [blame] | 889 | ret = 0; |
| 890 | out2: |
| 891 | kfree(outstr); |
| 892 | out1: |
| 893 | kfree(instr); |
| 894 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | } |
| 896 | |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 897 | struct inode *udf_find_metadata_inode_efe(struct super_block *sb, |
| 898 | u32 meta_file_loc, u32 partition_num) |
| 899 | { |
| 900 | struct kernel_lb_addr addr; |
| 901 | struct inode *metadata_fe; |
| 902 | |
| 903 | addr.logicalBlockNum = meta_file_loc; |
| 904 | addr.partitionReferenceNum = partition_num; |
| 905 | |
| 906 | metadata_fe = udf_iget(sb, &addr); |
| 907 | |
| 908 | if (metadata_fe == NULL) |
| 909 | udf_warn(sb, "metadata inode efe not found\n"); |
| 910 | else if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) { |
| 911 | udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n"); |
| 912 | iput(metadata_fe); |
| 913 | metadata_fe = NULL; |
| 914 | } |
| 915 | |
| 916 | return metadata_fe; |
| 917 | } |
| 918 | |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 919 | static int udf_load_metadata_files(struct super_block *sb, int partition) |
| 920 | { |
| 921 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 922 | struct udf_part_map *map; |
| 923 | struct udf_meta_data *mdata; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 924 | struct kernel_lb_addr addr; |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 925 | |
| 926 | map = &sbi->s_partmaps[partition]; |
| 927 | mdata = &map->s_type_specific.s_metadata; |
| 928 | |
| 929 | /* metadata address */ |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 930 | udf_debug("Metadata file location: block = %d part = %d\n", |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 931 | mdata->s_meta_file_loc, map->s_partition_num); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 932 | |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 933 | mdata->s_metadata_fe = udf_find_metadata_inode_efe(sb, |
| 934 | mdata->s_meta_file_loc, map->s_partition_num); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 935 | |
| 936 | if (mdata->s_metadata_fe == NULL) { |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 937 | /* mirror file entry */ |
| 938 | udf_debug("Mirror metadata file location: block = %d part = %d\n", |
| 939 | mdata->s_mirror_file_loc, map->s_partition_num); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 940 | |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 941 | mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb, |
| 942 | mdata->s_mirror_file_loc, map->s_partition_num); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 943 | |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 944 | if (mdata->s_mirror_fe == NULL) { |
| 945 | udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n"); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 946 | goto error_exit; |
Namjae Jeon | 3080a74 | 2011-10-23 19:28:32 +0900 | [diff] [blame] | 947 | } |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | /* |
| 951 | * bitmap file entry |
| 952 | * Note: |
| 953 | * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102) |
| 954 | */ |
| 955 | if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) { |
| 956 | addr.logicalBlockNum = mdata->s_bitmap_file_loc; |
| 957 | addr.partitionReferenceNum = map->s_partition_num; |
| 958 | |
| 959 | udf_debug("Bitmap file location: block = %d part = %d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 960 | addr.logicalBlockNum, addr.partitionReferenceNum); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 961 | |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 962 | mdata->s_bitmap_fe = udf_iget(sb, &addr); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 963 | |
| 964 | if (mdata->s_bitmap_fe == NULL) { |
| 965 | if (sb->s_flags & MS_RDONLY) |
Joe Perches | a40ecd7 | 2011-10-10 01:08:04 -0700 | [diff] [blame] | 966 | udf_warn(sb, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n"); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 967 | else { |
Joe Perches | 8076c36 | 2011-10-10 01:08:03 -0700 | [diff] [blame] | 968 | udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n"); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 969 | goto error_exit; |
| 970 | } |
| 971 | } |
| 972 | } |
| 973 | |
| 974 | udf_debug("udf_load_metadata_files Ok\n"); |
| 975 | |
| 976 | return 0; |
| 977 | |
| 978 | error_exit: |
| 979 | return 1; |
| 980 | } |
| 981 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 982 | static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 983 | struct kernel_lb_addr *root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | { |
| 985 | struct fileSetDesc *fset; |
| 986 | |
| 987 | fset = (struct fileSetDesc *)bh->b_data; |
| 988 | |
| 989 | *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation); |
| 990 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 991 | UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 993 | udf_debug("Rootdir at block=%d, partition=%d\n", |
| 994 | root->logicalBlockNum, root->partitionReferenceNum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | } |
| 996 | |
Marcin Slusarz | 883cb9d | 2008-02-08 04:20:34 -0800 | [diff] [blame] | 997 | int udf_compute_nr_groups(struct super_block *sb, u32 partition) |
| 998 | { |
| 999 | struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition]; |
Julia Lawall | 8dee00b | 2008-02-14 16:15:45 +0100 | [diff] [blame] | 1000 | return DIV_ROUND_UP(map->s_partition_len + |
| 1001 | (sizeof(struct spaceBitmapDesc) << 3), |
| 1002 | sb->s_blocksize * 8); |
Marcin Slusarz | 883cb9d | 2008-02-08 04:20:34 -0800 | [diff] [blame] | 1003 | } |
| 1004 | |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1005 | static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index) |
| 1006 | { |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1007 | struct udf_bitmap *bitmap; |
| 1008 | int nr_groups; |
| 1009 | int size; |
| 1010 | |
Marcin Slusarz | 883cb9d | 2008-02-08 04:20:34 -0800 | [diff] [blame] | 1011 | nr_groups = udf_compute_nr_groups(sb, index); |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1012 | size = sizeof(struct udf_bitmap) + |
| 1013 | (sizeof(struct buffer_head *) * nr_groups); |
| 1014 | |
| 1015 | if (size <= PAGE_SIZE) |
Joe Perches | ed2ae6f | 2010-11-04 20:08:04 -0700 | [diff] [blame] | 1016 | bitmap = kzalloc(size, GFP_KERNEL); |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1017 | else |
Joe Perches | ed2ae6f | 2010-11-04 20:08:04 -0700 | [diff] [blame] | 1018 | bitmap = vzalloc(size); /* TODO: get rid of vzalloc */ |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1019 | |
Joe Perches | 75b09e0 | 2012-01-31 14:42:10 -0800 | [diff] [blame] | 1020 | if (bitmap == NULL) |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1021 | return NULL; |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1022 | |
Marcin Slusarz | 66e1da3 | 2008-02-08 04:20:33 -0800 | [diff] [blame] | 1023 | bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1); |
| 1024 | bitmap->s_nr_groups = nr_groups; |
| 1025 | return bitmap; |
| 1026 | } |
| 1027 | |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1028 | static int udf_fill_partdesc_info(struct super_block *sb, |
| 1029 | struct partitionDesc *p, int p_index) |
| 1030 | { |
| 1031 | struct udf_part_map *map; |
| 1032 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1033 | struct partitionHeaderDesc *phd; |
| 1034 | |
| 1035 | map = &sbi->s_partmaps[p_index]; |
| 1036 | |
| 1037 | map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */ |
| 1038 | map->s_partition_root = le32_to_cpu(p->partitionStartingLocation); |
| 1039 | |
| 1040 | if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY)) |
| 1041 | map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY; |
| 1042 | if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE)) |
| 1043 | map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE; |
| 1044 | if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE)) |
| 1045 | map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE; |
| 1046 | if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE)) |
| 1047 | map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE; |
| 1048 | |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1049 | udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n", |
| 1050 | p_index, map->s_partition_type, |
| 1051 | map->s_partition_root, map->s_partition_len); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1052 | |
| 1053 | if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) && |
| 1054 | strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03)) |
| 1055 | return 0; |
| 1056 | |
| 1057 | phd = (struct partitionHeaderDesc *)p->partitionContentsUse; |
| 1058 | if (phd->unallocSpaceTable.extLength) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1059 | struct kernel_lb_addr loc = { |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1060 | .logicalBlockNum = le32_to_cpu( |
| 1061 | phd->unallocSpaceTable.extPosition), |
| 1062 | .partitionReferenceNum = p_index, |
| 1063 | }; |
| 1064 | |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1065 | map->s_uspace.s_table = udf_iget(sb, &loc); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1066 | if (!map->s_uspace.s_table) { |
| 1067 | udf_debug("cannot load unallocSpaceTable (part %d)\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1068 | p_index); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1069 | return 1; |
| 1070 | } |
| 1071 | map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE; |
| 1072 | udf_debug("unallocSpaceTable (part %d) @ %ld\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1073 | p_index, map->s_uspace.s_table->i_ino); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | if (phd->unallocSpaceBitmap.extLength) { |
| 1077 | struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index); |
| 1078 | if (!bitmap) |
| 1079 | return 1; |
| 1080 | map->s_uspace.s_bitmap = bitmap; |
| 1081 | bitmap->s_extLength = le32_to_cpu( |
| 1082 | phd->unallocSpaceBitmap.extLength); |
| 1083 | bitmap->s_extPosition = le32_to_cpu( |
| 1084 | phd->unallocSpaceBitmap.extPosition); |
| 1085 | map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP; |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1086 | udf_debug("unallocSpaceBitmap (part %d) @ %d\n", |
| 1087 | p_index, bitmap->s_extPosition); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | if (phd->partitionIntegrityTable.extLength) |
| 1091 | udf_debug("partitionIntegrityTable (part %d)\n", p_index); |
| 1092 | |
| 1093 | if (phd->freedSpaceTable.extLength) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1094 | struct kernel_lb_addr loc = { |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1095 | .logicalBlockNum = le32_to_cpu( |
| 1096 | phd->freedSpaceTable.extPosition), |
| 1097 | .partitionReferenceNum = p_index, |
| 1098 | }; |
| 1099 | |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 1100 | map->s_fspace.s_table = udf_iget(sb, &loc); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1101 | if (!map->s_fspace.s_table) { |
| 1102 | udf_debug("cannot load freedSpaceTable (part %d)\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1103 | p_index); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1104 | return 1; |
| 1105 | } |
| 1106 | |
| 1107 | map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE; |
| 1108 | udf_debug("freedSpaceTable (part %d) @ %ld\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1109 | p_index, map->s_fspace.s_table->i_ino); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | if (phd->freedSpaceBitmap.extLength) { |
| 1113 | struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index); |
| 1114 | if (!bitmap) |
| 1115 | return 1; |
| 1116 | map->s_fspace.s_bitmap = bitmap; |
| 1117 | bitmap->s_extLength = le32_to_cpu( |
| 1118 | phd->freedSpaceBitmap.extLength); |
| 1119 | bitmap->s_extPosition = le32_to_cpu( |
| 1120 | phd->freedSpaceBitmap.extPosition); |
| 1121 | map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP; |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1122 | udf_debug("freedSpaceBitmap (part %d) @ %d\n", |
| 1123 | p_index, bitmap->s_extPosition); |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1124 | } |
| 1125 | return 0; |
| 1126 | } |
| 1127 | |
Jan Kara | e971b0b | 2009-11-30 19:47:55 +0100 | [diff] [blame] | 1128 | static void udf_find_vat_block(struct super_block *sb, int p_index, |
| 1129 | int type1_index, sector_t start_block) |
| 1130 | { |
| 1131 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1132 | struct udf_part_map *map = &sbi->s_partmaps[p_index]; |
| 1133 | sector_t vat_block; |
| 1134 | struct kernel_lb_addr ino; |
| 1135 | |
| 1136 | /* |
| 1137 | * VAT file entry is in the last recorded block. Some broken disks have |
| 1138 | * it a few blocks before so try a bit harder... |
| 1139 | */ |
| 1140 | ino.partitionReferenceNum = type1_index; |
| 1141 | for (vat_block = start_block; |
| 1142 | vat_block >= map->s_partition_root && |
| 1143 | vat_block >= start_block - 3 && |
| 1144 | !sbi->s_vat_inode; vat_block--) { |
| 1145 | ino.logicalBlockNum = vat_block - map->s_partition_root; |
| 1146 | sbi->s_vat_inode = udf_iget(sb, &ino); |
| 1147 | } |
| 1148 | } |
| 1149 | |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1150 | static int udf_load_vat(struct super_block *sb, int p_index, int type1_index) |
| 1151 | { |
| 1152 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1153 | struct udf_part_map *map = &sbi->s_partmaps[p_index]; |
Jan Kara | fa5e081 | 2008-04-08 02:08:53 +0200 | [diff] [blame] | 1154 | struct buffer_head *bh = NULL; |
| 1155 | struct udf_inode_info *vati; |
| 1156 | uint32_t pos; |
| 1157 | struct virtualAllocationTable20 *vat20; |
Jan Kara | 4bf17af | 2009-07-14 19:30:23 +0200 | [diff] [blame] | 1158 | sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits; |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1159 | |
Jan Kara | e971b0b | 2009-11-30 19:47:55 +0100 | [diff] [blame] | 1160 | udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block); |
Jan Kara | 4bf17af | 2009-07-14 19:30:23 +0200 | [diff] [blame] | 1161 | if (!sbi->s_vat_inode && |
| 1162 | sbi->s_last_block != blocks - 1) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1163 | pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n", |
| 1164 | (unsigned long)sbi->s_last_block, |
| 1165 | (unsigned long)blocks - 1); |
Jan Kara | e971b0b | 2009-11-30 19:47:55 +0100 | [diff] [blame] | 1166 | udf_find_vat_block(sb, p_index, type1_index, blocks - 1); |
Jan Kara | 4bf17af | 2009-07-14 19:30:23 +0200 | [diff] [blame] | 1167 | } |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1168 | if (!sbi->s_vat_inode) |
| 1169 | return 1; |
| 1170 | |
| 1171 | if (map->s_partition_type == UDF_VIRTUAL_MAP15) { |
Sebastian Manciulea | 47c9358 | 2008-04-14 17:06:36 +0200 | [diff] [blame] | 1172 | map->s_type_specific.s_virtual.s_start_offset = 0; |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1173 | map->s_type_specific.s_virtual.s_num_entries = |
| 1174 | (sbi->s_vat_inode->i_size - 36) >> 2; |
| 1175 | } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) { |
Jan Kara | fa5e081 | 2008-04-08 02:08:53 +0200 | [diff] [blame] | 1176 | vati = UDF_I(sbi->s_vat_inode); |
| 1177 | if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
| 1178 | pos = udf_block_map(sbi->s_vat_inode, 0); |
| 1179 | bh = sb_bread(sb, pos); |
| 1180 | if (!bh) |
| 1181 | return 1; |
| 1182 | vat20 = (struct virtualAllocationTable20 *)bh->b_data; |
| 1183 | } else { |
| 1184 | vat20 = (struct virtualAllocationTable20 *) |
| 1185 | vati->i_ext.i_data; |
| 1186 | } |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1187 | |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1188 | map->s_type_specific.s_virtual.s_start_offset = |
Sebastian Manciulea | 47c9358 | 2008-04-14 17:06:36 +0200 | [diff] [blame] | 1189 | le16_to_cpu(vat20->lengthHeader); |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1190 | map->s_type_specific.s_virtual.s_num_entries = |
| 1191 | (sbi->s_vat_inode->i_size - |
| 1192 | map->s_type_specific.s_virtual. |
| 1193 | s_start_offset) >> 2; |
| 1194 | brelse(bh); |
| 1195 | } |
| 1196 | return 0; |
| 1197 | } |
| 1198 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1199 | static int udf_load_partdesc(struct super_block *sb, sector_t block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | { |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1201 | struct buffer_head *bh; |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1202 | struct partitionDesc *p; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1203 | struct udf_part_map *map; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1204 | struct udf_sb_info *sbi = UDF_SB(sb); |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1205 | int i, type1_idx; |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1206 | uint16_t partitionNumber; |
| 1207 | uint16_t ident; |
| 1208 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1210 | bh = udf_read_tagged(sb, block, block, &ident); |
| 1211 | if (!bh) |
| 1212 | return 1; |
| 1213 | if (ident != TAG_IDENT_PD) |
| 1214 | goto out_bh; |
| 1215 | |
| 1216 | p = (struct partitionDesc *)bh->b_data; |
| 1217 | partitionNumber = le16_to_cpu(p->partitionNumber); |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1218 | |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1219 | /* First scan for TYPE1, SPARABLE and METADATA partitions */ |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1220 | for (i = 0; i < sbi->s_partitions; i++) { |
| 1221 | map = &sbi->s_partmaps[i]; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1222 | udf_debug("Searching map: (%d == %d)\n", |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1223 | map->s_partition_num, partitionNumber); |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1224 | if (map->s_partition_num == partitionNumber && |
| 1225 | (map->s_partition_type == UDF_TYPE1_MAP15 || |
| 1226 | map->s_partition_type == UDF_SPARABLE_MAP15)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | break; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1228 | } |
| 1229 | |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1230 | if (i >= sbi->s_partitions) { |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1231 | udf_debug("Partition (%d) not found in partition map\n", |
| 1232 | partitionNumber); |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1233 | goto out_bh; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1234 | } |
| 1235 | |
Jan Kara | 3fb38df | 2008-04-02 12:26:36 +0200 | [diff] [blame] | 1236 | ret = udf_fill_partdesc_info(sb, p, i); |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1237 | |
| 1238 | /* |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1239 | * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and |
| 1240 | * PHYSICAL partitions are already set up |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1241 | */ |
| 1242 | type1_idx = i; |
| 1243 | for (i = 0; i < sbi->s_partitions; i++) { |
| 1244 | map = &sbi->s_partmaps[i]; |
| 1245 | |
| 1246 | if (map->s_partition_num == partitionNumber && |
| 1247 | (map->s_partition_type == UDF_VIRTUAL_MAP15 || |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1248 | map->s_partition_type == UDF_VIRTUAL_MAP20 || |
| 1249 | map->s_partition_type == UDF_METADATA_MAP25)) |
Jan Kara | 38b74a5 | 2008-04-02 16:01:35 +0200 | [diff] [blame] | 1250 | break; |
| 1251 | } |
| 1252 | |
| 1253 | if (i >= sbi->s_partitions) |
| 1254 | goto out_bh; |
| 1255 | |
| 1256 | ret = udf_fill_partdesc_info(sb, p, i); |
| 1257 | if (ret) |
| 1258 | goto out_bh; |
| 1259 | |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1260 | if (map->s_partition_type == UDF_METADATA_MAP25) { |
| 1261 | ret = udf_load_metadata_files(sb, i); |
| 1262 | if (ret) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1263 | udf_err(sb, "error loading MetaData partition map %d\n", |
| 1264 | i); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1265 | goto out_bh; |
| 1266 | } |
| 1267 | } else { |
| 1268 | ret = udf_load_vat(sb, i, type1_idx); |
| 1269 | if (ret) |
| 1270 | goto out_bh; |
| 1271 | /* |
| 1272 | * Mark filesystem read-only if we have a partition with |
| 1273 | * virtual map since we don't handle writing to it (we |
| 1274 | * overwrite blocks instead of relocating them). |
| 1275 | */ |
| 1276 | sb->s_flags |= MS_RDONLY; |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1277 | pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n"); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1278 | } |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1279 | out_bh: |
Jan Kara | 2e0838f | 2008-04-01 18:08:51 +0200 | [diff] [blame] | 1280 | /* In case loading failed, we handle cleanup in udf_fill_super */ |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1281 | brelse(bh); |
| 1282 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | } |
| 1284 | |
Jan Kara | 1df2ae3 | 2012-06-27 21:23:07 +0200 | [diff] [blame] | 1285 | static int udf_load_sparable_map(struct super_block *sb, |
| 1286 | struct udf_part_map *map, |
| 1287 | struct sparablePartitionMap *spm) |
| 1288 | { |
| 1289 | uint32_t loc; |
| 1290 | uint16_t ident; |
| 1291 | struct sparingTable *st; |
| 1292 | struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing; |
| 1293 | int i; |
| 1294 | struct buffer_head *bh; |
| 1295 | |
| 1296 | map->s_partition_type = UDF_SPARABLE_MAP15; |
| 1297 | sdata->s_packet_len = le16_to_cpu(spm->packetLength); |
| 1298 | if (!is_power_of_2(sdata->s_packet_len)) { |
| 1299 | udf_err(sb, "error loading logical volume descriptor: " |
| 1300 | "Invalid packet length %u\n", |
| 1301 | (unsigned)sdata->s_packet_len); |
| 1302 | return -EIO; |
| 1303 | } |
| 1304 | if (spm->numSparingTables > 4) { |
| 1305 | udf_err(sb, "error loading logical volume descriptor: " |
| 1306 | "Too many sparing tables (%d)\n", |
| 1307 | (int)spm->numSparingTables); |
| 1308 | return -EIO; |
| 1309 | } |
| 1310 | |
| 1311 | for (i = 0; i < spm->numSparingTables; i++) { |
| 1312 | loc = le32_to_cpu(spm->locSparingTable[i]); |
| 1313 | bh = udf_read_tagged(sb, loc, loc, &ident); |
| 1314 | if (!bh) |
| 1315 | continue; |
| 1316 | |
| 1317 | st = (struct sparingTable *)bh->b_data; |
| 1318 | if (ident != 0 || |
| 1319 | strncmp(st->sparingIdent.ident, UDF_ID_SPARING, |
| 1320 | strlen(UDF_ID_SPARING)) || |
| 1321 | sizeof(*st) + le16_to_cpu(st->reallocationTableLen) > |
| 1322 | sb->s_blocksize) { |
| 1323 | brelse(bh); |
| 1324 | continue; |
| 1325 | } |
| 1326 | |
| 1327 | sdata->s_spar_map[i] = bh; |
| 1328 | } |
| 1329 | map->s_partition_func = udf_get_pblock_spar15; |
| 1330 | return 0; |
| 1331 | } |
| 1332 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1333 | static int udf_load_logicalvol(struct super_block *sb, sector_t block, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1334 | struct kernel_lb_addr *fileset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | { |
| 1336 | struct logicalVolDesc *lvd; |
Jan Kara | 1df2ae3 | 2012-06-27 21:23:07 +0200 | [diff] [blame] | 1337 | int i, offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | uint8_t type; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1339 | struct udf_sb_info *sbi = UDF_SB(sb); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1340 | struct genericPartitionMap *gpm; |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1341 | uint16_t ident; |
| 1342 | struct buffer_head *bh; |
Jan Kara | adee11b | 2012-06-27 20:20:22 +0200 | [diff] [blame] | 1343 | unsigned int table_len; |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1344 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1346 | bh = udf_read_tagged(sb, block, block, &ident); |
| 1347 | if (!bh) |
| 1348 | return 1; |
| 1349 | BUG_ON(ident != TAG_IDENT_LVD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | lvd = (struct logicalVolDesc *)bh->b_data; |
Jan Kara | adee11b | 2012-06-27 20:20:22 +0200 | [diff] [blame] | 1351 | table_len = le32_to_cpu(lvd->mapTableLength); |
Jan Kara | 57b9655 | 2012-07-10 17:58:04 +0200 | [diff] [blame] | 1352 | if (table_len > sb->s_blocksize - sizeof(*lvd)) { |
Jan Kara | adee11b | 2012-06-27 20:20:22 +0200 | [diff] [blame] | 1353 | udf_err(sb, "error loading logical volume descriptor: " |
| 1354 | "Partition table too long (%u > %lu)\n", table_len, |
| 1355 | sb->s_blocksize - sizeof(*lvd)); |
Nikola Pajkovsky | 68766a2 | 2012-08-15 00:38:08 +0200 | [diff] [blame] | 1356 | ret = 1; |
Jan Kara | adee11b | 2012-06-27 20:20:22 +0200 | [diff] [blame] | 1357 | goto out_bh; |
| 1358 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
Jan Kara | cb14d34 | 2012-06-27 20:08:44 +0200 | [diff] [blame] | 1360 | ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps)); |
| 1361 | if (ret) |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1362 | goto out_bh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1364 | for (i = 0, offset = 0; |
Jan Kara | adee11b | 2012-06-27 20:20:22 +0200 | [diff] [blame] | 1365 | i < sbi->s_partitions && offset < table_len; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1366 | i++, offset += gpm->partitionMapLength) { |
| 1367 | struct udf_part_map *map = &sbi->s_partmaps[i]; |
| 1368 | gpm = (struct genericPartitionMap *) |
| 1369 | &(lvd->partitionMaps[offset]); |
| 1370 | type = gpm->partitionMapType; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1371 | if (type == 1) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1372 | struct genericPartitionMap1 *gpm1 = |
| 1373 | (struct genericPartitionMap1 *)gpm; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1374 | map->s_partition_type = UDF_TYPE1_MAP15; |
| 1375 | map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum); |
| 1376 | map->s_partition_num = le16_to_cpu(gpm1->partitionNum); |
| 1377 | map->s_partition_func = NULL; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1378 | } else if (type == 2) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1379 | struct udfPartitionMap2 *upm2 = |
| 1380 | (struct udfPartitionMap2 *)gpm; |
| 1381 | if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL, |
| 1382 | strlen(UDF_ID_VIRTUAL))) { |
| 1383 | u16 suf = |
| 1384 | le16_to_cpu(((__le16 *)upm2->partIdent. |
| 1385 | identSuffix)[0]); |
Jan Kara | c82a127 | 2008-04-08 01:16:32 +0200 | [diff] [blame] | 1386 | if (suf < 0x0200) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1387 | map->s_partition_type = |
| 1388 | UDF_VIRTUAL_MAP15; |
| 1389 | map->s_partition_func = |
| 1390 | udf_get_pblock_virt15; |
Jan Kara | c82a127 | 2008-04-08 01:16:32 +0200 | [diff] [blame] | 1391 | } else { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1392 | map->s_partition_type = |
| 1393 | UDF_VIRTUAL_MAP20; |
| 1394 | map->s_partition_func = |
| 1395 | udf_get_pblock_virt20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | } |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1397 | } else if (!strncmp(upm2->partIdent.ident, |
| 1398 | UDF_ID_SPARABLE, |
| 1399 | strlen(UDF_ID_SPARABLE))) { |
Jan Kara | 1df2ae3 | 2012-06-27 21:23:07 +0200 | [diff] [blame] | 1400 | if (udf_load_sparable_map(sb, map, |
Nikola Pajkovsky | 68766a2 | 2012-08-15 00:38:08 +0200 | [diff] [blame] | 1401 | (struct sparablePartitionMap *)gpm) < 0) { |
| 1402 | ret = 1; |
Jan Kara | 1df2ae3 | 2012-06-27 21:23:07 +0200 | [diff] [blame] | 1403 | goto out_bh; |
Nikola Pajkovsky | 68766a2 | 2012-08-15 00:38:08 +0200 | [diff] [blame] | 1404 | } |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1405 | } else if (!strncmp(upm2->partIdent.ident, |
| 1406 | UDF_ID_METADATA, |
| 1407 | strlen(UDF_ID_METADATA))) { |
| 1408 | struct udf_meta_data *mdata = |
| 1409 | &map->s_type_specific.s_metadata; |
| 1410 | struct metadataPartitionMap *mdm = |
| 1411 | (struct metadataPartitionMap *) |
| 1412 | &(lvd->partitionMaps[offset]); |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1413 | udf_debug("Parsing Logical vol part %d type %d id=%s\n", |
| 1414 | i, type, UDF_ID_METADATA); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1415 | |
| 1416 | map->s_partition_type = UDF_METADATA_MAP25; |
| 1417 | map->s_partition_func = udf_get_pblock_meta25; |
| 1418 | |
| 1419 | mdata->s_meta_file_loc = |
| 1420 | le32_to_cpu(mdm->metadataFileLoc); |
| 1421 | mdata->s_mirror_file_loc = |
| 1422 | le32_to_cpu(mdm->metadataMirrorFileLoc); |
| 1423 | mdata->s_bitmap_file_loc = |
| 1424 | le32_to_cpu(mdm->metadataBitmapFileLoc); |
| 1425 | mdata->s_alloc_unit_size = |
| 1426 | le32_to_cpu(mdm->allocUnitSize); |
| 1427 | mdata->s_align_unit_size = |
| 1428 | le16_to_cpu(mdm->alignUnitSize); |
Jan Kara | ed47a7d | 2011-10-24 16:47:48 +0200 | [diff] [blame] | 1429 | if (mdm->flags & 0x01) |
| 1430 | mdata->s_flags |= MF_DUPLICATE_MD; |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1431 | |
| 1432 | udf_debug("Metadata Ident suffix=0x%x\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1433 | le16_to_cpu(*(__le16 *) |
| 1434 | mdm->partIdent.identSuffix)); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1435 | udf_debug("Metadata part num=%d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1436 | le16_to_cpu(mdm->partitionNum)); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1437 | udf_debug("Metadata part alloc unit size=%d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1438 | le32_to_cpu(mdm->allocUnitSize)); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1439 | udf_debug("Metadata file loc=%d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1440 | le32_to_cpu(mdm->metadataFileLoc)); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1441 | udf_debug("Mirror file loc=%d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1442 | le32_to_cpu(mdm->metadataMirrorFileLoc)); |
Jan Kara | bfb257a | 2008-04-08 20:37:21 +0200 | [diff] [blame] | 1443 | udf_debug("Bitmap file loc=%d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1444 | le32_to_cpu(mdm->metadataBitmapFileLoc)); |
Jan Kara | ed47a7d | 2011-10-24 16:47:48 +0200 | [diff] [blame] | 1445 | udf_debug("Flags: %d %d\n", |
| 1446 | mdata->s_flags, mdm->flags); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1447 | } else { |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 1448 | udf_debug("Unknown ident: %s\n", |
| 1449 | upm2->partIdent.ident); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | continue; |
| 1451 | } |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1452 | map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum); |
| 1453 | map->s_partition_num = le16_to_cpu(upm2->partitionNum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | } |
| 1455 | udf_debug("Partition (%d:%d) type %d on volume %d\n", |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1456 | i, map->s_partition_num, type, map->s_volumeseqnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | } |
| 1458 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1459 | if (fileset) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1460 | struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | |
| 1462 | *fileset = lelb_to_cpu(la->extLocation); |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1463 | udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n", |
| 1464 | fileset->logicalBlockNum, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1465 | fileset->partitionReferenceNum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | } |
| 1467 | if (lvd->integritySeqExt.extLength) |
| 1468 | udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt)); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1469 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1470 | out_bh: |
| 1471 | brelse(bh); |
| 1472 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | /* |
| 1476 | * udf_load_logicalvolint |
| 1477 | * |
| 1478 | */ |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1479 | static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | { |
| 1481 | struct buffer_head *bh = NULL; |
| 1482 | uint16_t ident; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1483 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1484 | struct logicalVolIntegrityDesc *lvid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
| 1486 | while (loc.extLength > 0 && |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1487 | (bh = udf_read_tagged(sb, loc.extLocation, |
| 1488 | loc.extLocation, &ident)) && |
| 1489 | ident == TAG_IDENT_LVID) { |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1490 | sbi->s_lvid_bh = bh; |
| 1491 | lvid = (struct logicalVolIntegrityDesc *)bh->b_data; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1492 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1493 | if (lvid->nextIntegrityExt.extLength) |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 1494 | udf_load_logicalvolint(sb, |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1495 | leea_to_cpu(lvid->nextIntegrityExt)); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1496 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1497 | if (sbi->s_lvid_bh != bh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1498 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | loc.extLength -= sb->s_blocksize; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1500 | loc.extLocation++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | } |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1502 | if (sbi->s_lvid_bh != bh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1503 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | } |
| 1505 | |
| 1506 | /* |
| 1507 | * udf_process_sequence |
| 1508 | * |
| 1509 | * PURPOSE |
| 1510 | * Process a main/reserve volume descriptor sequence. |
| 1511 | * |
| 1512 | * PRE-CONDITIONS |
| 1513 | * sb Pointer to _locked_ superblock. |
| 1514 | * block First block of first extent of the sequence. |
| 1515 | * lastblock Lastblock of first extent of the sequence. |
| 1516 | * |
| 1517 | * HISTORY |
| 1518 | * July 1, 1997 - Andrew E. Mileski |
| 1519 | * Written, tested, and released. |
| 1520 | */ |
Jan Kara | 200a359 | 2008-03-04 13:03:09 +0100 | [diff] [blame] | 1521 | static noinline int udf_process_sequence(struct super_block *sb, long block, |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1522 | long lastblock, struct kernel_lb_addr *fileset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | { |
| 1524 | struct buffer_head *bh = NULL; |
| 1525 | struct udf_vds_record vds[VDS_POS_LENGTH]; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1526 | struct udf_vds_record *curr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | struct generic_desc *gd; |
| 1528 | struct volDescPtr *vdp; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1529 | int done = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | uint32_t vdsn; |
| 1531 | uint16_t ident; |
| 1532 | long next_s = 0, next_e = 0; |
| 1533 | |
| 1534 | memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH); |
| 1535 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1536 | /* |
| 1537 | * Read the main descriptor sequence and find which descriptors |
| 1538 | * are in it. |
| 1539 | */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1540 | for (; (!done && block <= lastblock); block++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | |
| 1542 | bh = udf_read_tagged(sb, block, block, &ident); |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1543 | if (!bh) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1544 | udf_err(sb, |
| 1545 | "Block %llu of volume descriptor sequence is corrupted or we could not read it\n", |
| 1546 | (unsigned long long)block); |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1547 | return 1; |
| 1548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
| 1550 | /* Process each descriptor (ISO 13346 3/8.3-8.4) */ |
| 1551 | gd = (struct generic_desc *)bh->b_data; |
| 1552 | vdsn = le32_to_cpu(gd->volDescSeqNum); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1553 | switch (ident) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1554 | case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1555 | curr = &vds[VDS_POS_PRIMARY_VOL_DESC]; |
| 1556 | if (vdsn >= curr->volDescSeqNum) { |
| 1557 | curr->volDescSeqNum = vdsn; |
| 1558 | curr->block = block; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1559 | } |
| 1560 | break; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1561 | case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1562 | curr = &vds[VDS_POS_VOL_DESC_PTR]; |
| 1563 | if (vdsn >= curr->volDescSeqNum) { |
| 1564 | curr->volDescSeqNum = vdsn; |
| 1565 | curr->block = block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1567 | vdp = (struct volDescPtr *)bh->b_data; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1568 | next_s = le32_to_cpu( |
| 1569 | vdp->nextVolDescSeqExt.extLocation); |
| 1570 | next_e = le32_to_cpu( |
| 1571 | vdp->nextVolDescSeqExt.extLength); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1572 | next_e = next_e >> sb->s_blocksize_bits; |
| 1573 | next_e += next_s; |
| 1574 | } |
| 1575 | break; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1576 | case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1577 | curr = &vds[VDS_POS_IMP_USE_VOL_DESC]; |
| 1578 | if (vdsn >= curr->volDescSeqNum) { |
| 1579 | curr->volDescSeqNum = vdsn; |
| 1580 | curr->block = block; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1581 | } |
| 1582 | break; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1583 | case TAG_IDENT_PD: /* ISO 13346 3/10.5 */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1584 | curr = &vds[VDS_POS_PARTITION_DESC]; |
| 1585 | if (!curr->block) |
| 1586 | curr->block = block; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1587 | break; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1588 | case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1589 | curr = &vds[VDS_POS_LOGICAL_VOL_DESC]; |
| 1590 | if (vdsn >= curr->volDescSeqNum) { |
| 1591 | curr->volDescSeqNum = vdsn; |
| 1592 | curr->block = block; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1593 | } |
| 1594 | break; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1595 | case TAG_IDENT_USD: /* ISO 13346 3/10.8 */ |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1596 | curr = &vds[VDS_POS_UNALLOC_SPACE_DESC]; |
| 1597 | if (vdsn >= curr->volDescSeqNum) { |
| 1598 | curr->volDescSeqNum = vdsn; |
| 1599 | curr->block = block; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1600 | } |
| 1601 | break; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1602 | case TAG_IDENT_TD: /* ISO 13346 3/10.9 */ |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1603 | vds[VDS_POS_TERMINATING_DESC].block = block; |
| 1604 | if (next_e) { |
| 1605 | block = next_s; |
| 1606 | lastblock = next_e; |
| 1607 | next_s = next_e = 0; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 1608 | } else |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1609 | done = 1; |
| 1610 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | } |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 1612 | brelse(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | } |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1614 | /* |
| 1615 | * Now read interesting descriptors again and process them |
| 1616 | * in a suitable order |
| 1617 | */ |
| 1618 | if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1619 | udf_err(sb, "Primary Volume Descriptor not found!\n"); |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1620 | return 1; |
| 1621 | } |
| 1622 | if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block)) |
| 1623 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1625 | if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb, |
| 1626 | vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset)) |
| 1627 | return 1; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1628 | |
Jan Kara | c0eb31e | 2008-04-01 16:50:35 +0200 | [diff] [blame] | 1629 | if (vds[VDS_POS_PARTITION_DESC].block) { |
| 1630 | /* |
| 1631 | * We rescan the whole descriptor sequence to find |
| 1632 | * partition descriptor blocks and process them. |
| 1633 | */ |
| 1634 | for (block = vds[VDS_POS_PARTITION_DESC].block; |
| 1635 | block < vds[VDS_POS_TERMINATING_DESC].block; |
| 1636 | block++) |
| 1637 | if (udf_load_partdesc(sb, block)) |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1638 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | } |
| 1640 | |
| 1641 | return 0; |
| 1642 | } |
| 1643 | |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1644 | static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh, |
| 1645 | struct kernel_lb_addr *fileset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | { |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1647 | struct anchorVolDescPtr *anchor; |
| 1648 | long main_s, main_e, reserve_s, reserve_e; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1650 | anchor = (struct anchorVolDescPtr *)bh->b_data; |
| 1651 | |
| 1652 | /* Locate the main sequence */ |
| 1653 | main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation); |
| 1654 | main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength); |
| 1655 | main_e = main_e >> sb->s_blocksize_bits; |
| 1656 | main_e += main_s; |
| 1657 | |
| 1658 | /* Locate the reserve sequence */ |
| 1659 | reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation); |
| 1660 | reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength); |
| 1661 | reserve_e = reserve_e >> sb->s_blocksize_bits; |
| 1662 | reserve_e += reserve_s; |
| 1663 | |
| 1664 | /* Process the main & reserve sequences */ |
| 1665 | /* responsible for finding the PartitionDesc(s) */ |
| 1666 | if (!udf_process_sequence(sb, main_s, main_e, fileset)) |
| 1667 | return 1; |
Jan Kara | bff943a | 2012-06-27 22:27:05 +0200 | [diff] [blame] | 1668 | udf_sb_free_partitions(sb); |
| 1669 | if (!udf_process_sequence(sb, reserve_s, reserve_e, fileset)) |
| 1670 | return 1; |
| 1671 | udf_sb_free_partitions(sb); |
| 1672 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | } |
| 1674 | |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1675 | /* |
| 1676 | * Check whether there is an anchor block in the given block and |
| 1677 | * load Volume Descriptor Sequence if so. |
| 1678 | */ |
| 1679 | static int udf_check_anchor_block(struct super_block *sb, sector_t block, |
| 1680 | struct kernel_lb_addr *fileset) |
| 1681 | { |
| 1682 | struct buffer_head *bh; |
| 1683 | uint16_t ident; |
| 1684 | int ret; |
| 1685 | |
| 1686 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) && |
| 1687 | udf_fixed_to_variable(block) >= |
| 1688 | sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits) |
| 1689 | return 0; |
| 1690 | |
| 1691 | bh = udf_read_tagged(sb, block, block, &ident); |
| 1692 | if (!bh) |
| 1693 | return 0; |
| 1694 | if (ident != TAG_IDENT_AVDP) { |
| 1695 | brelse(bh); |
| 1696 | return 0; |
| 1697 | } |
| 1698 | ret = udf_load_sequence(sb, bh, fileset); |
| 1699 | brelse(bh); |
| 1700 | return ret; |
| 1701 | } |
| 1702 | |
| 1703 | /* Search for an anchor volume descriptor pointer */ |
| 1704 | static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock, |
| 1705 | struct kernel_lb_addr *fileset) |
| 1706 | { |
| 1707 | sector_t last[6]; |
| 1708 | int i; |
| 1709 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1710 | int last_count = 0; |
| 1711 | |
| 1712 | /* First try user provided anchor */ |
| 1713 | if (sbi->s_anchor) { |
| 1714 | if (udf_check_anchor_block(sb, sbi->s_anchor, fileset)) |
| 1715 | return lastblock; |
| 1716 | } |
| 1717 | /* |
| 1718 | * according to spec, anchor is in either: |
| 1719 | * block 256 |
| 1720 | * lastblock-256 |
| 1721 | * lastblock |
| 1722 | * however, if the disc isn't closed, it could be 512. |
| 1723 | */ |
| 1724 | if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset)) |
| 1725 | return lastblock; |
| 1726 | /* |
| 1727 | * The trouble is which block is the last one. Drives often misreport |
| 1728 | * this so we try various possibilities. |
| 1729 | */ |
| 1730 | last[last_count++] = lastblock; |
| 1731 | if (lastblock >= 1) |
| 1732 | last[last_count++] = lastblock - 1; |
| 1733 | last[last_count++] = lastblock + 1; |
| 1734 | if (lastblock >= 2) |
| 1735 | last[last_count++] = lastblock - 2; |
| 1736 | if (lastblock >= 150) |
| 1737 | last[last_count++] = lastblock - 150; |
| 1738 | if (lastblock >= 152) |
| 1739 | last[last_count++] = lastblock - 152; |
| 1740 | |
| 1741 | for (i = 0; i < last_count; i++) { |
| 1742 | if (last[i] >= sb->s_bdev->bd_inode->i_size >> |
| 1743 | sb->s_blocksize_bits) |
| 1744 | continue; |
| 1745 | if (udf_check_anchor_block(sb, last[i], fileset)) |
| 1746 | return last[i]; |
| 1747 | if (last[i] < 256) |
| 1748 | continue; |
| 1749 | if (udf_check_anchor_block(sb, last[i] - 256, fileset)) |
| 1750 | return last[i]; |
| 1751 | } |
| 1752 | |
| 1753 | /* Finally try block 512 in case media is open */ |
| 1754 | if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset)) |
| 1755 | return last[0]; |
| 1756 | return 0; |
| 1757 | } |
| 1758 | |
| 1759 | /* |
| 1760 | * Find an anchor volume descriptor and load Volume Descriptor Sequence from |
| 1761 | * area specified by it. The function expects sbi->s_lastblock to be the last |
| 1762 | * block on the media. |
| 1763 | * |
| 1764 | * Return 1 if ok, 0 if not found. |
| 1765 | * |
| 1766 | */ |
| 1767 | static int udf_find_anchor(struct super_block *sb, |
| 1768 | struct kernel_lb_addr *fileset) |
| 1769 | { |
| 1770 | sector_t lastblock; |
| 1771 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1772 | |
| 1773 | lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset); |
| 1774 | if (lastblock) |
| 1775 | goto out; |
| 1776 | |
| 1777 | /* No anchor found? Try VARCONV conversion of block numbers */ |
| 1778 | UDF_SET_FLAG(sb, UDF_FLAG_VARCONV); |
| 1779 | /* Firstly, we try to not convert number of the last block */ |
| 1780 | lastblock = udf_scan_anchors(sb, |
| 1781 | udf_variable_to_fixed(sbi->s_last_block), |
| 1782 | fileset); |
| 1783 | if (lastblock) |
| 1784 | goto out; |
| 1785 | |
| 1786 | /* Secondly, we try with converted number of the last block */ |
| 1787 | lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset); |
| 1788 | if (!lastblock) { |
| 1789 | /* VARCONV didn't help. Clear it. */ |
| 1790 | UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV); |
| 1791 | return 0; |
| 1792 | } |
| 1793 | out: |
| 1794 | sbi->s_last_block = lastblock; |
| 1795 | return 1; |
| 1796 | } |
| 1797 | |
| 1798 | /* |
| 1799 | * Check Volume Structure Descriptor, find Anchor block and load Volume |
| 1800 | * Descriptor Sequence |
| 1801 | */ |
| 1802 | static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt, |
| 1803 | int silent, struct kernel_lb_addr *fileset) |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 1804 | { |
| 1805 | struct udf_sb_info *sbi = UDF_SB(sb); |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1806 | loff_t nsr_off; |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 1807 | |
| 1808 | if (!sb_set_blocksize(sb, uopt->blocksize)) { |
| 1809 | if (!silent) |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1810 | udf_warn(sb, "Bad block size\n"); |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 1811 | return 0; |
| 1812 | } |
| 1813 | sbi->s_last_block = uopt->lastblock; |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1814 | if (!uopt->novrs) { |
| 1815 | /* Check that it is NSR02 compliant */ |
| 1816 | nsr_off = udf_check_vsd(sb); |
| 1817 | if (!nsr_off) { |
| 1818 | if (!silent) |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1819 | udf_warn(sb, "No VRS found\n"); |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1820 | return 0; |
| 1821 | } |
| 1822 | if (nsr_off == -1) |
Joe Perches | a983f36 | 2011-10-10 01:08:07 -0700 | [diff] [blame] | 1823 | udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n"); |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1824 | if (!sbi->s_last_block) |
| 1825 | sbi->s_last_block = udf_get_last_block(sb); |
| 1826 | } else { |
| 1827 | udf_debug("Validity check skipped because of novrs option\n"); |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 1828 | } |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1829 | |
| 1830 | /* Look for anchor block and load Volume Descriptor Sequence */ |
| 1831 | sbi->s_anchor = uopt->anchor; |
| 1832 | if (!udf_find_anchor(sb, fileset)) { |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 1833 | if (!silent) |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 1834 | udf_warn(sb, "No anchor found\n"); |
Clemens Ladisch | 1197e4d | 2009-03-11 15:57:47 +0100 | [diff] [blame] | 1835 | return 0; |
| 1836 | } |
| 1837 | return 1; |
| 1838 | } |
| 1839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | static void udf_open_lvid(struct super_block *sb) |
| 1841 | { |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1842 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1843 | struct buffer_head *bh = sbi->s_lvid_bh; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1844 | struct logicalVolIntegrityDesc *lvid; |
| 1845 | struct logicalVolIntegrityDescImpUse *lvidiu; |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 1846 | |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1847 | if (!bh) |
| 1848 | return; |
Jan Kara | 949f4a7 | 2010-10-20 18:49:20 +0200 | [diff] [blame] | 1849 | |
| 1850 | mutex_lock(&sbi->s_alloc_mutex); |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1851 | lvid = (struct logicalVolIntegrityDesc *)bh->b_data; |
| 1852 | lvidiu = udf_sb_lvidiu(sbi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1854 | lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX; |
| 1855 | lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX; |
| 1856 | udf_time_to_disk_stamp(&lvid->recordingDateAndTime, |
| 1857 | CURRENT_TIME); |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 1858 | lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1860 | lvid->descTag.descCRC = cpu_to_le16( |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1861 | crc_itu_t(0, (char *)lvid + sizeof(struct tag), |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 1862 | le16_to_cpu(lvid->descTag.descCRCLength))); |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1863 | |
| 1864 | lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag); |
| 1865 | mark_buffer_dirty(bh); |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 1866 | sbi->s_lvid_dirty = 0; |
Jan Kara | 949f4a7 | 2010-10-20 18:49:20 +0200 | [diff] [blame] | 1867 | mutex_unlock(&sbi->s_alloc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | } |
| 1869 | |
| 1870 | static void udf_close_lvid(struct super_block *sb) |
| 1871 | { |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1872 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1873 | struct buffer_head *bh = sbi->s_lvid_bh; |
| 1874 | struct logicalVolIntegrityDesc *lvid; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1875 | struct logicalVolIntegrityDescImpUse *lvidiu; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1876 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1877 | if (!bh) |
| 1878 | return; |
| 1879 | |
Jan Kara | 949f4a7 | 2010-10-20 18:49:20 +0200 | [diff] [blame] | 1880 | mutex_lock(&sbi->s_alloc_mutex); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1881 | lvid = (struct logicalVolIntegrityDesc *)bh->b_data; |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1882 | lvidiu = udf_sb_lvidiu(sbi); |
| 1883 | lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX; |
| 1884 | lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX; |
| 1885 | udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME); |
| 1886 | if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev)) |
| 1887 | lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION); |
| 1888 | if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev)) |
| 1889 | lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev); |
| 1890 | if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev)) |
| 1891 | lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev); |
| 1892 | lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1894 | lvid->descTag.descCRC = cpu_to_le16( |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1895 | crc_itu_t(0, (char *)lvid + sizeof(struct tag), |
Bob Copeland | f845fce | 2008-04-17 09:47:48 +0200 | [diff] [blame] | 1896 | le16_to_cpu(lvid->descTag.descCRCLength))); |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1897 | |
| 1898 | lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag); |
Jan Kara | 853a0c2 | 2011-12-23 11:53:07 +0100 | [diff] [blame] | 1899 | /* |
| 1900 | * We set buffer uptodate unconditionally here to avoid spurious |
| 1901 | * warnings from mark_buffer_dirty() when previous EIO has marked |
| 1902 | * the buffer as !uptodate |
| 1903 | */ |
| 1904 | set_buffer_uptodate(bh); |
Marcin Slusarz | 165923f | 2008-02-10 11:33:08 +0100 | [diff] [blame] | 1905 | mark_buffer_dirty(bh); |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 1906 | sbi->s_lvid_dirty = 0; |
Jan Kara | 949f4a7 | 2010-10-20 18:49:20 +0200 | [diff] [blame] | 1907 | mutex_unlock(&sbi->s_alloc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | } |
| 1909 | |
Jan Kara | d664b6a | 2010-10-20 18:28:46 +0200 | [diff] [blame] | 1910 | u64 lvid_get_unique_id(struct super_block *sb) |
| 1911 | { |
| 1912 | struct buffer_head *bh; |
| 1913 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 1914 | struct logicalVolIntegrityDesc *lvid; |
| 1915 | struct logicalVolHeaderDesc *lvhd; |
| 1916 | u64 uniqueID; |
| 1917 | u64 ret; |
| 1918 | |
| 1919 | bh = sbi->s_lvid_bh; |
| 1920 | if (!bh) |
| 1921 | return 0; |
| 1922 | |
| 1923 | lvid = (struct logicalVolIntegrityDesc *)bh->b_data; |
| 1924 | lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse; |
| 1925 | |
| 1926 | mutex_lock(&sbi->s_alloc_mutex); |
| 1927 | ret = uniqueID = le64_to_cpu(lvhd->uniqueID); |
| 1928 | if (!(++uniqueID & 0xFFFFFFFF)) |
| 1929 | uniqueID += 16; |
| 1930 | lvhd->uniqueID = cpu_to_le64(uniqueID); |
| 1931 | mutex_unlock(&sbi->s_alloc_mutex); |
| 1932 | mark_buffer_dirty(bh); |
| 1933 | |
| 1934 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | } |
| 1936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | static int udf_fill_super(struct super_block *sb, void *options, int silent) |
| 1938 | { |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 1939 | int ret; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1940 | struct inode *inode = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | struct udf_options uopt; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 1942 | struct kernel_lb_addr rootdir, fileset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | struct udf_sb_info *sbi; |
| 1944 | |
| 1945 | uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT); |
Eric W. Biederman | c2ba138 | 2012-02-10 12:20:35 -0800 | [diff] [blame] | 1946 | uopt.uid = INVALID_UID; |
| 1947 | uopt.gid = INVALID_GID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | uopt.umask = 0; |
Marcin Slusarz | 87bc730 | 2008-12-02 13:40:11 +0100 | [diff] [blame] | 1949 | uopt.fmode = UDF_INVALID_MODE; |
| 1950 | uopt.dmode = UDF_INVALID_MODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1952 | sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL); |
Alessio Igor Bogani | 9db9f9e | 2010-11-16 18:40:49 +0100 | [diff] [blame] | 1953 | if (!sbi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | return -ENOMEM; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 1955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | sb->s_fs_info = sbi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | |
Ingo Molnar | 1e7933d | 2006-03-23 03:00:44 -0800 | [diff] [blame] | 1958 | mutex_init(&sbi->s_alloc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | |
Miklos Szeredi | 6da8089 | 2008-02-08 04:21:50 -0800 | [diff] [blame] | 1960 | if (!udf_parse_options((char *)options, &uopt, false)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | goto error_out; |
| 1962 | |
| 1963 | if (uopt.flags & (1 << UDF_FLAG_UTF8) && |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1964 | uopt.flags & (1 << UDF_FLAG_NLS_MAP)) { |
Joe Perches | 8076c36 | 2011-10-10 01:08:03 -0700 | [diff] [blame] | 1965 | udf_err(sb, "utf8 cannot be combined with iocharset\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | goto error_out; |
| 1967 | } |
| 1968 | #ifdef CONFIG_UDF_NLS |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1969 | if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | uopt.nls_map = load_nls_default(); |
| 1971 | if (!uopt.nls_map) |
| 1972 | uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP); |
| 1973 | else |
| 1974 | udf_debug("Using default NLS map\n"); |
| 1975 | } |
| 1976 | #endif |
| 1977 | if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP))) |
| 1978 | uopt.flags |= (1 << UDF_FLAG_UTF8); |
| 1979 | |
| 1980 | fileset.logicalBlockNum = 0xFFFFFFFF; |
| 1981 | fileset.partitionReferenceNum = 0xFFFF; |
| 1982 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1983 | sbi->s_flags = uopt.flags; |
| 1984 | sbi->s_uid = uopt.uid; |
| 1985 | sbi->s_gid = uopt.gid; |
| 1986 | sbi->s_umask = uopt.umask; |
Marcin Slusarz | 7ac9bcd5 | 2008-11-16 20:52:19 +0100 | [diff] [blame] | 1987 | sbi->s_fmode = uopt.fmode; |
| 1988 | sbi->s_dmode = uopt.dmode; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1989 | sbi->s_nls_map = uopt.nls_map; |
Jan Kara | c03cad2 | 2010-10-20 22:17:28 +0200 | [diff] [blame] | 1990 | rwlock_init(&sbi->s_cred_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 1992 | if (uopt.session == 0xFFFFFFFF) |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1993 | sbi->s_session = udf_get_last_session(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | else |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1995 | sbi->s_session = uopt.session; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 1997 | udf_debug("Multi-session=%d\n", sbi->s_session); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | /* Fill in the rest of the superblock */ |
| 2000 | sb->s_op = &udf_sb_ops; |
Rasmus Rohde | 221e583 | 2008-04-30 17:22:06 +0200 | [diff] [blame] | 2001 | sb->s_export_op = &udf_export_ops; |
Christoph Hellwig | 123e9ca | 2010-05-19 07:16:44 -0400 | [diff] [blame] | 2002 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | sb->s_magic = UDF_SUPER_MAGIC; |
| 2004 | sb->s_time_gran = 1000; |
| 2005 | |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 2006 | if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) { |
| 2007 | ret = udf_load_vrs(sb, &uopt, silent, &fileset); |
| 2008 | } else { |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 2009 | uopt.blocksize = bdev_logical_block_size(sb->s_bdev); |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 2010 | ret = udf_load_vrs(sb, &uopt, silent, &fileset); |
| 2011 | if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) { |
| 2012 | if (!silent) |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2013 | pr_notice("Rescanning with blocksize %d\n", |
| 2014 | UDF_DEFAULT_BLOCKSIZE); |
Ashish Sangwan | dc141a4 | 2012-07-21 16:35:17 +0530 | [diff] [blame] | 2015 | brelse(sbi->s_lvid_bh); |
| 2016 | sbi->s_lvid_bh = NULL; |
Jan Kara | 4034600 | 2009-03-19 16:21:38 +0100 | [diff] [blame] | 2017 | uopt.blocksize = UDF_DEFAULT_BLOCKSIZE; |
| 2018 | ret = udf_load_vrs(sb, &uopt, silent, &fileset); |
| 2019 | } |
| 2020 | } |
| 2021 | if (!ret) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2022 | udf_warn(sb, "No partition found (1)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | goto error_out; |
| 2024 | } |
| 2025 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2026 | udf_debug("Lastblock=%d\n", sbi->s_last_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2028 | if (sbi->s_lvid_bh) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2029 | struct logicalVolIntegrityDescImpUse *lvidiu = |
| 2030 | udf_sb_lvidiu(sbi); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2031 | uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev); |
| 2032 | uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev); |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2033 | /* uint16_t maxUDFWriteRev = |
| 2034 | le16_to_cpu(lvidiu->maxUDFWriteRev); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2036 | if (minUDFReadRev > UDF_MAX_READ_VERSION) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2037 | udf_err(sb, "minUDFReadRev=%x (max is %x)\n", |
| 2038 | le16_to_cpu(lvidiu->minUDFReadRev), |
| 2039 | UDF_MAX_READ_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | goto error_out; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2041 | } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | sb->s_flags |= MS_RDONLY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2044 | sbi->s_udfrev = minUDFWriteRev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | |
| 2046 | if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE) |
| 2047 | UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE); |
| 2048 | if (minUDFReadRev >= UDF_VERS_USE_STREAMS) |
| 2049 | UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS); |
| 2050 | } |
| 2051 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2052 | if (!sbi->s_partitions) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2053 | udf_warn(sb, "No partition found (2)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | goto error_out; |
| 2055 | } |
| 2056 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2057 | if (sbi->s_partmaps[sbi->s_partition].s_partition_flags & |
| 2058 | UDF_PART_FLAG_READ_ONLY) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2059 | pr_notice("Partition marked readonly; forcing readonly mount\n"); |
Eric Sandeen | 39b3f6d | 2006-09-29 01:59:41 -0700 | [diff] [blame] | 2060 | sb->s_flags |= MS_RDONLY; |
Peter Osterlund | c1a26e7 | 2006-10-05 21:17:50 +0200 | [diff] [blame] | 2061 | } |
Eric Sandeen | 39b3f6d | 2006-09-29 01:59:41 -0700 | [diff] [blame] | 2062 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2063 | if (udf_find_fileset(sb, &fileset, &rootdir)) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2064 | udf_warn(sb, "No fileset found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | goto error_out; |
| 2066 | } |
| 2067 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2068 | if (!silent) { |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2069 | struct timestamp ts; |
Marcin Slusarz | 5677480 | 2008-02-10 11:25:31 +0100 | [diff] [blame] | 2070 | udf_time_to_disk_stamp(&ts, sbi->s_record_time); |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2071 | udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n", |
| 2072 | sbi->s_volume_ident, |
| 2073 | le16_to_cpu(ts.year), ts.month, ts.day, |
Marcin Slusarz | 5677480 | 2008-02-10 11:25:31 +0100 | [diff] [blame] | 2074 | ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | } |
| 2076 | if (!(sb->s_flags & MS_RDONLY)) |
| 2077 | udf_open_lvid(sb); |
| 2078 | |
| 2079 | /* Assign the root inode */ |
| 2080 | /* assign inodes by physical block number */ |
| 2081 | /* perhaps it's not extensible enough, but for now ... */ |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2082 | inode = udf_iget(sb, &rootdir); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2083 | if (!inode) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2084 | udf_err(sb, "Error in udf_iget, block=%d, partition=%d\n", |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2085 | rootdir.logicalBlockNum, rootdir.partitionReferenceNum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | goto error_out; |
| 2087 | } |
| 2088 | |
| 2089 | /* Allocate a dentry for the root inode */ |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 2090 | sb->s_root = d_make_root(inode); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2091 | if (!sb->s_root) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2092 | udf_err(sb, "Couldn't allocate root dentry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | goto error_out; |
| 2094 | } |
Jan Kara | 31170b6 | 2007-05-08 00:35:21 -0700 | [diff] [blame] | 2095 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 2096 | sb->s_max_links = UDF_MAX_LINKS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | return 0; |
| 2098 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2099 | error_out: |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2100 | if (sbi->s_vat_inode) |
| 2101 | iput(sbi->s_vat_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | #ifdef CONFIG_UDF_NLS |
| 2103 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2104 | unload_nls(sbi->s_nls_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | #endif |
| 2106 | if (!(sb->s_flags & MS_RDONLY)) |
| 2107 | udf_close_lvid(sb); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2108 | brelse(sbi->s_lvid_bh); |
Jan Kara | bff943a | 2012-06-27 22:27:05 +0200 | [diff] [blame] | 2109 | udf_sb_free_partitions(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | kfree(sbi); |
| 2111 | sb->s_fs_info = NULL; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | return -EINVAL; |
| 2114 | } |
| 2115 | |
Joe Perches | 8076c36 | 2011-10-10 01:08:03 -0700 | [diff] [blame] | 2116 | void _udf_err(struct super_block *sb, const char *function, |
| 2117 | const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | { |
Joe Perches | c2bff36 | 2011-10-10 01:08:06 -0700 | [diff] [blame] | 2119 | struct va_format vaf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | va_list args; |
| 2121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | va_start(args, fmt); |
Joe Perches | c2bff36 | 2011-10-10 01:08:06 -0700 | [diff] [blame] | 2123 | |
| 2124 | vaf.fmt = fmt; |
| 2125 | vaf.va = &args; |
| 2126 | |
| 2127 | pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf); |
| 2128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | va_end(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | } |
| 2131 | |
Joe Perches | a40ecd7 | 2011-10-10 01:08:04 -0700 | [diff] [blame] | 2132 | void _udf_warn(struct super_block *sb, const char *function, |
| 2133 | const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | { |
Joe Perches | c2bff36 | 2011-10-10 01:08:06 -0700 | [diff] [blame] | 2135 | struct va_format vaf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | va_list args; |
| 2137 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2138 | va_start(args, fmt); |
Joe Perches | c2bff36 | 2011-10-10 01:08:06 -0700 | [diff] [blame] | 2139 | |
| 2140 | vaf.fmt = fmt; |
| 2141 | vaf.va = &args; |
| 2142 | |
| 2143 | pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf); |
| 2144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | va_end(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | } |
| 2147 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2148 | static void udf_put_super(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | { |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2150 | struct udf_sb_info *sbi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2152 | sbi = UDF_SB(sb); |
Christoph Hellwig | 6cfd014 | 2009-05-05 15:40:36 +0200 | [diff] [blame] | 2153 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2154 | if (sbi->s_vat_inode) |
| 2155 | iput(sbi->s_vat_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | #ifdef CONFIG_UDF_NLS |
| 2157 | if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2158 | unload_nls(sbi->s_nls_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | #endif |
| 2160 | if (!(sb->s_flags & MS_RDONLY)) |
| 2161 | udf_close_lvid(sb); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2162 | brelse(sbi->s_lvid_bh); |
Jan Kara | bff943a | 2012-06-27 22:27:05 +0200 | [diff] [blame] | 2163 | udf_sb_free_partitions(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | kfree(sb->s_fs_info); |
| 2165 | sb->s_fs_info = NULL; |
| 2166 | } |
| 2167 | |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 2168 | static int udf_sync_fs(struct super_block *sb, int wait) |
| 2169 | { |
| 2170 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 2171 | |
| 2172 | mutex_lock(&sbi->s_alloc_mutex); |
| 2173 | if (sbi->s_lvid_dirty) { |
| 2174 | /* |
| 2175 | * Blockdevice will be synced later so we don't have to submit |
| 2176 | * the buffer for IO |
| 2177 | */ |
| 2178 | mark_buffer_dirty(sbi->s_lvid_bh); |
Jan Kara | 146bca7 | 2009-03-16 18:27:37 +0100 | [diff] [blame] | 2179 | sbi->s_lvid_dirty = 0; |
| 2180 | } |
| 2181 | mutex_unlock(&sbi->s_alloc_mutex); |
| 2182 | |
| 2183 | return 0; |
| 2184 | } |
| 2185 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2186 | static int udf_statfs(struct dentry *dentry, struct kstatfs *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | { |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 2188 | struct super_block *sb = dentry->d_sb; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2189 | struct udf_sb_info *sbi = UDF_SB(sb); |
| 2190 | struct logicalVolIntegrityDescImpUse *lvidiu; |
Coly Li | 557f5a1 | 2009-01-20 01:36:55 +0800 | [diff] [blame] | 2191 | u64 id = huge_encode_dev(sb->s_bdev->bd_dev); |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2192 | |
| 2193 | if (sbi->s_lvid_bh != NULL) |
| 2194 | lvidiu = udf_sb_lvidiu(sbi); |
| 2195 | else |
| 2196 | lvidiu = NULL; |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 2197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | buf->f_type = UDF_SUPER_MAGIC; |
| 2199 | buf->f_bsize = sb->s_blocksize; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2200 | buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | buf->f_bfree = udf_count_free(sb); |
| 2202 | buf->f_bavail = buf->f_bfree; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2203 | buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) + |
| 2204 | le32_to_cpu(lvidiu->numDirs)) : 0) |
| 2205 | + buf->f_bfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | buf->f_ffree = buf->f_bfree; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2207 | buf->f_namelen = UDF_NAME_LEN - 2; |
Coly Li | 557f5a1 | 2009-01-20 01:36:55 +0800 | [diff] [blame] | 2208 | buf->f_fsid.val[0] = (u32)id; |
| 2209 | buf->f_fsid.val[1] = (u32)(id >> 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | |
| 2211 | return 0; |
| 2212 | } |
| 2213 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2214 | static unsigned int udf_count_free_bitmap(struct super_block *sb, |
| 2215 | struct udf_bitmap *bitmap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | { |
| 2217 | struct buffer_head *bh = NULL; |
| 2218 | unsigned int accum = 0; |
| 2219 | int index; |
| 2220 | int block = 0, newblock; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2221 | struct kernel_lb_addr loc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | uint32_t bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | uint8_t *ptr; |
| 2224 | uint16_t ident; |
| 2225 | struct spaceBitmapDesc *bm; |
| 2226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | loc.logicalBlockNum = bitmap->s_extPosition; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2228 | loc.partitionReferenceNum = UDF_SB(sb)->s_partition; |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2229 | bh = udf_read_ptagged(sb, &loc, 0, &ident); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2231 | if (!bh) { |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2232 | udf_err(sb, "udf_count_free failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | goto out; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2234 | } else if (ident != TAG_IDENT_SBD) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2235 | brelse(bh); |
Joe Perches | 78ace70 | 2011-10-10 01:08:05 -0700 | [diff] [blame] | 2236 | udf_err(sb, "udf_count_free failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | goto out; |
| 2238 | } |
| 2239 | |
| 2240 | bm = (struct spaceBitmapDesc *)bh->b_data; |
| 2241 | bytes = le32_to_cpu(bm->numOfBytes); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2242 | index = sizeof(struct spaceBitmapDesc); /* offset in first block only */ |
| 2243 | ptr = (uint8_t *)bh->b_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2245 | while (bytes > 0) { |
Marcin Slusarz | 01b954a | 2008-02-02 22:37:07 +0100 | [diff] [blame] | 2246 | u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index); |
| 2247 | accum += bitmap_weight((const unsigned long *)(ptr + index), |
| 2248 | cur_bytes * 8); |
| 2249 | bytes -= cur_bytes; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2250 | if (bytes) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2251 | brelse(bh); |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 2252 | newblock = udf_get_lb_pblock(sb, &loc, ++block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2253 | bh = udf_tread(sb, newblock); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2254 | if (!bh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2255 | udf_debug("read failed\n"); |
| 2256 | goto out; |
| 2257 | } |
| 2258 | index = 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2259 | ptr = (uint8_t *)bh->b_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | } |
| 2261 | } |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2262 | brelse(bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2263 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | return accum; |
| 2265 | } |
| 2266 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2267 | static unsigned int udf_count_free_table(struct super_block *sb, |
| 2268 | struct inode *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | { |
| 2270 | unsigned int accum = 0; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2271 | uint32_t elen; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 2272 | struct kernel_lb_addr eloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | int8_t etype; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2274 | struct extent_position epos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | |
Jan Kara | d1668fe | 2010-10-20 23:24:12 +0200 | [diff] [blame] | 2276 | mutex_lock(&UDF_SB(sb)->s_alloc_mutex); |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 2277 | epos.block = UDF_I(table)->i_location; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 2278 | epos.offset = sizeof(struct unallocSpaceEntry); |
| 2279 | epos.bh = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 2281 | while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | accum += (elen >> table->i_sb->s_blocksize_bits); |
Marcin Slusarz | 3a71fc5 | 2008-02-08 04:20:28 -0800 | [diff] [blame] | 2283 | |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 2284 | brelse(epos.bh); |
Jan Kara | d1668fe | 2010-10-20 23:24:12 +0200 | [diff] [blame] | 2285 | mutex_unlock(&UDF_SB(sb)->s_alloc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | |
| 2287 | return accum; |
| 2288 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 2289 | |
| 2290 | static unsigned int udf_count_free(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | { |
| 2292 | unsigned int accum = 0; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2293 | struct udf_sb_info *sbi; |
| 2294 | struct udf_part_map *map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2296 | sbi = UDF_SB(sb); |
| 2297 | if (sbi->s_lvid_bh) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2298 | struct logicalVolIntegrityDesc *lvid = |
| 2299 | (struct logicalVolIntegrityDesc *) |
| 2300 | sbi->s_lvid_bh->b_data; |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2301 | if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) { |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 2302 | accum = le32_to_cpu( |
| 2303 | lvid->freeSpaceTable[sbi->s_partition]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | if (accum == 0xFFFFFFFF) |
| 2305 | accum = 0; |
| 2306 | } |
| 2307 | } |
| 2308 | |
| 2309 | if (accum) |
| 2310 | return accum; |
| 2311 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2312 | map = &sbi->s_partmaps[sbi->s_partition]; |
| 2313 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2314 | accum += udf_count_free_bitmap(sb, |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2315 | map->s_uspace.s_bitmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | } |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2317 | if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2318 | accum += udf_count_free_bitmap(sb, |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2319 | map->s_fspace.s_bitmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | } |
| 2321 | if (accum) |
| 2322 | return accum; |
| 2323 | |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2324 | if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2325 | accum += udf_count_free_table(sb, |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2326 | map->s_uspace.s_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | } |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2328 | if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 2329 | accum += udf_count_free_table(sb, |
Marcin Slusarz | 6c79e98 | 2008-02-08 04:20:30 -0800 | [diff] [blame] | 2330 | map->s_fspace.s_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | } |
| 2332 | |
| 2333 | return accum; |
| 2334 | } |