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