blob: e9be396a558d944fde7086cce64d22c672cdc5b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070017 * 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 Slusarz3a71fc52008-02-08 04:20:28 -080036 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070041#include "udfdecl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#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 Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/buffer_head.h>
52#include <linux/vfs.h>
53#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080054#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080055#include <linux/mount.h>
56#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010057#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020058#include <linux/crc-itu-t.h>
Jan Kara1df2ae32012-06-27 21:23:07 +020059#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/byteorder.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "udf_sb.h"
63#include "udf_i.h"
64
65#include <linux/init.h>
66#include <asm/uaccess.h>
67
68#define VDS_POS_PRIMARY_VOL_DESC 0
69#define VDS_POS_UNALLOC_SPACE_DESC 1
70#define VDS_POS_LOGICAL_VOL_DESC 2
71#define VDS_POS_PARTITION_DESC 3
72#define VDS_POS_IMP_USE_VOL_DESC 4
73#define VDS_POS_VOL_DESC_PTR 5
74#define VDS_POS_TERMINATING_DESC 6
75#define VDS_POS_LENGTH 7
76
Miklos Szeredi6da80892008-02-08 04:21:50 -080077#define UDF_DEFAULT_BLOCKSIZE 2048
78
Al Viro8de52772012-02-06 12:45:27 -050079enum { UDF_MAX_LINKS = 0xffff };
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* These are the "meat" - everything else is stuffing */
82static int udf_fill_super(struct super_block *, void *, int);
83static void udf_put_super(struct super_block *);
Jan Kara146bca72009-03-16 18:27:37 +010084static int udf_sync_fs(struct super_block *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int udf_remount_fs(struct super_block *, int *, char *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020086static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020087static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
88 struct kernel_lb_addr *);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070089static void udf_load_fileset(struct super_block *, struct buffer_head *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020090 struct kernel_lb_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void udf_open_lvid(struct super_block *);
92static void udf_close_lvid(struct super_block *);
93static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070094static int udf_statfs(struct dentry *, struct kstatfs *);
Al Viro34c80b12011-12-08 21:32:45 -050095static int udf_show_options(struct seq_file *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Marcin Slusarz6c79e982008-02-08 04:20:30 -080097struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
98{
Marcin Slusarz4b111112008-02-08 04:20:36 -080099 struct logicalVolIntegrityDesc *lvid =
100 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800101 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800102 __u32 offset = number_of_partitions * 2 *
103 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800104 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400108static struct dentry *udf_mount(struct file_system_type *fs_type,
109 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Al Viro152a0832010-07-25 00:46:55 +0400111 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700115 .owner = THIS_MODULE,
116 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400117 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700118 .kill_sb = kill_block_super,
119 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700122static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124static struct inode *udf_alloc_inode(struct super_block *sb)
125{
126 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800127 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (!ei)
129 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700130
131 ei->i_unique = 0;
132 ei->i_lenExtents = 0;
133 ei->i_next_alloc_block = 0;
134 ei->i_next_alloc_goal = 0;
135 ei->i_strat4096 = 0;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100136 init_rwsem(&ei->i_data_sem);
Dan Bastone95f87972006-08-13 23:24:18 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return &ei->vfs_inode;
139}
140
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100141static void udf_i_callback(struct rcu_head *head)
142{
143 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100144 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static void udf_destroy_inode(struct inode *inode)
148{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100149 call_rcu(&inode->i_rcu, udf_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700152static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700154 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Christoph Lametera35afb82007-05-16 22:10:57 -0700156 ei->i_ext.i_data = NULL;
157 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160static int init_inodecache(void)
161{
162 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
163 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700164 0, (SLAB_RECLAIM_ACCOUNT |
165 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900166 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700167 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -ENOMEM;
169 return 0;
170}
171
172static void destroy_inodecache(void)
173{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000174 /*
175 * Make sure all delayed rcu free inodes are flushed before we
176 * destroy cache.
177 */
178 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700179 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800183static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700184 .alloc_inode = udf_alloc_inode,
185 .destroy_inode = udf_destroy_inode,
186 .write_inode = udf_write_inode,
Al Viro3aac2b62010-06-07 00:43:39 -0400187 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700188 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100189 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700190 .statfs = udf_statfs,
191 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800192 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700195struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 unsigned char novrs;
197 unsigned int blocksize;
198 unsigned int session;
199 unsigned int lastblock;
200 unsigned int anchor;
201 unsigned int volume;
202 unsigned short partition;
203 unsigned int fileset;
204 unsigned int rootdir;
205 unsigned int flags;
Al Virofaa17292011-07-26 03:18:29 -0400206 umode_t umask;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800207 kgid_t gid;
208 kuid_t uid;
Al Virofaa17292011-07-26 03:18:29 -0400209 umode_t fmode;
210 umode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct nls_table *nls_map;
212};
213
214static int __init init_udf_fs(void)
215{
216 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 err = init_inodecache();
219 if (err)
220 goto out1;
221 err = register_filesystem(&udf_fstype);
222 if (err)
223 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700226
227out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700229
230out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return err;
232}
233
234static void __exit exit_udf_fs(void)
235{
236 unregister_filesystem(&udf_fstype);
237 destroy_inodecache();
238}
239
240module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700241module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800243static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
244{
245 struct udf_sb_info *sbi = UDF_SB(sb);
246
247 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
248 GFP_KERNEL);
249 if (!sbi->s_partmaps) {
Joe Perches8076c362011-10-10 01:08:03 -0700250 udf_err(sb, "Unable to allocate space for %d partition maps\n",
251 count);
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800252 sbi->s_partitions = 0;
253 return -ENOMEM;
254 }
255
256 sbi->s_partitions = count;
257 return 0;
258}
259
Jan Karabff943a2012-06-27 22:27:05 +0200260static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
261{
262 int i;
263 int nr_groups = bitmap->s_nr_groups;
264 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
265 nr_groups);
266
267 for (i = 0; i < nr_groups; i++)
268 if (bitmap->s_block_bitmap[i])
269 brelse(bitmap->s_block_bitmap[i]);
270
271 if (size <= PAGE_SIZE)
272 kfree(bitmap);
273 else
274 vfree(bitmap);
275}
276
277static void udf_free_partition(struct udf_part_map *map)
278{
279 int i;
280 struct udf_meta_data *mdata;
281
282 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
283 iput(map->s_uspace.s_table);
284 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
285 iput(map->s_fspace.s_table);
286 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
287 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
288 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
289 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
290 if (map->s_partition_type == UDF_SPARABLE_MAP15)
291 for (i = 0; i < 4; i++)
292 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
293 else if (map->s_partition_type == UDF_METADATA_MAP25) {
294 mdata = &map->s_type_specific.s_metadata;
295 iput(mdata->s_metadata_fe);
296 mdata->s_metadata_fe = NULL;
297
298 iput(mdata->s_mirror_fe);
299 mdata->s_mirror_fe = NULL;
300
301 iput(mdata->s_bitmap_fe);
302 mdata->s_bitmap_fe = NULL;
303 }
304}
305
306static void udf_sb_free_partitions(struct super_block *sb)
307{
308 struct udf_sb_info *sbi = UDF_SB(sb);
309 int i;
Namjae Jeon1b1baff2013-01-14 22:53:47 +0100310 if (sbi->s_partmaps == NULL)
311 return;
Jan Karabff943a2012-06-27 22:27:05 +0200312 for (i = 0; i < sbi->s_partitions; i++)
313 udf_free_partition(&sbi->s_partmaps[i]);
314 kfree(sbi->s_partmaps);
315 sbi->s_partmaps = NULL;
316}
317
Al Viro34c80b12011-12-08 21:32:45 -0500318static int udf_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredi6da80892008-02-08 04:21:50 -0800319{
Al Viro34c80b12011-12-08 21:32:45 -0500320 struct super_block *sb = root->d_sb;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800321 struct udf_sb_info *sbi = UDF_SB(sb);
322
323 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
324 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100325 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800326 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
327 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
328 seq_puts(seq, ",unhide");
329 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
330 seq_puts(seq, ",undelete");
331 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
332 seq_puts(seq, ",noadinicb");
333 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
334 seq_puts(seq, ",shortad");
335 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
336 seq_puts(seq, ",uid=forget");
337 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
338 seq_puts(seq, ",uid=ignore");
339 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
340 seq_puts(seq, ",gid=forget");
341 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
342 seq_puts(seq, ",gid=ignore");
343 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800344 seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800345 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800346 seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800347 if (sbi->s_umask != 0)
Al Virofaa17292011-07-26 03:18:29 -0400348 seq_printf(seq, ",umask=%ho", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100349 if (sbi->s_fmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400350 seq_printf(seq, ",mode=%ho", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100351 if (sbi->s_dmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400352 seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800353 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
354 seq_printf(seq, ",session=%u", sbi->s_session);
355 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
356 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100357 if (sbi->s_anchor != 0)
358 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800359 /*
360 * volume, partition, fileset and rootdir seem to be ignored
361 * currently
362 */
363 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
364 seq_puts(seq, ",utf8");
365 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
366 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
367
368 return 0;
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*
372 * udf_parse_options
373 *
374 * PURPOSE
375 * Parse mount options.
376 *
377 * DESCRIPTION
378 * The following mount options are supported:
379 *
380 * gid= Set the default group.
381 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100382 * mode= Set the default file permissions.
383 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * uid= Set the default user.
385 * bs= Set the block size.
386 * unhide Show otherwise hidden files.
387 * undelete Show deleted files in lists.
388 * adinicb Embed data in the inode (default)
389 * noadinicb Don't embed data in the inode
390 * shortad Use short ad's
391 * longad Use long ad's (default)
392 * nostrict Unset strict conformance
393 * iocharset= Set the NLS character set
394 *
395 * The remaining are for debugging and disaster recovery:
396 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700397 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
399 * The following expect a offset from 0.
400 *
401 * session= Set the CDROM session (default= last session)
402 * anchor= Override standard anchor location. (default= 256)
403 * volume= Override the VolumeDesc location. (unused)
404 * partition= Override the PartitionDesc location. (unused)
405 * lastblock= Set the last block of the filesystem/
406 *
407 * The following expect a offset from the partition root.
408 *
409 * fileset= Override the fileset block location. (unused)
410 * rootdir= Override the root directory location. (unused)
411 * WARNING: overriding the rootdir to a non-directory may
412 * yield highly unpredictable results.
413 *
414 * PRE-CONDITIONS
415 * options Pointer to mount options string.
416 * uopts Pointer to mount options variable.
417 *
418 * POST-CONDITIONS
419 * <return> 1 Mount options parsed okay.
420 * <return> 0 Error parsing mount options.
421 *
422 * HISTORY
423 * July 1, 1997 - Andrew E. Mileski
424 * Written, tested, and released.
425 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427enum {
428 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
429 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
430 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
431 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
432 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100433 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
434 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};
436
Steven Whitehousea447c092008-10-13 10:46:57 +0100437static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700438 {Opt_novrs, "novrs"},
439 {Opt_nostrict, "nostrict"},
440 {Opt_bs, "bs=%u"},
441 {Opt_unhide, "unhide"},
442 {Opt_undelete, "undelete"},
443 {Opt_noadinicb, "noadinicb"},
444 {Opt_adinicb, "adinicb"},
445 {Opt_shortad, "shortad"},
446 {Opt_longad, "longad"},
447 {Opt_uforget, "uid=forget"},
448 {Opt_uignore, "uid=ignore"},
449 {Opt_gforget, "gid=forget"},
450 {Opt_gignore, "gid=ignore"},
451 {Opt_gid, "gid=%u"},
452 {Opt_uid, "uid=%u"},
453 {Opt_umask, "umask=%o"},
454 {Opt_session, "session=%u"},
455 {Opt_lastblock, "lastblock=%u"},
456 {Opt_anchor, "anchor=%u"},
457 {Opt_volume, "volume=%u"},
458 {Opt_partition, "partition=%u"},
459 {Opt_fileset, "fileset=%u"},
460 {Opt_rootdir, "rootdir=%u"},
461 {Opt_utf8, "utf8"},
462 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100463 {Opt_fmode, "mode=%o"},
464 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700465 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466};
467
Miklos Szeredi6da80892008-02-08 04:21:50 -0800468static int udf_parse_options(char *options, struct udf_options *uopt,
469 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 char *p;
472 int option;
473
474 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 uopt->partition = 0xFFFF;
476 uopt->session = 0xFFFFFFFF;
477 uopt->lastblock = 0;
478 uopt->anchor = 0;
479 uopt->volume = 0xFFFFFFFF;
480 uopt->rootdir = 0xFFFFFFFF;
481 uopt->fileset = 0xFFFFFFFF;
482 uopt->nls_map = NULL;
483
484 if (!options)
485 return 1;
486
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700487 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 substring_t args[MAX_OPT_ARGS];
489 int token;
490 if (!*p)
491 continue;
492
493 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700494 switch (token) {
495 case Opt_novrs:
496 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100497 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700498 case Opt_bs:
499 if (match_int(&args[0], &option))
500 return 0;
501 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100502 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700503 break;
504 case Opt_unhide:
505 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
506 break;
507 case Opt_undelete:
508 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
509 break;
510 case Opt_noadinicb:
511 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
512 break;
513 case Opt_adinicb:
514 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
515 break;
516 case Opt_shortad:
517 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
518 break;
519 case Opt_longad:
520 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
521 break;
522 case Opt_gid:
523 if (match_int(args, &option))
524 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800525 uopt->gid = make_kgid(current_user_ns(), option);
526 if (!gid_valid(uopt->gid))
527 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700528 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700529 break;
530 case Opt_uid:
531 if (match_int(args, &option))
532 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800533 uopt->uid = make_kuid(current_user_ns(), option);
534 if (!uid_valid(uopt->uid))
535 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700536 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700537 break;
538 case Opt_umask:
539 if (match_octal(args, &option))
540 return 0;
541 uopt->umask = option;
542 break;
543 case Opt_nostrict:
544 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
545 break;
546 case Opt_session:
547 if (match_int(args, &option))
548 return 0;
549 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800550 if (!remount)
551 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700552 break;
553 case Opt_lastblock:
554 if (match_int(args, &option))
555 return 0;
556 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800557 if (!remount)
558 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700559 break;
560 case Opt_anchor:
561 if (match_int(args, &option))
562 return 0;
563 uopt->anchor = option;
564 break;
565 case Opt_volume:
566 if (match_int(args, &option))
567 return 0;
568 uopt->volume = option;
569 break;
570 case Opt_partition:
571 if (match_int(args, &option))
572 return 0;
573 uopt->partition = option;
574 break;
575 case Opt_fileset:
576 if (match_int(args, &option))
577 return 0;
578 uopt->fileset = option;
579 break;
580 case Opt_rootdir:
581 if (match_int(args, &option))
582 return 0;
583 uopt->rootdir = option;
584 break;
585 case Opt_utf8:
586 uopt->flags |= (1 << UDF_FLAG_UTF8);
587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700589 case Opt_iocharset:
590 uopt->nls_map = load_nls(args[0].from);
591 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
592 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700594 case Opt_uignore:
595 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
596 break;
597 case Opt_uforget:
598 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
599 break;
600 case Opt_gignore:
601 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
602 break;
603 case Opt_gforget:
604 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
605 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100606 case Opt_fmode:
607 if (match_octal(args, &option))
608 return 0;
609 uopt->fmode = option & 0777;
610 break;
611 case Opt_dmode:
612 if (match_octal(args, &option))
613 return 0;
614 uopt->dmode = option & 0777;
615 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700616 default:
Joe Perches78ace702011-10-10 01:08:05 -0700617 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
619 }
620 }
621 return 1;
622}
623
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700624static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800627 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400628 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800630 uopt.flags = sbi->s_flags;
631 uopt.uid = sbi->s_uid;
632 uopt.gid = sbi->s_gid;
633 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100634 uopt.fmode = sbi->s_fmode;
635 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Miklos Szeredi6da80892008-02-08 04:21:50 -0800637 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return -EINVAL;
639
Jan Karac03cad22010-10-20 22:17:28 +0200640 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800641 sbi->s_flags = uopt.flags;
642 sbi->s_uid = uopt.uid;
643 sbi->s_gid = uopt.gid;
644 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100645 sbi->s_fmode = uopt.fmode;
646 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200647 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800649 if (sbi->s_lvid_bh) {
650 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (write_rev > UDF_MAX_WRITE_VERSION)
652 *flags |= MS_RDONLY;
653 }
654
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400655 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
656 goto out_unlock;
657
Jan Kara36350462010-05-19 16:28:56 +0200658 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200660 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 udf_open_lvid(sb);
662
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400663out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400664 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Jan Kara40346002009-03-19 16:21:38 +0100667/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
668/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
669static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
671 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200672 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 int sectorsize;
674 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700675 int nsr02 = 0;
676 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800677 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800679 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (sb->s_blocksize < sizeof(struct volStructDesc))
681 sectorsize = sizeof(struct volStructDesc);
682 else
683 sectorsize = sb->s_blocksize;
684
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800685 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200688 (unsigned int)(sector >> sb->s_blocksize_bits),
689 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700691 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* Read a block */
693 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
694 if (!bh)
695 break;
696
697 /* Look for ISO descriptors */
698 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800699 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700701 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700702 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800704 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
705 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700706 switch (vsd->structType) {
707 case 0:
708 udf_debug("ISO9660 Boot Record found\n");
709 break;
710 case 1:
Joe Perchesa983f362011-10-10 01:08:07 -0700711 udf_debug("ISO9660 Primary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700712 break;
713 case 2:
Joe Perchesa983f362011-10-10 01:08:07 -0700714 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700715 break;
716 case 3:
Joe Perchesa983f362011-10-10 01:08:07 -0700717 udf_debug("ISO9660 Volume Partition Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700718 break;
719 case 255:
Joe Perchesa983f362011-10-10 01:08:07 -0700720 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 break;
722 default:
723 udf_debug("ISO9660 VRS (%u) found\n",
724 vsd->structType);
725 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800727 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
728 VSD_STD_ID_LEN))
729 ; /* nothing */
730 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
731 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700732 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800734 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
735 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800737 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
738 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700740 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
743 if (nsr03)
744 return nsr03;
745 else if (nsr02)
746 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800747 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return -1;
749 else
750 return 0;
751}
752
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800753static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200754 struct kernel_lb_addr *fileset,
755 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct buffer_head *bh = NULL;
758 long lastblock;
759 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800760 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700763 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200764 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700766 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700768 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700769 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 1;
771 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800775 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800776 if (!bh) {
777 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200778 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700780/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700782
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800783 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700784 (newfileset.partitionReferenceNum != 0xFFFF &&
785 fileset->logicalBlockNum == 0xFFFFFFFF &&
786 fileset->partitionReferenceNum == 0xFFFF);
787 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800788 lastblock = sbi->s_partmaps
789 [newfileset.partitionReferenceNum]
790 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 newfileset.logicalBlockNum = 0;
792
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700793 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200794 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800795 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700796 if (!bh) {
797 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 continue;
799 }
800
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700801 switch (ident) {
802 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700803 {
804 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800805 sp = (struct spaceBitmapDesc *)
806 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700807 newfileset.logicalBlockNum += 1 +
808 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800809 sizeof(struct spaceBitmapDesc)
810 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700811 brelse(bh);
812 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700814 case TAG_IDENT_FSD:
815 *fileset = newfileset;
816 break;
817 default:
818 newfileset.logicalBlockNum++;
819 brelse(bh);
820 bh = NULL;
821 break;
822 }
823 } while (newfileset.logicalBlockNum < lastblock &&
824 fileset->logicalBlockNum == 0xFFFFFFFF &&
825 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827 }
828
829 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700830 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700832 fileset->logicalBlockNum,
833 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800835 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700837 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return 0;
839 }
840 return 1;
841}
842
Jan Karac0eb31e2008-04-01 16:50:35 +0200843static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100846 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200847 struct buffer_head *bh;
848 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100849 int ret = 1;
850
851 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
852 if (!instr)
853 return 1;
854
855 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
856 if (!outstr)
857 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200858
859 bh = udf_read_tagged(sb, block, block, &ident);
860 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100861 goto out2;
862
Jan Karac0eb31e2008-04-01 16:50:35 +0200863 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 pvoldesc = (struct primaryVolDesc *)bh->b_data;
866
Marcin Slusarz56774802008-02-10 11:25:31 +0100867 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
868 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100869#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200870 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
Joe Perchesa983f362011-10-10 01:08:07 -0700871 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100872 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
873 ts->minute, le16_to_cpu(ts->typeAndTimezone));
874#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100877 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
878 if (udf_CS0toUTF8(outstr, instr)) {
879 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
880 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800881 udf_debug("volIdent[] = '%s'\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700882 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100885 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
886 if (udf_CS0toUTF8(outstr, instr))
887 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200888
889 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100890 ret = 0;
891out2:
892 kfree(outstr);
893out1:
894 kfree(instr);
895 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Namjae Jeon3080a742011-10-23 19:28:32 +0900898struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
899 u32 meta_file_loc, u32 partition_num)
900{
901 struct kernel_lb_addr addr;
902 struct inode *metadata_fe;
903
904 addr.logicalBlockNum = meta_file_loc;
905 addr.partitionReferenceNum = partition_num;
906
907 metadata_fe = udf_iget(sb, &addr);
908
909 if (metadata_fe == NULL)
910 udf_warn(sb, "metadata inode efe not found\n");
911 else if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
912 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
913 iput(metadata_fe);
914 metadata_fe = NULL;
915 }
916
917 return metadata_fe;
918}
919
Jan Karabfb257a2008-04-08 20:37:21 +0200920static int udf_load_metadata_files(struct super_block *sb, int partition)
921{
922 struct udf_sb_info *sbi = UDF_SB(sb);
923 struct udf_part_map *map;
924 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200925 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200926
927 map = &sbi->s_partmaps[partition];
928 mdata = &map->s_type_specific.s_metadata;
929
930 /* metadata address */
Jan Karabfb257a2008-04-08 20:37:21 +0200931 udf_debug("Metadata file location: block = %d part = %d\n",
Namjae Jeon3080a742011-10-23 19:28:32 +0900932 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200933
Namjae Jeon3080a742011-10-23 19:28:32 +0900934 mdata->s_metadata_fe = udf_find_metadata_inode_efe(sb,
935 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200936
937 if (mdata->s_metadata_fe == NULL) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900938 /* mirror file entry */
939 udf_debug("Mirror metadata file location: block = %d part = %d\n",
940 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200941
Namjae Jeon3080a742011-10-23 19:28:32 +0900942 mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb,
943 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200944
Namjae Jeon3080a742011-10-23 19:28:32 +0900945 if (mdata->s_mirror_fe == NULL) {
946 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200947 goto error_exit;
Namjae Jeon3080a742011-10-23 19:28:32 +0900948 }
Jan Karabfb257a2008-04-08 20:37:21 +0200949 }
950
951 /*
952 * bitmap file entry
953 * Note:
954 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
955 */
956 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
957 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
958 addr.partitionReferenceNum = map->s_partition_num;
959
960 udf_debug("Bitmap file location: block = %d part = %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700961 addr.logicalBlockNum, addr.partitionReferenceNum);
Jan Karabfb257a2008-04-08 20:37:21 +0200962
Pekka Enberg97e961f2008-10-15 12:29:03 +0200963 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200964
965 if (mdata->s_bitmap_fe == NULL) {
966 if (sb->s_flags & MS_RDONLY)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700967 udf_warn(sb, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200968 else {
Joe Perches8076c362011-10-10 01:08:03 -0700969 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200970 goto error_exit;
971 }
972 }
973 }
974
975 udf_debug("udf_load_metadata_files Ok\n");
976
977 return 0;
978
979error_exit:
980 return 1;
981}
982
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700983static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200984 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
986 struct fileSetDesc *fset;
987
988 fset = (struct fileSetDesc *)bh->b_data;
989
990 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
991
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800992 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700994 udf_debug("Rootdir at block=%d, partition=%d\n",
995 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800998int udf_compute_nr_groups(struct super_block *sb, u32 partition)
999{
1000 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +01001001 return DIV_ROUND_UP(map->s_partition_len +
1002 (sizeof(struct spaceBitmapDesc) << 3),
1003 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001004}
1005
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001006static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1007{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001008 struct udf_bitmap *bitmap;
1009 int nr_groups;
1010 int size;
1011
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001012 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001013 size = sizeof(struct udf_bitmap) +
1014 (sizeof(struct buffer_head *) * nr_groups);
1015
1016 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001017 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001018 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001019 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001020
Joe Perches75b09e02012-01-31 14:42:10 -08001021 if (bitmap == NULL)
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001022 return NULL;
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001023
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001024 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
1025 bitmap->s_nr_groups = nr_groups;
1026 return bitmap;
1027}
1028
Jan Kara3fb38df2008-04-02 12:26:36 +02001029static int udf_fill_partdesc_info(struct super_block *sb,
1030 struct partitionDesc *p, int p_index)
1031{
1032 struct udf_part_map *map;
1033 struct udf_sb_info *sbi = UDF_SB(sb);
1034 struct partitionHeaderDesc *phd;
1035
1036 map = &sbi->s_partmaps[p_index];
1037
1038 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1039 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1040
1041 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1042 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1043 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1044 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1045 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1046 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1047 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1048 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1049
Joe Perchesa983f362011-10-10 01:08:07 -07001050 udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n",
1051 p_index, map->s_partition_type,
1052 map->s_partition_root, map->s_partition_len);
Jan Kara3fb38df2008-04-02 12:26:36 +02001053
1054 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1055 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1056 return 0;
1057
1058 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1059 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001060 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001061 .logicalBlockNum = le32_to_cpu(
1062 phd->unallocSpaceTable.extPosition),
1063 .partitionReferenceNum = p_index,
1064 };
1065
Pekka Enberg97e961f2008-10-15 12:29:03 +02001066 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001067 if (!map->s_uspace.s_table) {
1068 udf_debug("cannot load unallocSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001069 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001070 return 1;
1071 }
1072 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1073 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001074 p_index, map->s_uspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001075 }
1076
1077 if (phd->unallocSpaceBitmap.extLength) {
1078 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1079 if (!bitmap)
1080 return 1;
1081 map->s_uspace.s_bitmap = bitmap;
1082 bitmap->s_extLength = le32_to_cpu(
1083 phd->unallocSpaceBitmap.extLength);
1084 bitmap->s_extPosition = le32_to_cpu(
1085 phd->unallocSpaceBitmap.extPosition);
1086 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001087 udf_debug("unallocSpaceBitmap (part %d) @ %d\n",
1088 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001089 }
1090
1091 if (phd->partitionIntegrityTable.extLength)
1092 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1093
1094 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001095 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001096 .logicalBlockNum = le32_to_cpu(
1097 phd->freedSpaceTable.extPosition),
1098 .partitionReferenceNum = p_index,
1099 };
1100
Pekka Enberg97e961f2008-10-15 12:29:03 +02001101 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001102 if (!map->s_fspace.s_table) {
1103 udf_debug("cannot load freedSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001104 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001105 return 1;
1106 }
1107
1108 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1109 udf_debug("freedSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001110 p_index, map->s_fspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001111 }
1112
1113 if (phd->freedSpaceBitmap.extLength) {
1114 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1115 if (!bitmap)
1116 return 1;
1117 map->s_fspace.s_bitmap = bitmap;
1118 bitmap->s_extLength = le32_to_cpu(
1119 phd->freedSpaceBitmap.extLength);
1120 bitmap->s_extPosition = le32_to_cpu(
1121 phd->freedSpaceBitmap.extPosition);
1122 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001123 udf_debug("freedSpaceBitmap (part %d) @ %d\n",
1124 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001125 }
1126 return 0;
1127}
1128
Jan Karae971b0b2009-11-30 19:47:55 +01001129static void udf_find_vat_block(struct super_block *sb, int p_index,
1130 int type1_index, sector_t start_block)
1131{
1132 struct udf_sb_info *sbi = UDF_SB(sb);
1133 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1134 sector_t vat_block;
1135 struct kernel_lb_addr ino;
1136
1137 /*
1138 * VAT file entry is in the last recorded block. Some broken disks have
1139 * it a few blocks before so try a bit harder...
1140 */
1141 ino.partitionReferenceNum = type1_index;
1142 for (vat_block = start_block;
1143 vat_block >= map->s_partition_root &&
1144 vat_block >= start_block - 3 &&
1145 !sbi->s_vat_inode; vat_block--) {
1146 ino.logicalBlockNum = vat_block - map->s_partition_root;
1147 sbi->s_vat_inode = udf_iget(sb, &ino);
1148 }
1149}
1150
Jan Kara38b74a52008-04-02 16:01:35 +02001151static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1152{
1153 struct udf_sb_info *sbi = UDF_SB(sb);
1154 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001155 struct buffer_head *bh = NULL;
1156 struct udf_inode_info *vati;
1157 uint32_t pos;
1158 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001159 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001160
Jan Karae971b0b2009-11-30 19:47:55 +01001161 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001162 if (!sbi->s_vat_inode &&
1163 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001164 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1165 (unsigned long)sbi->s_last_block,
1166 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001167 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001168 }
Jan Kara38b74a52008-04-02 16:01:35 +02001169 if (!sbi->s_vat_inode)
1170 return 1;
1171
1172 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001173 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001174 map->s_type_specific.s_virtual.s_num_entries =
1175 (sbi->s_vat_inode->i_size - 36) >> 2;
1176 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001177 vati = UDF_I(sbi->s_vat_inode);
1178 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1179 pos = udf_block_map(sbi->s_vat_inode, 0);
1180 bh = sb_bread(sb, pos);
1181 if (!bh)
1182 return 1;
1183 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1184 } else {
1185 vat20 = (struct virtualAllocationTable20 *)
1186 vati->i_ext.i_data;
1187 }
Jan Kara38b74a52008-04-02 16:01:35 +02001188
Jan Kara38b74a52008-04-02 16:01:35 +02001189 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001190 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001191 map->s_type_specific.s_virtual.s_num_entries =
1192 (sbi->s_vat_inode->i_size -
1193 map->s_type_specific.s_virtual.
1194 s_start_offset) >> 2;
1195 brelse(bh);
1196 }
1197 return 0;
1198}
1199
Jan Karac0eb31e2008-04-01 16:50:35 +02001200static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Jan Karac0eb31e2008-04-01 16:50:35 +02001202 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001203 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001204 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001205 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001206 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001207 uint16_t partitionNumber;
1208 uint16_t ident;
1209 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Jan Karac0eb31e2008-04-01 16:50:35 +02001211 bh = udf_read_tagged(sb, block, block, &ident);
1212 if (!bh)
1213 return 1;
1214 if (ident != TAG_IDENT_PD)
1215 goto out_bh;
1216
1217 p = (struct partitionDesc *)bh->b_data;
1218 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001219
Jan Karabfb257a2008-04-08 20:37:21 +02001220 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001221 for (i = 0; i < sbi->s_partitions; i++) {
1222 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001223 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001224 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001225 if (map->s_partition_num == partitionNumber &&
1226 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1227 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001229 }
1230
Jan Kara38b74a52008-04-02 16:01:35 +02001231 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001232 udf_debug("Partition (%d) not found in partition map\n",
1233 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001234 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001235 }
1236
Jan Kara3fb38df2008-04-02 12:26:36 +02001237 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001238
1239 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001240 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1241 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001242 */
1243 type1_idx = i;
1244 for (i = 0; i < sbi->s_partitions; i++) {
1245 map = &sbi->s_partmaps[i];
1246
1247 if (map->s_partition_num == partitionNumber &&
1248 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001249 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1250 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001251 break;
1252 }
1253
1254 if (i >= sbi->s_partitions)
1255 goto out_bh;
1256
1257 ret = udf_fill_partdesc_info(sb, p, i);
1258 if (ret)
1259 goto out_bh;
1260
Jan Karabfb257a2008-04-08 20:37:21 +02001261 if (map->s_partition_type == UDF_METADATA_MAP25) {
1262 ret = udf_load_metadata_files(sb, i);
1263 if (ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001264 udf_err(sb, "error loading MetaData partition map %d\n",
1265 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001266 goto out_bh;
1267 }
1268 } else {
1269 ret = udf_load_vat(sb, i, type1_idx);
1270 if (ret)
1271 goto out_bh;
1272 /*
1273 * Mark filesystem read-only if we have a partition with
1274 * virtual map since we don't handle writing to it (we
1275 * overwrite blocks instead of relocating them).
1276 */
1277 sb->s_flags |= MS_RDONLY;
Joe Perches78ace702011-10-10 01:08:05 -07001278 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
Jan Karabfb257a2008-04-08 20:37:21 +02001279 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001280out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001281 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001282 brelse(bh);
1283 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Jan Kara1df2ae32012-06-27 21:23:07 +02001286static int udf_load_sparable_map(struct super_block *sb,
1287 struct udf_part_map *map,
1288 struct sparablePartitionMap *spm)
1289{
1290 uint32_t loc;
1291 uint16_t ident;
1292 struct sparingTable *st;
1293 struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
1294 int i;
1295 struct buffer_head *bh;
1296
1297 map->s_partition_type = UDF_SPARABLE_MAP15;
1298 sdata->s_packet_len = le16_to_cpu(spm->packetLength);
1299 if (!is_power_of_2(sdata->s_packet_len)) {
1300 udf_err(sb, "error loading logical volume descriptor: "
1301 "Invalid packet length %u\n",
1302 (unsigned)sdata->s_packet_len);
1303 return -EIO;
1304 }
1305 if (spm->numSparingTables > 4) {
1306 udf_err(sb, "error loading logical volume descriptor: "
1307 "Too many sparing tables (%d)\n",
1308 (int)spm->numSparingTables);
1309 return -EIO;
1310 }
1311
1312 for (i = 0; i < spm->numSparingTables; i++) {
1313 loc = le32_to_cpu(spm->locSparingTable[i]);
1314 bh = udf_read_tagged(sb, loc, loc, &ident);
1315 if (!bh)
1316 continue;
1317
1318 st = (struct sparingTable *)bh->b_data;
1319 if (ident != 0 ||
1320 strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
1321 strlen(UDF_ID_SPARING)) ||
1322 sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
1323 sb->s_blocksize) {
1324 brelse(bh);
1325 continue;
1326 }
1327
1328 sdata->s_spar_map[i] = bh;
1329 }
1330 map->s_partition_func = udf_get_pblock_spar15;
1331 return 0;
1332}
1333
Jan Karac0eb31e2008-04-01 16:50:35 +02001334static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001335 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 struct logicalVolDesc *lvd;
Jan Kara1df2ae32012-06-27 21:23:07 +02001338 int i, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001340 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001341 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001342 uint16_t ident;
1343 struct buffer_head *bh;
Jan Karaadee11b2012-06-27 20:20:22 +02001344 unsigned int table_len;
Jan Karac0eb31e2008-04-01 16:50:35 +02001345 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Jan Karac0eb31e2008-04-01 16:50:35 +02001347 bh = udf_read_tagged(sb, block, block, &ident);
1348 if (!bh)
1349 return 1;
1350 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 lvd = (struct logicalVolDesc *)bh->b_data;
Jan Karaadee11b2012-06-27 20:20:22 +02001352 table_len = le32_to_cpu(lvd->mapTableLength);
Jan Kara57b96552012-07-10 17:58:04 +02001353 if (table_len > sb->s_blocksize - sizeof(*lvd)) {
Jan Karaadee11b2012-06-27 20:20:22 +02001354 udf_err(sb, "error loading logical volume descriptor: "
1355 "Partition table too long (%u > %lu)\n", table_len,
1356 sb->s_blocksize - sizeof(*lvd));
Nikola Pajkovsky68766a22012-08-15 00:38:08 +02001357 ret = 1;
Jan Karaadee11b2012-06-27 20:20:22 +02001358 goto out_bh;
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Jan Karacb14d342012-06-27 20:08:44 +02001361 ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
1362 if (ret)
Jan Karac0eb31e2008-04-01 16:50:35 +02001363 goto out_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001365 for (i = 0, offset = 0;
Jan Karaadee11b2012-06-27 20:20:22 +02001366 i < sbi->s_partitions && offset < table_len;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001367 i++, offset += gpm->partitionMapLength) {
1368 struct udf_part_map *map = &sbi->s_partmaps[i];
1369 gpm = (struct genericPartitionMap *)
1370 &(lvd->partitionMaps[offset]);
1371 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001372 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001373 struct genericPartitionMap1 *gpm1 =
1374 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001375 map->s_partition_type = UDF_TYPE1_MAP15;
1376 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1377 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1378 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001379 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001380 struct udfPartitionMap2 *upm2 =
1381 (struct udfPartitionMap2 *)gpm;
1382 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1383 strlen(UDF_ID_VIRTUAL))) {
1384 u16 suf =
1385 le16_to_cpu(((__le16 *)upm2->partIdent.
1386 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001387 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001388 map->s_partition_type =
1389 UDF_VIRTUAL_MAP15;
1390 map->s_partition_func =
1391 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001392 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001393 map->s_partition_type =
1394 UDF_VIRTUAL_MAP20;
1395 map->s_partition_func =
1396 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001398 } else if (!strncmp(upm2->partIdent.ident,
1399 UDF_ID_SPARABLE,
1400 strlen(UDF_ID_SPARABLE))) {
Jan Kara1df2ae32012-06-27 21:23:07 +02001401 if (udf_load_sparable_map(sb, map,
Nikola Pajkovsky68766a22012-08-15 00:38:08 +02001402 (struct sparablePartitionMap *)gpm) < 0) {
1403 ret = 1;
Jan Kara1df2ae32012-06-27 21:23:07 +02001404 goto out_bh;
Nikola Pajkovsky68766a22012-08-15 00:38:08 +02001405 }
Jan Karabfb257a2008-04-08 20:37:21 +02001406 } else if (!strncmp(upm2->partIdent.ident,
1407 UDF_ID_METADATA,
1408 strlen(UDF_ID_METADATA))) {
1409 struct udf_meta_data *mdata =
1410 &map->s_type_specific.s_metadata;
1411 struct metadataPartitionMap *mdm =
1412 (struct metadataPartitionMap *)
1413 &(lvd->partitionMaps[offset]);
Joe Perchesa983f362011-10-10 01:08:07 -07001414 udf_debug("Parsing Logical vol part %d type %d id=%s\n",
1415 i, type, UDF_ID_METADATA);
Jan Karabfb257a2008-04-08 20:37:21 +02001416
1417 map->s_partition_type = UDF_METADATA_MAP25;
1418 map->s_partition_func = udf_get_pblock_meta25;
1419
1420 mdata->s_meta_file_loc =
1421 le32_to_cpu(mdm->metadataFileLoc);
1422 mdata->s_mirror_file_loc =
1423 le32_to_cpu(mdm->metadataMirrorFileLoc);
1424 mdata->s_bitmap_file_loc =
1425 le32_to_cpu(mdm->metadataBitmapFileLoc);
1426 mdata->s_alloc_unit_size =
1427 le32_to_cpu(mdm->allocUnitSize);
1428 mdata->s_align_unit_size =
1429 le16_to_cpu(mdm->alignUnitSize);
Jan Karaed47a7d2011-10-24 16:47:48 +02001430 if (mdm->flags & 0x01)
1431 mdata->s_flags |= MF_DUPLICATE_MD;
Jan Karabfb257a2008-04-08 20:37:21 +02001432
1433 udf_debug("Metadata Ident suffix=0x%x\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001434 le16_to_cpu(*(__le16 *)
1435 mdm->partIdent.identSuffix));
Jan Karabfb257a2008-04-08 20:37:21 +02001436 udf_debug("Metadata part num=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001437 le16_to_cpu(mdm->partitionNum));
Jan Karabfb257a2008-04-08 20:37:21 +02001438 udf_debug("Metadata part alloc unit size=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001439 le32_to_cpu(mdm->allocUnitSize));
Jan Karabfb257a2008-04-08 20:37:21 +02001440 udf_debug("Metadata file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001441 le32_to_cpu(mdm->metadataFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001442 udf_debug("Mirror file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001443 le32_to_cpu(mdm->metadataMirrorFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001444 udf_debug("Bitmap file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001445 le32_to_cpu(mdm->metadataBitmapFileLoc));
Jan Karaed47a7d2011-10-24 16:47:48 +02001446 udf_debug("Flags: %d %d\n",
1447 mdata->s_flags, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001448 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001449 udf_debug("Unknown ident: %s\n",
1450 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 continue;
1452 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001453 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1454 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001457 i, map->s_partition_num, type, map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001460 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001461 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 *fileset = lelb_to_cpu(la->extLocation);
Joe Perchesa983f362011-10-10 01:08:07 -07001464 udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n",
1465 fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001466 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468 if (lvd->integritySeqExt.extLength)
1469 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001470
Jan Karac0eb31e2008-04-01 16:50:35 +02001471out_bh:
1472 brelse(bh);
1473 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
1476/*
1477 * udf_load_logicalvolint
1478 *
1479 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001480static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 struct buffer_head *bh = NULL;
1483 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001484 struct udf_sb_info *sbi = UDF_SB(sb);
1485 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001488 (bh = udf_read_tagged(sb, loc.extLocation,
1489 loc.extLocation, &ident)) &&
1490 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001491 sbi->s_lvid_bh = bh;
1492 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001493
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001494 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001495 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001496 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001497
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001498 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001499 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001501 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001503 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001504 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
1507/*
1508 * udf_process_sequence
1509 *
1510 * PURPOSE
1511 * Process a main/reserve volume descriptor sequence.
1512 *
1513 * PRE-CONDITIONS
1514 * sb Pointer to _locked_ superblock.
1515 * block First block of first extent of the sequence.
1516 * lastblock Lastblock of first extent of the sequence.
1517 *
1518 * HISTORY
1519 * July 1, 1997 - Andrew E. Mileski
1520 * Written, tested, and released.
1521 */
Jan Kara200a3592008-03-04 13:03:09 +01001522static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001523 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
1525 struct buffer_head *bh = NULL;
1526 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001527 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 struct generic_desc *gd;
1529 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001530 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 uint32_t vdsn;
1532 uint16_t ident;
1533 long next_s = 0, next_e = 0;
1534
1535 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1536
Jan Karac0eb31e2008-04-01 16:50:35 +02001537 /*
1538 * Read the main descriptor sequence and find which descriptors
1539 * are in it.
1540 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001541 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001544 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001545 udf_err(sb,
1546 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1547 (unsigned long long)block);
Jan Karac0eb31e2008-04-01 16:50:35 +02001548 return 1;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1552 gd = (struct generic_desc *)bh->b_data;
1553 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001554 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001555 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001556 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1557 if (vdsn >= curr->volDescSeqNum) {
1558 curr->volDescSeqNum = vdsn;
1559 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001560 }
1561 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001562 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001563 curr = &vds[VDS_POS_VOL_DESC_PTR];
1564 if (vdsn >= curr->volDescSeqNum) {
1565 curr->volDescSeqNum = vdsn;
1566 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001568 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001569 next_s = le32_to_cpu(
1570 vdp->nextVolDescSeqExt.extLocation);
1571 next_e = le32_to_cpu(
1572 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001573 next_e = next_e >> sb->s_blocksize_bits;
1574 next_e += next_s;
1575 }
1576 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001577 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001578 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1579 if (vdsn >= curr->volDescSeqNum) {
1580 curr->volDescSeqNum = vdsn;
1581 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001582 }
1583 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001584 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001585 curr = &vds[VDS_POS_PARTITION_DESC];
1586 if (!curr->block)
1587 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001588 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001589 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001590 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1591 if (vdsn >= curr->volDescSeqNum) {
1592 curr->volDescSeqNum = vdsn;
1593 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001594 }
1595 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001596 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001597 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1598 if (vdsn >= curr->volDescSeqNum) {
1599 curr->volDescSeqNum = vdsn;
1600 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001601 }
1602 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001603 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001604 vds[VDS_POS_TERMINATING_DESC].block = block;
1605 if (next_e) {
1606 block = next_s;
1607 lastblock = next_e;
1608 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001609 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001610 done = 1;
1611 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001613 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001615 /*
1616 * Now read interesting descriptors again and process them
1617 * in a suitable order
1618 */
1619 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001620 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karac0eb31e2008-04-01 16:50:35 +02001621 return 1;
1622 }
1623 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1624 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Jan Karac0eb31e2008-04-01 16:50:35 +02001626 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1627 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1628 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001629
Jan Karac0eb31e2008-04-01 16:50:35 +02001630 if (vds[VDS_POS_PARTITION_DESC].block) {
1631 /*
1632 * We rescan the whole descriptor sequence to find
1633 * partition descriptor blocks and process them.
1634 */
1635 for (block = vds[VDS_POS_PARTITION_DESC].block;
1636 block < vds[VDS_POS_TERMINATING_DESC].block;
1637 block++)
1638 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001639 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641
1642 return 0;
1643}
1644
Jan Kara40346002009-03-19 16:21:38 +01001645static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1646 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Jan Kara40346002009-03-19 16:21:38 +01001648 struct anchorVolDescPtr *anchor;
1649 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Jan Kara40346002009-03-19 16:21:38 +01001651 anchor = (struct anchorVolDescPtr *)bh->b_data;
1652
1653 /* Locate the main sequence */
1654 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1655 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1656 main_e = main_e >> sb->s_blocksize_bits;
1657 main_e += main_s;
1658
1659 /* Locate the reserve sequence */
1660 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1661 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1662 reserve_e = reserve_e >> sb->s_blocksize_bits;
1663 reserve_e += reserve_s;
1664
1665 /* Process the main & reserve sequences */
1666 /* responsible for finding the PartitionDesc(s) */
1667 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1668 return 1;
Jan Karabff943a2012-06-27 22:27:05 +02001669 udf_sb_free_partitions(sb);
1670 if (!udf_process_sequence(sb, reserve_s, reserve_e, fileset))
1671 return 1;
1672 udf_sb_free_partitions(sb);
1673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
Jan Kara40346002009-03-19 16:21:38 +01001676/*
1677 * Check whether there is an anchor block in the given block and
1678 * load Volume Descriptor Sequence if so.
1679 */
1680static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1681 struct kernel_lb_addr *fileset)
1682{
1683 struct buffer_head *bh;
1684 uint16_t ident;
1685 int ret;
1686
1687 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1688 udf_fixed_to_variable(block) >=
1689 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1690 return 0;
1691
1692 bh = udf_read_tagged(sb, block, block, &ident);
1693 if (!bh)
1694 return 0;
1695 if (ident != TAG_IDENT_AVDP) {
1696 brelse(bh);
1697 return 0;
1698 }
1699 ret = udf_load_sequence(sb, bh, fileset);
1700 brelse(bh);
1701 return ret;
1702}
1703
1704/* Search for an anchor volume descriptor pointer */
1705static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1706 struct kernel_lb_addr *fileset)
1707{
1708 sector_t last[6];
1709 int i;
1710 struct udf_sb_info *sbi = UDF_SB(sb);
1711 int last_count = 0;
1712
1713 /* First try user provided anchor */
1714 if (sbi->s_anchor) {
1715 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1716 return lastblock;
1717 }
1718 /*
1719 * according to spec, anchor is in either:
1720 * block 256
1721 * lastblock-256
1722 * lastblock
1723 * however, if the disc isn't closed, it could be 512.
1724 */
1725 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1726 return lastblock;
1727 /*
1728 * The trouble is which block is the last one. Drives often misreport
1729 * this so we try various possibilities.
1730 */
1731 last[last_count++] = lastblock;
1732 if (lastblock >= 1)
1733 last[last_count++] = lastblock - 1;
1734 last[last_count++] = lastblock + 1;
1735 if (lastblock >= 2)
1736 last[last_count++] = lastblock - 2;
1737 if (lastblock >= 150)
1738 last[last_count++] = lastblock - 150;
1739 if (lastblock >= 152)
1740 last[last_count++] = lastblock - 152;
1741
1742 for (i = 0; i < last_count; i++) {
1743 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1744 sb->s_blocksize_bits)
1745 continue;
1746 if (udf_check_anchor_block(sb, last[i], fileset))
1747 return last[i];
1748 if (last[i] < 256)
1749 continue;
1750 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1751 return last[i];
1752 }
1753
1754 /* Finally try block 512 in case media is open */
1755 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1756 return last[0];
1757 return 0;
1758}
1759
1760/*
1761 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1762 * area specified by it. The function expects sbi->s_lastblock to be the last
1763 * block on the media.
1764 *
1765 * Return 1 if ok, 0 if not found.
1766 *
1767 */
1768static int udf_find_anchor(struct super_block *sb,
1769 struct kernel_lb_addr *fileset)
1770{
1771 sector_t lastblock;
1772 struct udf_sb_info *sbi = UDF_SB(sb);
1773
1774 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1775 if (lastblock)
1776 goto out;
1777
1778 /* No anchor found? Try VARCONV conversion of block numbers */
1779 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1780 /* Firstly, we try to not convert number of the last block */
1781 lastblock = udf_scan_anchors(sb,
1782 udf_variable_to_fixed(sbi->s_last_block),
1783 fileset);
1784 if (lastblock)
1785 goto out;
1786
1787 /* Secondly, we try with converted number of the last block */
1788 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1789 if (!lastblock) {
1790 /* VARCONV didn't help. Clear it. */
1791 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1792 return 0;
1793 }
1794out:
1795 sbi->s_last_block = lastblock;
1796 return 1;
1797}
1798
1799/*
1800 * Check Volume Structure Descriptor, find Anchor block and load Volume
1801 * Descriptor Sequence
1802 */
1803static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1804 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001805{
1806 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001807 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001808
1809 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1810 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001811 udf_warn(sb, "Bad block size\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001812 return 0;
1813 }
1814 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001815 if (!uopt->novrs) {
1816 /* Check that it is NSR02 compliant */
1817 nsr_off = udf_check_vsd(sb);
1818 if (!nsr_off) {
1819 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001820 udf_warn(sb, "No VRS found\n");
Jan Kara40346002009-03-19 16:21:38 +01001821 return 0;
1822 }
1823 if (nsr_off == -1)
Joe Perchesa983f362011-10-10 01:08:07 -07001824 udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n");
Jan Kara40346002009-03-19 16:21:38 +01001825 if (!sbi->s_last_block)
1826 sbi->s_last_block = udf_get_last_block(sb);
1827 } else {
1828 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001829 }
Jan Kara40346002009-03-19 16:21:38 +01001830
1831 /* Look for anchor block and load Volume Descriptor Sequence */
1832 sbi->s_anchor = uopt->anchor;
1833 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001834 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001835 udf_warn(sb, "No anchor found\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001836 return 0;
1837 }
1838 return 1;
1839}
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841static void udf_open_lvid(struct super_block *sb)
1842{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001843 struct udf_sb_info *sbi = UDF_SB(sb);
1844 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001845 struct logicalVolIntegrityDesc *lvid;
1846 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001847
Marcin Slusarz165923f2008-02-10 11:33:08 +01001848 if (!bh)
1849 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001850
1851 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001852 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1853 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Marcin Slusarz165923f2008-02-10 11:33:08 +01001855 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1856 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1857 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1858 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001859 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Marcin Slusarz165923f2008-02-10 11:33:08 +01001861 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001862 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001863 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001864
1865 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1866 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001867 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001868 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
1871static void udf_close_lvid(struct super_block *sb)
1872{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001873 struct udf_sb_info *sbi = UDF_SB(sb);
1874 struct buffer_head *bh = sbi->s_lvid_bh;
1875 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001876 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001877
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001878 if (!bh)
1879 return;
1880
Jan Kara949f4a72010-10-20 18:49:20 +02001881 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001882 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001883 lvidiu = udf_sb_lvidiu(sbi);
1884 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1885 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1886 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1887 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1888 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1889 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1890 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1891 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1892 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1893 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Marcin Slusarz165923f2008-02-10 11:33:08 +01001895 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001896 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001897 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001898
1899 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
Jan Kara853a0c22011-12-23 11:53:07 +01001900 /*
1901 * We set buffer uptodate unconditionally here to avoid spurious
1902 * warnings from mark_buffer_dirty() when previous EIO has marked
1903 * the buffer as !uptodate
1904 */
1905 set_buffer_uptodate(bh);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001906 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001907 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001908 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Jan Karad664b6a2010-10-20 18:28:46 +02001911u64 lvid_get_unique_id(struct super_block *sb)
1912{
1913 struct buffer_head *bh;
1914 struct udf_sb_info *sbi = UDF_SB(sb);
1915 struct logicalVolIntegrityDesc *lvid;
1916 struct logicalVolHeaderDesc *lvhd;
1917 u64 uniqueID;
1918 u64 ret;
1919
1920 bh = sbi->s_lvid_bh;
1921 if (!bh)
1922 return 0;
1923
1924 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1925 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1926
1927 mutex_lock(&sbi->s_alloc_mutex);
1928 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1929 if (!(++uniqueID & 0xFFFFFFFF))
1930 uniqueID += 16;
1931 lvhd->uniqueID = cpu_to_le64(uniqueID);
1932 mutex_unlock(&sbi->s_alloc_mutex);
1933 mark_buffer_dirty(bh);
1934
1935 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938static int udf_fill_super(struct super_block *sb, void *options, int silent)
1939{
Jan Kara40346002009-03-19 16:21:38 +01001940 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001941 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001943 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 struct udf_sb_info *sbi;
1945
1946 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001947 uopt.uid = INVALID_UID;
1948 uopt.gid = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001950 uopt.fmode = UDF_INVALID_MODE;
1951 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001953 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01001954 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001959 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Miklos Szeredi6da80892008-02-08 04:21:50 -08001961 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 goto error_out;
1963
1964 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001965 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07001966 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 goto error_out;
1968 }
1969#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001970 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 uopt.nls_map = load_nls_default();
1972 if (!uopt.nls_map)
1973 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1974 else
1975 udf_debug("Using default NLS map\n");
1976 }
1977#endif
1978 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1979 uopt.flags |= (1 << UDF_FLAG_UTF8);
1980
1981 fileset.logicalBlockNum = 0xFFFFFFFF;
1982 fileset.partitionReferenceNum = 0xFFFF;
1983
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001984 sbi->s_flags = uopt.flags;
1985 sbi->s_uid = uopt.uid;
1986 sbi->s_gid = uopt.gid;
1987 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001988 sbi->s_fmode = uopt.fmode;
1989 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001990 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001991 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001993 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001994 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001996 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001998 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 /* Fill in the rest of the superblock */
2001 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02002002 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 sb->s_magic = UDF_SUPER_MAGIC;
2005 sb->s_time_gran = 1000;
2006
Jan Kara40346002009-03-19 16:21:38 +01002007 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
2008 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2009 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04002010 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01002011 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2012 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
2013 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07002014 pr_notice("Rescanning with blocksize %d\n",
2015 UDF_DEFAULT_BLOCKSIZE);
Ashish Sangwandc141a42012-07-21 16:35:17 +05302016 brelse(sbi->s_lvid_bh);
2017 sbi->s_lvid_bh = NULL;
Jan Kara40346002009-03-19 16:21:38 +01002018 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
2019 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2020 }
2021 }
2022 if (!ret) {
Joe Perches78ace702011-10-10 01:08:05 -07002023 udf_warn(sb, "No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto error_out;
2025 }
2026
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002027 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002029 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002030 struct logicalVolIntegrityDescImpUse *lvidiu =
2031 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002032 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2033 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002034 /* uint16_t maxUDFWriteRev =
2035 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002037 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07002038 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
2039 le16_to_cpu(lvidiu->minUDFReadRev),
2040 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002042 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002045 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2048 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2049 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2050 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2051 }
2052
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002053 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002054 udf_warn(sb, "No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 goto error_out;
2056 }
2057
Marcin Slusarz4b111112008-02-08 04:20:36 -08002058 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2059 UDF_PART_FLAG_READ_ONLY) {
Joe Perches78ace702011-10-10 01:08:05 -07002060 pr_notice("Partition marked readonly; forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002061 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002062 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002063
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002064 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Joe Perches78ace702011-10-10 01:08:05 -07002065 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 goto error_out;
2067 }
2068
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002069 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002070 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002071 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002072 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2073 sbi->s_volume_ident,
2074 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002075 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
2077 if (!(sb->s_flags & MS_RDONLY))
2078 udf_open_lvid(sb);
2079
2080 /* Assign the root inode */
2081 /* assign inodes by physical block number */
2082 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002083 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002084 if (!inode) {
Joe Perches78ace702011-10-10 01:08:05 -07002085 udf_err(sb, "Error in udf_iget, block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002086 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 goto error_out;
2088 }
2089
2090 /* Allocate a dentry for the root inode */
Al Viro48fde702012-01-08 22:15:13 -05002091 sb->s_root = d_make_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002092 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002093 udf_err(sb, "Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 goto error_out;
2095 }
Jan Kara31170b62007-05-08 00:35:21 -07002096 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05002097 sb->s_max_links = UDF_MAX_LINKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return 0;
2099
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002100error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002101 if (sbi->s_vat_inode)
2102 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103#ifdef CONFIG_UDF_NLS
2104 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002105 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106#endif
2107 if (!(sb->s_flags & MS_RDONLY))
2108 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002109 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002110 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 kfree(sbi);
2112 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return -EINVAL;
2115}
2116
Joe Perches8076c362011-10-10 01:08:03 -07002117void _udf_err(struct super_block *sb, const char *function,
2118 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Joe Perchesc2bff362011-10-10 01:08:06 -07002120 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 va_list args;
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002124
2125 vaf.fmt = fmt;
2126 vaf.va = &args;
2127
2128 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
Joe Perchesa40ecd72011-10-10 01:08:04 -07002133void _udf_warn(struct super_block *sb, const char *function,
2134 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
Joe Perchesc2bff362011-10-10 01:08:06 -07002136 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 va_list args;
2138
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002139 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002140
2141 vaf.fmt = fmt;
2142 vaf.va = &args;
2143
2144 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002149static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002151 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002153 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002154
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002155 if (sbi->s_vat_inode)
2156 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157#ifdef CONFIG_UDF_NLS
2158 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002159 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160#endif
2161 if (!(sb->s_flags & MS_RDONLY))
2162 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002163 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002164 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 kfree(sb->s_fs_info);
2166 sb->s_fs_info = NULL;
2167}
2168
Jan Kara146bca72009-03-16 18:27:37 +01002169static int udf_sync_fs(struct super_block *sb, int wait)
2170{
2171 struct udf_sb_info *sbi = UDF_SB(sb);
2172
2173 mutex_lock(&sbi->s_alloc_mutex);
2174 if (sbi->s_lvid_dirty) {
2175 /*
2176 * Blockdevice will be synced later so we don't have to submit
2177 * the buffer for IO
2178 */
2179 mark_buffer_dirty(sbi->s_lvid_bh);
Jan Kara146bca72009-03-16 18:27:37 +01002180 sbi->s_lvid_dirty = 0;
2181 }
2182 mutex_unlock(&sbi->s_alloc_mutex);
2183
2184 return 0;
2185}
2186
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002187static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
David Howells726c3342006-06-23 02:02:58 -07002189 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002190 struct udf_sb_info *sbi = UDF_SB(sb);
2191 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002192 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002193
2194 if (sbi->s_lvid_bh != NULL)
2195 lvidiu = udf_sb_lvidiu(sbi);
2196 else
2197 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 buf->f_type = UDF_SUPER_MAGIC;
2200 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002201 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 buf->f_bfree = udf_count_free(sb);
2203 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002204 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2205 le32_to_cpu(lvidiu->numDirs)) : 0)
2206 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002208 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002209 buf->f_fsid.val[0] = (u32)id;
2210 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 return 0;
2213}
2214
Marcin Slusarz4b111112008-02-08 04:20:36 -08002215static unsigned int udf_count_free_bitmap(struct super_block *sb,
2216 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
2218 struct buffer_head *bh = NULL;
2219 unsigned int accum = 0;
2220 int index;
2221 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002222 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 uint8_t *ptr;
2225 uint16_t ident;
2226 struct spaceBitmapDesc *bm;
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002229 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002230 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002232 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002233 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002235 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002236 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002237 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 goto out;
2239 }
2240
2241 bm = (struct spaceBitmapDesc *)bh->b_data;
2242 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002243 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2244 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002246 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002247 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2248 accum += bitmap_weight((const unsigned long *)(ptr + index),
2249 cur_bytes * 8);
2250 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002251 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002252 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002253 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002255 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 udf_debug("read failed\n");
2257 goto out;
2258 }
2259 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002260 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
2262 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002263 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002264out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return accum;
2266}
2267
Marcin Slusarz4b111112008-02-08 04:20:36 -08002268static unsigned int udf_count_free_table(struct super_block *sb,
2269 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002272 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002273 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002275 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Jan Karad1668fe2010-10-20 23:24:12 +02002277 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002278 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002279 epos.offset = sizeof(struct unallocSpaceEntry);
2280 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002282 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002284
Jan Kara3bf25cb2007-05-08 00:35:16 -07002285 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002286 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 return accum;
2289}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002290
2291static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002294 struct udf_sb_info *sbi;
2295 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002297 sbi = UDF_SB(sb);
2298 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002299 struct logicalVolIntegrityDesc *lvid =
2300 (struct logicalVolIntegrityDesc *)
2301 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002302 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002303 accum = le32_to_cpu(
2304 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if (accum == 0xFFFFFFFF)
2306 accum = 0;
2307 }
2308 }
2309
2310 if (accum)
2311 return accum;
2312
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002313 map = &sbi->s_partmaps[sbi->s_partition];
2314 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002315 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002316 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002318 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002319 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002320 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
2322 if (accum)
2323 return accum;
2324
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002325 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002326 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002327 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002329 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002330 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002331 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
2334 return accum;
2335}